Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:AvailableQueue

64   /// AvailableQueue - The priority queue to use for the available SUnits.
65 FastPriorityQueue AvailableQueue;
133 /// the AvailableQueue if the count reaches zero. Also update its cycle bound.
151 AvailableQueue.push(PredSU);
532 AvailableQueue.push(RootSU);
540 while (!AvailableQueue.empty()) {
543 SUnit *CurSU = AvailableQueue.pop();
551 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
553 CurSU = AvailableQueue.pop();
620 AvailableQueue.push(NotReady[i]);