Lines Matching refs:immed_8
1099 uint32_t* immed_8, in fits_shifter() argument
1106 *immed_8 = imm8; in fits_shifter()
1114 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) { in fits_shifter()
1122 *rotate_imm = *immed_8 = 0; // Not used for movw. in fits_shifter()
1128 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) { in fits_shifter()
1136 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) { in fits_shifter()
1142 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) { in fits_shifter()
1288 uint32_t immed_8; in addrmod1() local
1290 !fits_shifter(x.imm32_, &rotate_imm, &immed_8, &instr)) { in addrmod1()
1305 instr |= I | rotate_imm*B8 | immed_8; in addrmod1()
2055 uint32_t immed_8; in msr() local
2057 !fits_shifter(src.imm32_, &rotate_imm, &immed_8, NULL)) { in msr()
2063 instr = I | rotate_imm*B8 | immed_8; in msr()
4737 uint32_t immed_8 = 0; in PatchShiftImm() local
4738 bool immed_fits = fits_shifter(immed, &rotate_imm, &immed_8, NULL); in PatchShiftImm()
4741 return (instr & ~kOff12Mask) | (rotate_imm << 8) | immed_8; in PatchShiftImm()