Searched refs:InsertLifetime (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Transforms/IPO/ |
D | InlineAlways.cpp | 47 AlwaysInliner(bool InsertLifetime) in AlwaysInliner() argument 48 : Inliner(ID, -2000000000, InsertLifetime), ICA(nullptr) { in AlwaysInliner() 79 Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) { in createAlwaysInlinerPass() argument 80 return new AlwaysInliner(InsertLifetime); in createAlwaysInlinerPass()
|
D | Inliner.cpp | 68 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit), InsertLifetime(true) {} in Inliner() 70 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime) in Inliner() argument 73 InsertLifetime(InsertLifetime) {} in Inliner() 124 int InlineHistory, bool InsertLifetime) { in InlineCallIfPossible() argument 130 if (!InlineFunction(CS, IFI, InsertLifetime)) in InlineCallIfPossible() 547 InlineHistoryID, InsertLifetime)) { in runOnSCC()
|
/external/llvm/include/llvm/Transforms/IPO/ |
D | InlinerPass.h | 34 explicit Inliner(char &ID, int Threshold, bool InsertLifetime); 82 bool InsertLifetime; member
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | Cloning.h | 230 bool InsertLifetime = true); 232 bool InsertLifetime = true); 234 bool InsertLifetime = true);
|
/external/llvm/include/llvm/Transforms/ |
D | IPO.h | 98 Pass *createAlwaysInlinerPass(bool InsertLifetime);
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 57 bool InsertLifetime) { in InlineFunction() argument 58 return InlineFunction(CallSite(CI), IFI, InsertLifetime); in InlineFunction() 61 bool InsertLifetime) { in InlineFunction() argument 62 return InlineFunction(CallSite(II), IFI, InsertLifetime); in InlineFunction() 921 bool InsertLifetime) { in InlineFunction() argument 1152 if (InsertLifetime && !IFI.StaticAllocas.empty()) { in InlineFunction()
|