Removing the call to gen_compute_eflags meant we no longer
updated cc_op after computing EFLAGS.
Cc: qemu-stable@nongnu.org
Fixes: da7649c6aeef ("target/i386/tcg: do not compute all flags for SAHF")
Resolves: https://gitlab.com/qemu-project/qemu/-/work_items/3537
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/i386/tcg/emit.c.inc | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/target/i386/tcg/emit.c.inc b/target/i386/tcg/emit.c.inc
index ce636b6c56..59948fe64d 100644
--- a/target/i386/tcg/emit.c.inc
+++ b/target/i386/tcg/emit.c.inc
@@ -3768,10 +3768,13 @@ static void gen_SAHF(DisasContext *s, X86DecodedInsn *decode)
return gen_illegal_opcode(s);
}
tcg_gen_shri_tl(s->T0, cpu_regs[R_EAX], 8);
- gen_neg_setcc(s, JCC_O << 1, cpu_cc_src);
- tcg_gen_andi_tl(cpu_cc_src, cpu_cc_src, CC_O);
+ gen_neg_setcc(s, JCC_O << 1, s->T1);
+ tcg_gen_andi_tl(s->T1, s->T1, CC_O);
tcg_gen_andi_tl(s->T0, s->T0, CC_S | CC_Z | CC_A | CC_P | CC_C);
- tcg_gen_or_tl(cpu_cc_src, cpu_cc_src, s->T0);
+ tcg_gen_or_tl(s->T0, s->T0, s->T1);
+
+ decode->cc_src = s->T0;
+ decode->cc_op = CC_OP_EFLAGS;
}
static void gen_SALC(DisasContext *s, X86DecodedInsn *decode)
--
2.43.0