Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:PendingQueue

109     /// PendingQueue - This contains all of the instructions whose operands have
113 std::vector<SUnit*> PendingQueue;
562 /// the PendingQueue if the count reaches zero.
594 PendingQueue.push_back(SuccSU);
653 while (!AvailableQueue.empty() || !PendingQueue.empty()) {
657 for (unsigned i = 0, e = PendingQueue.size(); i != e; ++i) {
658 if (PendingQueue[i]->getDepth() <= CurCycle) {
659 AvailableQueue.push(PendingQueue[i]);
660 PendingQueue[i]->isAvailable = true;
661 PendingQueue[i] = PendingQueue.back();
662 PendingQueue.pop_back();
664 } else if (PendingQueue[i]->getDepth() < MinDepth)
665 MinDepth = PendingQueue[i]->getDepth();