Lines Matching refs:LQ
74 LQ.push_front(L); in addLoop()
80 for (auto I = LQ.begin(), E = LQ.end(); I != E; ++I) { in addLoop()
84 LQ.insert(I, 1, L); in addLoop()
126 static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) { in addLoopIntoQueue() argument
127 LQ.push_back(L); in addLoopIntoQueue()
129 addLoopIntoQueue(*I, LQ); in addLoopIntoQueue()
160 addLoopIntoQueue(*I, LQ); in runOnFunction()
162 if (LQ.empty()) // No loops, skip calling finalizers in runOnFunction()
166 for (std::deque<Loop *>::const_iterator I = LQ.begin(), E = LQ.end(); in runOnFunction()
176 while (!LQ.empty()) { in runOnFunction()
178 CurrentLoop = LQ.back(); in runOnFunction()
247 LQ.pop_back(); in runOnFunction()