Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / ieee754 / ldbl-128 / e_hypotl.c
blob01444cfb4e35792e872a156383199a4e4fe012ab
1 /* e_hypotl.c -- long double version of e_hypot.c.
2 * Conversion to long double by Jakub Jelinek, jakub@redhat.com.
3 */
5 /*
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
12 * is preserved.
13 * ====================================================
16 /* __ieee754_hypotl(x,y)
18 * Method :
19 * If (assume round-to-nearest) z=x*x+y*y
20 * has error less than sqrtl(2)/2 ulp, than
21 * sqrtl(z) has error less than 1 ulp (exercise).
23 * So, compute sqrtl(x*x+y*y) with some care as
24 * follows to get the error below 1 ulp:
26 * Assume x>y>0;
27 * (if possible, set rounding to round-to-nearest)
28 * 1. if x > 2y use
29 * x1*x1+(y*y+(x2*(x+x1))) for x*x+y*y
30 * where x1 = x with lower 64 bits cleared, x2 = x-x1; else
31 * 2. if x <= 2y use
32 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
33 * where t1 = 2x with lower 64 bits cleared, t2 = 2x-t1,
34 * y1= y with lower 64 bits chopped, y2 = y-y1.
36 * NOTE: scaling may be necessary if some argument is too
37 * large or too tiny
39 * Special cases:
40 * hypotl(x,y) is INF if x or y is +INF or -INF; else
41 * hypotl(x,y) is NAN if x or y is NAN.
43 * Accuracy:
44 * hypotl(x,y) returns sqrtl(x^2+y^2) with error less
45 * than 1 ulps (units in the last place)
48 #include <math.h>
49 #include <math_private.h>
51 long double
52 __ieee754_hypotl(long double x, long double y)
54 long double a,b,t1,t2,y1,y2,w;
55 int64_t j,k,ha,hb;
57 GET_LDOUBLE_MSW64(ha,x);
58 ha &= 0x7fffffffffffffffLL;
59 GET_LDOUBLE_MSW64(hb,y);
60 hb &= 0x7fffffffffffffffLL;
61 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
62 SET_LDOUBLE_MSW64(a,ha); /* a <- |a| */
63 SET_LDOUBLE_MSW64(b,hb); /* b <- |b| */
64 if((ha-hb)>0x78000000000000LL) {return a+b;} /* x/y > 2**120 */
65 k=0;
66 if(ha > 0x5f3f000000000000LL) { /* a>2**8000 */
67 if(ha >= 0x7fff000000000000LL) { /* Inf or NaN */
68 u_int64_t low;
69 w = a+b; /* for sNaN */
70 GET_LDOUBLE_LSW64(low,a);
71 if(((ha&0xffffffffffffLL)|low)==0) w = a;
72 GET_LDOUBLE_LSW64(low,b);
73 if(((hb^0x7fff000000000000LL)|low)==0) w = b;
74 return w;
76 /* scale a and b by 2**-9600 */
77 ha -= 0x2580000000000000LL;
78 hb -= 0x2580000000000000LL; k += 9600;
79 SET_LDOUBLE_MSW64(a,ha);
80 SET_LDOUBLE_MSW64(b,hb);
82 if(hb < 0x20bf000000000000LL) { /* b < 2**-8000 */
83 if(hb <= 0x0000ffffffffffffLL) { /* subnormal b or 0 */
84 u_int64_t low;
85 GET_LDOUBLE_LSW64(low,b);
86 if((hb|low)==0) return a;
87 t1=0;
88 SET_LDOUBLE_MSW64(t1,0x7ffd000000000000LL); /* t1=2^16382 */
89 b *= t1;
90 a *= t1;
91 k -= 16382;
92 GET_LDOUBLE_MSW64 (ha, a);
93 GET_LDOUBLE_MSW64 (hb, b);
94 if (hb > ha)
96 t1 = a;
97 a = b;
98 b = t1;
99 j = ha;
100 ha = hb;
101 hb = j;
103 } else { /* scale a and b by 2^9600 */
104 ha += 0x2580000000000000LL; /* a *= 2^9600 */
105 hb += 0x2580000000000000LL; /* b *= 2^9600 */
106 k -= 9600;
107 SET_LDOUBLE_MSW64(a,ha);
108 SET_LDOUBLE_MSW64(b,hb);
111 /* medium size a and b */
112 w = a-b;
113 if (w>b) {
114 t1 = 0;
115 SET_LDOUBLE_MSW64(t1,ha);
116 t2 = a-t1;
117 w = __ieee754_sqrtl(t1*t1-(b*(-b)-t2*(a+t1)));
118 } else {
119 a = a+a;
120 y1 = 0;
121 SET_LDOUBLE_MSW64(y1,hb);
122 y2 = b - y1;
123 t1 = 0;
124 SET_LDOUBLE_MSW64(t1,ha+0x0001000000000000LL);
125 t2 = a - t1;
126 w = __ieee754_sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b)));
128 if(k!=0) {
129 u_int64_t high;
130 t1 = 1.0L;
131 GET_LDOUBLE_MSW64(high,t1);
132 SET_LDOUBLE_MSW64(t1,high+(k<<48));
133 return t1*w;
134 } else return w;
136 strong_alias (__ieee754_hypotl, __hypotl_finite)