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