diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2012-06-10 11:33:11 +0400 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-06-10 20:09:16 +0000 |
commit | e8de1ea849176812765bf30514f66c5450a1edc6 (patch) | |
tree | d6e873c94bf3276ddaf8a1c98ed0b3287f8cbf6b | |
parent | 9ed3a188fff6ffc33dcadce6061c708b2fb3b0b2 (diff) | |
download | hqemu-e8de1ea849176812765bf30514f66c5450a1edc6.zip hqemu-e8de1ea849176812765bf30514f66c5450a1edc6.tar.gz |
target-xtensa: add attributes to helper functions
Mark exception generating functions 'noreturn' and pure constant
functions as such.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | target-xtensa/helper.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/target-xtensa/helper.h b/target-xtensa/helper.h index 48a741e..9dd6f89 100644 --- a/target-xtensa/helper.h +++ b/target-xtensa/helper.h @@ -1,12 +1,12 @@ #include "def-helper.h" -DEF_HELPER_1(exception, void, i32) -DEF_HELPER_2(exception_cause, void, i32, i32) -DEF_HELPER_3(exception_cause_vaddr, void, i32, i32, i32) -DEF_HELPER_2(debug_exception, void, i32, i32) +DEF_HELPER_1(exception, noreturn, i32) +DEF_HELPER_2(exception_cause, noreturn, i32, i32) +DEF_HELPER_3(exception_cause_vaddr, noreturn, i32, i32, i32) +DEF_HELPER_2(debug_exception, noreturn, i32, i32) -DEF_HELPER_1(nsa, i32, i32) -DEF_HELPER_1(nsau, i32, i32) +DEF_HELPER_FLAGS_1(nsa, TCG_CALL_CONST | TCG_CALL_PURE, i32, i32) +DEF_HELPER_FLAGS_1(nsau, TCG_CALL_CONST | TCG_CALL_PURE, i32, i32) DEF_HELPER_1(wsr_windowbase, void, i32) DEF_HELPER_3(entry, void, i32, i32, i32) DEF_HELPER_1(retw, i32, i32) @@ -25,8 +25,8 @@ DEF_HELPER_1(advance_ccount, void, i32) DEF_HELPER_1(check_interrupts, void, env) DEF_HELPER_1(wsr_rasid, void, i32) -DEF_HELPER_2(rtlb0, i32, i32, i32) -DEF_HELPER_2(rtlb1, i32, i32, i32) +DEF_HELPER_FLAGS_2(rtlb0, TCG_CALL_CONST | TCG_CALL_PURE, i32, i32, i32) +DEF_HELPER_FLAGS_2(rtlb1, TCG_CALL_CONST | TCG_CALL_PURE, i32, i32, i32) DEF_HELPER_2(itlb, void, i32, i32) DEF_HELPER_2(ptlb, i32, i32, i32) DEF_HELPER_3(wtlb, void, i32, i32, i32) |