diff options
author | Sergey Fedorov <serge.fdrv@gmail.com> | 2015-10-13 12:56:28 +0300 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2015-10-16 14:48:56 +0100 |
commit | 5d98bf8f38c17a348ab6e8af196088cd4953acd0 (patch) | |
tree | fe2222087a4923efd844201264c19e94012aa29f /target-arm/helper.h | |
parent | e63a2d4d9ed73e33a0b7483085808048be8bbcb1 (diff) |
target-arm: Fix CPU breakpoint handling
A QEMU breakpoint match is not definitely an architectural breakpoint
match. If an exception is generated unconditionally during translation,
it is hardly possible to ignore it in the debug exception handler.
Generate a call to a helper to check CPU breakpoints and raise an
exception only if any breakpoint matches architecturally.
Signed-off-by: Sergey Fedorov <serge.fdrv@gmail.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-arm/helper.h')
-rw-r--r-- | target-arm/helper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target-arm/helper.h b/target-arm/helper.h index 827b33dfec..c2a85c722a 100644 --- a/target-arm/helper.h +++ b/target-arm/helper.h @@ -54,6 +54,8 @@ DEF_HELPER_1(yield, void, env) DEF_HELPER_1(pre_hvc, void, env) DEF_HELPER_2(pre_smc, void, env, i32) +DEF_HELPER_1(check_breakpoints, void, env) + DEF_HELPER_3(cpsr_write, void, env, i32, i32) DEF_HELPER_1(cpsr_read, i32, env) |