In order for kernel to capture each denormalized output, the UDF trapping enable bit is always raised in $fpcsr. Because underflow case will issue not an underflow exception but also an inexact exception, it causes that the IEX, IEX cumulative exception, flag in $fpcsr to be raised in each denormalized output handling. To make the emulation transparent to the user, the emulator needs to clear the IEX flag in $fpcsr if the result is a denormalized number. However, if the IEX flag has been raised before this floating point emulation, this cleanup may be incorrect. To avoid the IEX flags in $fpcsr be raised in each denormalized output handling, the 1st patch always enable IEX trap to fix this issue. 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. The 2nd patch adds the emulations of such floating point instructions. Vincent Chen (2): nds32: enable IEX trap too when kernel supports denormalized output nds32: add new emulations for floating point instruction arch/nds32/include/asm/bitfield.h | 2 +- arch/nds32/include/asm/fpu.h | 2 +- arch/nds32/include/asm/fpuemu.h | 12 +++++ arch/nds32/include/asm/syscalls.h | 2 +- arch/nds32/include/uapi/asm/fp_udfiex_crtl.h | 16 +++++++ arch/nds32/include/uapi/asm/sigcontext.h | 24 ++++++++--- arch/nds32/include/uapi/asm/udftrap.h | 13 ------ arch/nds32/include/uapi/asm/unistd.h | 4 +- arch/nds32/kernel/fpu.c | 15 +++---- arch/nds32/kernel/sys_nds32.c | 26 ++++++----- arch/nds32/math-emu/Makefile | 5 ++- arch/nds32/math-emu/fd2si.c | 30 +++++++++++++ arch/nds32/math-emu/fd2siz.c | 30 +++++++++++++ arch/nds32/math-emu/fd2ui.c | 30 +++++++++++++ arch/nds32/math-emu/fd2uiz.c | 30 +++++++++++++ arch/nds32/math-emu/fpuemu.c | 57 ++++++++++++++++++++++++-- arch/nds32/math-emu/fs2si.c | 29 +++++++++++++ arch/nds32/math-emu/fs2siz.c | 29 +++++++++++++ arch/nds32/math-emu/fs2ui.c | 29 +++++++++++++ arch/nds32/math-emu/fs2uiz.c | 30 +++++++++++++ arch/nds32/math-emu/fsi2d.c | 22 ++++++++++ arch/nds32/math-emu/fsi2s.c | 22 ++++++++++ arch/nds32/math-emu/fui2d.c | 22 ++++++++++ arch/nds32/math-emu/fui2s.c | 22 ++++++++++ 24 files changed, 452 insertions(+), 51 deletions(-) create mode 100644 arch/nds32/include/uapi/asm/fp_udfiex_crtl.h delete mode 100644 arch/nds32/include/uapi/asm/udftrap.h create mode 100644 arch/nds32/math-emu/fd2si.c create mode 100644 arch/nds32/math-emu/fd2siz.c create mode 100644 arch/nds32/math-emu/fd2ui.c create mode 100644 arch/nds32/math-emu/fd2uiz.c create mode 100644 arch/nds32/math-emu/fs2si.c create mode 100644 arch/nds32/math-emu/fs2siz.c create mode 100644 arch/nds32/math-emu/fs2ui.c create mode 100644 arch/nds32/math-emu/fs2uiz.c create mode 100644 arch/nds32/math-emu/fsi2d.c create mode 100644 arch/nds32/math-emu/fsi2s.c create mode 100644 arch/nds32/math-emu/fui2d.c create mode 100644 arch/nds32/math-emu/fui2s.c