reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Transforms/Utils/Cloning.h
  207     StaticAllocas.clear();
lib/Transforms/IPO/Inliner.cpp
  183   for (unsigned AllocaNo = 0, e = IFI.StaticAllocas.size(); AllocaNo != e;
  185     AllocaInst *AI = IFI.StaticAllocas[AllocaNo];
  248       IFI.StaticAllocas[AllocaNo] = nullptr;
lib/Transforms/Scalar/PlaceSafepoints.cpp
  657   assert(IFI.StaticAllocas.empty() && "can't have allocs");
lib/Transforms/Utils/InlineFunction.cpp
 1306   IFI.StaticAllocas.push_back(cast<AllocaInst>(NewAlloca));
 1840       IFI.StaticAllocas.push_back(AI);
 1847         IFI.StaticAllocas.push_back(cast<AllocaInst>(I));
 1859     for (auto &AI : IFI.StaticAllocas)
 1956   if (InsertLifetime && !IFI.StaticAllocas.empty()) {
 1958     for (unsigned ai = 0, ae = IFI.StaticAllocas.size(); ai != ae; ++ai) {
 1959       AllocaInst *AI = IFI.StaticAllocas[ai];