Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineScheduler.h644 unsigned DependentLatency; variable
706 unsigned getDependentLatency() const { return DependentLatency; } in getDependentLatency()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineScheduler.cpp1866 DependentLatency = 0; in reset()
2132 if ((NextCycle - CurrCycle) > DependentLatency) in bumpCycle()
2133 DependentLatency = 0; in bumpCycle()
2135 DependentLatency -= (NextCycle - CurrCycle); in bumpCycle()
2300 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency; in bumpNode()
2301 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency; in bumpNode()