Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h648 unsigned DependentLatency; variable
713 unsigned getDependentLatency() const { return DependentLatency; } in getDependentLatency()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2000 DependentLatency = 0; in reset()
2305 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle()
2306 DependentLatency = 0; in bumpCycle()
2308 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle()
2474 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency; in bumpNode()
2475 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency; in bumpNode()