Lines Matching defs:ThisVal
375 unsigned ThisVal = NumBytes;
391 if ((DestReg == ARM::SP) && (ThisVal < ((1 << 7) - 1) * 4)) {
392 assert((ThisVal & 3) == 0 && "Stack update is not multiple of 4?");
396 .addImm(ThisVal / 4)
402 int ImmIsT2SO = ARM_AM::getT2SOImmVal(ThisVal);
412 } else if (ThisVal < 4096) {
421 unsigned RotAmt = llvm::countl_zero(ThisVal);
422 ThisVal = ThisVal & llvm::rotr<uint32_t>(0xff000000U, RotAmt);
423 NumBytes &= ~ThisVal;
424 assert(ARM_AM::getT2SOImmVal(ThisVal) != -1 &&
431 .addImm(ThisVal)