Home
last modified time | relevance | path

Searched refs:curCycle (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/CodeGen/
DMachinePipeliner.cpp3463 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()
[all …]