Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp178 std::vector<SUnit*> NotReady; in listScheduleTopDown() local
221 NotReady.push_back(CurSUnit); in listScheduleTopDown()
225 if (!NotReady.empty()) { in listScheduleTopDown()
226 AvailableQueue->push_all(NotReady); in listScheduleTopDown()
227 NotReady.clear(); in listScheduleTopDown()
H A DScheduleDAGFast.cpp557 SmallVector<SUnit*, 4> NotReady; in ListScheduleBottomUp() local
572 NotReady.push_back(CurSU); in ListScheduleBottomUp()
584 SUnit *TrySU = NotReady[0]; in ListScheduleBottomUp()
632 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) { in ListScheduleBottomUp()
633 NotReady[i]->isPending = false; in ListScheduleBottomUp()
635 if (NotReady[i]->isAvailable) in ListScheduleBottomUp()
636 AvailableQueue.push(NotReady[i]); in ListScheduleBottomUp()
638 NotReady.clear(); in ListScheduleBottomUp()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DPostRASchedulerList.cpp546 std::vector<SUnit*> NotReady; in ListScheduleTopDown() local
592 NotReady.push_back(CurSUnit); in ListScheduleTopDown()
611 if (!NotReady.empty()) { in ListScheduleTopDown()
612 AvailableQueue.push_all(NotReady); in ListScheduleTopDown()
613 NotReady.clear(); in ListScheduleTopDown()