Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DScheduleDAGList.cpp175 std::vector<SUnit*> NotReady; in ListScheduleTopDown() local
215 NotReady.push_back(CurSUnit); in ListScheduleTopDown()
219 if (!NotReady.empty()) { in ListScheduleTopDown()
220 AvailableQueue->push_all(NotReady); in ListScheduleTopDown()
221 NotReady.clear(); in ListScheduleTopDown()
DScheduleDAGFast.cpp537 SmallVector<SUnit*, 4> NotReady; in ListScheduleBottomUp() local
552 NotReady.push_back(CurSU); in ListScheduleBottomUp()
564 SUnit *TrySU = NotReady[0]; in ListScheduleBottomUp()
616 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) { in ListScheduleBottomUp()
617 NotReady[i]->isPending = false; in ListScheduleBottomUp()
619 if (NotReady[i]->isAvailable) in ListScheduleBottomUp()
620 AvailableQueue.push(NotReady[i]); in ListScheduleBottomUp()
622 NotReady.clear(); in ListScheduleBottomUp()
/external/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGVLIW.cpp186 std::vector<SUnit*> NotReady; in listScheduleTopDown() local
229 NotReady.push_back(CurSUnit); in listScheduleTopDown()
233 if (!NotReady.empty()) { in listScheduleTopDown()
234 AvailableQueue->push_all(NotReady); in listScheduleTopDown()
235 NotReady.clear(); in listScheduleTopDown()
DScheduleDAGFast.cpp548 SmallVector<SUnit*, 4> NotReady; in ListScheduleBottomUp() local
563 NotReady.push_back(CurSU); in ListScheduleBottomUp()
575 SUnit *TrySU = NotReady[0]; in ListScheduleBottomUp()
623 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) { in ListScheduleBottomUp()
624 NotReady[i]->isPending = false; in ListScheduleBottomUp()
626 if (NotReady[i]->isAvailable) in ListScheduleBottomUp()
627 AvailableQueue.push(NotReady[i]); in ListScheduleBottomUp()
629 NotReady.clear(); in ListScheduleBottomUp()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
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()
DScheduleDAGFast.cpp541 SmallVector<SUnit*, 4> NotReady; in ListScheduleBottomUp() local
556 NotReady.push_back(CurSU); in ListScheduleBottomUp()
568 SUnit *TrySU = NotReady[0]; in ListScheduleBottomUp()
616 for (unsigned i = 0, e = NotReady.size(); i != e; ++i) { in ListScheduleBottomUp()
617 NotReady[i]->isPending = false; in ListScheduleBottomUp()
619 if (NotReady[i]->isAvailable) in ListScheduleBottomUp()
620 AvailableQueue.push(NotReady[i]); in ListScheduleBottomUp()
622 NotReady.clear(); in ListScheduleBottomUp()
/external/llvm/lib/CodeGen/
DPostRASchedulerList.cpp555 std::vector<SUnit*> NotReady; in ListScheduleTopDown() local
600 NotReady.push_back(CurSUnit); in ListScheduleTopDown()
618 if (!NotReady.empty()) { in ListScheduleTopDown()
619 AvailableQueue.push_all(NotReady); in ListScheduleTopDown()
620 NotReady.clear(); in ListScheduleTopDown()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DPostRASchedulerList.cpp554 std::vector<SUnit*> NotReady; in ListScheduleTopDown() local
600 NotReady.push_back(CurSUnit); in ListScheduleTopDown()
619 if (!NotReady.empty()) { in ListScheduleTopDown()
620 AvailableQueue.push_all(NotReady); in ListScheduleTopDown()
621 NotReady.clear(); in ListScheduleTopDown()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DPostRASchedulerList.cpp621 std::vector<SUnit*> NotReady; in ListScheduleTopDown() local
655 NotReady.push_back(CurSUnit); in ListScheduleTopDown()
659 if (!NotReady.empty()) { in ListScheduleTopDown()
660 AvailableQueue.push_all(NotReady); in ListScheduleTopDown()
661 NotReady.clear(); in ListScheduleTopDown()
/external/tensorflow/tensorflow/stream_executor/rocm/
Drocm_driver.cc92 OSTREAM_ROCM_ERROR(NotReady) in ToString()