1 /* s_sinl.c -- long double version of s_sin.c.
2 * Conversion to long double by Jakub Jelinek, jj@ultra.linux.cz.
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
13 * ====================================================
21 #if HAVE_SAME_LONG_DOUBLE_AS_DOUBLE
31 /* Code based on glibc/sysdeps/ieee754/ldbl-128/s_sinl.c. */
34 * Return sine function of x.
37 * __kernel_sinl ... sine function on [-pi/4,pi/4]
38 * __kernel_cosl ... cosine function on [-pi/4,pi/4]
39 * __ieee754_rem_pio2l ... argument reduction routine
42 * Let S,C and T denote the sin, cos and tan respectively on
43 * [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/2
44 * in [-pi/4 , +pi/4], and let n = k mod 4.
47 * n sin(x) cos(x) tan(x)
48 * ----------------------------------------------------------
53 * ----------------------------------------------------------
56 * Let trig be any of sin, cos, or tan.
57 * trig(+-INF) is NaN, with signals;
58 * trig(NaN) is that NaN;
61 * TRIG(x) returns trig(x) nearly rounded
69 long double y
[2], z
= 0.0L;
72 /* sinl(NaN) is NaN */
77 if (x
>= -0.7853981633974483096156608458198757210492
78 && x
<= 0.7853981633974483096156608458198757210492)
79 return kernel_sinl (x
, z
, 0);
81 /* sinl(Inf) is NaN, sinl(0) is 0 */
83 return x
- x
; /* NaN */
85 /* argument reduction needed */
88 n
= ieee754_rem_pio2l (x
, y
);
92 return kernel_sinl (y
[0], y
[1], 1);
94 return kernel_cosl (y
[0], y
[1]);
96 return -kernel_sinl (y
[0], y
[1], 1);
98 return -kernel_cosl (y
[0], y
[1]);
109 printf ("%.16Lg\n", sinl (0.7853981633974483096156608458198757210492));
110 printf ("%.16Lg\n", sinl (0.7853981633974483096156608458198757210492 *29));
111 printf ("%.16Lg\n", sinl (0.7853981633974483096156608458198757210492 *2));
112 printf ("%.16Lg\n", sinl (0.7853981633974483096156608458198757210492 *30));
113 printf ("%.16Lg\n", sinl (0.7853981633974483096156608458198757210492 *4));
114 printf ("%.16Lg\n", sinl (0.7853981633974483096156608458198757210492 *32));
115 printf ("%.16Lg\n", sinl (0.7853981633974483096156608458198757210492 *2/3));
116 printf ("%.16Lg\n", sinl (0.7853981633974483096156608458198757210492 *4/3));