Home
last modified time | relevance | path

Searched refs:op1_16 (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/target/i386/hvf/
H A Dx86_emu.c1218 uint16_t op1_16 = decode->op[0].val; in exec_rcl() local
1226 res = (op1_16 << 1) | get_CF(env); in exec_rcl()
1228 res = (get_CF(env) << 15) | (op1_16 >> 1); in exec_rcl()
1230 res = (op1_16 << count) | (get_CF(env) << (count - 1)) | in exec_rcl()
1231 (op1_16 >> (17 - count)); in exec_rcl()
1236 cf = (op1_16 >> (16 - count)) & 0x1; in exec_rcl()
1298 uint16_t op1_16 = decode->op[0].val; in exec_rcr() local
1305 res = (op1_16 >> count) | (get_CF(env) << (16 - count)) | in exec_rcr()
1306 (op1_16 << (17 - count)); in exec_rcr()
1310 cf = (op1_16 >> (count - 1)) & 0x1; in exec_rcr()