Searched defs:NextCycle (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp221 void AdvanceToCycle(unsigned NextCycle);
600 void ScheduleDAGRRList::AdvanceToCycle(unsigned NextCycle) { argument
601 if (NextCycle <= CurCycle)
605 AvailableQueue->setCurCycle(NextCycle);
608 CurCycle = NextCycle;
611 for (; CurCycle != NextCycle; ++CurCycle) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp227 void AdvanceToCycle(unsigned NextCycle);
478 void ScheduleDAGRRList::AdvanceToCycle(unsigned NextCycle) { argument
479 if (NextCycle <= CurCycle)
483 AvailableQueue->setCurCycle(NextCycle);
486 CurCycle = NextCycle;
489 for (; CurCycle != NextCycle; ++CurCycle) {
/external/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1984 void SchedBoundary::bumpCycle(unsigned NextCycle) { argument
1987 if (MinReadyCycle > NextCycle)
1988 NextCycle = MinReadyCycle;
1991 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle);
1995 if ((NextCycle - CurrCycle) > DependentLatency)
1998 DependentLatency -= (NextCycle - CurrCycle);
2002 CurrCycle = NextCycle;
2005 for (; CurrCycle != NextCycle; ++CurrCycle) {
2035 countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) { argument
2086 unsigned NextCycle local
[all...]

Completed in 134 milliseconds