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

/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/IPO/
H A DInlineAlways.cpp37 AlwaysInliner() : Inliner(ID, -2000000000, /*InsertLifetime*/true) {
40 AlwaysInliner(bool InsertLifetime) : Inliner(ID, -2000000000, argument
41 InsertLifetime) {
62 Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) { argument
63 return new AlwaysInliner(InsertLifetime);
H A DInliner.cpp57 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit), InsertLifetime(true) {}
59 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime) argument
62 InsertLifetime(InsertLifetime) {}
85 int InlineHistory, bool InsertLifetime) {
91 if (!InlineFunction(CS, IFI, InsertLifetime))
452 InlineHistoryID, InsertLifetime))
83 InlineCallIfPossible(CallSite CS, InlineFunctionInfo &IFI, InlinedArrayAllocasTy &InlinedArrayAllocas, int InlineHistory, bool InsertLifetime) argument
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Transforms/IPO/
H A DInlinerPass.h34 explicit Inliner(char &ID, int Threshold, bool InsertLifetime);
80 // InsertLifetime - Insert @llvm.lifetime intrinsics.
81 bool InsertLifetime; member in struct:llvm::Inliner
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Transforms/Utils/
H A DCloning.h193 bool InlineFunction(CallInst *C, InlineFunctionInfo &IFI, bool InsertLifetime = true);
194 bool InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, bool InsertLifetime = true);
195 bool InlineFunction(CallSite CS, InlineFunctionInfo &IFI, bool InsertLifetime = true);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Transforms/
H A DIPO.h97 Pass *createAlwaysInlinerPass(bool InsertLifetime);
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DInlineFunction.cpp35 bool InsertLifetime) {
36 return InlineFunction(CallSite(CI), IFI, InsertLifetime);
39 bool InsertLifetime) {
40 return InlineFunction(CallSite(II), IFI, InsertLifetime);
490 bool InsertLifetime) {
661 if (InsertLifetime && !IFI.StaticAllocas.empty()) {
34 InlineFunction(CallInst *CI, InlineFunctionInfo &IFI, bool InsertLifetime) argument
38 InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, bool InsertLifetime) argument
489 InlineFunction(CallSite CS, InlineFunctionInfo &IFI, bool InsertLifetime) argument

Completed in 84 milliseconds