Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1869 unsigned CyclicLatency = 0; in computeCyclicCriticalPath() local
1871 CyclicLatency = LiveOutDepth - SU->getDepth(); in computeCyclicCriticalPath()
1875 if (LiveInHeight - LiveOutHeight < CyclicLatency) in computeCyclicCriticalPath()
1876 CyclicLatency = LiveInHeight - LiveOutHeight; in computeCyclicCriticalPath()
1878 CyclicLatency = 0; in computeCyclicCriticalPath()
1881 << SU->NodeNum << ") = " << CyclicLatency << "c\n"); in computeCyclicCriticalPath()
1882 if (CyclicLatency > MaxCyclicLatency) in computeCyclicCriticalPath()
1883 MaxCyclicLatency = CyclicLatency; in computeCyclicCriticalPath()