Home
last modified time | relevance | path

Searched refs:MaxHeaderSize (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp81 unsigned MaxHeaderSize; member in __anon3e4ac82d0111::LoopRotateLegacyPass
91 MaxHeaderSize = DefaultRotationThreshold; in LoopRotateLegacyPass()
93 MaxHeaderSize = unsigned(SpecifiedMaxHeaderSize); in LoopRotateLegacyPass()
131 : MaxHeaderSize; in runOnLoop()
150 Pass *llvm::createLoopRotatePass(int MaxHeaderSize, bool PrepareForLTO) { in INITIALIZE_PASS_DEPENDENCY()
151 return new LoopRotateLegacyPass(MaxHeaderSize, PrepareForLTO); in INITIALIZE_PASS_DEPENDENCY()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DLoopRotationUtils.cpp56 const unsigned MaxHeaderSize; member in __anon14c277390111::LoopRotate
69 LoopRotate(unsigned MaxHeaderSize, LoopInfo *LI, in LoopRotate() argument
74 : MaxHeaderSize(MaxHeaderSize), LI(LI), TTI(TTI), AC(AC), DT(DT), SE(SE), in LoopRotate()
319 if (*Metrics.NumInsts.getValue() > MaxHeaderSize) { in rotateLoop()
323 << MaxHeaderSize << " instructions): "; in rotateLoop()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/
H A DScalar.h208 Pass *createLoopRotatePass(int MaxHeaderSize = -1, bool PrepareForLTO = false);