Searched defs:InsertLifetime (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/Transforms/IPO/
H A DInlinerPass.h34 explicit Inliner(char &ID, int Threshold, bool InsertLifetime);
81 // InsertLifetime - Insert @llvm.lifetime intrinsics.
82 bool InsertLifetime; member in struct:llvm::Inliner
/external/llvm/lib/Transforms/IPO/
H A DInlineAlways.cpp40 AlwaysInliner() : Inliner(ID, -2000000000, /*InsertLifetime*/ true),
45 AlwaysInliner(bool InsertLifetime) argument
46 : Inliner(ID, -2000000000, InsertLifetime), ICA(nullptr) {
75 Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) { argument
76 return new AlwaysInliner(InsertLifetime);
H A DInliner.cpp66 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit), InsertLifetime(true) {}
68 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime) argument
71 InsertLifetime(InsertLifetime) {}
128 int InlineHistory, bool InsertLifetime,
135 if (!InlineFunction(CS, IFI, InsertLifetime))
562 InlineHistoryID, InsertLifetime, DL)) {
126 InlineCallIfPossible(CallSite CS, InlineFunctionInfo &IFI, InlinedArrayAllocasTy &InlinedArrayAllocas, int InlineHistory, bool InsertLifetime, const DataLayout *DL) argument
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp36 bool InsertLifetime) {
37 return InlineFunction(CallSite(CI), IFI, InsertLifetime);
40 bool InsertLifetime) {
41 return InlineFunction(CallSite(II), IFI, InsertLifetime);
526 bool InsertLifetime) {
735 if (InsertLifetime && !IFI.StaticAllocas.empty()) {
35 InlineFunction(CallInst *CI, InlineFunctionInfo &IFI, bool InsertLifetime) argument
39 InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, bool InsertLifetime) argument
525 InlineFunction(CallSite CS, InlineFunctionInfo &IFI, bool InsertLifetime) argument

Completed in 119 milliseconds