Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:RotAmt

146     unsigned RotAmt = TZ & ~1;
149 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
150 return (32-RotAmt)&31; // HW rotates right, not left.
164 return (32-RotAmt)&31; // HW rotates right, not left.
175 unsigned RotAmt = getSOImmValRotate(Arg);
178 if (rotr32(~255U, RotAmt) & Arg)
182 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
298 unsigned RotAmt = CountLeadingZeros_32(V);
299 if (RotAmt >= 24)
303 if ((rotr32(0xff000000U, RotAmt) & V) == V)
304 return (rotr32(V, 24 - RotAmt) & 0x7f) | ((RotAmt + 8) << 7);
330 unsigned RotAmt = CountTrailingZeros_32(V);
331 return (32 - RotAmt) & 31;