HomeSort by relevance Sort by last modified time
    Searched refs:InsertLifetime (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 34 explicit Inliner(char &ID, int Threshold, bool InsertLifetime);
81 // InsertLifetime - Insert @llvm.lifetime intrinsics.
82 bool InsertLifetime;
  /external/llvm/lib/Transforms/IPO/
InlineAlways.cpp 39 AlwaysInliner() : Inliner(ID, -2000000000, /*InsertLifetime*/ true), ICA(0) {
43 AlwaysInliner(bool InsertLifetime)
44 : Inliner(ID, -2000000000, InsertLifetime), ICA(0) {
73 Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) {
74 return new AlwaysInliner(InsertLifetime);
Inliner.cpp 57 : CallGraphSCCPass(ID), InlineThreshold(InlineLimit), InsertLifetime(true) {}
59 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime)
62 InsertLifetime(InsertLifetime) {}
119 int InlineHistory, bool InsertLifetime) {
125 if (!InlineFunction(CS, IFI, InsertLifetime))
485 InlineHistoryID, InsertLifetime))
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 193 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);
  /external/llvm/include/llvm/Transforms/
IPO.h 97 Pass *createAlwaysInlinerPass(bool InsertLifetime);
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 35 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()) {
    [all...]

Completed in 119 milliseconds