1 /* e_sqrtf.c -- float version of e_sqrt.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
13 * ====================================================
15 * $NetBSD: e_sqrtf.c,v 1.7 2002/05/26 22:01:53 wiz Exp $
16 * $DragonFly: src/lib/libm/src/e_sqrtf.c,v 1.1 2005/07/26 21:15:20 joerg Exp $
20 #include "math_private.h"
22 static const float one
= 1.0, tiny
=1.0e-30;
28 int32_t sign
= (int)0x80000000;
34 /* take care of Inf and NaN */
35 if((ix
&0x7f800000)==0x7f800000) {
36 return x
*x
+x
; /* sqrt(NaN)=NaN, sqrt(+inf)=+inf
39 /* take care of zero */
41 if((ix
&(~sign
))==0) return x
;/* sqrt(+-0) = +-0 */
43 return (x
-x
)/(x
-x
); /* sqrt(-ve) = sNaN */
47 if(m
==0) { /* subnormal x */
48 for(i
=0;(ix
&0x00800000)==0;i
++) ix
<<=1;
51 m
-= 127; /* unbias exponent */
52 ix
= (ix
&0x007fffff)|0x00800000;
53 if(m
&1) /* odd m, double x to make it even */
55 m
>>= 1; /* m = [m/2] */
57 /* generate sqrt(x) bit by bit */
59 q
= s
= 0; /* q = sqrt(x) */
60 r
= 0x01000000; /* r = moving bit from right to left */
73 /* use floating add to find out rounding direction */
75 z
= one
-tiny
; /* trigger inexact flag */
84 ix
= (q
>>1)+0x3f000000;