mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 08:40:07 +00:00
52e1b618f4
2002-07-03 Jakub Jelinek <jakub@redhat.com> * stdio-common/printf_fp.c (__printf_fp.c): If _FPIO_CONST_SHIFT is non-zero, adjust exponent. * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl, erfl, __erfcl, erfcl): Remove NO_LONG_DOUBLE aliases. * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l, expm1l): Likewise. * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl, log1pl): Likewise. (__log1pl): Raise divide by zero and invalid exceptions when needed. * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Special case 1**y and -1**+-Inf. * sysdeps/ieee754/ldbl-128/ldbl2mpn.c (__mpn_extract_long_double): Fix BITS_PER_MP_LIMB 32 extraction. * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Don't raise exceptions for qNaNs. * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Likewise. * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgamma_r): Raise exceptions when needed. Don't recurse unnecessarily. Special case 1.0L and 2.0L arguments to avoid -0.0L as result. * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_y0l): Don't raise exceptions for qNaNs. * sysdeps/ieee754/ldbl-128/s_remquol.c (__remquol): Make qs 64-bit to fix *quo return value sign. * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gamma_r): Special case -Inf argument. * soft-fp/op-4.h (_FP_FRAC_CLZ_4): Fix a pasto. 2002-07-01 Jakub Jelinek <jakub@redhat.com> * libio/tst-eof.c (do_test): Remove unused ch and tm variables. * iconvdata/iso-2022-jp-3.c (EMIT_SHIFT_TO_INIT): Kill warnings if -DNDEBUG.
111 lines
2.5 KiB
C
111 lines
2.5 KiB
C
/* Compute remainder and a congruent to the quotient.
|
|
Copyright (C) 1997, 1999, 2002 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997 and
|
|
Jakub Jelinek <jj@ultra.linux.cz>, 1999.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
#include <math.h>
|
|
|
|
#include "math_private.h"
|
|
|
|
|
|
static const long double zero = 0.0;
|
|
|
|
|
|
long double
|
|
__remquol (long double x, long double y, int *quo)
|
|
{
|
|
int64_t hx,hy;
|
|
u_int64_t sx,lx,ly,qs;
|
|
int cquo;
|
|
|
|
GET_LDOUBLE_WORDS64 (hx, lx, x);
|
|
GET_LDOUBLE_WORDS64 (hy, ly, y);
|
|
sx = hx & 0x8000000000000000ULL;
|
|
qs = sx ^ (hy & 0x8000000000000000ULL);
|
|
hy &= 0x7fffffffffffffffLL;
|
|
hx &= 0x7fffffffffffffffLL;
|
|
|
|
/* Purge off exception values. */
|
|
if ((hy | ly) == 0)
|
|
return (x * y) / (x * y); /* y = 0 */
|
|
if ((hx >= 0x7fff000000000000LL) /* x not finite */
|
|
|| ((hy >= 0x7fff000000000000LL) /* y is NaN */
|
|
&& (((hy - 0x7fff000000000000LL) | ly) != 0)))
|
|
return (x * y) / (x * y);
|
|
|
|
if (hy <= 0x7ffbffffffffffffLL)
|
|
x = __ieee754_fmodl (x, 8 * y); /* now x < 8y */
|
|
|
|
if (((hx - hy) | (lx - ly)) == 0)
|
|
{
|
|
*quo = qs ? -1 : 1;
|
|
return zero * x;
|
|
}
|
|
|
|
x = fabsl (x);
|
|
y = fabsl (y);
|
|
cquo = 0;
|
|
|
|
if (x >= 4 * y)
|
|
{
|
|
x -= 4 * y;
|
|
cquo += 4;
|
|
}
|
|
if (x >= 2 * y)
|
|
{
|
|
x -= 2 * y;
|
|
cquo += 2;
|
|
}
|
|
|
|
if (hy < 0x0002000000000000LL)
|
|
{
|
|
if (x + x > y)
|
|
{
|
|
x -= y;
|
|
++cquo;
|
|
if (x + x >= y)
|
|
{
|
|
x -= y;
|
|
++cquo;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
long double y_half = 0.5L * y;
|
|
if (x > y_half)
|
|
{
|
|
x -= y;
|
|
++cquo;
|
|
if (x >= y_half)
|
|
{
|
|
x -= y;
|
|
++cquo;
|
|
}
|
|
}
|
|
}
|
|
|
|
*quo = qs ? -cquo : cquo;
|
|
|
|
if (sx)
|
|
x = -x;
|
|
return x;
|
|
}
|
|
weak_alias (__remquol, remquol)
|