IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
s_cbrt.cs
Go to the documentation of this file.
1/*
2 * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
27{
28 static partial class fdlibm
29 {
30 internal static double cbrt(double x)
31 {
32
33 /* cbrt(x)
34 * Return cube root of x
35 */
36 const int
37 B1 = 715094163, /* B1 = (682-0.03306235651)*2**20 */
38 B2 = 696219795; /* B2 = (664-0.03306235651)*2**20 */
39
40 const double
41 C = 5.42857142857142815906e-01, /* 19/35 = 0x3FE15F15, 0xF15F15F1 */
42 D = -7.05306122448979611050e-01, /* -864/1225 = 0xBFE691DE, 0x2532C834 */
43 E = 1.41428571428571436819e+00, /* 99/70 = 0x3FF6A0EA, 0x0EA0EA0F */
44 F = 1.60714285714285720630e+00, /* 45/28 = 0x3FF9B6DB, 0x6DB6DB6E */
45 G = 3.57142857142857150787e-01; /* 5/14 = 0x3FD6DB6D, 0xB6DB6DB7 */
46
47 int hx;
48 double r, s, t = 0.0, w;
49 int sign;
50
51
52 hx = __HI(x); /* high word of x */
53 sign = hx & unchecked((int)0x80000000); /* sign= sign(x) */
54 hx ^= sign;
55 if (hx >= 0x7ff00000) return (x + x); /* cbrt(NaN,INF) is itself */
56 if ((hx | __LO(x)) == 0)
57 return (x); /* cbrt(0) is itself */
58
59 x = __HI(x, hx); /* x <- |x| */
60 /* rough cbrt to 5 bits */
61 if (hx < 0x00100000) /* subnormal number */
62 {
63 t = __HI(t, 0x43500000); /* set t= 2**54 */
64 t *= x; t = __HI(t, __HI(t) / 3 + B2);
65 }
66 else
67 t = __HI(t, hx / 3 + B1);
68
69
70 /* new cbrt to 23 bits, may be implemented in single precision */
71 r = t * t / x;
72 s = C + r * t;
73 t *= G + F / (s + E + D / s);
74
75 /* chopped to 20 bits and make it larger than cbrt(x) */
76 t = __LO(t, 0); t = __HI(t, __HI(t) + 0x00000001);
77
78
79 /* one step newton iteration to 53 bits with error less than 0.667 ulps */
80 s = t * t; /* t*t is exact */
81 r = x / s;
82 w = t + t;
83 r = (r - t) / (w + r); /* r-s is exact */
84 t = t + t * r;
85
86 /* retore the sign bit */
87 t = __HI(t, __HI(t) | sign);
88 return (t);
89 }
90 }
91}