aboutsummaryrefslogtreecommitdiffstats
path: root/arch/nds32/math-emu/fui2s.c
diff options
context:
space:
mode:
authorVincent Chen <vincentc@andestech.com>2019-05-20 09:21:13 +0800
committerGreentime Hu <greentime@andestech.com>2019-05-31 15:23:26 +0800
commit932296120543149e3397af252e7daee7af37eb05 (patch)
treead3c0a00a16cae8cab3d85c3b74060893003ee83 /arch/nds32/math-emu/fui2s.c
parentnds32: Avoid IEX status being incorrectly modified (diff)
downloadlinux-dev-932296120543149e3397af252e7daee7af37eb05.tar.xz
linux-dev-932296120543149e3397af252e7daee7af37eb05.zip
nds32: add new emulations for floating point instruction
The existing floating point emulations is only available for floating instruction that possibly issue denormalized input and underflow exceptions. These existing FPU emulations are not sufficient when IEx Trap is enabled because some floating point instructions only issue inexact exception. This patch adds the emulations of such floating point instructions. Signed-off-by: Vincent Chen <vincentc@andestech.com> Acked-by: Greentime Hu <greentime@andestech.com> Signed-off-by: Greentime Hu <greentime@andestech.com>
Diffstat (limited to '')
-rw-r--r--arch/nds32/math-emu/fui2s.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/nds32/math-emu/fui2s.c b/arch/nds32/math-emu/fui2s.c
new file mode 100644
index 000000000000..f70f0762547d
--- /dev/null
+++ b/arch/nds32/math-emu/fui2s.c
@@ -0,0 +1,22 @@
+// SPDX-License-Identifier: GPL-2.0
+// Copyright (C) 2005-2019 Andes Technology Corporation
+#include <linux/uaccess.h>
+
+#include <asm/sfp-machine.h>
+#include <math-emu/soft-fp.h>
+#include <math-emu/single.h>
+
+void fui2s(void *ft, void *fa)
+{
+ unsigned int a = *(unsigned int *)fa;
+
+ FP_DECL_S(R);
+ FP_DECL_EX;
+
+ FP_FROM_INT_S(R, a, 32, int);
+
+ FP_PACK_SP(ft, R);
+
+ __FPU_FPCSR |= FP_CUR_EXCEPTIONS;
+
+}