1 // SPDX-License-Identifier: GPL-2.0-only
2 /* IEEE754 floating point arithmetic
3 * double precision: common utilities
6 * MIPS floating point support
7 * Copyright (C) 1994-2000 Algorithmics Ltd.
8 * Copyright (C) 2017 Imagination Technologies, Ltd.
9 * Author: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
12 #include "ieee754dp.h"
14 union ieee754dp
ieee754dp_rint(union ieee754dp x
)
29 if (xc
== IEEE754_CLASS_SNAN
)
30 return ieee754dp_nanxcpt(x
);
32 if ((xc
== IEEE754_CLASS_QNAN
) ||
33 (xc
== IEEE754_CLASS_INF
) ||
34 (xc
== IEEE754_CLASS_ZERO
))
43 sticky
= residue
!= 0;
46 residue
= xm
<< (64 - DP_FBITS
+ xe
);
47 round
= (residue
>> 63) != 0;
48 sticky
= (residue
<< 1) != 0;
52 odd
= (xm
& 0x1) != 0x0;
54 switch (ieee754_csr
.rm
) {
55 case FPU_CSR_RN
: /* toward nearest */
56 if (round
&& (sticky
|| odd
))
59 case FPU_CSR_RZ
: /* toward zero */
61 case FPU_CSR_RU
: /* toward +infinity */
62 if ((round
|| sticky
) && !xs
)
65 case FPU_CSR_RD
: /* toward -infinity */
66 if ((round
|| sticky
) && xs
)
72 ieee754_setcx(IEEE754_INEXACT
);
74 ret
= ieee754dp_flong(xm
);