1 //===- LoopRotation.h - Loop Rotation -------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file provides the interface for the Loop Rotation pass.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_TRANSFORMS_SCALAR_LOOPROTATION_H
14 #define LLVM_TRANSFORMS_SCALAR_LOOPROTATION_H
16 #include "llvm/Analysis/LoopInfo.h"
17 #include "llvm/IR/PassManager.h"
18 #include "llvm/Transforms/Scalar/LoopPassManager.h"
22 /// A simple loop rotation transformation.
23 class LoopRotatePass
: public PassInfoMixin
<LoopRotatePass
> {
25 LoopRotatePass(bool EnableHeaderDuplication
= true);
26 PreservedAnalyses
run(Loop
&L
, LoopAnalysisManager
&AM
,
27 LoopStandardAnalysisResults
&AR
, LPMUpdater
&U
);
30 const bool EnableHeaderDuplication
;
34 #endif // LLVM_TRANSFORMS_SCALAR_LOOPROTATION_H