Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DMachineScheduler.cpp1204 unsigned CyclicLatency = 0; in computeCyclicCriticalPath() local
1206 CyclicLatency = LiveOutDepth - SU->getDepth(); in computeCyclicCriticalPath()
1210 if (LiveInHeight - LiveOutHeight < CyclicLatency) in computeCyclicCriticalPath()
1211 CyclicLatency = LiveInHeight - LiveOutHeight; in computeCyclicCriticalPath()
1214 CyclicLatency = 0; in computeCyclicCriticalPath()
1217 << SU->NodeNum << ") = " << CyclicLatency << "c\n"); in computeCyclicCriticalPath()
1218 if (CyclicLatency > MaxCyclicLatency) in computeCyclicCriticalPath()
1219 MaxCyclicLatency = CyclicLatency; in computeCyclicCriticalPath()