Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h880 unsigned DependentLatency; variable
975 unsigned getDependentLatency() const { return DependentLatency; } in getDependentLatency()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2534 DependentLatency = 0; in reset()
2892 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle()
2893 DependentLatency = 0; in bumpCycle()
2895 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle()
3087 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency; in bumpNode()
3088 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency; in bumpNode()