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

References

lib/Target/SystemZ/SystemZHazardRecognizer.cpp
   62   unsigned Idx = CurrGroupSize;
   82   CurrGroupSize = 0;
  100     return (CurrGroupSize == 0);
  103   assert ((CurrGroupSize < 2 || !CurrGroupHas4RegOps) &&
  105   if (CurrGroupSize == 2 && has4RegOps(SU->getInstr()))
  111   assert ((getNumDecoderSlots(SU) <= 1) && (CurrGroupSize < 3) &&
  135   if (CurrGroupSize == 0)
  141   int NumGroups = ((CurrGroupSize > 3) ? (CurrGroupSize / 3) : 1);
  141   int NumGroups = ((CurrGroupSize > 3) ? (CurrGroupSize / 3) : 1);
  142   assert((CurrGroupSize <= 3 || CurrGroupSize % 3 == 0) &&
  142   assert((CurrGroupSize <= 3 || CurrGroupSize % 3 == 0) &&
  146   CurrGroupSize = 0;
  216     dbgs() << " (" << CurrGroupSize << " decoder slot"
  217            << (CurrGroupSize > 1 ? "s":"")
  328   CurrGroupSize += getNumDecoderSlots(SU);
  331   assert((CurrGroupSize <= GroupLim || CurrGroupSize == getNumDecoderSlots(SU))
  331   assert((CurrGroupSize <= GroupLim || CurrGroupSize == getNumDecoderSlots(SU))
  336   if (CurrGroupSize >= GroupLim || SC->EndGroup)
  348     if (CurrGroupSize)
  349       return 3 - CurrGroupSize;
  357       (CurrGroupSize + getNumDecoderSlots(SU));
  364   if (CurrGroupSize == 2 && has4RegOps(SU->getInstr()))
  434   unsigned GroupSizeBeforeEmit = CurrGroupSize;
  443   if (TakenBranch && CurrGroupSize > 0)
  453   CurrGroupSize = Incoming->CurrGroupSize;
  453   CurrGroupSize = Incoming->CurrGroupSize;
lib/Target/SystemZ/SystemZHazardRecognizer.h
   94   unsigned getCurrGroupSize() {return CurrGroupSize;};