Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DMachineScheduler.h597 unsigned DependentLatency; variable
661 unsigned getDependentLatency() const { return DependentLatency; } in getDependentLatency()
/external/llvm/lib/CodeGen/
DMachineScheduler.cpp1601 DependentLatency = 0; in reset()
1827 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle()
1828 DependentLatency = 0; in bumpCycle()
1830 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle()
1989 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency; in bumpNode()
1990 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency; in bumpNode()