Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:CurCycle

94   void ReleasePredecessors(SUnit *SU, unsigned CurCycle);
155 void ScheduleDAGFast::ReleasePredecessors(SUnit *SU, unsigned CurCycle) {
168 LiveRegCycles[I->getReg()] = CurCycle;
177 void ScheduleDAGFast::ScheduleNodeBottomUp(SUnit *SU, unsigned CurCycle) {
178 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
181 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
182 SU->setHeightToAtLeast(CurCycle);
185 ReleasePredecessors(SU, CurCycle);
522 unsigned CurCycle = 0;
525 ReleasePredecessors(&ExitSU, CurCycle);
625 ScheduleNodeBottomUp(CurSU, CurCycle);
626 ++CurCycle;