1 // SPDX-License-Identifier: GPL-2.0-only
2 /* IEEE754 floating point arithmetic
3 * single precision square root
6 * MIPS floating point support
7 * Copyright (C) 1994-2000 Algorithmics Ltd.
10 #include "ieee754sp.h"
12 union ieee754sp ieee754sp_sqrt(union ieee754sp x)
14 int ix, s, q, m, t, i;
18 /* take care of Inf and NaN */
24 /* x == INF or NAN? */
26 case IEEE754_CLASS_SNAN:
27 return ieee754sp_nanxcpt(x);
29 case IEEE754_CLASS_QNAN:
33 case IEEE754_CLASS_ZERO:
37 case IEEE754_CLASS_INF:
39 /* sqrt(-Inf) = Nan */
40 ieee754_setcx(IEEE754_INVALID_OPERATION);
41 return ieee754sp_indef();
43 /* sqrt(+Inf) = Inf */
46 case IEEE754_CLASS_DNORM:
47 case IEEE754_CLASS_NORM:
50 ieee754_setcx(IEEE754_INVALID_OPERATION);
51 return ieee754sp_indef();
60 if (m == 0) { /* subnormal x */
61 for (i = 0; (ix & 0x00800000) == 0; i++)
65 m -= 127; /* unbias exponent */
66 ix = (ix & 0x007fffff) | 0x00800000;
67 if (m & 1) /* odd m, double x to make it even */
69 m >>= 1; /* m = [m/2] */
71 /* generate sqrt(x) bit by bit */
74 q = 0; /* q = sqrt(x) */
75 r = 0x01000000; /* r = moving bit from right to left */
89 ieee754_setcx(IEEE754_INEXACT);
90 switch (ieee754_csr.rm) {
99 ix = (q >> 1) + 0x3f000000;