Lines Matching refs:LQ
82 LQ.push_front(L); in addLoop()
88 for (auto I = LQ.begin(), E = LQ.end(); I != E; ++I) { in addLoop()
92 LQ.insert(I, 1, L); in addLoop()
132 static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) { in addLoopIntoQueue() argument
133 LQ.push_back(L); in addLoopIntoQueue()
135 addLoopIntoQueue(*I, LQ); in addLoopIntoQueue()
166 addLoopIntoQueue(*I, LQ); in runOnFunction()
168 if (LQ.empty()) // No loops, skip calling finalizers in runOnFunction()
172 for (std::deque<Loop *>::const_iterator I = LQ.begin(), E = LQ.end(); in runOnFunction()
182 while (!LQ.empty()) { in runOnFunction()
184 CurrentLoop = LQ.back(); in runOnFunction()
252 LQ.pop_back(); in runOnFunction()