Searched refs:ExpensiveCombines (Results 1 – 5 of 5) sorted by relevance
/external/llvm/include/llvm/Transforms/InstCombine/ |
D | InstCombine.h | 29 bool ExpensiveCombines; variable 35 InstCombinePass(bool ExpensiveCombines = true) 36 : ExpensiveCombines(ExpensiveCombines) {} in ExpensiveCombines() argument 39 ExpensiveCombines(Arg.ExpensiveCombines) {} in InstCombinePass() 42 ExpensiveCombines = RHS.ExpensiveCombines; 55 const bool ExpensiveCombines; variable 60 InstructionCombiningPass(bool ExpensiveCombines = true) 61 : FunctionPass(ID), ExpensiveCombines(ExpensiveCombines) { in FunctionPass()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineInternal.h | 181 const bool ExpensiveCombines; variable 200 bool MinimizeSize, bool ExpensiveCombines, AliasAnalysis *AA, in InstCombiner() argument 204 ExpensiveCombines(ExpensiveCombines), AA(AA), AC(AC), TLI(TLI), DT(DT), in InstCombiner()
|
D | InstructionCombining.cpp | 2792 if (ExpensiveCombines && !I->use_empty() && I->getType()->isIntegerTy()) { in run() 3064 bool ExpensiveCombines = true, in combineInstructionsOverFunction() argument 3067 ExpensiveCombines |= EnableExpensiveCombines; in combineInstructionsOverFunction() 3087 InstCombiner IC(Worklist, &Builder, F.optForMinSize(), ExpensiveCombines, in combineInstructionsOverFunction() 3108 ExpensiveCombines, LI)) in run() 3146 ExpensiveCombines, LI); in runOnFunction() 3169 FunctionPass *llvm::createInstructionCombiningPass(bool ExpensiveCombines) { in createInstructionCombiningPass() argument 3170 return new InstructionCombiningPass(ExpensiveCombines); in createInstructionCombiningPass()
|
/external/llvm/include/llvm/Transforms/ |
D | Scalar.h | 133 FunctionPass *createInstructionCombiningPass(bool ExpensiveCombines = true);
|
/external/llvm/lib/Transforms/IPO/ |
D | PassManagerBuilder.cpp | 207 bool ExpensiveCombines = OptLevel > 2; in addInstructionCombiningPass() local 208 PM.add(createInstructionCombiningPass(ExpensiveCombines)); in addInstructionCombiningPass()
|