OSDN Git Service

tcg/cpu-exec: precise single-stepping after an exception
authorLuc Michel <luc.michel@greensocs.com>
Thu, 16 Jul 2020 19:39:47 +0000 (21:39 +0200)
committerRichard Henderson <richard.henderson@linaro.org>
Thu, 16 Jul 2020 21:08:29 +0000 (14:08 -0700)
commita7ba744f4082abbd3e36a9265dd1682ad0980477
tree67860aa6ffcfbd9c1a1d62b948a56b799b28130a
parent69c918d2ef319ac63cd759c527debc2a2bdf3a0c
tcg/cpu-exec: precise single-stepping after an exception

When single-stepping with a debugger attached to QEMU, and when an
exception is raised, the debugger misses the first instruction after the
exception:

$ qemu-system-aarch64 -M virt -display none -cpu cortex-a53 -s -S

$ aarch64-linux-gnu-gdb
GNU gdb (GDB) 9.2
[...]
(gdb) tar rem :1234
Remote debugging using :1234
warning: No executable has been specified and target does not support
determining executable automatically.  Try using the "file" command.
0x0000000000000000 in ?? ()
(gdb) # writing nop insns to 0x200 and 0x204
(gdb) set *0x200 = 0xd503201f
(gdb) set *0x204 = 0xd503201f
(gdb) # 0x0 address contains 0 which is an invalid opcode.
(gdb) # The CPU should raise an exception and jump to 0x200
(gdb) si
0x0000000000000204 in ?? ()

With this commit, the same run steps correctly on the first instruction
of the exception vector:

(gdb) si
0x0000000000000200 in ?? ()

Buglink: https://bugs.launchpad.net/qemu/+bug/757702
Signed-off-by: Luc Michel <luc.michel@greensocs.com>
Message-Id: <20200716193947.3058389-1-luc.michel@greensocs.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
accel/tcg/cpu-exec.c