1 //===- LoopUnrollAndJamPass.h -----------------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef LLVM_TRANSFORMS_SCALAR_LOOPUNROLLANDJAMPASS_H
10 #define LLVM_TRANSFORMS_SCALAR_LOOPUNROLLANDJAMPASS_H
11 
12 #include "llvm/Analysis/LoopAnalysisManager.h"
13 #include "llvm/Analysis/LoopInfo.h"
14 #include "llvm/IR/PassManager.h"
15 
16 namespace llvm {
17 
18 class Function;
19 
20 /// A simple loop rotation transformation.
21 class LoopUnrollAndJamPass : public PassInfoMixin<LoopUnrollAndJamPass> {
22   const int OptLevel;
23 
24 public:
25   explicit LoopUnrollAndJamPass(int OptLevel = 2) : OptLevel(OptLevel) {}
26   PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
27 };
28 
29 } // end namespace llvm
30 
31 #endif // LLVM_TRANSFORMS_SCALAR_LOOPUNROLLANDJAMPASS_H
32