Home | History | Annotate | Download | only in Hexagon

Lines Matching refs:Queue

82   std::vector<SUnit*> Queue;
91 // SU is in this queue if it's NodeQueueID is a superset of this ID.
94 bool empty() const { return Queue.empty(); }
96 unsigned size() const { return Queue.size(); }
100 iterator begin() { return Queue.begin(); }
102 iterator end() { return Queue.end(); }
105 return std::find(Queue.begin(), Queue.end(), SU);
109 Queue.push_back(SU);
115 *I = Queue.back();
116 Queue.pop_back();
121 for (unsigned i = 0, e = Queue.size(); i < e; ++i)
122 dbgs() << Queue[i]->NodeNum << " ";
330 /// Represent the type of SchedCandidate found within a single queue.