1994-02-11 20:52:17 +03: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
|
1999-07-02 19:37:33 +04:00
|
|
|
* software is freely granted, provided that this notice
|
1994-02-11 20:52:17 +03:00
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
1997-10-09 15:27:48 +04:00
|
|
|
#include <sys/cdefs.h>
|
1994-09-22 20:39:08 +04:00
|
|
|
#if defined(LIBM_SCCS) && !defined(lint)
|
2008-04-26 02:21:53 +04:00
|
|
|
__RCSID("$NetBSD: e_hypot.c,v 1.13 2008/04/25 22:21:53 christos Exp $");
|
1994-02-18 05:24:43 +03:00
|
|
|
#endif
|
|
|
|
|
1994-02-11 20:52:17 +03:00
|
|
|
/* __ieee754_hypot(x,y)
|
|
|
|
*
|
1999-07-02 19:37:33 +04:00
|
|
|
* Method :
|
|
|
|
* If (assume round-to-nearest) z=x*x+y*y
|
|
|
|
* has error less than sqrt(2)/2 ulp, than
|
1994-02-11 20:52:17 +03:00
|
|
|
* sqrt(z) has error less than 1 ulp (exercise).
|
|
|
|
*
|
1999-07-02 19:37:33 +04:00
|
|
|
* So, compute sqrt(x*x+y*y) with some care as
|
1994-02-11 20:52:17 +03: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
|
2008-04-26 02:21:53 +04:00
|
|
|
* t1*yy1+((x-y)*(x-y)+(t1*y2+t2*y))
|
1999-07-02 19:37:33 +04:00
|
|
|
* where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
|
2008-04-26 02:21:53 +04:00
|
|
|
* yy1= y with lower 32 bits chopped, y2 = y-yy1.
|
1999-07-02 19:37:33 +04:00
|
|
|
*
|
|
|
|
* NOTE: scaling may be necessary if some argument is too
|
1994-02-11 20:52:17 +03: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:
|
1999-07-02 19:37:33 +04:00
|
|
|
* hypot(x,y) returns sqrt(x^2+y^2) with error less
|
|
|
|
* than 1 ulps (units in the last place)
|
1994-02-11 20:52:17 +03:00
|
|
|
*/
|
|
|
|
|
1994-08-11 00:30:00 +04:00
|
|
|
#include "math.h"
|
|
|
|
#include "math_private.h"
|
1994-02-11 20:52:17 +03:00
|
|
|
|
2002-05-27 02:01:47 +04:00
|
|
|
double
|
|
|
|
__ieee754_hypot(double x, double y)
|
1994-02-11 20:52:17 +03:00
|
|
|
{
|
2008-04-26 02:21:53 +04:00
|
|
|
double a=x,b=y,t1,t2,yy1,y2,w;
|
1994-08-19 03:04:51 +04:00
|
|
|
int32_t j,k,ha,hb;
|
1994-02-11 20:52:17 +03:00
|
|
|
|
1994-08-11 00:30:00 +04:00
|
|
|
GET_HIGH_WORD(ha,x);
|
|
|
|
ha &= 0x7fffffff;
|
|
|
|
GET_HIGH_WORD(hb,y);
|
|
|
|
hb &= 0x7fffffff;
|
1994-02-11 20:52:17 +03:00
|
|
|
if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
|
1994-08-11 00:30:00 +04:00
|
|
|
SET_HIGH_WORD(a,ha); /* a <- |a| */
|
|
|
|
SET_HIGH_WORD(b,hb); /* b <- |b| */
|
1994-02-11 20:52:17 +03:00
|
|
|
if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */
|
|
|
|
k=0;
|
|
|
|
if(ha > 0x5f300000) { /* a>2**500 */
|
|
|
|
if(ha >= 0x7ff00000) { /* Inf or NaN */
|
1994-08-19 03:04:51 +04:00
|
|
|
u_int32_t low;
|
1994-02-11 20:52:17 +03:00
|
|
|
w = a+b; /* for sNaN */
|
1994-08-11 00:30:00 +04: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;
|
1994-02-11 20:52:17 +03:00
|
|
|
return w;
|
|
|
|
}
|
|
|
|
/* scale a and b by 2**-600 */
|
|
|
|
ha -= 0x25800000; hb -= 0x25800000; k += 600;
|
1994-08-11 00:30:00 +04:00
|
|
|
SET_HIGH_WORD(a,ha);
|
|
|
|
SET_HIGH_WORD(b,hb);
|
1994-02-11 20:52:17 +03:00
|
|
|
}
|
|
|
|
if(hb < 0x20b00000) { /* b < 2**-500 */
|
1999-07-02 19:37:33 +04:00
|
|
|
if(hb <= 0x000fffff) { /* subnormal b or 0 */
|
1994-08-19 03:04:51 +04:00
|
|
|
u_int32_t low;
|
1994-08-11 00:30:00 +04:00
|
|
|
GET_LOW_WORD(low,b);
|
|
|
|
if((hb|low)==0) return a;
|
1994-02-11 20:52:17 +03:00
|
|
|
t1=0;
|
1994-08-11 00:30:00 +04:00
|
|
|
SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */
|
1994-02-11 20:52:17 +03:00
|
|
|
b *= t1;
|
|
|
|
a *= t1;
|
|
|
|
k -= 1022;
|
|
|
|
} else { /* scale a and b by 2^600 */
|
|
|
|
ha += 0x25800000; /* a *= 2^600 */
|
|
|
|
hb += 0x25800000; /* b *= 2^600 */
|
|
|
|
k -= 600;
|
1994-08-11 00:30:00 +04:00
|
|
|
SET_HIGH_WORD(a,ha);
|
|
|
|
SET_HIGH_WORD(b,hb);
|
1994-02-11 20:52:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* medium size a and b */
|
|
|
|
w = a-b;
|
|
|
|
if (w>b) {
|
|
|
|
t1 = 0;
|
1994-08-11 00:30:00 +04:00
|
|
|
SET_HIGH_WORD(t1,ha);
|
1994-02-11 20:52:17 +03:00
|
|
|
t2 = a-t1;
|
1995-05-12 08:57:13 +04:00
|
|
|
w = __ieee754_sqrt(t1*t1-(b*(-b)-t2*(a+t1)));
|
1994-02-11 20:52:17 +03:00
|
|
|
} else {
|
|
|
|
a = a+a;
|
2008-04-26 02:21:53 +04:00
|
|
|
yy1 = 0;
|
|
|
|
SET_HIGH_WORD(yy1,hb);
|
|
|
|
y2 = b - yy1;
|
1994-02-11 20:52:17 +03:00
|
|
|
t1 = 0;
|
1994-08-11 00:30:00 +04:00
|
|
|
SET_HIGH_WORD(t1,ha+0x00100000);
|
1994-02-11 20:52:17 +03:00
|
|
|
t2 = a - t1;
|
2008-04-26 02:21:53 +04:00
|
|
|
w = __ieee754_sqrt(t1*yy1-(w*(-w)-(t1*y2+t2*b)));
|
1994-02-11 20:52:17 +03:00
|
|
|
}
|
|
|
|
if(k!=0) {
|
1994-08-19 03:04:51 +04:00
|
|
|
u_int32_t high;
|
1994-02-11 20:52:17 +03:00
|
|
|
t1 = 1.0;
|
1994-08-11 00:30:00 +04:00
|
|
|
GET_HIGH_WORD(high,t1);
|
|
|
|
SET_HIGH_WORD(t1,high+(k<<20));
|
1994-02-11 20:52:17 +03:00
|
|
|
return t1*w;
|
|
|
|
} else return w;
|
|
|
|
}
|