]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
accel/tcg: Use CPUState.get_pc in cpu_io_recompile
authorRichard Henderson <richard.henderson@linaro.org>
Thu, 28 Mar 2024 03:21:59 +0000 (17:21 -1000)
committerRichard Henderson <richard.henderson@linaro.org>
Fri, 29 Mar 2024 22:16:00 +0000 (12:16 -1000)
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>
accel/tcg/translate-all.c

index c1f57e894a09431963899906cc6f1b07a5e4b94d..83cc14fbde4933cd1b54926e1408b0c7b2ef4277 100644 (file)
@@ -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);