1 /* IEEE754 floating point arithmetic
2 * single precision square root
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 "ieee754sp.h"
29 ieee754sp
ieee754sp_sqrt(ieee754sp x
)
31 int ix
, s
, q
, m
, t
, i
;
35 /* take care of Inf and NaN */
41 /* x == INF or NAN? */
43 case IEEE754_CLASS_QNAN
:
45 return ieee754sp_nanxcpt(x
, "sqrt");
46 case IEEE754_CLASS_SNAN
:
47 SETCX(IEEE754_INVALID_OPERATION
);
48 return ieee754sp_nanxcpt(ieee754sp_indef(), "sqrt");
49 case IEEE754_CLASS_ZERO
:
52 case IEEE754_CLASS_INF
:
54 /* sqrt(-Inf) = Nan */
55 SETCX(IEEE754_INVALID_OPERATION
);
56 return ieee754sp_nanxcpt(ieee754sp_indef(), "sqrt");
58 /* sqrt(+Inf) = Inf */
60 case IEEE754_CLASS_DNORM
:
61 case IEEE754_CLASS_NORM
:
64 SETCX(IEEE754_INVALID_OPERATION
);
65 return ieee754sp_nanxcpt(ieee754sp_indef(), "sqrt");
74 if (m
== 0) { /* subnormal x */
75 for (i
= 0; (ix
& 0x00800000) == 0; i
++)
79 m
-= 127; /* unbias exponent */
80 ix
= (ix
& 0x007fffff) | 0x00800000;
81 if (m
& 1) /* odd m, double x to make it even */
83 m
>>= 1; /* m = [m/2] */
85 /* generate sqrt(x) bit by bit */
87 q
= s
= 0; /* q = sqrt(x) */
88 r
= 0x01000000; /* r = moving bit from right to left */
102 SETCX(IEEE754_INEXACT
);
103 switch (ieee754_csr
.rm
) {
112 ix
= (q
>> 1) + 0x3f000000;