/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/IPO/ |
D | AlwaysInliner.h | 31 bool InsertLifetime; variable 34 AlwaysInlinerPass(bool InsertLifetime = true) 35 : InsertLifetime(InsertLifetime) {} in InsertLifetime() argument 42 Pass *createAlwaysInlinerLegacyPass(bool InsertLifetime = true);
|
D | Inliner.h | 33 explicit LegacyInlinerBase(char &ID, bool InsertLifetime); 73 bool InsertLifetime = true;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | AlwaysInliner.cpp | 54 InlineFunction(CS, IFI, /*CalleeAAR=*/nullptr, InsertLifetime); in run() 100 AlwaysInlinerLegacyPass(bool InsertLifetime) in AlwaysInlinerLegacyPass() argument 101 : LegacyInlinerBase(ID, InsertLifetime) { in AlwaysInlinerLegacyPass() 129 Pass *llvm::createAlwaysInlinerLegacyPass(bool InsertLifetime) { in INITIALIZE_PASS_DEPENDENCY() 130 return new AlwaysInlinerLegacyPass(InsertLifetime); in INITIALIZE_PASS_DEPENDENCY()
|
D | Inliner.cpp | 117 LegacyInlinerBase::LegacyInlinerBase(char &ID, bool InsertLifetime) in LegacyInlinerBase() argument 118 : CallGraphSCCPass(ID), InsertLifetime(InsertLifetime) {} in LegacyInlinerBase() 269 bool InsertLifetime, function_ref<AAResults &(Function &)> &AARGetter, in InlineCallIfPossible() argument 278 if (!InlineFunction(CS, IFI, &AAR, InsertLifetime)) in InlineCallIfPossible() 468 bool InsertLifetime, in inlineCallsImpl() argument 610 InlineHistoryID, InsertLifetime, AARGetter, in inlineCallsImpl() 700 return inlineCallsImpl(SCC, CG, GetAssumptionCache, PSI, TLI, InsertLifetime, in inlineCalls()
|
/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/ |
D | Cloning.h | 236 AAResults *CalleeAAR = nullptr, bool InsertLifetime = true); 238 AAResults *CalleeAAR = nullptr, bool InsertLifetime = true); 240 AAResults *CalleeAAR = nullptr, bool InsertLifetime = true,
|
/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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 88 AAResults *CalleeAAR, bool InsertLifetime) { in InlineFunction() argument 89 return InlineFunction(CallSite(CI), IFI, CalleeAAR, InsertLifetime); in InlineFunction() 93 AAResults *CalleeAAR, bool InsertLifetime) { in InlineFunction() argument 94 return InlineFunction(CallSite(II), IFI, CalleeAAR, InsertLifetime); in InlineFunction() 1495 AAResults *CalleeAAR, bool InsertLifetime, in InlineFunction() argument 1910 if (InsertLifetime && !IFI.StaticAllocas.empty()) { in InlineFunction()
|