1 1.1 christos /* From: @(#)k_sin.c 1.3 95/01/18 */ 2 1.1 christos /* 3 1.1 christos * ==================================================== 4 1.1 christos * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. 5 1.1 christos * Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. 6 1.1 christos * 7 1.1 christos * Developed at SunSoft, a Sun Microsystems, Inc. business. 8 1.1 christos * Permission to use, copy, modify, and distribute this 9 1.1 christos * software is freely granted, provided that this notice 10 1.1 christos * is preserved. 11 1.1 christos * ==================================================== 12 1.1 christos */ 13 1.1 christos 14 1.1 christos #include <sys/cdefs.h> 15 1.1 christos /* 16 1.1 christos * ld80 version of k_sin.c. See ../src/k_sin.c for most comments. 17 1.1 christos */ 18 1.1 christos 19 1.1 christos #include "math_private.h" 20 1.1 christos 21 1.1 christos static const double 22 1.1 christos half = 0.5; 23 1.1 christos 24 1.1 christos /* 25 1.1 christos * Domain [-0.7854, 0.7854], range ~[-1.89e-22, 1.915e-22] 26 1.1 christos * |sin(x)/x - s(x)| < 2**-72.1 27 1.1 christos * 28 1.1 christos * See ../ld80/k_cosl.c for more details about the polynomial. 29 1.1 christos */ 30 1.1 christos #if defined(__amd64__) || defined(__i386__) 31 1.1 christos /* Long double constants are slow on these arches, and broken on i386. */ 32 1.1 christos static const volatile double 33 1.1 christos S1hi = -0.16666666666666666, /* -0x15555555555555.0p-55 */ 34 1.1 christos S1lo = -9.2563760475949941e-18; /* -0x15580000000000.0p-109 */ 35 1.1 christos #define S1 ((long double)S1hi + S1lo) 36 1.1 christos #else 37 1.1 christos static const long double 38 1.1 christos S1 = -0.166666666666666666671L; /* -0xaaaaaaaaaaaaaaab.0p-66 */ 39 1.1 christos #endif 40 1.1 christos 41 1.1 christos static const double 42 1.1 christos S2 = 0.0083333333333333332, /* 0x11111111111111.0p-59 */ 43 1.1 christos S3 = -0.00019841269841269427, /* -0x1a01a01a019f81.0p-65 */ 44 1.1 christos S4 = 0.0000027557319223597490, /* 0x171de3a55560f7.0p-71 */ 45 1.1 christos S5 = -0.000000025052108218074604, /* -0x1ae64564f16cad.0p-78 */ 46 1.1 christos S6 = 1.6059006598854211e-10, /* 0x161242b90243b5.0p-85 */ 47 1.1 christos S7 = -7.6429779983024564e-13, /* -0x1ae42ebd1b2e00.0p-93 */ 48 1.1 christos S8 = 2.6174587166648325e-15; /* 0x179372ea0b3f64.0p-101 */ 49 1.1 christos 50 1.1 christos long double 51 1.1 christos __kernel_sinl(long double x, long double y, int iy) 52 1.1 christos { 53 1.1 christos long double z,r,v; 54 1.1 christos 55 1.1 christos z = x*x; 56 1.1 christos v = z*x; 57 1.1 christos r = S2+z*(S3+z*(S4+z*(S5+z*(S6+z*(S7+z*S8))))); 58 1.1 christos if(iy==0) return x+v*(S1+z*r); 59 1.1 christos else return x-((z*(half*y-v*r)-y)-v*S1); 60 1.1 christos } 61