diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2014-08-04 01:55:53 (GMT) |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2014-08-14 07:59:30 (GMT) |
commit | a83b02e9bd0c28d27b6c6e5b184585f7a1b8bf86 (patch) | |
tree | 13cec9be08c9e9d5382d7f7f886e040447cebdd5 | |
parent | 21570465a30f13197991eb2637d6ffc6c6880eef (diff) | |
download | linux-a83b02e9bd0c28d27b6c6e5b184585f7a1b8bf86.tar.xz |
xtensa: allow single-stepping through unaligned load/store
Update icount when icountlevel is non-zero but not greater than EXCM level
when load/store instruction is successfully emulated. This allows
single-stepping over such instruction in userspace debugger.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
-rw-r--r-- | arch/xtensa/kernel/align.S | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/xtensa/kernel/align.S b/arch/xtensa/kernel/align.S index 87d80d8..890004a 100644 --- a/arch/xtensa/kernel/align.S +++ b/arch/xtensa/kernel/align.S @@ -421,6 +421,14 @@ ENTRY(fast_unaligned) 1: wsr a7, epc1 # skip emulated instruction + /* Update icount if we're single-stepping in userspace. */ + rsr a4, icountlevel + beqz a4, 1f + bgeui a4, LOCKLEVEL + 1, 1f + rsr a4, icount + addi a4, a4, 1 + wsr a4, icount +1: movi a4, 0 rsr a3, excsave1 s32i a4, a3, EXC_TABLE_FIXUP |