Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:rotr32

83   /// rotr32 - Rotate a 32-bit unsigned value right by a specified # bits.
85 static inline unsigned rotr32(unsigned Val, unsigned Amt) {
149 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
157 if ((rotr32(Imm, RotAmt2) & ~255U) == 0)
178 if (rotr32(~255U, RotAmt) & Arg)
189 V = rotr32(~255U, getSOImmValRotate(V)) & V;
194 V = rotr32(~255U, getSOImmValRotate(V)) & V;
201 return rotr32(255U, getSOImmValRotate(V)) & V;
208 V = rotr32(~255U, getSOImmValRotate(V)) & V;
211 assert(V == (rotr32(255U, getSOImmValRotate(V)) & V));
303 if ((rotr32(0xff000000U, RotAmt) & V) == V)
304 return (rotr32(V, 24 - RotAmt) & 0x7f) | ((RotAmt + 8) << 7);
341 V = rotr32 (~255U, getT2SOImmValRotate(V)) & V;
365 unsigned V = rotr32 (~255, getT2SOImmValRotate(Imm)) & Imm;