LoopRotation.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #pragma once
  2. #ifdef __GNUC__
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wunused-parameter"
  5. #endif
  6. //===- LoopRotation.h - Loop Rotation -------------------------------------===//
  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 file provides the interface for the Loop Rotation pass.
  15. //
  16. //===----------------------------------------------------------------------===//
  17. #ifndef LLVM_TRANSFORMS_SCALAR_LOOPROTATION_H
  18. #define LLVM_TRANSFORMS_SCALAR_LOOPROTATION_H
  19. #include "llvm/Analysis/LoopInfo.h"
  20. #include "llvm/IR/PassManager.h"
  21. #include "llvm/Transforms/Scalar/LoopPassManager.h"
  22. namespace llvm {
  23. /// A simple loop rotation transformation.
  24. class LoopRotatePass : public PassInfoMixin<LoopRotatePass> {
  25. public:
  26. LoopRotatePass(bool EnableHeaderDuplication = true,
  27. bool PrepareForLTO = false);
  28. PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM,
  29. LoopStandardAnalysisResults &AR, LPMUpdater &U);
  30. private:
  31. const bool EnableHeaderDuplication;
  32. const bool PrepareForLTO;
  33. };
  34. }
  35. #endif // LLVM_TRANSFORMS_SCALAR_LOOPROTATION_H
  36. #ifdef __GNUC__
  37. #pragma GCC diagnostic pop
  38. #endif