Searched refs:NotReady (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp183 std::vector<SUnit*> NotReady; local
226 NotReady.push_back(CurSUnit);
230 if (!NotReady.empty()) {
231 AvailableQueue->push_all(NotReady);
232 NotReady.clear();
H A DScheduleDAGFast.cpp540 SmallVector<SUnit*, 4> NotReady; local
555 NotReady.push_back(CurSU);
567 SUnit *TrySU = NotReady[0];
615 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) {
616 NotReady[i]->isPending = false;
618 if (NotReady[i]->isAvailable)
619 AvailableQueue.push(NotReady[i]);
621 NotReady.clear();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DPostRASchedulerList.cpp550 std::vector<SUnit*> NotReady; local
596 NotReady.push_back(CurSUnit);
615 if (!NotReady.empty()) {
616 AvailableQueue.push_all(NotReady);
617 NotReady.clear();

Completed in 170 milliseconds