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

References

lib/Target/ARM/ARMBaseInstrInfo.cpp
 2378     unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
 2559     unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
lib/Target/ARM/AsmParser/ARMAsmParser.cpp
 8298         ARM_AM::rotr32(Enc & 0xFF, (Enc & 0xF00) >> 7)));
lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
  142     if ((rotr32(Imm, RotAmt) & ~255U) == 0)
  150       if ((rotr32(Imm, RotAmt2) & ~255U) == 0)
  171     if (rotr32(~255U, RotAmt) & Arg)
  182     V = rotr32(~255U, getSOImmValRotate(V)) & V;
  187     V = rotr32(~255U, getSOImmValRotate(V)) & V;
  194     return rotr32(255U, getSOImmValRotate(V)) & V;
  201     V = rotr32(~255U, getSOImmValRotate(V)) & V;
  204     assert(V == (rotr32(255U, getSOImmValRotate(V)) & V));
  296     if ((rotr32(0xff000000U, RotAmt) & V) == V)
  297       return (rotr32(V, 24 - RotAmt) & 0x7f) | ((RotAmt + 8) << 7);
  334     V = rotr32 (~255U, getT2SOImmValRotate(V)) & V;
  358     unsigned V = rotr32 (~255, getT2SOImmValRotate(Imm)) & Imm;
lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
 1389   int32_t Rotated = ARM_AM::rotr32(Bits, Rot);
lib/Target/ARM/Thumb2InstrInfo.cpp
  328         ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
  345         ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
  535     unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);