PR middle-end/27134
[official-gcc.git] / libgcc-math / flt-32 / e_acosf.c
blobce28b844c18cf8bc51b73f433deb453017372a60
1 /* e_acosf.c -- float version of e_acos.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 */
5 /*
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
12 * is preserved.
13 * ====================================================
16 #if defined(LIBM_SCCS) && !defined(lint)
17 static char rcsid[] = "$NetBSD: e_acosf.c,v 1.5 1995/05/12 04:57:16 jtc Exp $";
18 #endif
20 #include "math_private.h"
22 #ifdef __STDC__
23 static const float
24 #else
25 static float
26 #endif
27 one = 1.0000000000e+00, /* 0x3F800000 */
28 pi = 3.1415925026e+00, /* 0x40490fda */
29 pio2_hi = 1.5707962513e+00, /* 0x3fc90fda */
30 pio2_lo = 7.5497894159e-08, /* 0x33a22168 */
31 pS0 = 1.6666667163e-01, /* 0x3e2aaaab */
32 pS1 = -3.2556581497e-01, /* 0xbea6b090 */
33 pS2 = 2.0121252537e-01, /* 0x3e4e0aa8 */
34 pS3 = -4.0055535734e-02, /* 0xbd241146 */
35 pS4 = 7.9153501429e-04, /* 0x3a4f7f04 */
36 pS5 = 3.4793309169e-05, /* 0x3811ef08 */
37 qS1 = -2.4033949375e+00, /* 0xc019d139 */
38 qS2 = 2.0209457874e+00, /* 0x4001572d */
39 qS3 = -6.8828397989e-01, /* 0xbf303361 */
40 qS4 = 7.7038154006e-02; /* 0x3d9dc62e */
42 #ifdef __STDC__
43 float __ieee754_acosf(float x)
44 #else
45 float __ieee754_acosf(x)
46 float x;
47 #endif
49 float z,p,q,r,w,s,c,df;
50 int32_t hx,ix;
51 GET_FLOAT_WORD(hx,x);
52 ix = hx&0x7fffffff;
53 if(ix==0x3f800000) { /* |x|==1 */
54 if(hx>0) return 0.0; /* acos(1) = 0 */
55 else return pi+(float)2.0*pio2_lo; /* acos(-1)= pi */
56 } else if(ix>0x3f800000) { /* |x| >= 1 */
57 return (x-x)/(x-x); /* acos(|x|>1) is NaN */
59 if(ix<0x3f000000) { /* |x| < 0.5 */
60 if(ix<=0x23000000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/
61 z = x*x;
62 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
63 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
64 r = p/q;
65 return pio2_hi - (x - (pio2_lo-x*r));
66 } else if (hx<0) { /* x < -0.5 */
67 z = (one+x)*(float)0.5;
68 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
69 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
70 s = __ieee754_sqrtf(z);
71 r = p/q;
72 w = r*s-pio2_lo;
73 return pi - (float)2.0*(s+w);
74 } else { /* x > 0.5 */
75 int32_t idf;
76 z = (one-x)*(float)0.5;
77 s = __ieee754_sqrtf(z);
78 df = s;
79 GET_FLOAT_WORD(idf,df);
80 SET_FLOAT_WORD(df,idf&0xfffff000);
81 c = (z-df*df)/(s+df);
82 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
83 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
84 r = p/q;
85 w = r*s+c;
86 return (float)2.0*(df+w);