Home
last modified time | relevance | path

Searched refs:CurrCycle (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp295 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 …]
DHexagonMachineScheduler.h144 unsigned CurrCycle; member
159 CurrCycle(0), IssueCount(0), in VLIWSchedBoundary()
/external/llvm/lib/CodeGen/
DMachineScheduler.cpp1670 CurrCycle = 0; in reset()
1736 if (ReadyCycle > CurrCycle) in getLatencyStallCycles()
1737 return ReadyCycle - CurrCycle; in getLatencyStallCycles()
1785 if (NRCycle > CurrCycle) { in checkHazard()
1855 if (ReadyCycle > CurrCycle) in releaseNode()
1856 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall); in releaseNode()
1865 if ((!IsBuffered && ReadyCycle > CurrCycle) || checkHazard(SU)) in releaseNode()
1896 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle); in bumpCycle()
1900 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle()
1903 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle()
[all …]
/external/llvm/include/llvm/CodeGen/
DMachineScheduler.h593 unsigned CurrCycle; variable
661 unsigned getCurrCycle() const { return CurrCycle; } in getCurrCycle()
677 return std::max(ExpectedLatency, CurrCycle); in getScheduledLatency()
700 return std::max(CurrCycle * SchedModel->getLatencyFactor(), in getExecutedCount()