Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DMachineTraceMetrics.cpp807 TBI.CriticalPath = 0; in computeInstrDepths()
824 TBI.CriticalPath = computeCrossBlockCriticalPath(TBI); in computeInstrDepths()
859 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height); in computeInstrDepths()
860 DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << UseMI); in computeInstrDepths()
1026 TBI.CriticalPath = 0; in computeInstrHeights()
1104 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Depth); in computeInstrHeights()
1105 DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << MI); in computeInstrHeights()
1129 TBI.CriticalPath = std::max(TBI.CriticalPath, in computeInstrHeights()
1131 DEBUG(dbgs() << "Critical path: " << TBI.CriticalPath << '\n'); in computeInstrHeights()
1299 OS << ", crit=" << CriticalPath; in print()
[all …]
DMachineScheduler.cpp2359 if (IsPostRA || (RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath)) { in setPolicy()
2364 << Rem.CriticalPath << "\n"); in setPolicy()
2630 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath) in checkAcyclicLatency()
2638 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor(); in checkAcyclicLatency()
2658 Rem.CriticalPath = DAG->ExitSU.getDepth(); in registerRoots()
2663 if ((*I)->getDepth() > Rem.CriticalPath) in registerRoots()
2664 Rem.CriticalPath = (*I)->getDepth(); in registerRoots()
2666 DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n'); in registerRoots()
2668 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n"; in registerRoots()
3156 Rem.CriticalPath = DAG->ExitSU.getDepth(); in registerRoots()
[all …]
/external/llvm/include/llvm/CodeGen/
DMachineTraceMetrics.h210 unsigned CriticalPath; member
274 unsigned getCriticalPath() const { return TBI.CriticalPath; } in getCriticalPath()
DMachineScheduler.h544 unsigned CriticalPath; member
556 CriticalPath = 0; in reset()