1 /* IEEE754 floating point arithmetic
5 * MIPS floating point support
6 * Copyright (C) 1994-2000 Algorithmics Ltd.
7 * http://www.algor.co.uk
9 * ########################################################################
11 * This program is free software; you can distribute it and/or modify it
12 * under the terms of the GNU General Public License (Version 2) as
13 * published by the Free Software Foundation.
15 * This program is distributed in the hope it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
24 * ########################################################################
28 #include "ieee754sp.h"
30 s64
ieee754sp_tlong(ieee754sp x
)
32 COMPXDP
; /* <-- need 64-bit mantissa tmp */
40 case IEEE754_CLASS_SNAN
:
41 case IEEE754_CLASS_QNAN
:
42 case IEEE754_CLASS_INF
:
43 SETCX(IEEE754_INVALID_OPERATION
);
44 return ieee754di_xcpt(ieee754di_indef(), "sp_tlong", 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
== 63 && xs
&& xm
== SP_HIDDEN_BIT
)
54 return -0x8000000000000000LL
;
55 /* Set invalid. We will only use overflow for floating
57 SETCX(IEEE754_INVALID_OPERATION
);
58 return ieee754di_xcpt(ieee754di_indef(), "sp_tlong", x
);
63 } else if (xe
< SP_MBITS
) {
72 sticky
= residue
!= 0;
76 residue
= xm
<< (32 - SP_MBITS
+ xe
);
77 round
= (residue
>> 31) != 0;
78 sticky
= (residue
<< 1) != 0;
81 odd
= (xm
& 0x1) != 0x0;
82 switch (ieee754_csr
.rm
) {
84 if (round
&& (sticky
|| odd
))
89 case IEEE754_RU
: /* toward +Infinity */
90 if ((round
|| sticky
) && !xs
)
93 case IEEE754_RD
: /* toward -Infinity */
94 if ((round
|| sticky
) && xs
)
98 if ((xm
>> 63) != 0) {
99 /* This can happen after rounding */
100 SETCX(IEEE754_INVALID_OPERATION
);
101 return ieee754di_xcpt(ieee754di_indef(), "sp_tlong", x
);
104 SETCX(IEEE754_INEXACT
);
113 u64
ieee754sp_tulong(ieee754sp x
)
115 ieee754sp hb
= ieee754sp_1e63();
117 /* what if x < 0 ?? */
118 if (ieee754sp_lt(x
, hb
))
119 return (u64
) ieee754sp_tlong(x
);
121 return (u64
) ieee754sp_tlong(ieee754sp_sub(x
, hb
)) |