HomeSort by: relevance | last modified time | path
    Searched refs:DependentLatency (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineScheduler.h 648 unsigned DependentLatency;
713 unsigned getDependentLatency() const { return DependentLatency; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineScheduler.cpp 2000 DependentLatency = 0;
2304 // Decrement DependentLatency based on the next cycle.
2305 if ((NextCycle - CurrCycle) > DependentLatency)
2306 DependentLatency = 0;
2308 DependentLatency -= (NextCycle - CurrCycle);
2473 // Update ExpectedLatency and DependentLatency.
2474 unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
2475 unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency;

Completed in 18 milliseconds