Searched refs:CC_P (Results 1 – 10 of 10) sorted by relevance
| /openbmc/qemu/tests/tcg/i386/ |
| H A D | test-i386.c | 60 #define CC_P 0x0004 macro 68 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A) 129 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O) 499 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A) 841 a, b, fpus & FPUS_EMASK, eflags & (CC_Z | CC_P | CC_C)); in test_fcmp() 850 a, b, fpus & FPUS_EMASK, eflags & (CC_Z | CC_P | CC_C)); in test_fcmp() 1016 TEST_FCMOV(a, b, CC_P, "u"); in test_fcmov() 1018 TEST_FCMOV(a, b, CC_P, "nu"); in test_fcmov() 1071 TEST_BCD(daa, 0x12340503, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A)); in test_bcd() 1072 TEST_BCD(daa, 0x12340506, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A)); in test_bcd() [all …]
|
| /openbmc/qemu/target/i386/emulate/ |
| H A D | x86_flags.c | 211 return ((parity8(env->cc_dst) - 1) ^ env->cc_src) & CC_P; in get_PF() 245 env->eflags &= ~(CC_C|CC_P|CC_A|CC_Z|CC_S|CC_O); in lflags_to_rflags() 264 env->cc_src = CC_P; in rflags_to_lflags() 265 env->cc_src ^= env->eflags & (CC_S | CC_P); in rflags_to_lflags()
|
| /openbmc/qemu/target/i386/tcg/ |
| H A D | tcg-cpu.c | 37 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); in x86_cpu_exec_enter() 40 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); in x86_cpu_exec_enter()
|
| H A D | helper-tcg.h | 94 return !parity8(x) * CC_P; in compute_pf()
|
| H A D | misc_helper.c | 33 CC_SRC = eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); in cpu_load_eflags()
|
| H A D | fpu_helper.c | 548 static const int fcomi_ccval[4] = {CC_C, CC_Z, 0, CC_Z | CC_P | CC_C}; 557 eflags = cpu_cc_compute_all(env) & ~(CC_Z | CC_P | CC_C); in helper_fcomi_ST0_FT0() 570 eflags = cpu_cc_compute_all(env) & ~(CC_Z | CC_P | CC_C); in helper_fucomi_ST0_FT0()
|
| H A D | translate.c | 999 .imm = CC_P }; in gen_prepare_eflags_p()
|
| H A D | emit.c.inc | 3781 tcg_gen_andi_tl(s->T0, s->T0, CC_S | CC_Z | CC_A | CC_P | CC_C); 4781 decode->cc_src = tcg_constant_tl(CC_Z | CC_P);
|
| /openbmc/qemu/target/i386/tcg/system/ |
| H A D | smm_helper.c | 164 cpu_load_eflags(env, 0, ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | in do_smm_enter() 235 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK)); in helper_rsm() 261 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK)); in helper_rsm()
|
| /openbmc/qemu/target/i386/ |
| H A D | ops_sse.h | 1103 static const int comis_eflags[4] = {CC_C, CC_Z, 0, CC_Z | CC_P | CC_C};
|