mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
9322961205
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>
23 lines
402 B
C
23 lines
402 B
C
// 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/double.h>
|
|
|
|
void fui2d(void *ft, void *fa)
|
|
{
|
|
unsigned int a = *(unsigned int *)fa;
|
|
|
|
FP_DECL_D(R);
|
|
FP_DECL_EX;
|
|
|
|
FP_FROM_INT_D(R, a, 32, int);
|
|
|
|
FP_PACK_DP(ft, R);
|
|
|
|
__FPU_FPCSR |= FP_CUR_EXCEPTIONS;
|
|
|
|
}
|