Lines Matching refs:immed_8
1001 uint32_t* immed_8, in fits_shifter() argument
1008 *immed_8 = imm8; in fits_shifter()
1016 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) { in fits_shifter()
1024 *rotate_imm = *immed_8 = 0; // Not used for movw. in fits_shifter()
1030 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) { in fits_shifter()
1038 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) { in fits_shifter()
1044 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) { in fits_shifter()
1191 uint32_t immed_8; in addrmod1() local
1193 !fits_shifter(x.imm32_, &rotate_imm, &immed_8, &instr)) { in addrmod1()
1208 instr |= I | rotate_imm*B8 | immed_8; in addrmod1()
1964 uint32_t immed_8; in msr() local
1966 !fits_shifter(src.imm32_, &rotate_imm, &immed_8, NULL)) { in msr()
1972 instr = I | rotate_imm*B8 | immed_8; in msr()
3599 uint32_t immed_8 = 0; in PatchShiftImm() local
3600 bool immed_fits = fits_shifter(immed, &rotate_imm, &immed_8, NULL); in PatchShiftImm()
3603 return (instr & ~kOff12Mask) | (rotate_imm << 8) | immed_8; in PatchShiftImm()