mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 14:51:00 +00:00
target-i386: emulate LOCK'ed OP instructions using atomic helpers
Backports commit a7cee522f3529c2fc85379237b391ea98823271e from qemu
This commit is contained in:
parent
a386368f82
commit
7c7b0fe746
|
@ -1454,55 +1454,93 @@ static void gen_op(DisasContext *s, int op, TCGMemOp ot, int d)
|
|||
|
||||
if (d != OR_TMP0) {
|
||||
gen_op_mov_v_reg(tcg_ctx, ot, cpu_T0, d);
|
||||
} else {
|
||||
} else if (!(s->prefix & PREFIX_LOCK)) {
|
||||
gen_op_ld_v(s, ot, cpu_T0, cpu_A0);
|
||||
}
|
||||
switch(op) {
|
||||
case OP_ADCL:
|
||||
gen_compute_eflags_c(s, cpu_tmp4);
|
||||
tcg_gen_add_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
tcg_gen_add_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_tmp4);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
if (s->prefix & PREFIX_LOCK) {
|
||||
tcg_gen_add_tl(tcg_ctx, cpu_T0, cpu_tmp4, cpu_T1);
|
||||
tcg_gen_atomic_add_fetch_tl(tcg_ctx, cpu_T0, cpu_A0, cpu_T0,
|
||||
s->mem_index, ot | MO_LE);
|
||||
} else {
|
||||
tcg_gen_add_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
tcg_gen_add_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_tmp4);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
}
|
||||
gen_op_update3_cc(tcg_ctx, cpu_tmp4);
|
||||
set_cc_op(s, CC_OP_ADCB + ot);
|
||||
break;
|
||||
case OP_SBBL:
|
||||
gen_compute_eflags_c(s, cpu_tmp4);
|
||||
tcg_gen_sub_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
tcg_gen_sub_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_tmp4);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
if (s->prefix & PREFIX_LOCK) {
|
||||
tcg_gen_add_tl(tcg_ctx, cpu_T0, cpu_T1, cpu_tmp4);
|
||||
tcg_gen_neg_tl(tcg_ctx, cpu_T0, cpu_T0);
|
||||
tcg_gen_atomic_add_fetch_tl(tcg_ctx, cpu_T0, cpu_A0, cpu_T0,
|
||||
s->mem_index, ot | MO_LE);
|
||||
} else {
|
||||
tcg_gen_sub_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
tcg_gen_sub_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_tmp4);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
}
|
||||
gen_op_update3_cc(tcg_ctx, cpu_tmp4);
|
||||
set_cc_op(s, CC_OP_SBBB + ot);
|
||||
break;
|
||||
case OP_ADDL:
|
||||
tcg_gen_add_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
if (s->prefix & PREFIX_LOCK) {
|
||||
tcg_gen_atomic_add_fetch_tl(tcg_ctx, cpu_T0, cpu_A0, cpu_T1,
|
||||
s->mem_index, ot | MO_LE);
|
||||
} else {
|
||||
tcg_gen_add_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
}
|
||||
gen_op_update2_cc(tcg_ctx);
|
||||
set_cc_op(s, CC_OP_ADDB + ot);
|
||||
break;
|
||||
case OP_SUBL:
|
||||
tcg_gen_mov_tl(tcg_ctx, cpu_cc_srcT, cpu_T0);
|
||||
tcg_gen_sub_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
if (s->prefix & PREFIX_LOCK) {
|
||||
tcg_gen_neg_tl(tcg_ctx, cpu_T0, cpu_T1);
|
||||
tcg_gen_atomic_fetch_add_tl(tcg_ctx, cpu_cc_srcT, cpu_A0, cpu_T0,
|
||||
s->mem_index, ot | MO_LE);
|
||||
tcg_gen_sub_tl(tcg_ctx, cpu_T0, cpu_cc_srcT, cpu_T1);
|
||||
} else {
|
||||
tcg_gen_mov_tl(tcg_ctx, cpu_cc_srcT, cpu_T0);
|
||||
tcg_gen_sub_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
}
|
||||
gen_op_update2_cc(tcg_ctx);
|
||||
set_cc_op(s, CC_OP_SUBB + ot);
|
||||
break;
|
||||
default:
|
||||
case OP_ANDL:
|
||||
tcg_gen_and_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
if (s->prefix & PREFIX_LOCK) {
|
||||
tcg_gen_atomic_and_fetch_tl(tcg_ctx, cpu_T0, cpu_A0, cpu_T1,
|
||||
s->mem_index, ot | MO_LE);
|
||||
} else {
|
||||
tcg_gen_and_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
}
|
||||
gen_op_update1_cc(tcg_ctx);
|
||||
set_cc_op(s, CC_OP_LOGICB + ot);
|
||||
break;
|
||||
case OP_ORL:
|
||||
tcg_gen_or_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
if (s->prefix & PREFIX_LOCK) {
|
||||
tcg_gen_atomic_or_fetch_tl(tcg_ctx, cpu_T0, cpu_A0, cpu_T1,
|
||||
s->mem_index, ot | MO_LE);
|
||||
} else {
|
||||
tcg_gen_or_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
}
|
||||
gen_op_update1_cc(tcg_ctx);
|
||||
set_cc_op(s, CC_OP_LOGICB + ot);
|
||||
break;
|
||||
case OP_XORL:
|
||||
tcg_gen_xor_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
if (s->prefix & PREFIX_LOCK) {
|
||||
tcg_gen_atomic_xor_fetch_tl(tcg_ctx, cpu_T0, cpu_A0, cpu_T1,
|
||||
s->mem_index, ot | MO_LE);
|
||||
} else {
|
||||
tcg_gen_xor_tl(tcg_ctx, cpu_T0, cpu_T0, cpu_T1);
|
||||
gen_op_st_rm_T0_A0(s, ot, d);
|
||||
}
|
||||
gen_op_update1_cc(tcg_ctx);
|
||||
set_cc_op(s, CC_OP_LOGICB + ot);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue