Home | History | Annotate | Download | only in Analysis

Lines Matching refs:RQ

39 // Recurse through all subregions and all regions  into RQ.
40 static void addRegionIntoQueue(Region &R, std::deque<Region *> &RQ) {
41 RQ.push_back(&R);
43 addRegionIntoQueue(*E, RQ);
61 addRegionIntoQueue(*RI->getTopLevelRegion(), RQ);
63 if (RQ.empty()) // No regions, skip calling finalizers
67 for (std::deque<Region *>::const_iterator I = RQ.begin(), E = RQ.end();
77 while (!RQ.empty()) {
79 CurrentRegion = RQ.back();
147 RQ.pop_back();
150 RQ.push_back(CurrentRegion);