Lines Matching refs:RegionStack
341 std::vector<SourceMappingRegion> RegionStack; member
384 RegionStack.emplace_back(Count, StartLoc, EndLoc); in pushRegion()
386 return RegionStack.size() - 1; in pushRegion()
394 assert(RegionStack.size() >= ParentIndex && "parent not in stack"); in popRegions()
395 while (RegionStack.size() > ParentIndex) { in popRegions()
396 SourceMappingRegion &Region = RegionStack.back(); in popRegions()
401 : RegionStack[ParentIndex].getEndLoc(); in popRegions()
426 RegionStack.pop_back(); in popRegions()
432 assert(!RegionStack.empty() && "statement has no region"); in getRegion()
433 return RegionStack.back(); in getRegion()
490 for (auto I = RegionStack.rbegin(), E = RegionStack.rend(); I != E; ++I) { in handleFileExit()