HomeSort by: relevance | last modified time | path
    Searched refs:NotReady (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 182 std::vector<SUnit*> NotReady;
225 NotReady.push_back(CurSUnit);
229 if (!NotReady.empty()) {
230 AvailableQueue->push_all(NotReady);
231 NotReady.clear();
ScheduleDAGFast.cpp 540 SmallVector<SUnit*, 4> NotReady;
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();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
PostRASchedulerList.cpp 548 std::vector<SUnit*> NotReady;
594 NotReady.push_back(CurSUnit);
613 if (!NotReady.empty()) {
614 AvailableQueue.push_all(NotReady);
615 NotReady.clear();

Completed in 17 milliseconds