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 168 /// StaticAllocas - InlineFunction fills this in with all static allocas that
170 SmallVector<AllocaInst*, 4> StaticAllocas;
177 StaticAllocas.clear();
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 400 IFI.StaticAllocas.push_back(cast<AllocaInst>(NewAlloca));
675 IFI.StaticAllocas.push_back(AI);
681 IFI.StaticAllocas.push_back(cast<AllocaInst>(I));
735 if (InsertLifetime && !IFI.StaticAllocas.empty()) {
737 for (unsigned ai = 0, ae = IFI.StaticAllocas.size(); ai != ae; ++ai) {
738 AllocaInst *AI = IFI.StaticAllocas[ai];
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 180 for (unsigned AllocaNo = 0, e = IFI.StaticAllocas.size();
182 AllocaInst *AI = IFI.StaticAllocas[AllocaNo];
244 IFI.StaticAllocas[AllocaNo] = nullptr;

Completed in 159 milliseconds