Searched refs:InsertLifetime (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Transforms/IPO/ |
D | InlineAlways.cpp | 43 AlwaysInliner(bool InsertLifetime) in AlwaysInliner() argument 44 : Inliner(ID, -2000000000, InsertLifetime), ICA(0) { in AlwaysInliner() 73 Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) { in createAlwaysInlinerPass() argument 74 return new AlwaysInliner(InsertLifetime); in createAlwaysInlinerPass()
|
D | Inliner.cpp | 57 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit), InsertLifetime(true) {} in Inliner() 59 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime) in Inliner() argument 62 InsertLifetime(InsertLifetime) {} in Inliner() 119 int InlineHistory, bool InsertLifetime) { in InlineCallIfPossible() argument 125 if (!InlineFunction(CS, IFI, InsertLifetime)) in InlineCallIfPossible() 485 InlineHistoryID, InsertLifetime)) in runOnSCC()
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | Cloning.h | 193 bool InlineFunction(CallInst *C, InlineFunctionInfo &IFI, bool InsertLifetime = true); 194 bool InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, bool InsertLifetime = true); 195 bool InlineFunction(CallSite CS, InlineFunctionInfo &IFI, bool InsertLifetime = true);
|
/external/llvm/include/llvm/Transforms/IPO/ |
D | InlinerPass.h | 34 explicit Inliner(char &ID, int Threshold, bool InsertLifetime); 82 bool InsertLifetime; member
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 35 bool InsertLifetime) { in InlineFunction() argument 36 return InlineFunction(CallSite(CI), IFI, InsertLifetime); in InlineFunction() 39 bool InsertLifetime) { in InlineFunction() argument 40 return InlineFunction(CallSite(II), IFI, InsertLifetime); in InlineFunction() 490 bool InsertLifetime) { in InlineFunction() argument 661 if (InsertLifetime && !IFI.StaticAllocas.empty()) { in InlineFunction()
|
/external/llvm/include/llvm/Transforms/ |
D | IPO.h | 97 Pass *createAlwaysInlinerPass(bool InsertLifetime);
|