Lines Matching refs:ReadyList
338 void populateReadyList(SmallVectorImpl<std::pair<int, int>> &ReadyList, T I,
589 SmallVectorImpl<std::pair<int, int>> &ReadyList, T I, T E) { in populateReadyList() argument
604 ReadyList.push_back(std::pair(*I, MissPenalty)); in populateReadyList()
609 ReadyList.push_back(std::pair(*I, TempCost)); in populateReadyList()
612 ReadyList.push_back(std::pair(*I, -1)); in populateReadyList()
616 std::sort(ReadyList.begin(), ReadyList.end(), in populateReadyList()
622 assert(ReadyList.size() == CurrSU.second.size()); in populateReadyList()
640 SmallVector<std::pair<int, int>, 4> ReadyList; in solveExact() local
642 IsBottomUp ? populateReadyList(ReadyList, CurrSU.second.rbegin(), in solveExact()
644 : populateReadyList(ReadyList, CurrSU.second.begin(), in solveExact()
647 auto I = ReadyList.begin(); in solveExact()
648 auto E = ReadyList.end(); in solveExact()