Lines Matching full:picker
1625 static SUnit *popFromQueueImpl(std::vector<SUnit*> &Q, SF &Picker) {
1629 if (Picker(*Best, *I))
1639 SUnit *popFromQueue(std::vector<SUnit*> &Q, SF &Picker, ScheduleDAG *DAG) {
1642 reverse_sort<SF> RPicker(Picker);
1647 return popFromQueueImpl(Q, Picker);
1652 SF Picker;
1661 Picker(this) {}
1666 return Picker.HasReadyFilter && Picker.isReady(U, getCurCycle());
1672 SUnit *V = popFromQueue(Queue, Picker, scheduleDAG);
1680 SF DumpPicker = Picker;