Lines Matching defs:Picker
1847 static SUnit *popFromQueueImpl(std::vector<SUnit *> &Q, SF &Picker) {
1853 if (Picker(Q[BestIdx], Q[I]))
1863 SUnit *popFromQueue(std::vector<SUnit *> &Q, SF &Picker, ScheduleDAG *DAG) {
1866 reverse_sort<SF> RPicker(Picker);
1871 return popFromQueueImpl(Q, Picker);
1883 SF Picker;
1894 Picker(this) {}
1899 return Picker.HasReadyFilter && Picker.isReady(U, getCurCycle());
1905 SUnit *V = popFromQueue(Queue, Picker, scheduleDAG);
1914 SF DumpPicker = Picker;