Home
last modified time | relevance | path

Searched refs:CC_SRC (Results 1 – 9 of 9) sorted by relevance

/openbmc/qemu/target/i386/tcg/
H A Dint_helper.c189 CC_SRC = eflags; in helper_aaa()
214 CC_SRC = eflags; in helper_aas()
242 CC_SRC = eflags; in helper_daa()
274 CC_SRC = eflags; in helper_das()
H A Dmisc_helper.c33 CC_SRC = eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); in cpu_load_eflags()
H A Dtcg-cpu.c35 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); in x86_cpu_exec_enter()
H A Dcc_helper.c210 return helper_cc_compute_all(CC_DST, CC_SRC, CC_SRC2, CC_OP); in cpu_cc_compute_all()
H A Dseg_helper.c2365 CC_SRC &= ~CC_Z; in helper_lsl()
2370 CC_SRC |= CC_Z; in helper_lsl()
2415 CC_SRC &= ~CC_Z; in helper_lar()
2419 CC_SRC |= CC_Z; in helper_lar()
2457 CC_SRC = eflags; in helper_verr()
2491 CC_SRC = eflags; in helper_verw()
H A Dfpu_helper.c535 CC_SRC = eflags | fcomi_ccval[ret + 1]; in helper_fcomi_ST0_FT0()
548 CC_SRC = eflags | fcomi_ccval[ret + 1]; in helper_fucomi_ST0_FT0()
H A Demit.c.inc1464 * CC_DST alone, setting CC_SRC, and using a CC_OP_SAR of the
/openbmc/qemu/target/i386/
H A Dops_sse.h1113 CC_SRC = comis_eflags[ret + 1]; in helper_ucomiss()
1125 CC_SRC = comis_eflags[ret + 1]; in helper_comiss()
1137 CC_SRC = comis_eflags[ret + 1]; in helper_ucomisd()
1149 CC_SRC = comis_eflags[ret + 1]; in helper_comisd()
1616 CC_SRC = (zf ? 0 : CC_Z) | (cf ? 0 : CC_C); in glue()
1973 CC_SRC = (valids < upper ? CC_Z : 0) | (validd < upper ? CC_S : 0); in pcmpxstrx()
2031 CC_SRC |= CC_C; in pcmpxstrx()
2034 CC_SRC |= CC_O; in pcmpxstrx()
2305 CC_SRC = ((zf >> 31) ? 0 : CC_Z) | ((cf >> 31) ? 0 : CC_C); in SSE_HELPER_L()
2318 CC_SRC = ((zf >> 63) ? 0 : CC_Z) | ((cf >> 63) ? 0 : CC_C); in glue()
H A Dcpu.h2523 #define CC_SRC (env->cc_src) macro