Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp854 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height); in updateDepth()
855 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << UseMI); in updateDepth()
905 TBI.CriticalPath = 0; in computeInstrDepths()
922 TBI.CriticalPath = computeCrossBlockCriticalPath(TBI); in computeInstrDepths()
1086 TBI.CriticalPath = 0; in computeInstrHeights()
1161 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Depth); in computeInstrHeights()
1162 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << MI); in computeInstrHeights()
1185 TBI.CriticalPath = std::max(TBI.CriticalPath, in computeInstrHeights()
1187 LLVM_DEBUG(dbgs() << "Critical path: " << TBI.CriticalPath << '\n'); in computeInstrHeights()
1355 OS << ", crit=" << CriticalPath; in print()
[all …]
H A DMachineScheduler.cpp3317 if (CurrZone.getCurrCycle() > Rem.CriticalPath) in shouldReduceLatency()
3327 return RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath; in shouldReduceLatency()
3364 << Rem.CriticalPath << "\n"); in setPolicy()
3772 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath) in checkAcyclicLatency()
3780 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor(); in checkAcyclicLatency()
3800 Rem.CriticalPath = DAG->ExitSU.getDepth(); in registerRoots()
3804 if (SU->getDepth() > Rem.CriticalPath) in registerRoots()
3805 Rem.CriticalPath = SU->getDepth(); in registerRoots()
3807 LLVM_DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n'); in registerRoots()
3809 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n"; in registerRoots()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h244 unsigned CriticalPath; member
311 unsigned getCriticalPath() const { return TBI.CriticalPath; } in getCriticalPath()
H A DMachineScheduler.h598 unsigned CriticalPath; member
612 CriticalPath = 0; in reset()