GuardWidening.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #pragma once
  2. #ifdef __GNUC__
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wunused-parameter"
  5. #endif
  6. //===- GuardWidening.h - ----------------------------------------*- C++ -*-===//
  7. //
  8. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  9. // See https://llvm.org/LICENSE.txt for license information.
  10. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  11. //
  12. //===----------------------------------------------------------------------===//
  13. //
  14. // Guard widening is an optimization over the @llvm.experimental.guard intrinsic
  15. // that (optimistically) combines multiple guards into one to have fewer checks
  16. // at runtime.
  17. //
  18. //===----------------------------------------------------------------------===//
  19. #ifndef LLVM_TRANSFORMS_SCALAR_GUARDWIDENING_H
  20. #define LLVM_TRANSFORMS_SCALAR_GUARDWIDENING_H
  21. #include "llvm/Analysis/LoopAnalysisManager.h"
  22. #include "llvm/IR/PassManager.h"
  23. namespace llvm {
  24. class LPMUpdater;
  25. class Loop;
  26. class Function;
  27. struct GuardWideningPass : public PassInfoMixin<GuardWideningPass> {
  28. PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
  29. PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM,
  30. LoopStandardAnalysisResults &AR, LPMUpdater &U);
  31. };
  32. }
  33. #endif // LLVM_TRANSFORMS_SCALAR_GUARDWIDENING_H
  34. #ifdef __GNUC__
  35. #pragma GCC diagnostic pop
  36. #endif