Lines Matching refs:immed_8
988 uint32_t* immed_8, in fits_shifter() argument
995 *immed_8 = imm8; in fits_shifter()
1003 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) { in fits_shifter()
1011 *rotate_imm = *immed_8 = 0; // Not used for movw. in fits_shifter()
1017 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) { in fits_shifter()
1025 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) { in fits_shifter()
1031 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) { in fits_shifter()
1174 uint32_t immed_8; in addrmod1() local
1176 !fits_shifter(x.imm32_, &rotate_imm, &immed_8, &instr)) { in addrmod1()
1191 instr |= I | rotate_imm*B8 | immed_8; in addrmod1()
1864 uint32_t immed_8; in msr() local
1866 !fits_shifter(src.imm32_, &rotate_imm, &immed_8, NULL)) { in msr()
1872 instr = I | rotate_imm*B8 | immed_8; in msr()
3177 uint32_t immed_8 = 0; in PatchShiftImm() local
3178 bool immed_fits = fits_shifter(immed, &rotate_imm, &immed_8, NULL); in PatchShiftImm()
3181 return (instr & ~kOff12Mask) | (rotate_imm << 8) | immed_8; in PatchShiftImm()