HomeSort by relevance Sort by last modified time
    Searched refs:NotReady (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGList.cpp 175 std::vector<SUnit*> NotReady;
215 NotReady.push_back(CurSUnit);
219 if (!NotReady.empty()) {
220 AvailableQueue->push_all(NotReady);
221 NotReady.clear();
ScheduleDAGFast.cpp 537 SmallVector<SUnit*, 4> NotReady;
552 NotReady.push_back(CurSU);
564 SUnit *TrySU = NotReady[0];
616 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) {
617 NotReady[i]->isPending = false;
619 if (NotReady[i]->isAvailable)
620 AvailableQueue.push(NotReady[i]);
622 NotReady.clear();
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 621 std::vector<SUnit*> NotReady;
655 NotReady.push_back(CurSUnit);
659 if (!NotReady.empty()) {
660 AvailableQueue.push_all(NotReady);
661 NotReady.clear();

Completed in 33 milliseconds