Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:DependentLatency

1674   DependentLatency = 0;
1899 // Decrement DependentLatency based on the next cycle.
1900 if ((NextCycle - CurrCycle) > DependentLatency)
1901 DependentLatency = 0;
1903 DependentLatency -= (NextCycle - CurrCycle);
2061 // Update ExpectedLatency and DependentLatency.
2062 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
2063 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency;