Lines Matching defs:ThisVal
373 unsigned ThisVal = NumBytes;
389 if ((DestReg == ARM::SP) && (ThisVal < ((1 << 7) - 1) * 4)) {
390 assert((ThisVal & 3) == 0 && "Stack update is not multiple of 4?");
394 .addImm(ThisVal / 4)
400 int ImmIsT2SO = ARM_AM::getT2SOImmVal(ThisVal);
410 } else if (ThisVal < 4096) {
419 unsigned RotAmt = llvm::countl_zero(ThisVal);
420 ThisVal = ThisVal & llvm::rotr<uint32_t>(0xff000000U, RotAmt);
421 NumBytes &= ~ThisVal;
422 assert(ARM_AM::getT2SOImmVal(ThisVal) != -1 &&
429 .addImm(ThisVal)