1 /* IEEE754 floating point arithmetic
5 * MIPS floating point support
6 * Copyright (C) 1994-2000 Algorithmics Ltd.
8 * ########################################################################
10 * This program is free software; you can distribute it and/or modify it
11 * under the terms of the GNU General Public License (Version 2) as
12 * published by the Free Software Foundation.
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * ########################################################################
27 #include <linux/kernel.h>
28 #include "ieee754sp.h"
30 int ieee754sp_tint(ieee754sp x
)
40 case IEEE754_CLASS_SNAN
:
41 case IEEE754_CLASS_QNAN
:
42 case IEEE754_CLASS_INF
:
43 SETCX(IEEE754_INVALID_OPERATION
);
44 return ieee754si_xcpt(ieee754si_indef(), "sp_tint", x
);
45 case IEEE754_CLASS_ZERO
:
47 case IEEE754_CLASS_DNORM
:
48 case IEEE754_CLASS_NORM
:
52 /* look for valid corner case */
53 if (xe
== 31 && xs
&& xm
== SP_HIDDEN_BIT
)
55 /* Set invalid. We will only use overflow for floating
57 SETCX(IEEE754_INVALID_OPERATION
);
58 return ieee754si_xcpt(ieee754si_indef(), "sp_tint", x
);
72 sticky
= residue
!= 0;
75 /* Shifting a u32 32 times does not work,
76 * so we do it in two steps. Be aware that xe
78 residue
= xm
<< (xe
+ 1);
79 residue
<<= 31 - SP_MBITS
;
80 round
= (residue
>> 31) != 0;
81 sticky
= (residue
<< 1) != 0;
84 odd
= (xm
& 0x1) != 0x0;
85 switch (ieee754_csr
.rm
) {
87 if (round
&& (sticky
|| odd
))
92 case IEEE754_RU
: /* toward +Infinity */
93 if ((round
|| sticky
) && !xs
)
96 case IEEE754_RD
: /* toward -Infinity */
97 if ((round
|| sticky
) && xs
)
101 if ((xm
>> 31) != 0) {
102 /* This can happen after rounding */
103 SETCX(IEEE754_INVALID_OPERATION
);
104 return ieee754si_xcpt(ieee754si_indef(), "sp_tint", x
);
107 SETCX(IEEE754_INEXACT
);
116 unsigned int ieee754sp_tuns(ieee754sp x
)
118 ieee754sp hb
= ieee754sp_1e31();
120 /* what if x < 0 ?? */
121 if (ieee754sp_lt(x
, hb
))
122 return (unsigned) ieee754sp_tint(x
);
124 return (unsigned) ieee754sp_tint(ieee754sp_sub(x
, hb
)) |
125 ((unsigned) 1 << 31);