Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp814 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height); in updateDepth()
815 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << UseMI); in updateDepth()
865 TBI.CriticalPath = 0; in computeInstrDepths()
882 TBI.CriticalPath = computeCrossBlockCriticalPath(TBI); in computeInstrDepths()
1050 TBI.CriticalPath = 0; in computeInstrHeights()
1128 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Depth); in computeInstrHeights()
1129 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << MI); in computeInstrHeights()
1153 TBI.CriticalPath = std::max(TBI.CriticalPath, in computeInstrHeights()
1155 LLVM_DEBUG(dbgs() << "Critical path: " << TBI.CriticalPath << '\n'); in computeInstrHeights()
1323 OS << ", crit=" << CriticalPath; in print()
[all …]
H A DMachineScheduler.cpp2470 if (CurrZone.getCurrCycle() > Rem.CriticalPath) in shouldReduceLatency()
2480 return RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath; in shouldReduceLatency()
2517 << Rem.CriticalPath << "\n"); in setPolicy()
2812 Rem.CriticalPath = DAG->ExitSU.getDepth(); in registerRoots()
2816 if (SU->getDepth() > Rem.CriticalPath) in registerRoots()
2817 Rem.CriticalPath = SU->getDepth(); in registerRoots()
2821 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n"; in registerRoots()
3315 Rem.CriticalPath = DAG->ExitSU.getDepth(); in registerRoots()
3319 if (SU->getDepth() > Rem.CriticalPath) in registerRoots()
3320 Rem.CriticalPath = SU->getDepth(); in registerRoots()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h229 unsigned CriticalPath; member
294 unsigned getCriticalPath() const { return TBI.CriticalPath; } in getCriticalPath()
H A DMachineScheduler.h592 unsigned CriticalPath; member
606 CriticalPath = 0; in reset()