Searched refs:CurrCycle (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/Target/Hexagon/ |
D | HexagonMachineScheduler.cpp | 295 if (ReadyCycle > CurrCycle || checkHazard(SU)) in releaseNode() 308 unsigned NextCycle = std::max(CurrCycle + 1, MinReadyCycle); in bumpCycle() 312 CurrCycle = NextCycle; in bumpCycle() 315 for (; CurrCycle != NextCycle; ++CurrCycle) { in bumpCycle() 325 << CurrCycle << '\n'); in bumpCycle() 349 DEBUG(dbgs() << "*** Max instrs at cycle " << CurrCycle << '\n'); in bumpNode() 354 << " at cycle " << CurrCycle << '\n'); in bumpNode() 373 if (ReadyCycle > CurrCycle) in releasePending() 682 << (IsTopNode ? Top.CurrCycle : Bot.CurrCycle) << '\n'; in pickNode() 693 SU->TopReadyCycle = Top.CurrCycle; in schedNode() [all …]
|
D | HexagonMachineScheduler.h | 143 unsigned CurrCycle; member 158 CurrCycle(0), IssueCount(0), in VLIWSchedBoundary()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonMachineScheduler.cpp | 354 if (ReadyCycle > CurrCycle || checkHazard(SU)) in releaseNode() 368 unsigned NextCycle = std::max(CurrCycle + 1, MinReadyCycle); in bumpCycle() 372 CurrCycle = NextCycle; in bumpCycle() 375 for (; CurrCycle != NextCycle; ++CurrCycle) { in bumpCycle() 385 << CurrCycle << '\n'); in bumpCycle() 409 LLVM_DEBUG(dbgs() << "*** Max instrs at cycle " << CurrCycle << '\n'); in bumpNode() 414 << CurrCycle << '\n'); in bumpNode() 433 if (ReadyCycle > CurrCycle) in releasePending() 984 << (IsTopNode ? Top.CurrCycle : Bot.CurrCycle) << " (" in pickNode() 997 SU->TopReadyCycle = Top.CurrCycle; in schedNode() [all …]
|
D | HexagonMachineScheduler.h | 145 unsigned CurrCycle = 0; member 169 CurrCycle = 0; in init() 211 if (CurrCycle >= CriticalPathLength) in isLatencyBound() 214 return CriticalPathLength - CurrCycle <= PathLength; in isLatencyBound()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | MachineScheduler.cpp | 1839 CurrCycle = 0; in reset() 1904 if (ReadyCycle > CurrCycle) in getLatencyStallCycles() 1905 return ReadyCycle - CurrCycle; in getLatencyStallCycles() 1965 if (NRCycle > CurrCycle) { in checkHazard() 2035 if (ReadyCycle > CurrCycle) in releaseNode() 2036 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall); in releaseNode() 2045 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU) || in releaseNode() 2061 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle); in bumpCycle() 2065 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle() 2068 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle() [all …]
|
/external/llvm/lib/CodeGen/ |
D | MachineScheduler.cpp | 1764 CurrCycle = 0; in reset() 1830 if (ReadyCycle > CurrCycle) in getLatencyStallCycles() 1831 return ReadyCycle - CurrCycle; in getLatencyStallCycles() 1879 if (NRCycle > CurrCycle) { in checkHazard() 1949 if (ReadyCycle > CurrCycle) in releaseNode() 1950 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall); in releaseNode() 1959 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU) || in releaseNode() 1991 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle); in bumpCycle() 1995 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle() 1998 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle() [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineScheduler.h | 601 unsigned CurrCycle; variable 669 unsigned getCurrCycle() const { return CurrCycle; } in getCurrCycle() 685 return std::max(ExpectedLatency, CurrCycle); in getScheduledLatency() 708 return std::max(CurrCycle * SchedModel->getLatencyFactor(), in getExecutedCount()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | MachineScheduler.h | 638 unsigned CurrCycle; variable 704 unsigned getCurrCycle() const { return CurrCycle; } in getCurrCycle() 716 return std::max(ExpectedLatency, CurrCycle); in getScheduledLatency() 739 return std::max(CurrCycle * SchedModel->getLatencyFactor(), in getExecutedCount()
|