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

/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1472 unsigned DependentLatency; member in struct:__anon2149::GenericScheduler::SchedBoundary
1516 DependentLatency = 0;
1968 unsigned RemLatency = DependentLatency;
2036 // Decrement DependentLatency based on the next cycle.
2037 if ((NextCycle - CurrCycle) > DependentLatency)
2038 DependentLatency = 0;
2040 DependentLatency -= (NextCycle - CurrCycle);
2177 // Update ExpectedLatency and DependentLatency.
2178 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
2179 unsigned &BotLatency = isTop() ? DependentLatency
[all...]

Completed in 54 milliseconds