Home
last modified time | relevance | path

Searched refs:LicmMssaOptCap (Results 1 – 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
DLICM.h47 unsigned LicmMssaOptCap; variable
52 : LicmMssaOptCap(SetLicmMssaOptCap), in LICMPass()
54 LICMPass(unsigned LicmMssaOptCap, unsigned LicmMssaNoAccForPromotionCap) in LICMPass() argument
55 : LicmMssaOptCap(LicmMssaOptCap), in LICMPass()
63 unsigned LicmMssaOptCap; variable
68 : LicmMssaOptCap(SetLicmMssaOptCap), in LNICMPass()
70 LNICMPass(unsigned LicmMssaOptCap, unsigned LicmMssaNoAccForPromotionCap) in LNICMPass() argument
71 : LicmMssaOptCap(LicmMssaOptCap), in LNICMPass()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Passes/
DPassBuilderBindings.cpp122 unsigned LicmMssaOptCap) { in LLVMPassBuilderOptionsSetLicmMssaOptCap() argument
123 unwrap(Options)->PTO.LicmMssaOptCap = LicmMssaOptCap; in LLVMPassBuilderOptionsSetLicmMssaOptCap()
DPassBuilder.cpp287 LicmMssaOptCap = SetLicmMssaOptCap; in PipelineTuningOptions()
582 LPM1.addPass(LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap)); in buildO1FunctionSimplificationPipeline()
587 LPM1.addPass(LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap)); in buildO1FunctionSimplificationPipeline()
754 LPM1.addPass(LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap)); in buildFunctionSimplificationPipeline()
760 LPM1.addPass(LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap)); in buildFunctionSimplificationPipeline()
850 LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap), in buildFunctionSimplificationPipeline()
1246 LPM.addPass(LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap)); in addVectorPasses()
1311 LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap), in addVectorPasses()
1836 LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap), in buildLTODefaultPipeline()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DPassManagerBuilder.cpp205 LicmMssaOptCap = SetLicmMssaOptCap; in PassManagerBuilder()
451 MPM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); in addFunctionSimplificationPasses()
455 MPM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); in addFunctionSimplificationPasses()
519 MPM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); in addFunctionSimplificationPasses()
578 PM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); in addVectorPasses()
639 PM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); in addVectorPasses()
884 MPM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); in populateModulePassManager()
1118 PM.add(createLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap)); in addLTOOptimizationPasses()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
DLoopUtils.h121 SinkAndHoistLICMFlags(unsigned LicmMssaOptCap,
131 bool tooManyClobberingCalls() { return LicmMssaOptCounter >= LicmMssaOptCap; } in tooManyClobberingCalls()
137 unsigned LicmMssaOptCap; variable
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLICM.cpp201 LoopInvariantCodeMotion(unsigned LicmMssaOptCap, in LoopInvariantCodeMotion()
203 : LicmMssaOptCap(LicmMssaOptCap), in LoopInvariantCodeMotion()
207 unsigned LicmMssaOptCap; member
217 unsigned LicmMssaOptCap = SetLicmMssaOptCap, in LegacyLICMPass()
219 : LoopPass(ID), LICM(LicmMssaOptCap, LicmMssaNoAccForPromotionCap) { in LegacyLICMPass()
283 LoopInvariantCodeMotion LICM(LicmMssaOptCap, LicmMssaNoAccForPromotionCap); in run()
306 LoopInvariantCodeMotion LICM(LicmMssaOptCap, LicmMssaNoAccForPromotionCap); in run()
337 Pass *llvm::createLICMPass(unsigned LicmMssaOptCap, in createLICMPass() argument
339 return new LegacyLICMPass(LicmMssaOptCap, LicmMssaNoAccForPromotionCap); in createLICMPass()
348 unsigned LicmMssaOptCap, unsigned LicmMssaNoAccForPromotionCap, bool IsSink, in SinkAndHoistLICMFlags() argument
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm-c/Transforms/
DPassBuilder.h84 unsigned LicmMssaOptCap);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
DPassManagerBuilder.h174 unsigned LicmMssaOptCap; variable
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/
DScalar.h135 Pass *createLICMPass(unsigned LicmMssaOptCap,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Passes/
DPassBuilder.h112 unsigned LicmMssaOptCap; variable