Lines Matching full:imm32
981 static bool fits_shifter(uint32_t imm32,
985 // imm32 must be unsigned.
987 uint32_t imm8 = (imm32 << 2*rot) | (imm32 >> (32 - 2*rot));
998 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) {
1003 if (imm32 < 0x10000) {
1005 *instr |= EncodeMovwImmediate(imm32);
1012 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) {
1020 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) {
1026 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) {
3075 bool Assembler::ImmediateFitsAddrMode1Instruction(int32_t imm32) {
3078 return fits_shifter(imm32, &dummy1, &dummy2, NULL);