HomeSort by relevance Sort by last modified time
    Searched refs:CurCycle (Results 1 - 20 of 20) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 89 void scheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
154 void ScheduleDAGVLIW::scheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
155 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
159 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
160 SU->setDepthToAtLeast(CurCycle);
170 unsigned CurCycle = 0;
192 if (PendingQueue[i]->getDepth() == CurCycle) {
200 assert(PendingQueue[i]->getDepth() > CurCycle && "Negative latency?");
209 ++CurCycle;
240 scheduleNodeTopDown(FoundSUnit, CurCycle);
    [all...]
ScheduleDAGFast.cpp 100 void ReleasePredecessors(SUnit *SU, unsigned CurCycle);
161 void ScheduleDAGFast::ReleasePredecessors(SUnit *SU, unsigned CurCycle) {
174 LiveRegCycles[I->getReg()] = CurCycle;
183 void ScheduleDAGFast::ScheduleNodeBottomUp(SUnit *SU, unsigned CurCycle) {
184 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
187 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
188 SU->setHeightToAtLeast(CurCycle);
191 ReleasePredecessors(SU, CurCycle);
533 unsigned CurCycle = 0;
536 ReleasePredecessors(&ExitSU, CurCycle);
    [all...]
ScheduleDAGRRList.cpp 130 /// CurCycle - The current scheduler state corresponds to this cycle.
131 unsigned CurCycle;
166 NeedLatency(needlatency), AvailableQueue(availqueue), CurCycle(0),
325 CurCycle = 0;
601 if (NextCycle <= CurCycle)
608 CurCycle = NextCycle;
611 for (; CurCycle != NextCycle; ++CurCycle) {
635 // Bump CurCycle to account for latency. We assume the latency of other
659 AdvanceToCycle(CurCycle + Stalls)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGList.cpp 83 void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
143 void ScheduleDAGList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
144 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
148 assert(CurCycle >= SU->getDepth() && "Node scheduled above its depth!");
149 SU->setDepthToAtLeast(CurCycle);
159 unsigned CurCycle = 0;
181 if (PendingQueue[i]->getDepth() == CurCycle) {
188 assert(PendingQueue[i]->getDepth() > CurCycle && "Negative latency?");
195 ++CurCycle;
226 ScheduleNodeTopDown(FoundSUnit, CurCycle);
    [all...]
ScheduleDAGFast.cpp 94 void ReleasePredecessors(SUnit *SU, unsigned CurCycle);
155 void ScheduleDAGFast::ReleasePredecessors(SUnit *SU, unsigned CurCycle) {
168 LiveRegCycles[I->getReg()] = CurCycle;
177 void ScheduleDAGFast::ScheduleNodeBottomUp(SUnit *SU, unsigned CurCycle) {
178 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
181 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
182 SU->setHeightToAtLeast(CurCycle);
185 ReleasePredecessors(SU, CurCycle);
522 unsigned CurCycle = 0;
525 ReleasePredecessors(&ExitSU, CurCycle);
    [all...]
ScheduleDAGRRList.cpp 144 /// CurCycle - The current scheduler state corresponds to this cycle.
145 unsigned CurCycle;
170 NeedLatency(needlatency), AvailableQueue(availqueue), CurCycle(0),
328 CurCycle = 0;
479 if (NextCycle <= CurCycle)
486 CurCycle = NextCycle;
489 for (; CurCycle != NextCycle; ++CurCycle) {
516 // Bump CurCycle to account for latency. We assume the latency of other
540 AdvanceToCycle(CurCycle + Stalls)
    [all...]
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 193 void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
197 void emitNoop(unsigned CurCycle);
504 void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
505 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
509 assert(CurCycle >= SU->getDepth() &&
511 SU->setDepthToAtLeast(CurCycle);
519 void SchedulePostRATDList::emitNoop(unsigned CurCycle) {
520 DEBUG(dbgs() << "*** Emitting noop in cycle " << CurCycle << '\n');
529 unsigned CurCycle = 0;
562 if (PendingQueue[i]->getDepth() <= CurCycle) {
    [all...]
ScoreboardHazardRecognizer.cpp 45 unsigned CurCycle = 0;
48 unsigned StageDepth = CurCycle + IS->getCycles();
50 CurCycle += IS->getNextCycles();
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
PostRASchedulerList.cpp 172 void ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle);
577 void SchedulePostRATDList::ScheduleNodeTopDown(SUnit *SU, unsigned CurCycle) {
578 DEBUG(dbgs() << "*** Scheduling [" << CurCycle << "]: ");
582 assert(CurCycle >= SU->getDepth() &&
584 SU->setDepthToAtLeast(CurCycle);
594 unsigned CurCycle = 0;
628 if (PendingQueue[i]->getDepth() <= CurCycle) {
667 ScheduleNodeTopDown(FoundSUnit, CurCycle);
671 DEBUG(dbgs() << "*** Max instructions per cycle " << CurCycle << '\n');
673 ++CurCycle;
    [all...]
ScoreboardHazardRecognizer.cpp 55 unsigned CurCycle = 0;
58 unsigned StageDepth = CurCycle + IS->getCycles();
60 CurCycle += IS->getNextCycles();
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ScheduleDAG.h 430 unsigned CurCycle;
434 CurCycle(0), HasReadyFilter(rf) {}
477 CurCycle = Cycle;
481 return CurCycle;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 503 unsigned CurCycle = 0;
551 CurCycle = Cycle;
555 return CurCycle;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 503 unsigned CurCycle = 0;
551 CurCycle = Cycle;
555 return CurCycle;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 503 unsigned CurCycle = 0;
551 CurCycle = Cycle;
555 return CurCycle;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 503 unsigned CurCycle = 0;
551 CurCycle = Cycle;
555 return CurCycle;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 503 unsigned CurCycle = 0;
551 CurCycle = Cycle;
555 return CurCycle;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 503 unsigned CurCycle = 0;
551 CurCycle = Cycle;
555 return CurCycle;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 503 unsigned CurCycle = 0;
551 CurCycle = Cycle;
555 return CurCycle;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAG.h 503 unsigned CurCycle = 0;
551 CurCycle = Cycle;
555 return CurCycle;
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 521 unsigned CurCycle;
525 CurCycle(0), HasReadyFilter(rf) {}
568 CurCycle = Cycle;
572 return CurCycle;

Completed in 1116 milliseconds