[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 7/7] accel/tcg: Use CPUState.get_pc in cpu_io_recompile
From: |
Richard Henderson |
Subject: |
[PULL 7/7] accel/tcg: Use CPUState.get_pc in cpu_io_recompile |
Date: |
Fri, 29 Mar 2024 12:20:37 -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 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/accel/tcg/translate-all.c b/accel/tcg/translate-all.c
index c1f57e894a..83cc14fbde 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);
--
2.34.1
- [PULL 0/7] tcg + linux-user patch queue, Richard Henderson, 2024/03/29
- [PULL 2/7] linux-user: Fix shmat() strace, Richard Henderson, 2024/03/29
- [PULL 3/7] linux-user: Fix shmat(NULL) for h != g, Richard Henderson, 2024/03/29
- [PULL 1/7] linux-user: Fix semctl() strace, Richard Henderson, 2024/03/29
- [PULL 4/7] tests/tcg: Test shmat(NULL), Richard Henderson, 2024/03/29
- [PULL 5/7] tcg/optimize: Fix sign_mask for logical right-shift, Richard Henderson, 2024/03/29
- [PULL 7/7] accel/tcg: Use CPUState.get_pc in cpu_io_recompile,
Richard Henderson <=
- [PULL 6/7] disas: Show opcodes for target_disas and monitor_disas, Richard Henderson, 2024/03/29
- Re: [PULL 0/7] tcg + linux-user patch queue, Peter Maydell, 2024/03/31