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

References

lib/Target/Hexagon/HexagonHardwareLoops.cpp
  782     if (Dist == 0)
  785     bool Exact = (Dist % IVBump) == 0;
  790       if ((Dist < 0) ^ (IVBump < 0))
  797       Dist = Dist > 0 ? Dist+1 : Dist-1;
  797       Dist = Dist > 0 ? Dist+1 : Dist-1;
  797       Dist = Dist > 0 ? Dist+1 : Dist-1;
  797       Dist = Dist > 0 ? Dist+1 : Dist-1;
  803     if ((CmpLess && Dist < 0) || (CmpGreater && Dist > 0))
  803     if ((CmpLess && Dist < 0) || (CmpGreater && Dist > 0))
  807     int64_t Dist1 = (IVBump > 0) ? (Dist +  (IVBump - 1)) / IVBump
  808                                  : (-Dist + (-IVBump - 1)) / (-IVBump);