xref: /minix3/lib/libm/src/s_atanf.c (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras /* s_atanf.c -- float version of s_atan.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: s_atanf.c,v 1.7 2002/05/26 22:01:54 wiz Exp $");
19*2fe8fb19SBen Gras #endif
20*2fe8fb19SBen Gras 
21*2fe8fb19SBen Gras #include "math.h"
22*2fe8fb19SBen Gras #include "math_private.h"
23*2fe8fb19SBen Gras 
24*2fe8fb19SBen Gras static const float atanhi[] = {
25*2fe8fb19SBen Gras   4.6364760399e-01, /* atan(0.5)hi 0x3eed6338 */
26*2fe8fb19SBen Gras   7.8539812565e-01, /* atan(1.0)hi 0x3f490fda */
27*2fe8fb19SBen Gras   9.8279368877e-01, /* atan(1.5)hi 0x3f7b985e */
28*2fe8fb19SBen Gras   1.5707962513e+00, /* atan(inf)hi 0x3fc90fda */
29*2fe8fb19SBen Gras };
30*2fe8fb19SBen Gras 
31*2fe8fb19SBen Gras static const float atanlo[] = {
32*2fe8fb19SBen Gras   5.0121582440e-09, /* atan(0.5)lo 0x31ac3769 */
33*2fe8fb19SBen Gras   3.7748947079e-08, /* atan(1.0)lo 0x33222168 */
34*2fe8fb19SBen Gras   3.4473217170e-08, /* atan(1.5)lo 0x33140fb4 */
35*2fe8fb19SBen Gras   7.5497894159e-08, /* atan(inf)lo 0x33a22168 */
36*2fe8fb19SBen Gras };
37*2fe8fb19SBen Gras 
38*2fe8fb19SBen Gras static const float aT[] = {
39*2fe8fb19SBen Gras   3.3333334327e-01, /* 0x3eaaaaaa */
40*2fe8fb19SBen Gras  -2.0000000298e-01, /* 0xbe4ccccd */
41*2fe8fb19SBen Gras   1.4285714924e-01, /* 0x3e124925 */
42*2fe8fb19SBen Gras  -1.1111110449e-01, /* 0xbde38e38 */
43*2fe8fb19SBen Gras   9.0908870101e-02, /* 0x3dba2e6e */
44*2fe8fb19SBen Gras  -7.6918758452e-02, /* 0xbd9d8795 */
45*2fe8fb19SBen Gras   6.6610731184e-02, /* 0x3d886b35 */
46*2fe8fb19SBen Gras  -5.8335702866e-02, /* 0xbd6ef16b */
47*2fe8fb19SBen Gras   4.9768779427e-02, /* 0x3d4bda59 */
48*2fe8fb19SBen Gras  -3.6531571299e-02, /* 0xbd15a221 */
49*2fe8fb19SBen Gras   1.6285819933e-02, /* 0x3c8569d7 */
50*2fe8fb19SBen Gras };
51*2fe8fb19SBen Gras 
52*2fe8fb19SBen Gras static const float
53*2fe8fb19SBen Gras one   = 1.0,
54*2fe8fb19SBen Gras huge   = 1.0e30;
55*2fe8fb19SBen Gras 
56*2fe8fb19SBen Gras float
atanf(float x)57*2fe8fb19SBen Gras atanf(float x)
58*2fe8fb19SBen Gras {
59*2fe8fb19SBen Gras 	float w,s1,s2,z;
60*2fe8fb19SBen Gras 	int32_t ix,hx,id;
61*2fe8fb19SBen Gras 
62*2fe8fb19SBen Gras 	GET_FLOAT_WORD(hx,x);
63*2fe8fb19SBen Gras 	ix = hx&0x7fffffff;
64*2fe8fb19SBen Gras 	if(ix>=0x50800000) {	/* if |x| >= 2^34 */
65*2fe8fb19SBen Gras 	    if(ix>0x7f800000)
66*2fe8fb19SBen Gras 		return x+x;		/* NaN */
67*2fe8fb19SBen Gras 	    if(hx>0) return  atanhi[3]+atanlo[3];
68*2fe8fb19SBen Gras 	    else     return -atanhi[3]-atanlo[3];
69*2fe8fb19SBen Gras 	} if (ix < 0x3ee00000) {	/* |x| < 0.4375 */
70*2fe8fb19SBen Gras 	    if (ix < 0x31000000) {	/* |x| < 2^-29 */
71*2fe8fb19SBen Gras 		if(huge+x>one) return x;	/* raise inexact */
72*2fe8fb19SBen Gras 	    }
73*2fe8fb19SBen Gras 	    id = -1;
74*2fe8fb19SBen Gras 	} else {
75*2fe8fb19SBen Gras 	x = fabsf(x);
76*2fe8fb19SBen Gras 	if (ix < 0x3f980000) {		/* |x| < 1.1875 */
77*2fe8fb19SBen Gras 	    if (ix < 0x3f300000) {	/* 7/16 <=|x|<11/16 */
78*2fe8fb19SBen Gras 		id = 0; x = ((float)2.0*x-one)/((float)2.0+x);
79*2fe8fb19SBen Gras 	    } else {			/* 11/16<=|x|< 19/16 */
80*2fe8fb19SBen Gras 		id = 1; x  = (x-one)/(x+one);
81*2fe8fb19SBen Gras 	    }
82*2fe8fb19SBen Gras 	} else {
83*2fe8fb19SBen Gras 	    if (ix < 0x401c0000) {	/* |x| < 2.4375 */
84*2fe8fb19SBen Gras 		id = 2; x  = (x-(float)1.5)/(one+(float)1.5*x);
85*2fe8fb19SBen Gras 	    } else {			/* 2.4375 <= |x| < 2^66 */
86*2fe8fb19SBen Gras 		id = 3; x  = -(float)1.0/x;
87*2fe8fb19SBen Gras 	    }
88*2fe8fb19SBen Gras 	}}
89*2fe8fb19SBen Gras     /* end of argument reduction */
90*2fe8fb19SBen Gras 	z = x*x;
91*2fe8fb19SBen Gras 	w = z*z;
92*2fe8fb19SBen Gras     /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
93*2fe8fb19SBen Gras 	s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))));
94*2fe8fb19SBen Gras 	s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));
95*2fe8fb19SBen Gras 	if (id<0) return x - x*(s1+s2);
96*2fe8fb19SBen Gras 	else {
97*2fe8fb19SBen Gras 	    z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
98*2fe8fb19SBen Gras 	    return (hx<0)? -z:z;
99*2fe8fb19SBen Gras 	}
100*2fe8fb19SBen Gras }
101