Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DMachineScheduler.cpp1146 unsigned CyclicLatency = 0; in computeCyclicCriticalPath() local
1148 CyclicLatency = LiveOutDepth - UI->SU->getDepth(); in computeCyclicCriticalPath()
1152 if (LiveInHeight - LiveOutHeight < CyclicLatency) in computeCyclicCriticalPath()
1153 CyclicLatency = LiveInHeight - LiveOutHeight; in computeCyclicCriticalPath()
1156 CyclicLatency = 0; in computeCyclicCriticalPath()
1159 << UI->SU->NodeNum << ") = " << CyclicLatency << "c\n"); in computeCyclicCriticalPath()
1160 if (CyclicLatency > MaxCyclicLatency) in computeCyclicCriticalPath()
1161 MaxCyclicLatency = CyclicLatency; in computeCyclicCriticalPath()