Home
last modified time | relevance | path

Searched refs:InsertLifetime (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/Transforms/IPO/
H A DAlwaysInliner.h31 bool InsertLifetime; variable
34 AlwaysInlinerPass(bool InsertLifetime = true)
35 : InsertLifetime(InsertLifetime) {} in InsertLifetime() function
42 Pass *createAlwaysInlinerLegacyPass(bool InsertLifetime = true);
H A DInliner.h33 explicit LegacyInlinerBase(char &ID, bool InsertLifetime);
73 bool InsertLifetime = true;
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DAlwaysInliner.cpp54 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()
H A DInliner.cpp126 LegacyInlinerBase::LegacyInlinerBase(char &ID, bool InsertLifetime) in LegacyInlinerBase() argument
127 : CallGraphSCCPass(ID), InsertLifetime(InsertLifetime) {} in LegacyInlinerBase()
278 bool InsertLifetime, function_ref<AAResults &(Function &)> &AARGetter, in InlineCallIfPossible() argument
287 InlineResult IR = InlineFunction(CS, IFI, &AAR, InsertLifetime); in InlineCallIfPossible()
532 bool InsertLifetime, in inlineCallsImpl() argument
688 InsertLifetime, AARGetter, ImportedFunctionsStats); in inlineCallsImpl()
765 return inlineCallsImpl(SCC, CG, GetAssumptionCache, PSI, TLI, InsertLifetime, in inlineCalls()
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/Utils/
H A DCloning.h235 bool InsertLifetime = true);
238 bool InsertLifetime = true);
241 bool InsertLifetime = true,
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp90 bool InsertLifetime) { in InlineFunction() argument
91 return InlineFunction(CallSite(CI), IFI, CalleeAAR, InsertLifetime); in InlineFunction()
96 bool InsertLifetime) { in InlineFunction() argument
97 return InlineFunction(CallSite(II), IFI, CalleeAAR, InsertLifetime); in InlineFunction()
1504 bool InsertLifetime, in InlineFunction() argument
1919 if (InsertLifetime && !IFI.StaticAllocas.empty()) { in InlineFunction()