Home | History | Annotate | Download | only in Analysis

Lines Matching refs:RQ

38 // Recurse through all subregions and all regions  into RQ.
39 static void addRegionIntoQueue(Region *R, std::deque<Region *> &RQ) {
40 RQ.push_back(R);
42 addRegionIntoQueue(*I, RQ);
60 addRegionIntoQueue(RI->getTopLevelRegion(), RQ);
62 if (RQ.empty()) // No regions, skip calling finalizers
66 for (std::deque<Region *>::const_iterator I = RQ.begin(), E = RQ.end();
76 while (!RQ.empty()) {
78 CurrentRegion = RQ.back();
142 RQ.pop_back();
145 RQ.push_back(CurrentRegion);