2 * Copyright (c) 2017-2023 Steven G. Kargl
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice unmodified, this list of conditions, and the following
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 * See ../src/s_cospi.c for implementation details.
31 #include "../ld/fpmath.h"
33 #include "../ld/math_private.h"
36 * pi_hi contains the leading 56 bits of a 169 bit approximation for pi.
38 static const long double
39 pi_hi
= 3.14159265358979322702026593105983920e+00L,
40 pi_lo
= 1.14423774522196636802434264184180742e-17L;
45 volatile static const double vzero
= 0;
50 long double ai
, ar
, ax
, c
;
60 return (__kernel_cospil(ax
));
64 c
= __kernel_sinpil(0.5 - ax
);
68 c
= -__kernel_sinpil(ax
- 0.5);
70 c
= -__kernel_cospil(1 - ax
);
75 /* Split ax = ai + ar with 0 <= ar < 1. */
76 FFLOORL128(ax
, ai
, ar
);
80 c
= ar
== 0 ? 1 : __kernel_cospil(ar
);
82 c
= __kernel_sinpil(0.5 - ar
);
87 c
= -__kernel_sinpil(ar
- 0.5);
89 c
= -__kernel_cospil(1 - ar
);
91 return (fmodl(ai
, 2.L
) == 0 ? c
: -c
);
94 if (isinf(x
) || isnan(x
))
95 return (vzero
/ vzero
);
98 * For |x| >= 0x1p113, it is always an even integer, so return 1.
103 * For 0x1p112 <= |x| < 0x1p113 need to determine if x is an even
104 * or odd integer to return 1 or -1.
107 return (fmodl(ax
, 2.L
) == 0 ? 1 : -1);