Home | History | Annotate | Download | only in ARM

Lines Matching refs:ThisVal

225     unsigned ThisVal = NumBytes;
238 if (DestReg == ARM::SP && (ThisVal < ((1 << 7)-1) * 4)) {
239 assert((ThisVal & 3) == 0 && "Stack update is not multiple of 4?");
242 .addReg(BaseReg).addImm(ThisVal/4).setMIFlags(MIFlags));
253 unsigned RotAmt = CountLeadingZeros_32(ThisVal);
254 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
255 NumBytes &= ~ThisVal;
256 assert(ARM_AM::getT2SOImmVal(ThisVal) != -1 &&
264 } else if (ThisVal < 4096) {
270 unsigned RotAmt = CountLeadingZeros_32(ThisVal);
271 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
272 NumBytes &= ~ThisVal;
273 assert(ARM_AM::getT2SOImmVal(ThisVal) != -1 &&
282 .addImm(ThisVal)).setMIFlags(MIFlags);