1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
16 * The Original Code is Mozilla Communicator client code, released
19 * The Initial Developer of the Original Code is
20 * Sun Microsystems, Inc.
21 * Portions created by the Initial Developer are Copyright (C) 1998
22 * the Initial Developer. All Rights Reserved.
26 * Alternatively, the contents of this file may be used under the terms of
27 * either of the GNU General Public License Version 2 or later (the "GPL"),
28 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 * in which case the provisions of the GPL or the LGPL are applicable instead
30 * of those above. If you wish to allow use of your version of this file only
31 * under the terms of either the GPL or the LGPL, and not to allow others to
32 * use your version of this file under the terms of the MPL, indicate your
33 * decision by deleting the provisions above and replace them with the notice
34 * and other provisions required by the GPL or the LGPL. If you do not delete
35 * the provisions above, a recipient may use your version of this file under
36 * the terms of any one of the MPL, the GPL or the LGPL.
38 * ***** END LICENSE BLOCK ***** */
40 /* @(#)e_hypot.c 1.3 95/01/18 */
42 * ====================================================
43 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
45 * Developed at SunSoft, a Sun Microsystems, Inc. business.
46 * Permission to use, copy, modify, and distribute this
47 * software is freely granted, provided that this notice
49 * ====================================================
52 /* __ieee754_hypot(x,y)
55 * If (assume round-to-nearest) z=x*x+y*y
56 * has error less than sqrt(2)/2 ulp, than
57 * sqrt(z) has error less than 1 ulp (exercise).
59 * So, compute sqrt(x*x+y*y) with some care as
60 * follows to get the error below 1 ulp:
63 * (if possible, set rounding to round-to-nearest)
65 * x1*x1+(y*y+(x2*(x+x1))) for x*x+y*y
66 * where x1 = x with lower 32 bits cleared, x2 = x-x1; else
68 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
69 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
70 * y1= y with lower 32 bits chopped, y2 = y-y1.
72 * NOTE: scaling may be necessary if some argument is too
76 * hypot(x,y) is INF if x or y is +INF or -INF; else
77 * hypot(x,y) is NAN if x or y is NAN.
80 * hypot(x,y) returns sqrt(x^2+y^2) with error less
81 * than 1 ulps (units in the last place)
87 double __ieee754_hypot(double x
, double y
)
89 double __ieee754_hypot(x
,y
)
94 double a
=x
,b
=y
,t1
,t2
,y1
,y2
,w
;
98 ha
= __HI(ux
)&0x7fffffff; /* high word of x */
99 hb
= __HI(uy
)&0x7fffffff; /* high word of y */
100 if(hb
> ha
) {a
=y
;b
=x
;j
=ha
; ha
=hb
;hb
=j
;} else {a
=x
;b
=y
;}
102 __HI(ux
) = ha
; /* a <- |a| */
103 __HI(uy
) = hb
; /* b <- |b| */
105 if((ha
-hb
)>0x3c00000) {return a
+b
;} /* x/y > 2**60 */
107 if(ha
> 0x5f300000) { /* a>2**500 */
108 if(ha
>= 0x7ff00000) { /* Inf or NaN */
109 w
= a
+b
; /* for sNaN */
111 if(((ha
&0xfffff)|__LO(ux
))==0) w
= a
;
112 if(((hb
^0x7ff00000)|__LO(uy
))==0) w
= b
;
115 /* scale a and b by 2**-600 */
116 ha
-= 0x25800000; hb
-= 0x25800000; k
+= 600;
122 if(hb
< 0x20b00000) { /* b < 2**-500 */
123 if(hb
<= 0x000fffff) { /* subnormal b or 0 */
125 if((hb
|(__LO(uy
)))==0) return a
;
128 __HI(ux
) = 0x7fd00000; /* t1=2^1022 */
133 } else { /* scale a and b by 2^600 */
134 ha
+= 0x25800000; /* a *= 2^600 */
135 hb
+= 0x25800000; /* b *= 2^600 */
143 /* medium size a and b */
151 w
= fd_sqrt(t1
*t1
-(b
*(-b
)-t2
*(a
+t1
)));
161 __HI(ux
) = ha
+0x00100000;
164 w
= fd_sqrt(t1
*y1
-(w
*(-w
)-(t1
*y2
+t2
*b
)));