1 /* e_hypotl.c -- long double version of e_hypot.c.
2 * Conversion to long double by Ulrich Drepper,
3 * Cygnus Support, drepper@cygnus.com.
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
14 * ====================================================
17 /* __ieee754_hypotl(x,y)
20 * If (assume round-to-nearest) z=x*x+y*y
21 * has error less than sqrt(2)/2 ulp, than
22 * sqrt(z) has error less than 1 ulp (exercise).
24 * So, compute sqrt(x*x+y*y) with some care as
25 * follows to get the error below 1 ulp:
28 * (if possible, set rounding to round-to-nearest)
30 * x1*x1+(y*y+(x2*(x+x1))) for x*x+y*y
31 * where x1 = x with lower 32 bits cleared, x2 = x-x1; else
33 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
34 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
35 * y1= y with lower 32 bits chopped, y2 = y-y1.
37 * NOTE: scaling may be necessary if some argument is too
41 * hypot(x,y) is INF if x or y is +INF or -INF; else
42 * hypot(x,y) is NAN if x or y is NAN.
45 * hypot(x,y) returns sqrt(x^2+y^2) with error less
46 * than 1 ulps (units in the last place)
50 #include <math_private.h>
52 long double __ieee754_hypotl(long double x
, long double y
)
54 long double a
,b
,t1
,t2
,y1
,y2
,w
;
57 GET_LDOUBLE_EXP(ea
,x
);
59 GET_LDOUBLE_EXP(eb
,y
);
61 if(eb
> ea
) {a
=y
;b
=x
;j
=ea
; ea
=eb
;eb
=j
;} else {a
=x
;b
=y
;}
62 SET_LDOUBLE_EXP(a
,ea
); /* a <- |a| */
63 SET_LDOUBLE_EXP(b
,eb
); /* b <- |b| */
64 if((ea
-eb
)>0x46) {return a
+b
;} /* x/y > 2**70 */
66 if(__builtin_expect(ea
> 0x5f3f,0)) { /* a>2**8000 */
67 if(ea
== 0x7fff) { /* Inf or NaN */
68 u_int32_t exp
__attribute__ ((unused
));
70 w
= a
+b
; /* for sNaN */
71 GET_LDOUBLE_WORDS(exp
,high
,low
,a
);
72 if(((high
&0x7fffffff)|low
)==0) w
= a
;
73 GET_LDOUBLE_WORDS(exp
,high
,low
,b
);
74 if(((eb
^0x7fff)|(high
&0x7fffffff)|low
)==0) w
= b
;
77 /* scale a and b by 2**-9600 */
78 ea
-= 0x2580; eb
-= 0x2580; k
+= 9600;
79 SET_LDOUBLE_EXP(a
,ea
);
80 SET_LDOUBLE_EXP(b
,eb
);
82 if(__builtin_expect(eb
< 0x20bf, 0)) { /* b < 2**-8000 */
83 if(eb
== 0) { /* subnormal b or 0 */
84 u_int32_t exp
__attribute__ ((unused
));
86 GET_LDOUBLE_WORDS(exp
,high
,low
,b
);
87 if((high
|low
)==0) return a
;
88 SET_LDOUBLE_WORDS(t1
, 0x7ffd, 0, 0); /* t1=2^16382 */
92 } else { /* scale a and b by 2^9600 */
93 ea
+= 0x2580; /* a *= 2^9600 */
94 eb
+= 0x2580; /* b *= 2^9600 */
96 SET_LDOUBLE_EXP(a
,ea
);
97 SET_LDOUBLE_EXP(b
,eb
);
100 /* medium size a and b */
104 GET_LDOUBLE_MSW(high
,a
);
105 SET_LDOUBLE_WORDS(t1
,ea
,high
,0);
107 w
= __ieee754_sqrtl(t1
*t1
-(b
*(-b
)-t2
*(a
+t1
)));
110 GET_LDOUBLE_MSW(high
,b
);
112 SET_LDOUBLE_WORDS(y1
,eb
,high
,0);
114 GET_LDOUBLE_MSW(high
,a
);
115 SET_LDOUBLE_WORDS(t1
,ea
+1,high
,0);
117 w
= __ieee754_sqrtl(t1
*y1
-(w
*(-w
)-(t1
*y2
+t2
*b
)));
122 GET_LDOUBLE_EXP(exp
,t1
);
123 SET_LDOUBLE_EXP(t1
,exp
+k
);
127 strong_alias (__ieee754_hypotl
, __hypotl_finite
)