Searched refs:CC_S (Results 1 – 13 of 13) sorted by relevance
/openbmc/qemu/tests/tcg/i386/ |
H A D | test-i386.c | 63 #define CC_S 0x0080 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) 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() 1073 TEST_BCD(daa, 0x12340507, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A)); in test_bcd() 1074 TEST_BCD(daa, 0x12340559, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A)); in test_bcd() 1075 TEST_BCD(daa, 0x12340560, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A)); in test_bcd() 1076 TEST_BCD(daa, 0x1234059f, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A)); in test_bcd() [all …]
|
/openbmc/qemu/target/i386/tcg/ |
H A D | cc_helper_template.h.inc | 56 sf = lshift(dst, 8 - DATA_BITS) & CC_S; 111 sf = lshift(dst, 8 - DATA_BITS) & CC_S; 170 sf = lshift(dst, 8 - DATA_BITS) & CC_S; 186 sf = lshift(dst, 8 - DATA_BITS) & CC_S; 202 sf = lshift(dst, 8 - DATA_BITS) & CC_S; 215 sf = lshift(dst, 8 - DATA_BITS) & CC_S; 234 sf = lshift(dst, 8 - DATA_BITS) & CC_S; 251 sf = lshift(dst, 8 - DATA_BITS) & CC_S; 264 sf = lshift(dst, 8 - DATA_BITS) & CC_S; 282 sf = lshift(dst, 8 - DATA_BITS) & CC_S;
|
H A D | tcg-cpu.c | 35 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); in x86_cpu_exec_enter() 38 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); in x86_cpu_exec_enter()
|
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 | translate.c | 980 .imm = CC_S }; in gen_prepare_eflags_s() 1126 tcg_gen_addi_tl(reg, cpu_cc_src, CC_O - CC_S); in gen_prepare_cc() 1136 tcg_gen_addi_tl(reg, cpu_cc_src, CC_O - CC_S); in gen_prepare_cc()
|
H A D | emit.c.inc | 3761 tcg_gen_andi_tl(s->T0, s->T0, CC_S | CC_Z | CC_A | CC_P | CC_C);
|
/openbmc/qemu/target/i386/tcg/sysemu/ |
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()
|
H A D | svm_helper.c | 351 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK)); in helper_vmrun() 872 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK | in do_vmexit()
|
/openbmc/qemu/target/i386/hvf/ |
H A D | x86_flags.c | 300 env->eflags |= get_SF(env) ? CC_S : 0; in lflags_to_rflags() 308 set_SF(env, env->eflags & CC_S); in rflags_to_lflags()
|
H A D | x86_decode.c | 699 #define RFLAGS_MASK_OSZAPC (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C) 700 #define RFLAGS_MASK_LAHF (CC_S | CC_Z | CC_A | CC_P | CC_C)
|
/openbmc/qemu/target/i386/ |
H A D | cpu-dump.c | 378 eflags & CC_S ? 'S' : '-', in x86_cpu_dump_state() 405 eflags & CC_S ? 'S' : '-', in x86_cpu_dump_state()
|
H A D | cpu.h | 121 #define CC_S 0x0080 macro
|
H A D | ops_sse.h | 1973 CC_SRC = (valids < upper ? CC_Z : 0) | (validd < upper ? CC_S : 0); in pcmpxstrx()
|