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

References

lib/Transforms/Scalar/LoopUnswitch.cpp
  303     Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation);
  305     MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount;
  328     MaxSize += (Props.CanBeUnswitchedCount + Props.WasUnswitchedCount) *
  350   return CurrentLoopProperties->CanBeUnswitchedCount > 0;
  364   --OldLoopProps.CanBeUnswitchedCount;
  367   unsigned Quota = OldLoopProps.CanBeUnswitchedCount;
  368   NewLoopProps.CanBeUnswitchedCount = Quota / 2;
  369   OldLoopProps.CanBeUnswitchedCount = Quota - Quota / 2;