Home
last modified time | relevance | path

Searched refs:ExpensiveCombines (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/InstCombine/
DInstCombine.h27 const bool ExpensiveCombines; variable
33 explicit InstCombinePass(bool ExpensiveCombines = true);
34 explicit InstCombinePass(bool ExpensiveCombines, unsigned MaxIterations);
45 const bool ExpensiveCombines; variable
51 explicit InstructionCombiningPass(bool ExpensiveCombines = true);
52 explicit InstructionCombiningPass(bool ExpensiveCombines,
71 FunctionPass *createInstructionCombiningPass(bool ExpensiveCombines = true);
72 FunctionPass *createInstructionCombiningPass(bool ExpensiveCombines,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp3302 if (ExpensiveCombines && !I->use_empty() && Ty->isIntOrIntVectorTy()) { in run()
3568 ProfileSummaryInfo *PSI, bool ExpensiveCombines, unsigned MaxIterations, in combineInstructionsOverFunction() argument
3572 ExpensiveCombines = EnableExpensiveCombines; in combineInstructionsOverFunction()
3614 InstCombiner IC(Worklist, Builder, F.hasMinSize(), ExpensiveCombines, AA, in combineInstructionsOverFunction()
3627 InstCombinePass::InstCombinePass(bool ExpensiveCombines) in InstCombinePass() argument
3628 : ExpensiveCombines(ExpensiveCombines), MaxIterations(LimitMaxIterations) {} in InstCombinePass()
3630 InstCombinePass::InstCombinePass(bool ExpensiveCombines, unsigned MaxIterations) in InstCombinePass() argument
3631 : ExpensiveCombines(ExpensiveCombines), MaxIterations(MaxIterations) {} in InstCombinePass()
3651 PSI, ExpensiveCombines, MaxIterations, in run()
3702 PSI, ExpensiveCombines, MaxIterations, in runOnFunction()
[all …]
DInstCombineInternal.h317 const bool ExpensiveCombines; variable
339 bool MinimizeSize, bool ExpensiveCombines, AliasAnalysis *AA, in InstCombiner() argument
344 ExpensiveCombines(ExpensiveCombines), AA(AA), AC(AC), TLI(TLI), DT(DT), in InstCombiner()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DPassManagerBuilder.cpp274 bool ExpensiveCombines = OptLevel > 2; in addInstructionCombiningPass() local
275 PM.add(createInstructionCombiningPass(ExpensiveCombines)); in addInstructionCombiningPass()