Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DMachineTraceMetrics.cpp803 TBI.CriticalPath = 0; in computeInstrDepths()
820 TBI.CriticalPath = computeCrossBlockCriticalPath(TBI); in computeInstrDepths()
855 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height); in computeInstrDepths()
856 DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << UseMI); in computeInstrDepths()
1022 TBI.CriticalPath = 0; in computeInstrHeights()
1100 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Depth); in computeInstrHeights()
1101 DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << *MI); in computeInstrHeights()
1125 TBI.CriticalPath = std::max(TBI.CriticalPath, in computeInstrHeights()
1127 DEBUG(dbgs() << "Critical path: " << TBI.CriticalPath << '\n'); in computeInstrHeights()
1296 OS << ", crit=" << CriticalPath; in print()
[all …]
DMachineScheduler.cpp2262 if (IsPostRA || (RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath)) { in setPolicy()
2267 << Rem.CriticalPath << "\n"); in setPolicy()
2531 if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath) in checkAcyclicLatency()
2539 unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor(); in checkAcyclicLatency()
2559 Rem.CriticalPath = DAG->ExitSU.getDepth(); in registerRoots()
2564 if ((*I)->getDepth() > Rem.CriticalPath) in registerRoots()
2565 Rem.CriticalPath = (*I)->getDepth(); in registerRoots()
2567 DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n'); in registerRoots()
2569 errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n"; in registerRoots()
3015 Rem.CriticalPath = DAG->ExitSU.getDepth(); in registerRoots()
[all …]
/external/llvm/include/llvm/CodeGen/
DMachineTraceMetrics.h209 unsigned CriticalPath; member
273 unsigned getCriticalPath() const { return TBI.CriticalPath; } in getCriticalPath()
DMachineScheduler.h536 unsigned CriticalPath; member
548 CriticalPath = 0; in reset()