Lines Matching refs:CurrCycle
2257 CurrCycle = 0; in reset()
2343 if (ReadyCycle > CurrCycle) in getLatencyStallCycles()
2344 return ReadyCycle - CurrCycle; in getLatencyStallCycles()
2356 CurrCycle, AcquireAtCycle, ReleaseAtCycle); in getNextResourceCycleByInstance()
2359 CurrCycle, AcquireAtCycle, ReleaseAtCycle); in getNextResourceCycleByInstance()
2365 return CurrCycle; in getNextResourceCycleByInstance()
2368 NextUnreserved = std::max(CurrCycle, NextUnreserved + ReleaseAtCycle); in getNextResourceCycleByInstance()
2380 LLVM_DEBUG(dbgs() << " Resource booking (@" << CurrCycle << "c): \n"); in getNextResourceCycle()
2382 LLVM_DEBUG(dbgs() << " getNextResourceCycle (@" << CurrCycle << "c): \n"); in getNextResourceCycle()
2489 if (NRCycle > CurrCycle) { in checkHazard()
2561 if (ReadyCycle > CurrCycle) in releaseNode()
2562 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall); in releaseNode()
2571 bool HazardDetected = (!IsBuffered && ReadyCycle > CurrCycle) || in releaseNode()
2595 unsigned DecMOps = SchedModel->getIssueWidth() * (NextCycle - CurrCycle); in bumpCycle()
2599 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle()
2602 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle()
2606 CurrCycle = NextCycle; in bumpCycle()
2609 for (; CurrCycle != NextCycle; ++CurrCycle) { in bumpCycle()
2621 LLVM_DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() in bumpCycle()
2668 if (NextAvailable > CurrCycle) { in countResource()
2701 unsigned NextCycle = CurrCycle; in bumpNode()
2704 assert(ReadyCycle <= CurrCycle && "Broken PendingQueue"); in bumpNode()
2807 if (NextCycle > CurrCycle) in bumpNode()
2835 << CurrCycle << '\n'); in bumpNode()
2900 bumpCycle(CurrCycle + 1); in pickOnlyChoice()
2954 dbgs() << Available.getName() << " @" << CurrCycle << "c\n" in dumpScheduledState()
4466 unsigned CurrCycle, unsigned AcquireAtCycle, unsigned ReleaseAtCycle, in getFirstAvailableAt() argument
4476 return CurrCycle; in getFirstAvailableAt()
4478 unsigned RetCycle = CurrCycle; in getFirstAvailableAt()