2c9068f619ea9cb5f663066d9d26a5d2528848b6
[gnulib.git] / lib / sinl.c
1 /* s_sinl.c -- long double version of s_sin.c.
2  * Conversion to long double by Jakub Jelinek, jj@ultra.linux.cz.
3  */
4
5 /*
6  * ====================================================
7  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8  *
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  * ====================================================
14  */
15
16 #include <config.h>
17
18 /* Specification.  */
19 #include <math.h>
20
21 /* sinl(x)
22  * Return sine function of x.
23  *
24  * kernel function:
25  *      __kernel_sinl           ... sine function on [-pi/4,pi/4]
26  *      __kernel_cosl           ... cose function on [-pi/4,pi/4]
27  *      __ieee754_rem_pio2l     ... argument reduction routine
28  *
29  * Method.
30  *      Let S,C and T denote the sin, cos and tan respectively on
31  *      [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/2
32  *      in [-pi/4 , +pi/4], and let n = k mod 4.
33  *      We have
34  *
35  *          n        sin(x)      cos(x)        tan(x)
36  *     ----------------------------------------------------------
37  *          0          S           C             T
38  *          1          C          -S            -1/T
39  *          2         -S          -C             T
40  *          3         -C           S            -1/T
41  *     ----------------------------------------------------------
42  *
43  * Special cases:
44  *      Let trig be any of sin, cos, or tan.
45  *      trig(+-INF)  is NaN, with signals;
46  *      trig(NaN)    is that NaN;
47  *
48  * Accuracy:
49  *      TRIG(x) returns trig(x) nearly rounded
50  */
51
52 #include "trigl.h"
53 #include "trigl.c"
54 #include "sincosl.c"
55 #include "isnanl.h"
56
57 long double
58 sinl (long double x)
59 {
60   long double y[2], z = 0.0L;
61   int n;
62
63   /* sinl(NaN) is NaN */
64   if (isnanl (x))
65     return x;
66
67   /* |x| ~< pi/4 */
68   if (x >= -0.7853981633974483096156608458198757210492 &&
69       x <= 0.7853981633974483096156608458198757210492)
70     return kernel_sinl (x, z, 0);
71
72     /* sinl(Inf) is NaN, sinl(0) is 0 */
73   else if (x + x == x)
74     return x - x;               /* NaN */
75
76   /* argument reduction needed */
77   else
78     {
79       n = ieee754_rem_pio2l (x, y);
80       switch (n & 3)
81         {
82         case 0:
83           return kernel_sinl (y[0], y[1], 1);
84         case 1:
85           return kernel_cosl (y[0], y[1]);
86         case 2:
87           return -kernel_sinl (y[0], y[1], 1);
88         default:
89           return -kernel_cosl (y[0], y[1]);
90         }
91     }
92 }
93
94 #if 0
95 int
96 main (void)
97 {
98   printf ("%.16Lg\n", sinl(0.7853981633974483096156608458198757210492));
99   printf ("%.16Lg\n", sinl(0.7853981633974483096156608458198757210492 *29));
100   printf ("%.16Lg\n", sinl(0.7853981633974483096156608458198757210492 *2));
101   printf ("%.16Lg\n", sinl(0.7853981633974483096156608458198757210492 *30));
102   printf ("%.16Lg\n", sinl(0.7853981633974483096156608458198757210492 *4));
103   printf ("%.16Lg\n", sinl(0.7853981633974483096156608458198757210492 *32));
104   printf ("%.16Lg\n", sinl(0.7853981633974483096156608458198757210492 *2/3));
105   printf ("%.16Lg\n", sinl(0.7853981633974483096156608458198757210492 *4/3));
106 }
107 #endif