Lines Matching defs:ReadyList
333 void populateReadyList(SmallVectorImpl<std::pair<int, int>> &ReadyList, T I,
584 SmallVectorImpl<std::pair<int, int>> &ReadyList, T I, T E) {
599 ReadyList.push_back(std::pair(*I, MissPenalty));
604 ReadyList.push_back(std::pair(*I, TempCost));
607 ReadyList.push_back(std::pair(*I, -1));
611 std::sort(ReadyList.begin(), ReadyList.end(),
617 assert(ReadyList.size() == CurrSU.second.size());
635 SmallVector<std::pair<int, int>, 4> ReadyList;
637 IsBottomUp ? populateReadyList(ReadyList, CurrSU.second.rbegin(),
639 : populateReadyList(ReadyList, CurrSU.second.begin(),
642 auto I = ReadyList.begin();
643 auto E = ReadyList.end();