Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:CurCycle

83   void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
143 void ScheduleDAGList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
144 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
148 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
149 SU->setDepthToAtLeast(CurCycle);
159 unsigned CurCycle = 0;
181 if (PendingQueue[i]->getDepth() == CurCycle) {
188 assert(PendingQueue[i]->getDepth() > CurCycle && "Negative latency?");
195 ++CurCycle;
226 ScheduleNodeTopDown(FoundSUnit, CurCycle);
231 if (FoundSUnit->Latency) // Don't increment CurCycle for pseudo-ops!
232 ++CurCycle;
239 ++CurCycle;
248 ++CurCycle;