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

References

include/llvm/CodeGen/MachinePipeliner.h
  514     FirstCycle = 0;
  524   int getFirstCycle() const { return FirstCycle; }
  527   int getFinalCycle() const { return FirstCycle + InitiationInterval - 1; }
  557     return (it->second - FirstCycle) / InitiationInterval;
  565     return (it->second - FirstCycle) % InitiationInterval;
  570     return (LastCycle - FirstCycle) / InitiationInterval;
lib/CodeGen/MachinePipeliner.cpp
 2301     for (int checkCycle = FirstCycle + ((curCycle - FirstCycle) % II);
 2301     for (int checkCycle = FirstCycle + ((curCycle - FirstCycle) % II);
 2326       if (curCycle < FirstCycle)
 2327         FirstCycle = curCycle;