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

References

lib/CodeGen/SafeStackLayout.cpp
   94   if (End > LastRegionEnd) {
   96     if (Start > LastRegionEnd) {
   97       LLVM_DEBUG(dbgs() << "  Creating gap region: " << LastRegionEnd << " .. "
   99       Regions.emplace_back(LastRegionEnd, Start, StackColoring::LiveRange());
  100       LastRegionEnd = Start;
  102     LLVM_DEBUG(dbgs() << "  Creating new region: " << LastRegionEnd << " .. "
  104     Regions.emplace_back(LastRegionEnd, End, Obj.Range);
  105     LastRegionEnd = End;