Searched refs:op1_32 (Results 1 – 1 of 1) sorted by relevance
1282 uint32_t op1_32 = decode->op[0].val; in exec_rcl() local1289 res = (op1_32 << 1) | get_CF(env); in exec_rcl()1291 res = (op1_32 << count) | (get_CF(env) << (count - 1)) | in exec_rcl()1292 (op1_32 >> (33 - count)); in exec_rcl()1297 cf = (op1_32 >> (32 - count)) & 0x1; in exec_rcl()1357 uint32_t op1_32 = decode->op[0].val; in exec_rcr() local1364 res = (op1_32 >> 1) | (get_CF(env) << 31); in exec_rcr()1366 res = (op1_32 >> count) | (get_CF(env) << (32 - count)) | in exec_rcr()1367 (op1_32 << (33 - count)); in exec_rcr()1372 cf = (op1_32 >> (count - 1)) & 0x1; in exec_rcr()