aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2024-03-27 17:21:59 -1000
committerRichard Henderson <richard.henderson@linaro.org>2024-03-29 12:16:00 -1000
commitdafa0ecc97850c325fe85cd87dc0b536858d171a (patch)
tree75747858c34cf04ad1d73ffff5c57e457c8cc401
parent13af3af196c85a4bcd4399a0842f044c83bd6aa6 (diff)
downloadqemu-dafa0ecc97850c325fe85cd87dc0b536858d171a.zip
qemu-dafa0ecc97850c325fe85cd87dc0b536858d171a.tar.gz
qemu-dafa0ecc97850c325fe85cd87dc0b536858d171a.tar.bz2
accel/tcg: Use CPUState.get_pc in cpu_io_recompile
Using log_pc produces the pc at the beginning of TB, not the actual pc installed by cpu_restore_state_from_tb, which could be any of the guest instructions within TB. Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--accel/tcg/translate-all.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/translate-all.c b/accel/tcg/translate-all.c
index c1f57e8..83cc14f 100644
--- a/accel/tcg/translate-all.c
+++ b/accel/tcg/translate-all.c
@@ -634,7 +634,7 @@ void cpu_io_recompile(CPUState *cpu, uintptr_t retaddr)
cpu->cflags_next_tb = curr_cflags(cpu) | CF_MEMI_ONLY | n;
if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
- vaddr pc = log_pc(cpu, tb);
+ vaddr pc = cpu->cc->get_pc(cpu);
if (qemu_log_in_addr_range(pc)) {
qemu_log("cpu_io_recompile: rewound execution of TB to %016"
VADDR_PRIx "\n", pc);