an update to previous patch fixes nearly all remaining constants used in the math...
[AROS.git] / compiler / stdc / math / ld80 / k_sinl.c
blob85b4018eaddf68c9a9212c3da4e36a722e51620a
1 /* From: @(#)k_sin.c 1.3 95/01/18 */
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.
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 * ====================================================
14 //__FBSDID("$FreeBSD: src/lib/msun/ld80/k_sinl.c,v 1.1 2008/02/17 07:32:14 das Exp $");
17 * ld80 version of k_sin.c. See ../src/k_sin.c for most comments.
20 #include "math_private.h"
22 static const double
23 half = 0.5;
26 * Domain [-0.7854, 0.7854], range ~[-1.89e-22, 1.915e-22]
27 * |sin(x)/x - s(x)| < 2**-72.1
29 * See ../ld80/k_cosl.c for more details about the polynomial.
31 #if defined(__amd64__) || defined(__i386__)
32 /* Long double constants are slow on these arches, and broken on i386. */
33 static const volatile double
34 S1hi __attribute__ ((__section__(".rodata"))) = -0.16666666666666666, /* -0x15555555555555.0p-55 */
35 S1lo __attribute__ ((__section__(".rodata"))) = -9.2563760475949941e-18; /* -0x15580000000000.0p-109 */
36 #define S1 ((long double)S1hi + S1lo)
37 #else
38 static const long double
39 S1 = -0.166666666666666666671L; /* -0xaaaaaaaaaaaaaaab.0p-66 */
40 #endif
42 static const double
43 S2 = 0.0083333333333333332, /* 0x11111111111111.0p-59 */
44 S3 = -0.00019841269841269427, /* -0x1a01a01a019f81.0p-65 */
45 S4 = 0.0000027557319223597490, /* 0x171de3a55560f7.0p-71 */
46 S5 = -0.000000025052108218074604, /* -0x1ae64564f16cad.0p-78 */
47 S6 = 1.6059006598854211e-10, /* 0x161242b90243b5.0p-85 */
48 S7 = -7.6429779983024564e-13, /* -0x1ae42ebd1b2e00.0p-93 */
49 S8 = 2.6174587166648325e-15; /* 0x179372ea0b3f64.0p-101 */
51 long double
52 __kernel_sinl(long double x, long double y, int iy)
54 long double z,r,v;
56 z = x*x;
57 v = z*x;
58 r = S2+z*(S3+z*(S4+z*(S5+z*(S6+z*(S7+z*S8)))));
59 if(iy==0) return x+v*(S1+z*r);
60 else return x-((z*(half*y-v*r)-y)-v*S1);