Searched refs:InlineFunction (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/Transforms/Utils/
H A DCloning.h157 /// InlineFunction call, and records the auxiliary results produced by it.
163 /// CG - If non-null, InlineFunction will update the callgraph to reflect the
168 /// StaticAllocas - InlineFunction fills this in with all static allocas that
172 /// InlinedCalls - InlineFunction fills this in with callsites that were
182 /// InlineFunction - This function inlines the called function into the basic
192 bool InlineFunction(CallInst *C, InlineFunctionInfo &IFI, bool InsertLifetime = true);
193 bool InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, bool InsertLifetime = true);
194 bool InlineFunction(CallSite CS, InlineFunctionInfo &IFI, bool InsertLifetime = true);
/external/llvm/lib/Transforms/Utils/
H A DAndroid.mk17 InlineFunction.cpp \
H A DInlineFunction.cpp1 //===- InlineFunction.cpp - Code to perform function inlining -------------===//
35 bool llvm::InlineFunction(CallInst *CI, InlineFunctionInfo &IFI, function in class:llvm
37 return InlineFunction(CallSite(CI), IFI, InsertLifetime);
39 bool llvm::InlineFunction(InvokeInst *II, InlineFunctionInfo &IFI, function in class:llvm
41 return InlineFunction(CallSite(II), IFI, InsertLifetime);
303 // InlineFunction.
516 /// InlineFunction - This function inlines the called function into the basic
525 bool llvm::InlineFunction(CallSite CS, InlineFunctionInfo &IFI, function in class:llvm
/external/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp137 InlineFunction(CI, IFI);
139 InlineFunction(II, IFI);
H A DInliner.cpp135 if (!InlineFunction(CS, IFI, InsertLifetime))

Completed in 258 milliseconds