]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
target/i386: disable jmp_opt if EFLAGS.RF is 1
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 24 May 2024 15:17:47 +0000 (17:17 +0200)
committerMichael Tokarev <mjt@tls.msk.ru>
Mon, 27 May 2024 19:05:52 +0000 (22:05 +0300)
If EFLAGS.RF is 1, special processing in gen_eob_worker() is needed and
therefore goto_tb cannot be used.

Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
(cherry picked from commit 8225bff7c5db504f50e54ef66b079854635dba70)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
target/i386/tcg/translate.c

index b5ebff2c8942f74a847d8afa63bed788f7083627..c2c5e73b3f9f9c659a89a81f568356c64c4a0a98 100644 (file)
@@ -6971,7 +6971,7 @@ static void i386_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cpu)
     dc->cpuid_7_1_eax_features = env->features[FEAT_7_1_EAX];
     dc->cpuid_xsave_features = env->features[FEAT_XSAVE];
     dc->jmp_opt = !((cflags & CF_NO_GOTO_TB) ||
-                    (flags & (HF_TF_MASK | HF_INHIBIT_IRQ_MASK)));
+                    (flags & (HF_RF_MASK | HF_TF_MASK | HF_INHIBIT_IRQ_MASK)));
     /*
      * If jmp_opt, we want to handle each string instruction individually.
      * For icount also disable repz optimization so that each iteration