Home
last modified time | relevance | path

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

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