]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
target/i386: fix incorrect EIP in PC-relative translation blocks
authorguoguangyao <guoguangyao18@mails.ucas.ac.cn>
Mon, 15 Jan 2024 02:08:04 +0000 (10:08 +0800)
committerMichael Tokarev <mjt@tls.msk.ru>
Sat, 20 Jan 2024 14:41:47 +0000 (17:41 +0300)
The PCREL patches introduced a bug when updating EIP in the !CF_PCREL case.
Using s->pc in func gen_update_eip_next() solves the problem.

Cc: qemu-stable@nongnu.org
Fixes: b5e0d5d22fbf ("target/i386: Fix 32-bit wrapping of pc/eip computation")
Signed-off-by: guoguangyao <guoguangyao18@mails.ucas.ac.cn>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20240115020804.30272-1-guoguangyao18@mails.ucas.ac.cn>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
(cherry picked from commit 2926eab8969908bc068629e973062a0fb6ff3759)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
target/i386/tcg/translate.c

index fa2e1dc3b35e26f082d13e2010bf3a088b180fa9..fc1d79e8667b4be127894e8698222e4b86657729 100644 (file)
@@ -561,9 +561,9 @@ static void gen_update_eip_next(DisasContext *s)
     if (TARGET_TB_PCREL) {
         tcg_gen_addi_tl(cpu_eip, cpu_eip, s->pc - s->pc_save);
     } else if (CODE64(s)) {
-        tcg_gen_movi_tl(cpu_eip, s->base.pc_next);
+        tcg_gen_movi_tl(cpu_eip, s->pc);
     } else {
-        tcg_gen_movi_tl(cpu_eip, (uint32_t)(s->base.pc_next - s->cs_base));
+        tcg_gen_movi_tl(cpu_eip, (uint32_t)(s->pc - s->cs_base));
     }
     s->pc_save = s->pc;
 }