Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DMachineScheduler.cpp1373 unsigned CyclicLatency = 0; in computeCyclicCriticalPath() local
1375 CyclicLatency = LiveOutDepth - SU->getDepth(); in computeCyclicCriticalPath()
1379 if (LiveInHeight - LiveOutHeight < CyclicLatency) in computeCyclicCriticalPath()
1380 CyclicLatency = LiveInHeight - LiveOutHeight; in computeCyclicCriticalPath()
1382 CyclicLatency = 0; in computeCyclicCriticalPath()
1385 << SU->NodeNum << ") = " << CyclicLatency << "c\n"); in computeCyclicCriticalPath()
1386 if (CyclicLatency > MaxCyclicLatency) in computeCyclicCriticalPath()
1387 MaxCyclicLatency = CyclicLatency; in computeCyclicCriticalPath()