1996-03-05 21:41:30 +00:00
|
|
|
/* @(#)e_hypot.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
|
1997-01-01 15:28:18 +00:00
|
|
|
* software is freely granted, provided that this notice
|
1996-03-05 21:41:30 +00:00
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* __ieee754_hypot(x,y)
|
|
|
|
*
|
1997-01-01 15:28:18 +00:00
|
|
|
* Method :
|
|
|
|
* If (assume round-to-nearest) z=x*x+y*y
|
|
|
|
* has error less than sqrt(2)/2 ulp, than
|
1996-03-05 21:41:30 +00:00
|
|
|
* sqrt(z) has error less than 1 ulp (exercise).
|
|
|
|
*
|
1997-01-01 15:28:18 +00:00
|
|
|
* So, compute sqrt(x*x+y*y) with some care as
|
1996-03-05 21:41:30 +00:00
|
|
|
* follows to get the error below 1 ulp:
|
|
|
|
*
|
|
|
|
* Assume x>y>0;
|
|
|
|
* (if possible, set rounding to round-to-nearest)
|
|
|
|
* 1. if x > 2y use
|
|
|
|
* x1*x1+(y*y+(x2*(x+x1))) for x*x+y*y
|
|
|
|
* where x1 = x with lower 32 bits cleared, x2 = x-x1; else
|
|
|
|
* 2. if x <= 2y use
|
|
|
|
* t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
|
1997-01-01 15:28:18 +00:00
|
|
|
* where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
|
1996-03-05 21:41:30 +00:00
|
|
|
* y1= y with lower 32 bits chopped, y2 = y-y1.
|
1997-01-01 15:28:18 +00:00
|
|
|
*
|
|
|
|
* NOTE: scaling may be necessary if some argument is too
|
1996-03-05 21:41:30 +00:00
|
|
|
* large or too tiny
|
|
|
|
*
|
|
|
|
* Special cases:
|
|
|
|
* hypot(x,y) is INF if x or y is +INF or -INF; else
|
|
|
|
* hypot(x,y) is NAN if x or y is NAN.
|
|
|
|
*
|
|
|
|
* Accuracy:
|
2011-10-12 15:27:51 +00:00
|
|
|
* hypot(x,y) returns sqrt(x^2+y^2) with error less
|
|
|
|
* than 1 ulps (units in the last place)
|
1996-03-05 21:41:30 +00:00
|
|
|
*/
|
|
|
|
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <math_private.h>
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2011-10-12 15:27:51 +00:00
|
|
|
double
|
2013-10-17 14:03:24 +00:00
|
|
|
__ieee754_hypot (double x, double y)
|
1996-03-05 21:41:30 +00:00
|
|
|
{
|
2013-10-17 14:03:24 +00:00
|
|
|
double a, b, t1, t2, y1, y2, w;
|
|
|
|
int32_t j, k, ha, hb;
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2013-10-17 14:03:24 +00:00
|
|
|
GET_HIGH_WORD (ha, x);
|
|
|
|
ha &= 0x7fffffff;
|
|
|
|
GET_HIGH_WORD (hb, y);
|
|
|
|
hb &= 0x7fffffff;
|
|
|
|
if (hb > ha)
|
|
|
|
{
|
|
|
|
a = y; b = x; j = ha; ha = hb; hb = j;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
a = x; b = y;
|
|
|
|
}
|
|
|
|
SET_HIGH_WORD (a, ha); /* a <- |a| */
|
|
|
|
SET_HIGH_WORD (b, hb); /* b <- |b| */
|
|
|
|
if ((ha - hb) > 0x3c00000)
|
|
|
|
{
|
|
|
|
return a + b;
|
|
|
|
} /* x/y > 2**60 */
|
|
|
|
k = 0;
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_unlikely (ha > 0x5f300000)) /* a>2**500 */
|
2013-10-17 14:03:24 +00:00
|
|
|
{
|
|
|
|
if (ha >= 0x7ff00000) /* Inf or NaN */
|
|
|
|
{
|
2017-08-03 19:55:04 +00:00
|
|
|
uint32_t low;
|
2013-10-17 14:03:24 +00:00
|
|
|
w = a + b; /* for sNaN */
|
Fix hypot sNaN handling (bug 20940).
TS 18661-1 generally defines libm functions taking sNaN arguments to
return qNaN and raise "invalid", even for the cases where a
corresponding qNaN argument would not result in a qNaN return. This
includes hypot with one argument being an infinity and the other being
an sNaN. This patch duly fixes hypot implementatations in glibc
(generic and powerpc) to ensure qNaN, computed by arithmetic on the
arguments, is returned in that case.
Various implementations do their checks for infinities and NaNs inline
by manipulating the representations of the arguments. For simplicity,
this patch just uses issignaling to check for sNaN arguments. This
could be inlined like the existing code (with due care about reversed
quiet NaN conventions, for implementations where that is relevant),
but given that all these checks are in cases where it's already known
at least one argument is not finite, which should be the uncommon
case, that doesn't seem worthwhile unless performance issues are
observed in practice.
Tested for x86_64, x86, mips64 and powerpc.
[BZ #20940]
* sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Do not
return Inf for arguments Inf and sNaN.
* sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Likewise.
* sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
Likewise.
* sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Likewise.
* sysdeps/powerpc/fpu/e_hypot.c (TEST_INF_NAN): Do not return Inf
for arguments Inf and sNaN. When returning a NaN, compute it by
arithmetic on the arguments.
* sysdeps/powerpc/fpu/e_hypotf.c (TEST_INF_NAN): Likewise.
* math/libm-test.inc (pow_test_data): Add tests of sNaN arguments.
2016-12-07 01:16:36 +00:00
|
|
|
if (issignaling (a) || issignaling (b))
|
|
|
|
return w;
|
2013-10-17 14:03:24 +00:00
|
|
|
GET_LOW_WORD (low, a);
|
|
|
|
if (((ha & 0xfffff) | low) == 0)
|
|
|
|
w = a;
|
|
|
|
GET_LOW_WORD (low, b);
|
|
|
|
if (((hb ^ 0x7ff00000) | low) == 0)
|
|
|
|
w = b;
|
|
|
|
return w;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
/* scale a and b by 2**-600 */
|
|
|
|
ha -= 0x25800000; hb -= 0x25800000; k += 600;
|
|
|
|
SET_HIGH_WORD (a, ha);
|
|
|
|
SET_HIGH_WORD (b, hb);
|
|
|
|
}
|
2013-12-17 13:43:40 +00:00
|
|
|
if (__builtin_expect (hb < 0x23d00000, 0)) /* b < 2**-450 */
|
2013-10-17 14:03:24 +00:00
|
|
|
{
|
|
|
|
if (hb <= 0x000fffff) /* subnormal b or 0 */
|
|
|
|
{
|
2017-08-03 19:55:04 +00:00
|
|
|
uint32_t low;
|
2013-10-17 14:03:24 +00:00
|
|
|
GET_LOW_WORD (low, b);
|
|
|
|
if ((hb | low) == 0)
|
|
|
|
return a;
|
|
|
|
t1 = 0;
|
|
|
|
SET_HIGH_WORD (t1, 0x7fd00000); /* t1=2^1022 */
|
|
|
|
b *= t1;
|
|
|
|
a *= t1;
|
|
|
|
k -= 1022;
|
2013-12-17 13:42:13 +00:00
|
|
|
GET_HIGH_WORD (ha, a);
|
|
|
|
GET_HIGH_WORD (hb, b);
|
|
|
|
if (hb > ha)
|
|
|
|
{
|
|
|
|
t1 = a;
|
|
|
|
a = b;
|
|
|
|
b = t1;
|
|
|
|
j = ha;
|
|
|
|
ha = hb;
|
|
|
|
hb = j;
|
|
|
|
}
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
else /* scale a and b by 2^600 */
|
|
|
|
{
|
|
|
|
ha += 0x25800000; /* a *= 2^600 */
|
|
|
|
hb += 0x25800000; /* b *= 2^600 */
|
|
|
|
k -= 600;
|
|
|
|
SET_HIGH_WORD (a, ha);
|
|
|
|
SET_HIGH_WORD (b, hb);
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2013-10-17 14:03:24 +00:00
|
|
|
}
|
|
|
|
/* medium size a and b */
|
|
|
|
w = a - b;
|
|
|
|
if (w > b)
|
|
|
|
{
|
|
|
|
t1 = 0;
|
|
|
|
SET_HIGH_WORD (t1, ha);
|
|
|
|
t2 = a - t1;
|
|
|
|
w = __ieee754_sqrt (t1 * t1 - (b * (-b) - t2 * (a + t1)));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
a = a + a;
|
|
|
|
y1 = 0;
|
|
|
|
SET_HIGH_WORD (y1, hb);
|
|
|
|
y2 = b - y1;
|
|
|
|
t1 = 0;
|
|
|
|
SET_HIGH_WORD (t1, ha + 0x00100000);
|
|
|
|
t2 = a - t1;
|
|
|
|
w = __ieee754_sqrt (t1 * y1 - (w * (-w) - (t1 * y2 + t2 * b)));
|
|
|
|
}
|
|
|
|
if (k != 0)
|
|
|
|
{
|
2017-08-03 19:55:04 +00:00
|
|
|
uint32_t high;
|
2013-10-17 14:03:24 +00:00
|
|
|
t1 = 1.0;
|
|
|
|
GET_HIGH_WORD (high, t1);
|
|
|
|
SET_HIGH_WORD (t1, high + (k << 20));
|
Fix hypot missing underflows (bug 18803).
Similar to various other bugs in this area, hypot functions can fail
to raise the underflow exception when the result is tiny and inexact
but one or more low bits of the intermediate result that is scaled
down (or, in the i386 case, converted from a wider evaluation format)
are zero. This patch forces the exception in a similar way to
previous fixes.
Note that this issue cannot arise for implementations of hypotf using
double (or wider) for intermediate evaluation (if hypotf should
underflow, that means the double square root is being computed of some
number of the form N*2^-298, for 0 < N < 2^46, which is exactly
represented as a double, and whatever the rounding mode such a square
root cannot have a mantissa with all zeroes after the initial 23
bits). Thus no changes are made to hypotf implementations in this
patch, only to hypot and hypotl.
Tested for x86_64, x86, mips64 and powerpc.
[BZ #18803]
* sysdeps/i386/fpu/e_hypot.S: Use DEFINE_DBL_MIN.
(MO): New macro.
(__ieee754_hypot) [PIC]: Load PIC register.
(__ieee754_hypot): Use DBL_NARROW_EVAL_UFLOW_NONNEG instead of
DBL_NARROW_EVAL.
* sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Use
math_check_force_underflow_nonneg in case where result might be
tiny.
* sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
Likewise.
* sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
Likewise.
* sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Likewise.
* sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Likewise.
* math/auto-libm-test-in: Add more tests of hypot.
* math/auto-libm-test-out: Regenerated.
2015-09-24 23:43:57 +00:00
|
|
|
w *= t1;
|
|
|
|
math_check_force_underflow_nonneg (w);
|
|
|
|
return w;
|
2013-10-17 14:03:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return w;
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2011-10-12 15:27:51 +00:00
|
|
|
strong_alias (__ieee754_hypot, __hypot_finite)
|