remove long double const workarounds
[musl] / src / math / acosl.c
1 /* origin: FreeBSD /usr/src/lib/msun/src/e_acosl.c */
2 /*
3  * ====================================================
4  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5  *
6  * Developed at SunSoft, a Sun Microsystems, Inc. business.
7  * Permission to use, copy, modify, and distribute this
8  * software is freely granted, provided that this notice
9  * is preserved.
10  * ====================================================
11  */
12 /*
13  * See comments in acos.c.
14  * Converted to long double by David Schultz <das@FreeBSD.ORG>.
15  */
16
17 #include "libm.h"
18
19 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
20 long double acosl(long double x)
21 {
22         return acos(x);
23 }
24 #elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
25 #include "__invtrigl.h"
26
27 static const long double
28 one = 1.00000000000000000000e+00,
29 pi = 3.14159265358979323846264338327950280e+00L;
30
31 long double acosl(long double x)
32 {
33         union IEEEl2bits u;
34         long double z, p, q, r, w, s, c, df;
35         int16_t expsign, expt;
36         u.e = x;
37         expsign = u.xbits.expsign;
38         expt = expsign & 0x7fff;
39         if (expt >= BIAS) {        /* |x| >= 1 */
40                 if (expt == BIAS &&
41                         ((u.bits.manh & ~LDBL_NBIT) | u.bits.manl) == 0) {
42                         if (expsign > 0)
43                                 return 0.0;  /* acos(1) = 0 */
44                         else
45                                 return pi + 2.0 * pio2_lo;  /* acos(-1)= pi */
46                 }
47                 return (x - x) / (x - x);  /* acos(|x|>1) is NaN */
48         }
49         if (expt < BIAS - 1) {     /* |x| < 0.5 */
50                 if (expt < ACOS_CONST)
51                         return pio2_hi + pio2_lo;  /* x tiny: acosl=pi/2 */
52                 z = x * x;
53                 p = P(z);
54                 q = Q(z);
55                 r = p / q;
56                 return pio2_hi - (x - (pio2_lo - x * r));
57         } else if (expsign < 0) {  /* x < -0.5 */
58                 z = (one + x) * 0.5;
59                 p = P(z);
60                 q = Q(z);
61                 s = sqrtl(z);
62                 r = p / q;
63                 w = r * s - pio2_lo;
64                 return pi - 2.0 * (s + w);
65         } else {                   /* x > 0.5 */
66                 z = (one - x) * 0.5;
67                 s = sqrtl(z);
68                 u.e = s;
69                 u.bits.manl = 0;
70                 df = u.e;
71                 c = (z - df * df) / (s + df);
72                 p = P(z);
73                 q = Q(z);
74                 r = p / q;
75                 w = r * s + c;
76                 return 2.0 * (df + w);
77         }
78 }
79 #endif