diff options
author | Richard Henderson <rth@twiddle.net> | 2011-10-17 11:25:56 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2011-10-26 13:57:06 -0700 |
commit | 445167723d12d6e14d4f11b4104c48c8b25329db (patch) | |
tree | bcc8727c2533f8d559f3f43a2921bd151b9d59dc /target-sparc/helper.h | |
parent | 30038fd81808f7c3bca92be2369e74c8ca7b3d69 (diff) | |
download | qemu-445167723d12d6e14d4f11b4104c48c8b25329db.zip |
target-sparc: Do exceptions management fully inside the helpers.
This reduces the size of the individual translation blocks, since
we only emit a single call for each FOP rather than three. In
addition, clear_float_exceptions expands inline to a single byte store.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-sparc/helper.h')
-rw-r--r-- | target-sparc/helper.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target-sparc/helper.h b/target-sparc/helper.h index ba0ad8187f..22fb8ef8d2 100644 --- a/target-sparc/helper.h +++ b/target-sparc/helper.h @@ -46,8 +46,6 @@ DEF_HELPER_4(ld_asi, i64, tl, int, int, int) DEF_HELPER_4(st_asi, void, tl, i64, int, int) #endif DEF_HELPER_2(ldfsr, void, env, i32) -DEF_HELPER_1(check_ieee_exceptions, void, env) -DEF_HELPER_1(clear_float_exceptions, void, env) DEF_HELPER_FLAGS_1(fabss, TCG_CALL_CONST | TCG_CALL_PURE, f32, f32) DEF_HELPER_2(fsqrts, f32, env, f32) DEF_HELPER_2(fsqrtd, f64, env, f64) |