diff options
author | Bastian Koppelmann <kbastian@mail.uni-paderborn.de> | 2019-08-21 11:02:23 +0200 |
---|---|---|
committer | Bastian Koppelmann <kbastian@mail.uni-paderborn.de> | 2019-08-22 12:16:58 +0200 |
commit | 17ebc8c1047a9c9f07c25585156231d34fd4a682 (patch) | |
tree | 76f2c6182ed3e3a14dda977d4fbda043ebe7ec89 /target/tricore/helper.h | |
parent | 1fae1851e5b35437ac22b46b6786b084fffb8cf2 (diff) |
target/tricore: Implement a qemu excptions helper
this helper is only used to raise qemu specific exceptions. We use this
helper to raise it on breakpoints.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Diffstat (limited to 'target/tricore/helper.h')
-rw-r--r-- | target/tricore/helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/tricore/helper.h b/target/tricore/helper.h index b64780c37d..78176aa17a 100644 --- a/target/tricore/helper.h +++ b/target/tricore/helper.h @@ -153,3 +153,4 @@ DEF_HELPER_2(psw_write, void, env, i32) DEF_HELPER_1(psw_read, i32, env) /* Exceptions */ DEF_HELPER_3(raise_exception_sync, noreturn, env, i32, i32) +DEF_HELPER_2(qemu_excp, noreturn, env, i32) |