Searched refs:shx (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/target/m68k/ |
H A D | translate.c | 3622 TCGv X, shl, shr, shx, sz, zero; in rotate_x() local 3628 shx = tcg_temp_new(); in rotate_x() 3633 tcg_gen_subi_i32(shx, shift, 1); /* shx = shift - 1 */ in rotate_x() 3636 tcg_gen_movcond_i32(TCG_COND_LT, shx, shx, zero, sz, shx); in rotate_x() 3641 tcg_gen_sub_i32(shx, sz, shift); /* shx = size - shift */ in rotate_x() 3649 tcg_gen_shl_i32(shx, QREG_CC_X, shx); in rotate_x() 3650 tcg_gen_or_i32(reg, reg, shx); in rotate_x()
|