Searched refs:CurCycle (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp87 void scheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
151 void ScheduleDAGVLIW::scheduleNodeTopDown(SUnit *SU, unsigned CurCycle) { argument
152 LLVM_DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
156 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
157 SU->setDepthToAtLeast(CurCycle);
167 unsigned CurCycle = 0; local
189 if (PendingQueue[i]->getDepth() == CurCycle) {
197 assert(PendingQueue[i]->getDepth() > CurCycle && "Negative latency?");
206 ++CurCycle;
237 scheduleNodeTopDown(FoundSUnit, CurCycle);
[all...]
H A DScheduleDAGFast.cpp100 void ReleasePredecessors(SUnit *SU, unsigned CurCycle);
160 void ScheduleDAGFast::ReleasePredecessors(SUnit *SU, unsigned CurCycle) { argument
172 LiveRegCycles[Pred.getReg()] = CurCycle;
181 void ScheduleDAGFast::ScheduleNodeBottomUp(SUnit *SU, unsigned CurCycle) { argument
182 LLVM_DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
185 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
186 SU->setHeightToAtLeast(CurCycle);
189 ReleasePredecessors(SU, CurCycle);
525 unsigned CurCycle = 0; local
528 ReleasePredecessors(&ExitSU, CurCycle);
[all...]
H A DScheduleDAGRRList.cpp155 /// CurCycle - The current scheduler state corresponds to this cycle.
156 unsigned CurCycle = 0; member in class:__anon4653::ScheduleDAGRRList
358 CurCycle = 0;
630 if (NextCycle <= CurCycle)
637 CurCycle = NextCycle;
640 for (; CurCycle != NextCycle; ++CurCycle) {
664 // Bump CurCycle to account for latency. We assume the latency of other
688 AdvanceToCycle(CurCycle + Stalls);
692 /// Does not update CurCycle
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DPostRASchedulerList.cpp193 void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
197 void emitNoop(unsigned CurCycle);
499 void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) { argument
500 LLVM_DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
504 assert(CurCycle >= SU->getDepth() &&
506 SU->setDepthToAtLeast(CurCycle);
514 void SchedulePostRATDList::emitNoop(unsigned CurCycle) { argument
515 LLVM_DEBUG(dbgs() << "*** Emitting noop in cycle " << CurCycle << '\n');
524 unsigned CurCycle = 0; local
557 if (PendingQueue[i]->getDepth() <= CurCycle) {
[all...]
H A DScoreboardHazardRecognizer.cpp47 unsigned CurCycle = 0; local
50 unsigned StageDepth = CurCycle + IS->getCycles();
52 CurCycle += IS->getNextCycles();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp38 /// CurCycle - The current scheduler state corresponds to this cycle.
39 unsigned CurCycle = 0; member in class:__anon4986::GCNILPScheduler
260 if (C.SU->getHeight() <= CurCycle) {
270 if (NextCycle <= CurCycle)
272 CurCycle = NextCycle;
322 advanceToCycle(std::max(CurCycle + 1, EarliestSU->getHeight()));
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h499 unsigned CurCycle = 0; member in class:llvm::SUnit::SchedulingPriorityQueue
547 CurCycle = Cycle;
551 return CurCycle;

Completed in 119 milliseconds