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

/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp88 void scheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
153 void ScheduleDAGVLIW::scheduleNodeTopDown(SUnit *SU, unsigned CurCycle) { argument
154 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
158 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
159 SU->setDepthToAtLeast(CurCycle);
169 unsigned CurCycle = 0; local
191 if (PendingQueue[i]->getDepth() == CurCycle) {
199 assert(PendingQueue[i]->getDepth() > CurCycle && "Negative latency?");
208 ++CurCycle;
239 scheduleNodeTopDown(FoundSUnit, CurCycle);
[all...]
H A DScheduleDAGFast.cpp99 void ReleasePredecessors(SUnit *SU, unsigned CurCycle);
160 void ScheduleDAGFast::ReleasePredecessors(SUnit *SU, unsigned CurCycle) { argument
173 LiveRegCycles[I->getReg()] = CurCycle;
182 void ScheduleDAGFast::ScheduleNodeBottomUp(SUnit *SU, unsigned CurCycle) { argument
183 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
186 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
187 SU->setHeightToAtLeast(CurCycle);
190 ReleasePredecessors(SU, CurCycle);
527 unsigned CurCycle = 0; local
530 ReleasePredecessors(&ExitSU, CurCycle);
[all...]
H A DScheduleDAGRRList.cpp129 /// CurCycle - The current scheduler state corresponds to this cycle.
130 unsigned CurCycle; member in class:__anon2188::ScheduleDAGRRList
165 NeedLatency(needlatency), AvailableQueue(availqueue), CurCycle(0),
324 CurCycle = 0;
600 if (NextCycle <= CurCycle)
607 CurCycle = NextCycle;
610 for (; CurCycle != NextCycle; ++CurCycle) {
634 // Bump CurCycle to account for latency. We assume the latency of other
658 AdvanceToCycle(CurCycle
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DPostRASchedulerList.cpp185 void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
619 void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) { argument
620 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
624 assert(CurCycle >= SU->getDepth() &&
626 SU->setDepthToAtLeast(CurCycle);
636 unsigned CurCycle = 0; local
669 if (PendingQueue[i]->getDepth() <= CurCycle) {
708 ScheduleNodeTopDown(FoundSUnit, CurCycle);
712 DEBUG(dbgs() << "*** Max instructions per cycle " << CurCycle << '\n');
714 ++CurCycle;
[all...]
H A DScoreboardHazardRecognizer.cpp53 unsigned CurCycle = 0; local
56 unsigned StageDepth = CurCycle + IS->getCycles();
58 CurCycle += IS->getNextCycles();
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h483 unsigned CurCycle; member in class:llvm::SUnit::SchedulingPriorityQueue
487 CurCycle(0), HasReadyFilter(rf) {}
530 CurCycle = Cycle;
534 return CurCycle;

Completed in 182 milliseconds