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.h872 unsigned DependentLatency; variable
967 unsigned getDependentLatency() const { return DependentLatency; } in getDependentLatency()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2261 DependentLatency = 0; in reset()
2599 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle()
2600 DependentLatency = 0; in bumpCycle()
2602 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle()
2794 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency; in bumpNode()
2795 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency; in bumpNode()