Lines Matching refs:curCycle
3463 for (int curCycle = StartCycle; curCycle != termCycle; in insert() local
3464 forward ? ++curCycle : --curCycle) { in insert()
3468 for (int checkCycle = FirstCycle + ((curCycle - FirstCycle) % II); in insert()
3485 dbgs() << "\tinsert at cycle " << curCycle << " "; in insert()
3489 ScheduledInstrs[curCycle].push_back(SU); in insert()
3490 InstrToCycle.insert(std::make_pair(SU, curCycle)); in insert()
3491 if (curCycle > LastCycle) in insert()
3492 LastCycle = curCycle; in insert()
3493 if (curCycle < FirstCycle) in insert()
3494 FirstCycle = curCycle; in insert()
3498 dbgs() << "\tfailed to insert at cycle " << curCycle << " "; in insert()