Home
last modified time | relevance | path

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

/qemu/target/i386/emulate/
H A Dx86_emu.c1068 uint32_t op1_32 = decode->op[0].val; in exec_rcl() local
1075 res = (op1_32 << 1) | get_CF(env); in exec_rcl()
1077 res = (op1_32 << count) | (get_CF(env) << (count - 1)) | in exec_rcl()
1078 (op1_32 >> (33 - count)); in exec_rcl()
1083 cf = (op1_32 >> (32 - count)) & 0x1; in exec_rcl()
1143 uint32_t op1_32 = decode->op[0].val; in exec_rcr() local
1150 res = (op1_32 >> 1) | (get_CF(env) << 31); in exec_rcr()
1152 res = (op1_32 >> count) | (get_CF(env) << (32 - count)) | in exec_rcr()
1153 (op1_32 << (33 - count)); in exec_rcr()
1158 cf = (op1_32 >> (count - 1)) & 0x1; in exec_rcr()