Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp813 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height); in updateDepth()
814 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << UseMI); in updateDepth()
864 TBI.CriticalPath = 0; in computeInstrDepths()
881 TBI.CriticalPath = computeCrossBlockCriticalPath(TBI); in computeInstrDepths()
1049 TBI.CriticalPath = 0; in computeInstrHeights()
1127 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Depth); in computeInstrHeights()
1128 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << MI); in computeInstrHeights()
1152 TBI.CriticalPath = std::max(TBI.CriticalPath, in computeInstrHeights()
1154 LLVM_DEBUG(dbgs() << "Critical path: " << TBI.CriticalPath << '\n'); in computeInstrHeights()
1322 OS << ", crit=" << CriticalPath; in print()
[all …]
H A DMachineScheduler.cpp2671 if (CurrZone.getCurrCycle() > Rem.CriticalPath) in shouldReduceLatency()
2681 return RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath; in shouldReduceLatency()
2718 << Rem.CriticalPath << "\n"); in setPolicy()
3028 Rem.CriticalPath = DAG->ExitSU.getDepth(); in registerRoots()
3032 if (SU->getDepth() > Rem.CriticalPath) in registerRoots()
3033 Rem.CriticalPath = SU->getDepth(); in registerRoots()
3037 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n"; in registerRoots()
3532 Rem.CriticalPath = DAG->ExitSU.getDepth(); in registerRoots()
3536 if (SU->getDepth() > Rem.CriticalPath) in registerRoots()
3537 Rem.CriticalPath = SU->getDepth(); in registerRoots()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h228 unsigned CriticalPath; member
293 unsigned getCriticalPath() const { return TBI.CriticalPath; } in getCriticalPath()
H A DMachineScheduler.h584 unsigned CriticalPath; member
598 CriticalPath = 0; in reset()