[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH QEMU] target-arm: A64: Print ELR when taking excepti
From: |
Soren Brinkmann |
Subject: |
[Qemu-devel] [PATCH QEMU] target-arm: A64: Print ELR when taking exceptions |
Date: |
Mon, 22 Jun 2015 22:17:35 -0700 |
When taking an exception print the content of the exception link
register. This is useful especially for synchronous exceptions because
in that case this registers holds the address of the instruction that
generated the exception.
Signed-off-by: Soren Brinkmann <address@hidden>
---
target-arm/helper-a64.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/target-arm/helper-a64.c b/target-arm/helper-a64.c
index e30af0659e29..08c95a3f5202 100644
--- a/target-arm/helper-a64.c
+++ b/target-arm/helper-a64.c
@@ -533,6 +533,8 @@ void aarch64_cpu_do_interrupt(CPUState *cs)
env->condexec_bits = 0;
}
+ qemu_log_mask(CPU_LOG_INT, "...with ELR 0x%" PRIx64 "\n",
+ env->elr_el[new_el]);
pstate_write(env, PSTATE_DAIF | new_mode);
env->aarch64 = 1;
--
2.4.4.3.gd756881
- [Qemu-devel] [PATCH QEMU] target-arm: A64: Print ELR when taking exceptions,
Soren Brinkmann <=