Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp182 std::vector<SUnit*> NotReady; in listScheduleTopDown() local
225 NotReady.push_back(CurSUnit); in listScheduleTopDown()
229 if (!NotReady.empty()) { in listScheduleTopDown()
230 AvailableQueue->push_all(NotReady); in listScheduleTopDown()
231 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DPostRASchedulerList.cpp548 std::vector<SUnit*> NotReady; in ListScheduleTopDown() local
594 NotReady.push_back(CurSUnit); in ListScheduleTopDown()
613 if (!NotReady.empty()) { in ListScheduleTopDown()
614 AvailableQueue.push_all(NotReady); in ListScheduleTopDown()
615 NotReady.clear(); in ListScheduleTopDown()