xref: /minix3/lib/libm/src/e_powf.c (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras /* e_powf.c -- float version of e_pow.c.
2*2fe8fb19SBen Gras  * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3*2fe8fb19SBen Gras  */
4*2fe8fb19SBen Gras 
5*2fe8fb19SBen Gras /*
6*2fe8fb19SBen Gras  * ====================================================
7*2fe8fb19SBen Gras  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8*2fe8fb19SBen Gras  *
9*2fe8fb19SBen Gras  * Developed at SunPro, a Sun Microsystems, Inc. business.
10*2fe8fb19SBen Gras  * Permission to use, copy, modify, and distribute this
11*2fe8fb19SBen Gras  * software is freely granted, provided that this notice
12*2fe8fb19SBen Gras  * is preserved.
13*2fe8fb19SBen Gras  * ====================================================
14*2fe8fb19SBen Gras  */
15*2fe8fb19SBen Gras 
16*2fe8fb19SBen Gras #include <sys/cdefs.h>
17*2fe8fb19SBen Gras #if defined(LIBM_SCCS) && !defined(lint)
18*2fe8fb19SBen Gras __RCSID("$NetBSD: e_powf.c,v 1.15 2010/04/23 19:17:07 drochner Exp $");
19*2fe8fb19SBen Gras #endif
20*2fe8fb19SBen Gras 
21*2fe8fb19SBen Gras #include "namespace.h"
22*2fe8fb19SBen Gras #include "math.h"
23*2fe8fb19SBen Gras #include "math_private.h"
24*2fe8fb19SBen Gras 
25*2fe8fb19SBen Gras static const float huge = 1.0e+30, tiny = 1.0e-30;
26*2fe8fb19SBen Gras 
27*2fe8fb19SBen Gras static const float
28*2fe8fb19SBen Gras bp[] = {1.0, 1.5,},
29*2fe8fb19SBen Gras dp_h[] = { 0.0, 5.84960938e-01,}, /* 0x3f15c000 */
30*2fe8fb19SBen Gras dp_l[] = { 0.0, 1.56322085e-06,}, /* 0x35d1cfdc */
31*2fe8fb19SBen Gras zero    =  0.0,
32*2fe8fb19SBen Gras one	=  1.0,
33*2fe8fb19SBen Gras two	=  2.0,
34*2fe8fb19SBen Gras two24	=  16777216.0,	/* 0x4b800000 */
35*2fe8fb19SBen Gras 	/* poly coefs for (3/2)*(log(x)-2s-2/3*s**3 */
36*2fe8fb19SBen Gras L1  =  6.0000002384e-01, /* 0x3f19999a */
37*2fe8fb19SBen Gras L2  =  4.2857143283e-01, /* 0x3edb6db7 */
38*2fe8fb19SBen Gras L3  =  3.3333334327e-01, /* 0x3eaaaaab */
39*2fe8fb19SBen Gras L4  =  2.7272811532e-01, /* 0x3e8ba305 */
40*2fe8fb19SBen Gras L5  =  2.3066075146e-01, /* 0x3e6c3255 */
41*2fe8fb19SBen Gras L6  =  2.0697501302e-01, /* 0x3e53f142 */
42*2fe8fb19SBen Gras P1   =  1.6666667163e-01, /* 0x3e2aaaab */
43*2fe8fb19SBen Gras P2   = -2.7777778450e-03, /* 0xbb360b61 */
44*2fe8fb19SBen Gras P3   =  6.6137559770e-05, /* 0x388ab355 */
45*2fe8fb19SBen Gras P4   = -1.6533901999e-06, /* 0xb5ddea0e */
46*2fe8fb19SBen Gras P5   =  4.1381369442e-08, /* 0x3331bb4c */
47*2fe8fb19SBen Gras lg2  =  6.9314718246e-01, /* 0x3f317218 */
48*2fe8fb19SBen Gras lg2_h  =  6.93145752e-01, /* 0x3f317200 */
49*2fe8fb19SBen Gras lg2_l  =  1.42860654e-06, /* 0x35bfbe8c */
50*2fe8fb19SBen Gras ovt =  4.2995665694e-08, /* -(128-log2(ovfl+.5ulp)) */
51*2fe8fb19SBen Gras cp    =  9.6179670095e-01, /* 0x3f76384f =2/(3ln2) */
52*2fe8fb19SBen Gras cp_h  =  9.6179199219e-01, /* 0x3f763800 =head of cp */
53*2fe8fb19SBen Gras cp_l  =  4.7017383622e-06, /* 0x369dc3a0 =tail of cp_h */
54*2fe8fb19SBen Gras ivln2    =  1.4426950216e+00, /* 0x3fb8aa3b =1/ln2 */
55*2fe8fb19SBen Gras ivln2_h  =  1.4426879883e+00, /* 0x3fb8aa00 =16b 1/ln2*/
56*2fe8fb19SBen Gras ivln2_l  =  7.0526075433e-06; /* 0x36eca570 =1/ln2 tail*/
57*2fe8fb19SBen Gras 
58*2fe8fb19SBen Gras float
__ieee754_powf(float x,float y)59*2fe8fb19SBen Gras __ieee754_powf(float x, float y)
60*2fe8fb19SBen Gras {
61*2fe8fb19SBen Gras 	float z,ax,z_h,z_l,p_h,p_l;
62*2fe8fb19SBen Gras 	float yy1,t1,t2,r,s,t,u,v,w;
63*2fe8fb19SBen Gras 	int32_t i,j,k,yisint,n;
64*2fe8fb19SBen Gras 	int32_t hx,hy,ix,iy,is;
65*2fe8fb19SBen Gras 
66*2fe8fb19SBen Gras 	GET_FLOAT_WORD(hx,x);
67*2fe8fb19SBen Gras 	GET_FLOAT_WORD(hy,y);
68*2fe8fb19SBen Gras 	ix = hx&0x7fffffff;  iy = hy&0x7fffffff;
69*2fe8fb19SBen Gras 
70*2fe8fb19SBen Gras     /* y==zero: x**0 = 1 */
71*2fe8fb19SBen Gras 	if(iy==0) return one;
72*2fe8fb19SBen Gras 
73*2fe8fb19SBen Gras     /* +-NaN return x+y */
74*2fe8fb19SBen Gras 	if(ix > 0x7f800000 ||
75*2fe8fb19SBen Gras 	   iy > 0x7f800000)
76*2fe8fb19SBen Gras 		return x+y;
77*2fe8fb19SBen Gras 
78*2fe8fb19SBen Gras     /* determine if y is an odd int when x < 0
79*2fe8fb19SBen Gras      * yisint = 0	... y is not an integer
80*2fe8fb19SBen Gras      * yisint = 1	... y is an odd int
81*2fe8fb19SBen Gras      * yisint = 2	... y is an even int
82*2fe8fb19SBen Gras      */
83*2fe8fb19SBen Gras 	yisint  = 0;
84*2fe8fb19SBen Gras 	if(hx<0) {
85*2fe8fb19SBen Gras 	    if(iy>=0x4b800000) yisint = 2; /* even integer y */
86*2fe8fb19SBen Gras 	    else if(iy>=0x3f800000) {
87*2fe8fb19SBen Gras 		k = (iy>>23)-0x7f;	   /* exponent */
88*2fe8fb19SBen Gras 		j = iy>>(23-k);
89*2fe8fb19SBen Gras 		if((j<<(23-k))==iy) yisint = 2-(j&1);
90*2fe8fb19SBen Gras 	    }
91*2fe8fb19SBen Gras 	}
92*2fe8fb19SBen Gras 
93*2fe8fb19SBen Gras     /* special value of y */
94*2fe8fb19SBen Gras 	if (iy==0x7f800000) {	/* y is +-inf */
95*2fe8fb19SBen Gras 	    if (ix==0x3f800000)
96*2fe8fb19SBen Gras 	        return  y - y;	/* inf**+-1 is NaN */
97*2fe8fb19SBen Gras 	    else if (ix > 0x3f800000)/* (|x|>1)**+-inf = inf,0 */
98*2fe8fb19SBen Gras 	        return (hy>=0)? y: zero;
99*2fe8fb19SBen Gras 	    else			/* (|x|<1)**-,+inf = inf,0 */
100*2fe8fb19SBen Gras 	        return (hy<0)?-y: zero;
101*2fe8fb19SBen Gras 	}
102*2fe8fb19SBen Gras 	if(iy==0x3f800000) {	/* y is  +-1 */
103*2fe8fb19SBen Gras 	    if(hy<0) return one/x; else return x;
104*2fe8fb19SBen Gras 	}
105*2fe8fb19SBen Gras 	if(hy==0x40000000) return x*x; /* y is  2 */
106*2fe8fb19SBen Gras 	if(hy==0x3f000000) {	/* y is  0.5 */
107*2fe8fb19SBen Gras 	    if(hx>=0)	/* x >= +0 */
108*2fe8fb19SBen Gras 	    return __ieee754_sqrtf(x);
109*2fe8fb19SBen Gras 	}
110*2fe8fb19SBen Gras 
111*2fe8fb19SBen Gras 	ax   = fabsf(x);
112*2fe8fb19SBen Gras     /* special value of x */
113*2fe8fb19SBen Gras 	if(ix==0x7f800000||ix==0||ix==0x3f800000){
114*2fe8fb19SBen Gras 	    z = ax;			/*x is +-0,+-inf,+-1*/
115*2fe8fb19SBen Gras 	    if(hy<0) z = one/z;	/* z = (1/|x|) */
116*2fe8fb19SBen Gras 	    if(hx<0) {
117*2fe8fb19SBen Gras 		if(((ix-0x3f800000)|yisint)==0) {
118*2fe8fb19SBen Gras 		    z = (z-z)/(z-z); /* (-1)**non-int is NaN */
119*2fe8fb19SBen Gras 		} else if(yisint==1)
120*2fe8fb19SBen Gras 		    z = -z;		/* (x<0)**odd = -(|x|**odd) */
121*2fe8fb19SBen Gras 	    }
122*2fe8fb19SBen Gras 	    return z;
123*2fe8fb19SBen Gras 	}
124*2fe8fb19SBen Gras 
125*2fe8fb19SBen Gras     /* (x<0)**(non-int) is NaN */
126*2fe8fb19SBen Gras 	if(((((u_int32_t)hx>>31)-1)|yisint)==0) return (x-x)/(x-x);
127*2fe8fb19SBen Gras 
128*2fe8fb19SBen Gras     /* |y| is huge */
129*2fe8fb19SBen Gras 	if(iy>0x4d000000) { /* if |y| > 2**27 */
130*2fe8fb19SBen Gras 	/* over/underflow if x is not close to one */
131*2fe8fb19SBen Gras 	    if(ix<0x3f7ffff8) return (hy<0)? huge*huge:tiny*tiny;
132*2fe8fb19SBen Gras 	    if(ix>0x3f800007) return (hy>0)? huge*huge:tiny*tiny;
133*2fe8fb19SBen Gras 	/* now |1-x| is tiny <= 2**-20, suffice to compute
134*2fe8fb19SBen Gras 	   log(x) by x-x^2/2+x^3/3-x^4/4 */
135*2fe8fb19SBen Gras 	    t = ax-one;		/* t has 20 trailing zeros */
136*2fe8fb19SBen Gras 	    w = (t*t)*((float)0.5-t*((float)0.333333333333-t*(float)0.25));
137*2fe8fb19SBen Gras 	    u = ivln2_h*t;	/* ivln2_h has 16 sig. bits */
138*2fe8fb19SBen Gras 	    v = t*ivln2_l-w*ivln2;
139*2fe8fb19SBen Gras 	    t1 = u+v;
140*2fe8fb19SBen Gras 	    GET_FLOAT_WORD(is,t1);
141*2fe8fb19SBen Gras 	    SET_FLOAT_WORD(t1,is&0xfffff000);
142*2fe8fb19SBen Gras 	    t2 = v-(t1-u);
143*2fe8fb19SBen Gras 	} else {
144*2fe8fb19SBen Gras 	    float s2,s_h,s_l,t_h,t_l;
145*2fe8fb19SBen Gras 	    n = 0;
146*2fe8fb19SBen Gras 	/* take care subnormal number */
147*2fe8fb19SBen Gras 	    if(ix<0x00800000)
148*2fe8fb19SBen Gras 		{ax *= two24; n -= 24; GET_FLOAT_WORD(ix,ax); }
149*2fe8fb19SBen Gras 	    n  += ((ix)>>23)-0x7f;
150*2fe8fb19SBen Gras 	    j  = ix&0x007fffff;
151*2fe8fb19SBen Gras 	/* determine interval */
152*2fe8fb19SBen Gras 	    ix = j|0x3f800000;		/* normalize ix */
153*2fe8fb19SBen Gras 	    if(j<=0x1cc471) k=0;	/* |x|<sqrt(3/2) */
154*2fe8fb19SBen Gras 	    else if(j<0x5db3d7) k=1;	/* |x|<sqrt(3)   */
155*2fe8fb19SBen Gras 	    else {k=0;n+=1;ix -= 0x00800000;}
156*2fe8fb19SBen Gras 	    SET_FLOAT_WORD(ax,ix);
157*2fe8fb19SBen Gras 
158*2fe8fb19SBen Gras 	/* compute s = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
159*2fe8fb19SBen Gras 	    u = ax-bp[k];		/* bp[0]=1.0, bp[1]=1.5 */
160*2fe8fb19SBen Gras 	    v = one/(ax+bp[k]);
161*2fe8fb19SBen Gras 	    s = u*v;
162*2fe8fb19SBen Gras 	    s_h = s;
163*2fe8fb19SBen Gras 	    GET_FLOAT_WORD(is,s_h);
164*2fe8fb19SBen Gras 	    SET_FLOAT_WORD(s_h,is&0xfffff000);
165*2fe8fb19SBen Gras 	/* t_h=ax+bp[k] High */
166*2fe8fb19SBen Gras 	    SET_FLOAT_WORD(t_h,((ix>>1)|0x20000000)+0x0040000+(k<<21));
167*2fe8fb19SBen Gras 	    t_l = ax - (t_h-bp[k]);
168*2fe8fb19SBen Gras 	    s_l = v*((u-s_h*t_h)-s_h*t_l);
169*2fe8fb19SBen Gras 	/* compute log(ax) */
170*2fe8fb19SBen Gras 	    s2 = s*s;
171*2fe8fb19SBen Gras 	    r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6)))));
172*2fe8fb19SBen Gras 	    r += s_l*(s_h+s);
173*2fe8fb19SBen Gras 	    s2  = s_h*s_h;
174*2fe8fb19SBen Gras 	    t_h = (float)3.0+s2+r;
175*2fe8fb19SBen Gras 	    GET_FLOAT_WORD(is,t_h);
176*2fe8fb19SBen Gras 	    SET_FLOAT_WORD(t_h,is&0xfffff000);
177*2fe8fb19SBen Gras 	    t_l = r-((t_h-(float)3.0)-s2);
178*2fe8fb19SBen Gras 	/* u+v = s*(1+...) */
179*2fe8fb19SBen Gras 	    u = s_h*t_h;
180*2fe8fb19SBen Gras 	    v = s_l*t_h+t_l*s;
181*2fe8fb19SBen Gras 	/* 2/(3log2)*(s+...) */
182*2fe8fb19SBen Gras 	    p_h = u+v;
183*2fe8fb19SBen Gras 	    GET_FLOAT_WORD(is,p_h);
184*2fe8fb19SBen Gras 	    SET_FLOAT_WORD(p_h,is&0xfffff000);
185*2fe8fb19SBen Gras 	    p_l = v-(p_h-u);
186*2fe8fb19SBen Gras 	    z_h = cp_h*p_h;		/* cp_h+cp_l = 2/(3*log2) */
187*2fe8fb19SBen Gras 	    z_l = cp_l*p_h+p_l*cp+dp_l[k];
188*2fe8fb19SBen Gras 	/* log2(ax) = (s+..)*2/(3*log2) = n + dp_h + z_h + z_l */
189*2fe8fb19SBen Gras 	    t = (float)n;
190*2fe8fb19SBen Gras 	    t1 = (((z_h+z_l)+dp_h[k])+t);
191*2fe8fb19SBen Gras 	    GET_FLOAT_WORD(is,t1);
192*2fe8fb19SBen Gras 	    SET_FLOAT_WORD(t1,is&0xfffff000);
193*2fe8fb19SBen Gras 	    t2 = z_l-(((t1-t)-dp_h[k])-z_h);
194*2fe8fb19SBen Gras 	}
195*2fe8fb19SBen Gras 
196*2fe8fb19SBen Gras 	s = one; /* s (sign of result -ve**odd) = -1 else = 1 */
197*2fe8fb19SBen Gras 	if(((((u_int32_t)hx>>31)-1)|(yisint-1))==0)
198*2fe8fb19SBen Gras 	    s = -one;	/* (-ve)**(odd int) */
199*2fe8fb19SBen Gras 
200*2fe8fb19SBen Gras     /* split up y into yy1+y2 and compute (yy1+y2)*(t1+t2) */
201*2fe8fb19SBen Gras 	GET_FLOAT_WORD(is,y);
202*2fe8fb19SBen Gras 	SET_FLOAT_WORD(yy1,is&0xfffff000);
203*2fe8fb19SBen Gras 	p_l = (y-yy1)*t1+y*t2;
204*2fe8fb19SBen Gras 	p_h = yy1*t1;
205*2fe8fb19SBen Gras 	z = p_l+p_h;
206*2fe8fb19SBen Gras 	GET_FLOAT_WORD(j,z);
207*2fe8fb19SBen Gras 	if (j>0x43000000)				/* if z > 128 */
208*2fe8fb19SBen Gras 	    return s*huge*huge;				/* overflow */
209*2fe8fb19SBen Gras 	else if (j==0x43000000) {			/* if z == 128 */
210*2fe8fb19SBen Gras 	    if(p_l+ovt>z-p_h) return s*huge*huge;	/* overflow */
211*2fe8fb19SBen Gras 	}
212*2fe8fb19SBen Gras 	else if ((uint32_t)j==0xc3160000){		/* z == -150 */
213*2fe8fb19SBen Gras 	    if(p_l<=z-p_h) return s*tiny*tiny;		/* underflow */
214*2fe8fb19SBen Gras 	}
215*2fe8fb19SBen Gras 	else if ((j&0x7fffffff)>0x43160000)		/* z <= -150 */
216*2fe8fb19SBen Gras 	    return s*tiny*tiny;				/* underflow */
217*2fe8fb19SBen Gras     /*
218*2fe8fb19SBen Gras      * compute 2**(p_h+p_l)
219*2fe8fb19SBen Gras      */
220*2fe8fb19SBen Gras 	i = j&0x7fffffff;
221*2fe8fb19SBen Gras 	k = (i>>23)-0x7f;
222*2fe8fb19SBen Gras 	n = 0;
223*2fe8fb19SBen Gras 	if(i>0x3f000000) {		/* if |z| > 0.5, set n = [z+0.5] */
224*2fe8fb19SBen Gras 	    n = j+(0x00800000>>(k+1));
225*2fe8fb19SBen Gras 	    k = ((n&0x7fffffff)>>23)-0x7f;	/* new k for n */
226*2fe8fb19SBen Gras 	    SET_FLOAT_WORD(t,n&~(0x007fffff>>k));
227*2fe8fb19SBen Gras 	    n = ((n&0x007fffff)|0x00800000)>>(23-k);
228*2fe8fb19SBen Gras 	    if(j<0) n = -n;
229*2fe8fb19SBen Gras 	    p_h -= t;
230*2fe8fb19SBen Gras 	}
231*2fe8fb19SBen Gras 	t = p_l+p_h;
232*2fe8fb19SBen Gras 	GET_FLOAT_WORD(is,t);
233*2fe8fb19SBen Gras 	SET_FLOAT_WORD(t,is&0xfffff000);
234*2fe8fb19SBen Gras 	u = t*lg2_h;
235*2fe8fb19SBen Gras 	v = (p_l-(t-p_h))*lg2+t*lg2_l;
236*2fe8fb19SBen Gras 	z = u+v;
237*2fe8fb19SBen Gras 	w = v-(z-u);
238*2fe8fb19SBen Gras 	t  = z*z;
239*2fe8fb19SBen Gras 	t1  = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
240*2fe8fb19SBen Gras 	r  = (z*t1)/(t1-two)-(w+z*w);
241*2fe8fb19SBen Gras 	z  = one-(r-z);
242*2fe8fb19SBen Gras 	GET_FLOAT_WORD(j,z);
243*2fe8fb19SBen Gras 	j += (n<<23);
244*2fe8fb19SBen Gras 	if((j>>23)<=0) z = scalbnf(z,n);	/* subnormal output */
245*2fe8fb19SBen Gras 	else SET_FLOAT_WORD(z,j);
246*2fe8fb19SBen Gras 	return s*z;
247*2fe8fb19SBen Gras }
248