reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/CodeGen/MachineScheduler.h
  706   unsigned getDependentLatency() const { return DependentLatency; }
lib/CodeGen/MachineScheduler.cpp
 1868   DependentLatency = 0;
 2125   if ((NextCycle - CurrCycle) > DependentLatency)
 2126     DependentLatency = 0;
 2128     DependentLatency -= (NextCycle - CurrCycle);
 2293   unsigned &TopLatency = isTop() ? ExpectedLatency : DependentLatency;
 2294   unsigned &BotLatency = isTop() ? DependentLatency : ExpectedLatency;