Searched refs:InsertLifetime (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Transforms/IPO/ |
D | InlineAlways.cpp | 45 AlwaysInliner(bool InsertLifetime) : Inliner(ID, InsertLifetime) { in AlwaysInliner() argument 76 Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) { in createAlwaysInlinerPass() argument 77 return new AlwaysInliner(InsertLifetime); in createAlwaysInlinerPass()
|
D | Inliner.cpp | 50 Inliner::Inliner(char &ID) : CallGraphSCCPass(ID), InsertLifetime(true) {} in Inliner() 52 Inliner::Inliner(char &ID, bool InsertLifetime) in Inliner() argument 53 : CallGraphSCCPass(ID), InsertLifetime(InsertLifetime) {} in Inliner() 80 int InlineHistory, bool InsertLifetime) { in InlineCallIfPossible() argument 94 if (!InlineFunction(CS, IFI, &AAR, InsertLifetime)) in InlineCallIfPossible() 499 InlineHistoryID, InsertLifetime)) { in inlineCalls()
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | Cloning.h | 212 AAResults *CalleeAAR = nullptr, bool InsertLifetime = true); 214 AAResults *CalleeAAR = nullptr, bool InsertLifetime = true); 216 AAResults *CalleeAAR = nullptr, bool InsertLifetime = true);
|
/external/llvm/include/llvm/Transforms/IPO/ |
D | InlinerPass.h | 35 explicit Inliner(char &ID, bool InsertLifetime); 74 bool InsertLifetime;
|
/external/llvm/include/llvm/Transforms/ |
D | IPO.h | 111 Pass *createAlwaysInlinerPass(bool InsertLifetime);
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 59 AAResults *CalleeAAR, bool InsertLifetime) { in InlineFunction() argument 60 return InlineFunction(CallSite(CI), IFI, CalleeAAR, InsertLifetime); in InlineFunction() 63 AAResults *CalleeAAR, bool InsertLifetime) { in InlineFunction() argument 64 return InlineFunction(CallSite(II), IFI, CalleeAAR, InsertLifetime); in InlineFunction() 1351 AAResults *CalleeAAR, bool InsertLifetime) { in InlineFunction() argument 1700 if (InsertLifetime && !IFI.StaticAllocas.empty()) { in InlineFunction()
|