aboutsummaryrefslogtreecommitdiff
path: root/target/tricore/fpu_helper.c
diff options
context:
space:
mode:
authorBastian Koppelmann <kbastian@mail.uni-paderborn.de>2016-10-06 16:46:36 +0200
committerBastian Koppelmann <kbastian@mail.uni-paderborn.de>2017-01-11 14:36:51 +0100
commit8f75983db8d67bce42332db7b38c62e2d45a5c7f (patch)
tree510c1d728ca4af58d238b00182f6a52185b6b153 /target/tricore/fpu_helper.c
parentb44486dfb9447c88e4b216e730adcc780190852c (diff)
downloadqemu-8f75983db8d67bce42332db7b38c62e2d45a5c7f.zip
qemu-8f75983db8d67bce42332db7b38c62e2d45a5c7f.tar.gz
qemu-8f75983db8d67bce42332db7b38c62e2d45a5c7f.tar.bz2
target-tricore: Added FTOUZ instruction
Converts a 32-bit floating point number to an unsigned int. The result is rounded towards zero. Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target/tricore/fpu_helper.c')
-rw-r--r--target/tricore/fpu_helper.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/target/tricore/fpu_helper.c b/target/tricore/fpu_helper.c
index 98fe947..215c397 100644
--- a/target/tricore/fpu_helper.c
+++ b/target/tricore/fpu_helper.c
@@ -215,3 +215,30 @@ uint32_t helper_itof(CPUTriCoreState *env, uint32_t arg)
}
return (uint32_t)f_result;
}
+
+uint32_t helper_ftouz(CPUTriCoreState *env, uint32_t arg)
+{
+ float32 f_arg = make_float32(arg);
+ uint32_t result;
+ int32_t flags;
+
+ result = float32_to_uint32_round_to_zero(f_arg, &env->fp_status);
+
+ flags = f_get_excp_flags(env);
+ if (flags & float_flag_invalid) {
+ flags &= ~float_flag_inexact;
+ if (float32_is_any_nan(f_arg)) {
+ result = 0;
+ }
+ } else if (float32_lt_quiet(f_arg, 0, &env->fp_status)) {
+ flags = float_flag_invalid;
+ result = 0;
+ }
+
+ if (flags) {
+ f_update_psw_flags(env, flags);
+ } else {
+ env->FPU_FS = 0;
+ }
+ return result;
+}