Searched refs:NextCycle (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp46 void advanceToCycle(unsigned NextCycle);
268 void GCNILPScheduler::advanceToCycle(unsigned NextCycle) { argument
269 if (NextCycle <= CurCycle)
271 CurCycle = NextCycle;
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2298 void SchedBoundary::bumpCycle(unsigned NextCycle) { argument
2302 if (MinReadyCycle > NextCycle)
2303 NextCycle = MinReadyCycle;
2306 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle);
2310 if ((NextCycle - CurrCycle) > DependentLatency)
2313 DependentLatency -= (NextCycle - CurrCycle);
2317 CurrCycle = NextCycle;
2320 for (; CurrCycle != NextCycle; ++CurrCycle) {
2350 unsigned Cycles, unsigned NextCycle) {
2406 unsigned NextCycle local
2349 countResource(const MCSchedClassDesc *SC, unsigned PIdx, unsigned Cycles, unsigned NextCycle) argument
[all...]
H A DVLIWMachineScheduler.cpp393 unsigned NextCycle = std::max(CurrCycle + 1, MinReadyCycle);
397 CurrCycle = NextCycle;
400 for (; CurrCycle != NextCycle; ++CurrCycle) {
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp255 void AdvanceToCycle(unsigned NextCycle);
632 void ScheduleDAGRRList::AdvanceToCycle(unsigned NextCycle) { argument
633 if (NextCycle <= CurCycle)
637 AvailableQueue->setCurCycle(NextCycle);
640 CurCycle = NextCycle;
643 for (; CurCycle != NextCycle; ++CurCycle) {
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h812 void bumpCycle(unsigned NextCycle);

Completed in 185 milliseconds