LoopInstSimplify.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #pragma once
  2. #ifdef __GNUC__
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wunused-parameter"
  5. #endif
  6. //===- LoopInstSimplify.h - Loop Inst Simplify Pass -------------*- 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. // This pass performs lightweight instruction simplification on loop bodies.
  15. //
  16. //===----------------------------------------------------------------------===//
  17. #ifndef LLVM_TRANSFORMS_SCALAR_LOOPINSTSIMPLIFY_H
  18. #define LLVM_TRANSFORMS_SCALAR_LOOPINSTSIMPLIFY_H
  19. #include "llvm/Analysis/LoopAnalysisManager.h"
  20. #include "llvm/IR/PassManager.h"
  21. namespace llvm {
  22. class Loop;
  23. class LPMUpdater;
  24. /// Performs Loop Inst Simplify Pass.
  25. class LoopInstSimplifyPass : public PassInfoMixin<LoopInstSimplifyPass> {
  26. public:
  27. PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM,
  28. LoopStandardAnalysisResults &AR, LPMUpdater &U);
  29. };
  30. } // end namespace llvm
  31. #endif // LLVM_TRANSFORMS_SCALAR_LOOPINSTSIMPLIFY_H
  32. #ifdef __GNUC__
  33. #pragma GCC diagnostic pop
  34. #endif