Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp83 unsigned MaxHeaderSize; member in __anon6d2df1b10111::LoopRotateLegacyPass
93 MaxHeaderSize = DefaultRotationThreshold; in LoopRotateLegacyPass()
95 MaxHeaderSize = unsigned(SpecifiedMaxHeaderSize); in LoopRotateLegacyPass()
136 : MaxHeaderSize; in runOnLoop()
156 Pass *llvm::createLoopRotatePass(int MaxHeaderSize, bool PrepareForLTO) { in INITIALIZE_PASS_DEPENDENCY()
157 return new LoopRotateLegacyPass(MaxHeaderSize, PrepareForLTO); in INITIALIZE_PASS_DEPENDENCY()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopRotationUtils.cpp63 const unsigned MaxHeaderSize; member in __anonec66c2bd0111::LoopRotate
76 LoopRotate(unsigned MaxHeaderSize, LoopInfo *LI, in LoopRotate() argument
81 : MaxHeaderSize(MaxHeaderSize), LI(LI), TTI(TTI), AC(AC), DT(DT), SE(SE), in LoopRotate()
323 if (Metrics.NumInsts > MaxHeaderSize) { in rotateLoop()
327 << MaxHeaderSize << " instructions): "; in rotateLoop()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DScalar.h214 Pass *createLoopRotatePass(int MaxHeaderSize = -1, bool PrepareForLTO = false);