Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Pending

1033     ReadyQueue Pending;
1072 Pending.clear();
1092 /// Pending queues extend the ready queues with the same ID and the
1096 Pending(ID << ConvergingScheduler::LogMaxQID, Name+".P"),
1347 for (ReadyQueue::iterator I = Pending.begin(), E = Pending.end();
1370 Pending.push(SU);
1481 /// Release pending ready nodes in to the available queue. This makes them
1488 // Check to see if any of the pending instructions are ready to issue. If
1490 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
1491 SUnit *SU = *(Pending.begin()+i);
1504 Pending.remove(Pending.begin()+i);
1507 DEBUG(if (!Pending.empty()) Pending.dump());
1516 assert(Pending.isInQueue(SU) && "bad ready count");
1517 Pending.remove(Pending.find(SU));
1532 Pending.push(*I);
2034 assert(Top.Available.empty() && Top.Pending.empty() &&
2035 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage");