1996-03-05 21:41:30 +00:00
|
|
|
/* @(#)k_rem_pio2.c 5.1 93/09/24 */
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
1996-12-20 01:39:50 +00:00
|
|
|
* software is freely granted, provided that this notice
|
1996-03-05 21:41:30 +00:00
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBM_SCCS) && !defined(lint)
|
|
|
|
static char rcsid[] = "$NetBSD: k_rem_pio2.c,v 1.7 1995/05/10 20:46:25 jtc Exp $";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* __kernel_rem_pio2(x,y,e0,nx,prec,ipio2)
|
|
|
|
* double x[],y[]; int e0,nx,prec; int ipio2[];
|
1996-12-20 01:39:50 +00:00
|
|
|
*
|
|
|
|
* __kernel_rem_pio2 return the last three digits of N with
|
1996-03-05 21:41:30 +00:00
|
|
|
* y = x - N*pi/2
|
|
|
|
* so that |y| < pi/2.
|
|
|
|
*
|
1996-12-20 01:39:50 +00:00
|
|
|
* The method is to compute the integer (mod 8) and fraction parts of
|
1996-03-05 21:41:30 +00:00
|
|
|
* (2/pi)*x without doing the full multiplication. In general we
|
|
|
|
* skip the part of the product that are known to be a huge integer (
|
|
|
|
* more accurately, = 0 mod 8 ). Thus the number of operations are
|
|
|
|
* independent of the exponent of the input.
|
|
|
|
*
|
|
|
|
* (2/pi) is represented by an array of 24-bit integers in ipio2[].
|
|
|
|
*
|
|
|
|
* Input parameters:
|
1996-12-20 01:39:50 +00:00
|
|
|
* x[] The input value (must be positive) is broken into nx
|
1996-03-05 21:41:30 +00:00
|
|
|
* pieces of 24-bit integers in double precision format.
|
1996-12-20 01:39:50 +00:00
|
|
|
* x[i] will be the i-th 24 bit of x. The scaled exponent
|
|
|
|
* of x[0] is given in input parameter e0 (i.e., x[0]*2^e0
|
1996-03-05 21:41:30 +00:00
|
|
|
* match x's up to 24 bits.
|
|
|
|
*
|
|
|
|
* Example of breaking a double positive z into x[0]+x[1]+x[2]:
|
|
|
|
* e0 = ilogb(z)-23
|
|
|
|
* z = scalbn(z,-e0)
|
|
|
|
* for i = 0,1,2
|
|
|
|
* x[i] = floor(z)
|
|
|
|
* z = (z-x[i])*2**24
|
|
|
|
*
|
|
|
|
*
|
2019-01-12 13:44:51 +00:00
|
|
|
* y[] output result in an array of double precision numbers.
|
1996-03-05 21:41:30 +00:00
|
|
|
* The dimension of y[] is:
|
|
|
|
* 24-bit precision 1
|
|
|
|
* 53-bit precision 2
|
|
|
|
* 64-bit precision 2
|
|
|
|
* 113-bit precision 3
|
|
|
|
* The actual value is the sum of them. Thus for 113-bit
|
1996-12-20 01:39:50 +00:00
|
|
|
* precision, one may have to do something like:
|
1996-03-05 21:41:30 +00:00
|
|
|
*
|
|
|
|
* long double t,w,r_head, r_tail;
|
|
|
|
* t = (long double)y[2] + (long double)y[1];
|
|
|
|
* w = (long double)y[0];
|
|
|
|
* r_head = t+w;
|
|
|
|
* r_tail = w - (r_head - t);
|
|
|
|
*
|
|
|
|
* e0 The exponent of x[0]
|
|
|
|
*
|
|
|
|
* nx dimension of x[]
|
|
|
|
*
|
|
|
|
* prec an integer indicating the precision:
|
|
|
|
* 0 24 bits (single)
|
|
|
|
* 1 53 bits (double)
|
|
|
|
* 2 64 bits (extended)
|
|
|
|
* 3 113 bits (quad)
|
|
|
|
*
|
|
|
|
* ipio2[]
|
1996-12-20 01:39:50 +00:00
|
|
|
* integer array, contains the (24*i)-th to (24*i+23)-th
|
|
|
|
* bit of 2/pi after binary point. The corresponding
|
1996-03-05 21:41:30 +00:00
|
|
|
* floating value is
|
|
|
|
*
|
|
|
|
* ipio2[i] * 2^(-24(i+1)).
|
|
|
|
*
|
|
|
|
* External function:
|
|
|
|
* double scalbn(), floor();
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Here is the description of some local variables:
|
|
|
|
*
|
|
|
|
* jk jk+1 is the initial number of terms of ipio2[] needed
|
|
|
|
* in the computation. The recommended value is 2,3,4,
|
|
|
|
* 6 for single, double, extended,and quad.
|
|
|
|
*
|
1996-12-20 01:39:50 +00:00
|
|
|
* jz local integer variable indicating the number of
|
|
|
|
* terms of ipio2[] used.
|
1996-03-05 21:41:30 +00:00
|
|
|
*
|
|
|
|
* jx nx - 1
|
|
|
|
*
|
|
|
|
* jv index for pointing to the suitable ipio2[] for the
|
|
|
|
* computation. In general, we want
|
|
|
|
* ( 2^e0*x[0] * ipio2[jv-1]*2^(-24jv) )/8
|
|
|
|
* is an integer. Thus
|
|
|
|
* e0-3-24*jv >= 0 or (e0-3)/24 >= jv
|
|
|
|
* Hence jv = max(0,(e0-3)/24).
|
|
|
|
*
|
|
|
|
* jp jp+1 is the number of terms in PIo2[] needed, jp = jk.
|
|
|
|
*
|
|
|
|
* q[] double array with integral value, representing the
|
|
|
|
* 24-bits chunk of the product of x and 2/pi.
|
|
|
|
*
|
|
|
|
* q0 the corresponding exponent of q[0]. Note that the
|
|
|
|
* exponent for q[i] would be q0-24*i.
|
|
|
|
*
|
|
|
|
* PIo2[] double precision array, obtained by cutting pi/2
|
1996-12-20 01:39:50 +00:00
|
|
|
* into 24 bits chunks.
|
1996-03-05 21:41:30 +00:00
|
|
|
*
|
1996-12-20 01:39:50 +00:00
|
|
|
* f[] ipio2[] in floating point
|
1996-03-05 21:41:30 +00:00
|
|
|
*
|
|
|
|
* iq[] integer array by breaking up q[] in 24-bits chunk.
|
|
|
|
*
|
|
|
|
* fq[] final product of x*(2/pi) in fq[0],..,fq[jk]
|
|
|
|
*
|
|
|
|
* ih integer. If >0 it indicates q[] is >= 0.5, hence
|
|
|
|
* it also indicates the *sign* of the result.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constants:
|
1996-12-20 01:39:50 +00:00
|
|
|
* The hexadecimal values are the intended ones for the following
|
|
|
|
* constants. The decimal values may be used, provided that the
|
|
|
|
* compiler will convert from decimal to binary accurately enough
|
1996-03-05 21:41:30 +00:00
|
|
|
* to produce the hexadecimal values shown.
|
|
|
|
*/
|
|
|
|
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math.h>
|
2018-05-09 00:15:10 +00:00
|
|
|
#include <math-narrow-eval.h>
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math_private.h>
|
Narrowing the visibility of libc-internal.h even further.
posix/wordexp-test.c used libc-internal.h for PTR_ALIGN_DOWN; similar
to what was done with libc-diag.h, I have split the definitions of
cast_to_integer, ALIGN_UP, ALIGN_DOWN, PTR_ALIGN_UP, and PTR_ALIGN_DOWN
to a new header, libc-pointer-arith.h.
It then occurred to me that the remaining declarations in libc-internal.h
are mostly to do with early initialization, and probably most of the
files including it, even in the core code, don't need it anymore. Indeed,
only 19 files actually need what remains of libc-internal.h. 23 others
need libc-diag.h instead, and 12 need libc-pointer-arith.h instead.
No file needs more than one of them, and 16 don't need any of them!
So, with this patch, libc-internal.h stops including libc-diag.h as
well as losing the pointer arithmetic macros, and all including files
are adjusted.
* include/libc-pointer-arith.h: New file. Define
cast_to_integer, ALIGN_UP, ALIGN_DOWN, PTR_ALIGN_UP, and
PTR_ALIGN_DOWN here.
* include/libc-internal.h: Definitions of above macros
moved from here. Don't include libc-diag.h anymore either.
* posix/wordexp-test.c: Include stdint.h and libc-pointer-arith.h.
Don't include libc-internal.h.
* debug/pcprofile.c, elf/dl-tunables.c, elf/soinit.c, io/openat.c
* io/openat64.c, misc/ptrace.c, nptl/pthread_clock_gettime.c
* nptl/pthread_clock_settime.c, nptl/pthread_cond_common.c
* string/strcoll_l.c, sysdeps/nacl/brk.c
* sysdeps/unix/clock_settime.c
* sysdeps/unix/sysv/linux/i386/get_clockfreq.c
* sysdeps/unix/sysv/linux/ia64/get_clockfreq.c
* sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
* sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c:
Don't include libc-internal.h.
* elf/get-dynamic-info.h, iconv/loop.c
* iconvdata/iso-2022-cn-ext.c, locale/weight.h, locale/weightwc.h
* misc/reboot.c, nis/nis_table.c, nptl_db/thread_dbP.h
* nscd/connections.c, resolv/res_send.c, soft-fp/fmadf4.c
* soft-fp/fmasf4.c, soft-fp/fmatf4.c, stdio-common/vfscanf.c
* sysdeps/ieee754/dbl-64/e_lgamma_r.c
* sysdeps/ieee754/dbl-64/k_rem_pio2.c
* sysdeps/ieee754/flt-32/e_lgammaf_r.c
* sysdeps/ieee754/flt-32/k_rem_pio2f.c
* sysdeps/ieee754/ldbl-128/k_tanl.c
* sysdeps/ieee754/ldbl-128ibm/k_tanl.c
* sysdeps/ieee754/ldbl-96/e_lgammal_r.c
* sysdeps/ieee754/ldbl-96/k_tanl.c, sysdeps/nptl/futex-internal.h:
Include libc-diag.h instead of libc-internal.h.
* elf/dl-load.c, elf/dl-reloc.c, locale/programs/locarchive.c
* nptl/nptl-init.c, string/strcspn.c, string/strspn.c
* malloc/malloc.c, sysdeps/i386/nptl/tls.h
* sysdeps/nacl/dl-map-segments.h, sysdeps/x86_64/atomic-machine.h
* sysdeps/unix/sysv/linux/spawni.c
* sysdeps/x86_64/nptl/tls.h:
Include libc-pointer-arith.h instead of libc-internal.h.
* elf/get-dynamic-info.h, sysdeps/nacl/dl-map-segments.h
* sysdeps/x86_64/atomic-machine.h:
Add multiple include guard.
2017-02-27 01:17:52 +00:00
|
|
|
#include <libc-diag.h>
|
1996-03-05 21:41:30 +00:00
|
|
|
|
|
|
|
static const int init_jk[] = {2,3,4,6}; /* initial value for jk */
|
|
|
|
|
|
|
|
static const double PIo2[] = {
|
|
|
|
1.57079625129699707031e+00, /* 0x3FF921FB, 0x40000000 */
|
|
|
|
7.54978941586159635335e-08, /* 0x3E74442D, 0x00000000 */
|
|
|
|
5.39030252995776476554e-15, /* 0x3CF84698, 0x80000000 */
|
|
|
|
3.28200341580791294123e-22, /* 0x3B78CC51, 0x60000000 */
|
|
|
|
1.27065575308067607349e-29, /* 0x39F01B83, 0x80000000 */
|
|
|
|
1.22933308981111328932e-36, /* 0x387A2520, 0x40000000 */
|
|
|
|
2.73370053816464559624e-44, /* 0x36E38222, 0x80000000 */
|
|
|
|
2.16741683877804819444e-51, /* 0x3569F31D, 0x00000000 */
|
|
|
|
};
|
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
static const double
|
2013-10-17 14:03:24 +00:00
|
|
|
zero = 0.0,
|
|
|
|
one = 1.0,
|
|
|
|
two24 = 1.67772160000000000000e+07, /* 0x41700000, 0x00000000 */
|
|
|
|
twon24 = 5.96046447753906250000e-08; /* 0x3E700000, 0x00000000 */
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
int
|
|
|
|
__kernel_rem_pio2 (double *x, double *y, int e0, int nx, int prec,
|
|
|
|
const int32_t *ipio2)
|
1996-03-05 21:41:30 +00:00
|
|
|
{
|
2013-10-17 14:03:24 +00:00
|
|
|
int32_t jz, jx, jv, jp, jk, carry, n, iq[20], i, j, k, m, q0, ih;
|
|
|
|
double z, fw, f[20], fq[20], q[20];
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* initialize jk*/
|
|
|
|
jk = init_jk[prec];
|
|
|
|
jp = jk;
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* determine jx,jv,q0, note that 3>q0 */
|
|
|
|
jx = nx - 1;
|
|
|
|
jv = (e0 - 3) / 24; if (jv < 0)
|
|
|
|
jv = 0;
|
|
|
|
q0 = e0 - 24 * (jv + 1);
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* set up f[0] to f[jx+jk] where f[jx+jk] = ipio2[jv+jk] */
|
|
|
|
j = jv - jx; m = jx + jk;
|
|
|
|
for (i = 0; i <= m; i++, j++)
|
|
|
|
f[i] = (j < 0) ? zero : (double) ipio2[j];
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* compute q[0],q[1],...q[jk] */
|
|
|
|
for (i = 0; i <= jk; i++)
|
|
|
|
{
|
|
|
|
for (j = 0, fw = 0.0; j <= jx; j++)
|
|
|
|
fw += x[j] * f[jx + i - j];
|
|
|
|
q[i] = fw;
|
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
jz = jk;
|
1996-03-05 21:41:30 +00:00
|
|
|
recompute:
|
2013-10-17 14:03:24 +00:00
|
|
|
/* distill q[] into iq[] reversingly */
|
|
|
|
for (i = 0, j = jz, z = q[jz]; j > 0; i++, j--)
|
|
|
|
{
|
|
|
|
fw = (double) ((int32_t) (twon24 * z));
|
|
|
|
iq[i] = (int32_t) (z - two24 * fw);
|
|
|
|
z = q[j - 1] + fw;
|
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* compute n */
|
|
|
|
z = __scalbn (z, q0); /* actual value of z */
|
Use floor functions not __floor functions in glibc libm.
Similar to the changes that were made to call sqrt functions directly
in glibc, instead of __ieee754_sqrt variants, so that the compiler
could inline them automatically without needing special inline
definitions in lots of math_private.h headers, this patch makes libm
code call floor functions directly instead of __floor variants,
removing the inlines / macros for x86_64 (SSE4.1) and powerpc
(POWER5).
The redirection used to ensure that __ieee754_sqrt does still get
called when the compiler doesn't inline a built-in function expansion
is refactored so it can be applied to other functions; the refactoring
is arranged so it's not limited to unary functions either (it would be
reasonable to use this mechanism for copysign - removing the inline in
math_private_calls.h but also eliminating unnecessary local PLT entry
use in the cases (powerpc soft-float and e500v1, for IBM long double)
where copysign calls don't get inlined).
The point of this change is that more architectures can get floor
calls inlined where they weren't previously (AArch64, for example),
without needing special inline definitions in their math_private.h,
and existing such definitions in math_private.h headers can be
removed.
Note that it's possible that in some cases an inline may be used where
an IFUNC call was previously used - this is the case on x86_64, for
example. I think the direct calls to floor are still appropriate; if
there's any significant performance cost from inline SSE2 floor
instead of an IFUNC call ending up with SSE4.1 floor, that indicates
that either the function should be doing something else that's faster
than using floor at all, or it should itself have IFUNC variants, or
that the compiler choice of inlining for generic tuning should change
to allow for the possibility that, by not inlining, an SSE4.1 IFUNC
might be called at runtime - but not that glibc should avoid calling
floor internally. (After all, all the same considerations would apply
to any user program calling floor, where it might either be inlined or
left as an out-of-line call allowing for a possible IFUNC.)
Tested for x86_64, and with build-many-glibcs.py.
* include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
__FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (MATH_REDIRECT):
New macro.
[!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
&& !NO_MATH_REDIRECT] (MATH_REDIRECT_LDBL): Likewise.
[!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
&& !NO_MATH_REDIRECT] (MATH_REDIRECT_F128): Likewise.
[!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
&& !NO_MATH_REDIRECT] (MATH_REDIRECT_UNARY_ARGS): Likewise.
[!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
&& !NO_MATH_REDIRECT] (sqrt): Redirect using MATH_REDIRECT.
[!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
&& !NO_MATH_REDIRECT] (floor): Likewise.
* sysdeps/aarch64/fpu/s_floor.c: Define NO_MATH_REDIRECT before
header inclusion.
* sysdeps/aarch64/fpu/s_floorf.c: Likewise.
* sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
* sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
* sysdeps/ieee754/float128/s_floorf128.c: Likewise.
* sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
* sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/s_floor_template.c: Likewise.
* sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: Likewise.
* sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: Likewise.
* sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: Likewise.
* sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: Likewise.
* sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
* sysdeps/riscv/rvf/s_floorf.c: Likewise.
* sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Likewise.
* sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Likewise.
* sysdeps/x86_64/fpu/multiarch/s_floor.c: Likewise.
* sysdeps/x86_64/fpu/multiarch/s_floorf.c: Likewise.
* sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__floor):
Remove macro.
[_ARCH_PWR5X] (__floorf): Likewise.
* sysdeps/x86_64/fpu/math_private.h [__SSE4_1__] (__floor): Remove
inline function.
[__SSE4_1__] (__floorf): Likewise.
* math/w_lgamma_main.c (LGFUNC (__lgamma)): Use floor functions
instead of __floor variants.
* math/w_lgamma_r_compat.c (__lgamma_r): Likewise.
* math/w_lgammaf_main.c (LGFUNC (__lgammaf)): Likewise.
* math/w_lgammaf_r_compat.c (__lgammaf_r): Likewise.
* math/w_lgammal_main.c (LGFUNC (__lgammal)): Likewise.
* math/w_lgammal_r_compat.c (__lgammal_r): Likewise.
* math/w_tgamma_compat.c (__tgamma): Likewise.
* math/w_tgamma_template.c (M_DECL_FUNC (__tgamma)): Likewise.
* math/w_tgammaf_compat.c (__tgammaf): Likewise.
* math/w_tgammal_compat.c (__tgammal): Likewise.
* sysdeps/ieee754/dbl-64/e_lgamma_r.c (sin_pi): Likewise.
* sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2):
Likewise.
* sysdeps/ieee754/dbl-64/lgamma_neg.c (__lgamma_neg): Likewise.
* sysdeps/ieee754/flt-32/e_lgammaf_r.c (sin_pif): Likewise.
* sysdeps/ieee754/flt-32/lgamma_negf.c (__lgamma_negf): Likewise.
* sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
Likewise.
* sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
* sysdeps/ieee754/ldbl-128/lgamma_negl.c (__lgamma_negl):
Likewise.
* sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c (__ieee754_lgammal_r):
Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
* sysdeps/ieee754/ldbl-128ibm/lgamma_negl.c (__lgamma_negl):
Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_truncl.c (__truncl): Likewise.
* sysdeps/ieee754/ldbl-96/e_lgammal_r.c (sin_pi): Likewise.
* sysdeps/ieee754/ldbl-96/lgamma_negl.c (__lgamma_negl): Likewise.
* sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
* sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
2018-09-14 13:09:01 +00:00
|
|
|
z -= 8.0 * floor (z * 0.125); /* trim off integer >= 8 */
|
2013-10-17 14:03:24 +00:00
|
|
|
n = (int32_t) z;
|
|
|
|
z -= (double) n;
|
|
|
|
ih = 0;
|
|
|
|
if (q0 > 0) /* need iq[jz-1] to determine n */
|
|
|
|
{
|
|
|
|
i = (iq[jz - 1] >> (24 - q0)); n += i;
|
|
|
|
iq[jz - 1] -= i << (24 - q0);
|
|
|
|
ih = iq[jz - 1] >> (23 - q0);
|
|
|
|
}
|
|
|
|
else if (q0 == 0)
|
|
|
|
ih = iq[jz - 1] >> 23;
|
|
|
|
else if (z >= 0.5)
|
|
|
|
ih = 2;
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
if (ih > 0) /* q > 0.5 */
|
|
|
|
{
|
|
|
|
n += 1; carry = 0;
|
|
|
|
for (i = 0; i < jz; i++) /* compute 1-q */
|
|
|
|
{
|
|
|
|
j = iq[i];
|
|
|
|
if (carry == 0)
|
|
|
|
{
|
|
|
|
if (j != 0)
|
|
|
|
{
|
|
|
|
carry = 1; iq[i] = 0x1000000 - j;
|
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
else
|
|
|
|
iq[i] = 0xffffff - j;
|
|
|
|
}
|
|
|
|
if (q0 > 0) /* rare case: chance is 1 in 12 */
|
|
|
|
{
|
|
|
|
switch (q0)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
iq[jz - 1] &= 0x7fffff; break;
|
|
|
|
case 2:
|
|
|
|
iq[jz - 1] &= 0x3fffff; break;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
if (ih == 2)
|
|
|
|
{
|
|
|
|
z = one - z;
|
|
|
|
if (carry != 0)
|
|
|
|
z -= __scalbn (one, q0);
|
|
|
|
}
|
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* check if recomputation is needed */
|
|
|
|
if (z == zero)
|
|
|
|
{
|
|
|
|
j = 0;
|
|
|
|
for (i = jz - 1; i >= jk; i--)
|
|
|
|
j |= iq[i];
|
|
|
|
if (j == 0) /* need recomputation */
|
|
|
|
{
|
2016-08-18 10:20:35 +00:00
|
|
|
/* On s390x gcc 6.1 -O3 produces the warning "array subscript is below
|
|
|
|
array bounds [-Werror=array-bounds]". Only __ieee754_rem_pio2l
|
|
|
|
calls __kernel_rem_pio2 for normal numbers and |x| > pi/4 in case
|
|
|
|
of ldbl-96 and |x| > 3pi/4 in case of ldbl-128[ibm].
|
|
|
|
Thus x can't be zero and ipio2 is not zero, too. Thus not all iq[]
|
|
|
|
values can't be zero. */
|
|
|
|
DIAG_PUSH_NEEDS_COMMENT;
|
|
|
|
DIAG_IGNORE_NEEDS_COMMENT (6.1, "-Warray-bounds");
|
2013-10-17 14:03:24 +00:00
|
|
|
for (k = 1; iq[jk - k] == 0; k++)
|
|
|
|
; /* k = no. of terms needed */
|
2016-08-18 10:20:35 +00:00
|
|
|
DIAG_POP_NEEDS_COMMENT;
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
for (i = jz + 1; i <= jz + k; i++) /* add q[jz+1] to q[jz+k] */
|
|
|
|
{
|
|
|
|
f[jx + i] = (double) ipio2[jv + i];
|
|
|
|
for (j = 0, fw = 0.0; j <= jx; j++)
|
|
|
|
fw += x[j] * f[jx + i - j];
|
|
|
|
q[i] = fw;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
jz += k;
|
|
|
|
goto recompute;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* chop off zero terms */
|
|
|
|
if (z == 0.0)
|
|
|
|
{
|
|
|
|
jz -= 1; q0 -= 24;
|
|
|
|
while (iq[jz] == 0)
|
|
|
|
{
|
|
|
|
jz--; q0 -= 24;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
}
|
|
|
|
else /* break z into 24-bit if necessary */
|
|
|
|
{
|
|
|
|
z = __scalbn (z, -q0);
|
|
|
|
if (z >= two24)
|
|
|
|
{
|
|
|
|
fw = (double) ((int32_t) (twon24 * z));
|
|
|
|
iq[jz] = (int32_t) (z - two24 * fw);
|
|
|
|
jz += 1; q0 += 24;
|
|
|
|
iq[jz] = (int32_t) fw;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
else
|
|
|
|
iq[jz] = (int32_t) z;
|
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* convert integer "bit" chunk to floating-point value */
|
|
|
|
fw = __scalbn (one, q0);
|
|
|
|
for (i = jz; i >= 0; i--)
|
|
|
|
{
|
|
|
|
q[i] = fw * (double) iq[i]; fw *= twon24;
|
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
/* compute PIo2[0,...,jp]*q[jz,...,0] */
|
|
|
|
for (i = jz; i >= 0; i--)
|
|
|
|
{
|
|
|
|
for (fw = 0.0, k = 0; k <= jp && k <= jz - i; k++)
|
|
|
|
fw += PIo2[k] * q[i + k];
|
|
|
|
fq[jz - i] = fw;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compress fq[] into y[] */
|
|
|
|
switch (prec)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
fw = 0.0;
|
|
|
|
for (i = jz; i >= 0; i--)
|
|
|
|
fw += fq[i];
|
|
|
|
y[0] = (ih == 0) ? fw : -fw;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 2:;
|
|
|
|
double fv = 0.0;
|
|
|
|
for (i = jz; i >= 0; i--)
|
2015-09-23 18:14:57 +00:00
|
|
|
fv = math_narrow_eval (fv + fq[i]);
|
2013-10-17 14:03:24 +00:00
|
|
|
y[0] = (ih == 0) ? fv : -fv;
|
2018-05-22 16:55:04 +00:00
|
|
|
/* GCC mainline (to be GCC 9), as of 2018-05-22 on i686, warns
|
|
|
|
that fq[0] may be used uninitialized. This is not possible
|
|
|
|
because jz is always nonnegative when the above loop
|
|
|
|
initializing fq is executed, because the result is never zero
|
|
|
|
to full precision (this function is not called for zero
|
|
|
|
arguments). */
|
|
|
|
DIAG_PUSH_NEEDS_COMMENT;
|
|
|
|
DIAG_IGNORE_NEEDS_COMMENT (9, "-Wmaybe-uninitialized");
|
2015-09-23 18:14:57 +00:00
|
|
|
fv = math_narrow_eval (fq[0] - fv);
|
2018-05-22 16:55:04 +00:00
|
|
|
DIAG_POP_NEEDS_COMMENT;
|
2013-10-17 14:03:24 +00:00
|
|
|
for (i = 1; i <= jz; i++)
|
2015-09-23 18:14:57 +00:00
|
|
|
fv = math_narrow_eval (fv + fq[i]);
|
2013-10-17 14:03:24 +00:00
|
|
|
y[1] = (ih == 0) ? fv : -fv;
|
|
|
|
break;
|
|
|
|
case 3: /* painful */
|
|
|
|
for (i = jz; i > 0; i--)
|
|
|
|
{
|
2015-09-23 18:14:57 +00:00
|
|
|
double fv = math_narrow_eval (fq[i - 1] + fq[i]);
|
2013-10-17 14:03:24 +00:00
|
|
|
fq[i] += fq[i - 1] - fv;
|
|
|
|
fq[i - 1] = fv;
|
|
|
|
}
|
|
|
|
for (i = jz; i > 1; i--)
|
|
|
|
{
|
2015-09-23 18:14:57 +00:00
|
|
|
double fv = math_narrow_eval (fq[i - 1] + fq[i]);
|
2013-10-17 14:03:24 +00:00
|
|
|
fq[i] += fq[i - 1] - fv;
|
|
|
|
fq[i - 1] = fv;
|
|
|
|
}
|
|
|
|
for (fw = 0.0, i = jz; i >= 2; i--)
|
|
|
|
fw += fq[i];
|
|
|
|
if (ih == 0)
|
|
|
|
{
|
|
|
|
y[0] = fq[0]; y[1] = fq[1]; y[2] = fw;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
y[0] = -fq[0]; y[1] = -fq[1]; y[2] = -fw;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
}
|
|
|
|
return n & 7;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|