Searched refs:op1_32 (Results 1 – 1 of 1) sorted by relevance
1244 uint32_t op1_32 = decode->op[0].val; in exec_rcl() local1251 res = (op1_32 << 1) | get_CF(env); in exec_rcl()1253 res = (op1_32 << count) | (get_CF(env) << (count - 1)) | in exec_rcl()1254 (op1_32 >> (33 - count)); in exec_rcl()1259 cf = (op1_32 >> (32 - count)) & 0x1; in exec_rcl()1319 uint32_t op1_32 = decode->op[0].val; in exec_rcr() local1326 res = (op1_32 >> 1) | (get_CF(env) << 31); in exec_rcr()1328 res = (op1_32 >> count) | (get_CF(env) << (32 - count)) | in exec_rcr()1329 (op1_32 << (33 - count)); in exec_rcr()1334 cf = (op1_32 >> (count - 1)) & 0x1; in exec_rcr()