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

  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 176 /// StaticAllocas - InlineFunction fills this in with all static allocas that
178 SmallVector<AllocaInst*, 4> StaticAllocas;
185 StaticAllocas.clear();
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 141 for (unsigned AllocaNo = 0, e = IFI.StaticAllocas.size();
143 AllocaInst *AI = IFI.StaticAllocas[AllocaNo];
183 IFI.StaticAllocas[AllocaNo] = 0;
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 640 IFI.StaticAllocas.push_back(AI);
646 IFI.StaticAllocas.push_back(cast<AllocaInst>(I));
661 if (InsertLifetime && !IFI.StaticAllocas.empty()) {
663 for (unsigned ai = 0, ae = IFI.StaticAllocas.size(); ai != ae; ++ai) {
664 AllocaInst *AI = IFI.StaticAllocas[ai];
    [all...]

Completed in 61 milliseconds