Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DMachineScheduler.h598 unsigned DependentLatency; variable
662 unsigned getDependentLatency() const { return DependentLatency; } in getDependentLatency()
/external/llvm/lib/CodeGen/
DMachineScheduler.cpp1579 DependentLatency = 0; in reset()
1805 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle()
1806 DependentLatency = 0; in bumpCycle()
1808 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle()
1967 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency; in bumpNode()
1968 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency; in bumpNode()