Searched refs:get_CF (Results 1 – 3 of 3) sorted by relevance
286 EXEC_2OP_FLAGS_CMD(env, decode, +get_CF(env)+, SET_FLAGS_OSZAPC_ADD, true); in exec_adc()292 EXEC_2OP_FLAGS_CMD(env, decode, -get_CF(env)-, SET_FLAGS_OSZAPC_SUB, true); in exec_sbb()1240 res = (op1_8 << 1) | get_CF(env); in exec_rcl()1242 res = (op1_8 << count) | (get_CF(env) << (count - 1)) | in exec_rcl()1264 res = (op1_16 << 1) | get_CF(env); in exec_rcl()1266 res = (get_CF(env) << 15) | (op1_16 >> 1); in exec_rcl()1268 res = (op1_16 << count) | (get_CF(env) << (count - 1)) | in exec_rcl()1289 res = (op1_32 << 1) | get_CF(env); in exec_rcl()1291 res = (op1_32 << count) | (get_CF(env) << (count - 1)) | in exec_rcl()1324 res = (op1_8 >> count) | (get_CF(env) << (8 - count)) | in exec_rcr()[all …]
234 bool get_CF(CPUX86State *env) in get_CF() function241 bool old_cf = get_CF(env); in set_OF()296 env->eflags |= get_CF(env) ? CC_C : 0; in lflags_to_rflags()
33 bool get_CF(CPUX86State *env);