math: raise invalid flag in ilogb*.c on +-0, +-inf and nan
[musl] / src / math / __sinl.c
1 /* origin: FreeBSD /usr/src/lib/msun/ld80/k_sinl.c */
2 /*
3  * ====================================================
4  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5  * Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans.
6  *
7  * Developed at SunSoft, a Sun Microsystems, Inc. business.
8  * Permission to use, copy, modify, and distribute this
9  * software is freely granted, provided that this notice
10  * is preserved.
11  * ====================================================
12  */
13
14 #include "libm.h"
15
16 #if LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384
17 /*
18  * ld80 version of __sin.c.  See __sin.c for most comments.
19  */
20 /*
21  * Domain [-0.7854, 0.7854], range ~[-1.89e-22, 1.915e-22]
22  * |sin(x)/x - s(x)| < 2**-72.1
23  *
24  * See __cosl.c for more details about the polynomial.
25  */
26
27 static const long double
28 S1 = -0.166666666666666666671L;   /* -0xaaaaaaaaaaaaaaab.0p-66 */
29
30 static const double
31 S2 =  0.0083333333333333332,      /*  0x11111111111111.0p-59 */
32 S3 = -0.00019841269841269427,     /* -0x1a01a01a019f81.0p-65 */
33 S4 =  0.0000027557319223597490,   /*  0x171de3a55560f7.0p-71 */
34 S5 = -0.000000025052108218074604, /* -0x1ae64564f16cad.0p-78 */
35 S6 =  1.6059006598854211e-10,     /*  0x161242b90243b5.0p-85 */
36 S7 = -7.6429779983024564e-13,     /* -0x1ae42ebd1b2e00.0p-93 */
37 S8 =  2.6174587166648325e-15;     /*  0x179372ea0b3f64.0p-101 */
38
39 long double __sinl(long double x, long double y, int iy)
40 {
41         long double z,r,v;
42
43         z = x*x;
44         v = z*x;
45         r = S2+z*(S3+z*(S4+z*(S5+z*(S6+z*(S7+z*S8)))));
46         if (iy == 0)
47                 return x+v*(S1+z*r);
48         return x-((z*(0.5*y-v*r)-y)-v*S1);
49 }
50 #endif