annotate src/share/vm/runtime/sharedRuntimeTrig.cpp @ 24227:b5a90e4a6c26 jvmci-0.34

make internal_vm_info_string() consistent with java.vm.version
author Doug Simon <doug.simon@oracle.com>
date Fri, 25 Aug 2017 14:25:06 +0200
parents 7848fc12602b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
20286
631c3a4ea10c 8043301: Duplicate definitions in vm/runtime/sharedRuntimeTrans.cpp versus math.h in VS2013
lfoltan
parents: 14411
diff changeset
2 * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1485
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1485
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1485
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "prims/jni.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "runtime/sharedRuntime.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // This file contains copies of the fdlibm routines used by
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // StrictMath. It turns out that it is almost always required to use
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // these runtime routines; the Intel CPU doesn't meet the Java
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // specification for sin/cos outside a certain limited argument range,
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // and the SPARC CPU doesn't appear to have sin/cos instructions. It
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // also turns out that avoiding the indirect call through function
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // pointer out to libjava.so in SharedRuntime speeds these routines up
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // by roughly 15% on both Win32/x86 and Solaris/SPARC.
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // Enabling optimizations in this file causes incorrect code to be
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // generated; can not figure out how to turn down optimization for one
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // file in the IDE on Windows
a61af66fc99e Initial load
duke
parents:
diff changeset
42 #ifdef WIN32
a61af66fc99e Initial load
duke
parents:
diff changeset
43 # pragma optimize ( "", off )
a61af66fc99e Initial load
duke
parents:
diff changeset
44 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
45
1485
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
46 /* The above workaround now causes more problems with the latest MS compiler.
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
47 * Visual Studio 2010's /GS option tries to guard against buffer overruns.
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
48 * /GS is on by default if you specify optimizations, which we do globally
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
49 * via /W3 /O2. However the above selective turning off of optimizations means
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
50 * that /GS issues a warning "4748". And since we treat warnings as errors (/WX)
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
51 * then the compilation fails. There are several possible solutions
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
52 * (1) Remove that pragma above as obsolete with VS2010 - requires testing.
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
53 * (2) Stop treating warnings as errors - would be a backward step
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
54 * (3) Disable /GS - may help performance but you lose the security checks
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
55 * (4) Disable the warning with "#pragma warning( disable : 4748 )"
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
56 * (5) Disable planting the code with __declspec(safebuffers)
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
57 * I've opted for (5) although we should investigate the local performance
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
58 * benefits of (1) and global performance benefit of (3).
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
59 */
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
60 #if defined(WIN32) && (defined(_MSC_VER) && (_MSC_VER >= 1600))
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
61 #define SAFEBUF __declspec(safebuffers)
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
62 #else
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
63 #define SAFEBUF
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
64 #endif
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
65
20286
631c3a4ea10c 8043301: Duplicate definitions in vm/runtime/sharedRuntimeTrans.cpp versus math.h in VS2013
lfoltan
parents: 14411
diff changeset
66 #include "runtime/sharedRuntimeMath.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
69 * __kernel_rem_pio2(x,y,e0,nx,prec,ipio2)
a61af66fc99e Initial load
duke
parents:
diff changeset
70 * double x[],y[]; int e0,nx,prec; int ipio2[];
a61af66fc99e Initial load
duke
parents:
diff changeset
71 *
a61af66fc99e Initial load
duke
parents:
diff changeset
72 * __kernel_rem_pio2 return the last three digits of N with
a61af66fc99e Initial load
duke
parents:
diff changeset
73 * y = x - N*pi/2
a61af66fc99e Initial load
duke
parents:
diff changeset
74 * so that |y| < pi/2.
a61af66fc99e Initial load
duke
parents:
diff changeset
75 *
a61af66fc99e Initial load
duke
parents:
diff changeset
76 * The method is to compute the integer (mod 8) and fraction parts of
a61af66fc99e Initial load
duke
parents:
diff changeset
77 * (2/pi)*x without doing the full multiplication. In general we
a61af66fc99e Initial load
duke
parents:
diff changeset
78 * skip the part of the product that are known to be a huge integer (
a61af66fc99e Initial load
duke
parents:
diff changeset
79 * more accurately, = 0 mod 8 ). Thus the number of operations are
a61af66fc99e Initial load
duke
parents:
diff changeset
80 * independent of the exponent of the input.
a61af66fc99e Initial load
duke
parents:
diff changeset
81 *
a61af66fc99e Initial load
duke
parents:
diff changeset
82 * (2/pi) is represented by an array of 24-bit integers in ipio2[].
a61af66fc99e Initial load
duke
parents:
diff changeset
83 *
a61af66fc99e Initial load
duke
parents:
diff changeset
84 * Input parameters:
a61af66fc99e Initial load
duke
parents:
diff changeset
85 * x[] The input value (must be positive) is broken into nx
a61af66fc99e Initial load
duke
parents:
diff changeset
86 * pieces of 24-bit integers in double precision format.
a61af66fc99e Initial load
duke
parents:
diff changeset
87 * x[i] will be the i-th 24 bit of x. The scaled exponent
a61af66fc99e Initial load
duke
parents:
diff changeset
88 * of x[0] is given in input parameter e0 (i.e., x[0]*2^e0
a61af66fc99e Initial load
duke
parents:
diff changeset
89 * match x's up to 24 bits.
a61af66fc99e Initial load
duke
parents:
diff changeset
90 *
a61af66fc99e Initial load
duke
parents:
diff changeset
91 * Example of breaking a double positive z into x[0]+x[1]+x[2]:
a61af66fc99e Initial load
duke
parents:
diff changeset
92 * e0 = ilogb(z)-23
a61af66fc99e Initial load
duke
parents:
diff changeset
93 * z = scalbn(z,-e0)
a61af66fc99e Initial load
duke
parents:
diff changeset
94 * for i = 0,1,2
a61af66fc99e Initial load
duke
parents:
diff changeset
95 * x[i] = floor(z)
a61af66fc99e Initial load
duke
parents:
diff changeset
96 * z = (z-x[i])*2**24
a61af66fc99e Initial load
duke
parents:
diff changeset
97 *
a61af66fc99e Initial load
duke
parents:
diff changeset
98 *
a61af66fc99e Initial load
duke
parents:
diff changeset
99 * y[] ouput result in an array of double precision numbers.
a61af66fc99e Initial load
duke
parents:
diff changeset
100 * The dimension of y[] is:
a61af66fc99e Initial load
duke
parents:
diff changeset
101 * 24-bit precision 1
a61af66fc99e Initial load
duke
parents:
diff changeset
102 * 53-bit precision 2
a61af66fc99e Initial load
duke
parents:
diff changeset
103 * 64-bit precision 2
a61af66fc99e Initial load
duke
parents:
diff changeset
104 * 113-bit precision 3
a61af66fc99e Initial load
duke
parents:
diff changeset
105 * The actual value is the sum of them. Thus for 113-bit
a61af66fc99e Initial load
duke
parents:
diff changeset
106 * precsion, one may have to do something like:
a61af66fc99e Initial load
duke
parents:
diff changeset
107 *
a61af66fc99e Initial load
duke
parents:
diff changeset
108 * long double t,w,r_head, r_tail;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 * t = (long double)y[2] + (long double)y[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
110 * w = (long double)y[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
111 * r_head = t+w;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 * r_tail = w - (r_head - t);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 *
a61af66fc99e Initial load
duke
parents:
diff changeset
114 * e0 The exponent of x[0]
a61af66fc99e Initial load
duke
parents:
diff changeset
115 *
a61af66fc99e Initial load
duke
parents:
diff changeset
116 * nx dimension of x[]
a61af66fc99e Initial load
duke
parents:
diff changeset
117 *
a61af66fc99e Initial load
duke
parents:
diff changeset
118 * prec an interger indicating the precision:
a61af66fc99e Initial load
duke
parents:
diff changeset
119 * 0 24 bits (single)
a61af66fc99e Initial load
duke
parents:
diff changeset
120 * 1 53 bits (double)
a61af66fc99e Initial load
duke
parents:
diff changeset
121 * 2 64 bits (extended)
a61af66fc99e Initial load
duke
parents:
diff changeset
122 * 3 113 bits (quad)
a61af66fc99e Initial load
duke
parents:
diff changeset
123 *
a61af66fc99e Initial load
duke
parents:
diff changeset
124 * ipio2[]
a61af66fc99e Initial load
duke
parents:
diff changeset
125 * integer array, contains the (24*i)-th to (24*i+23)-th
a61af66fc99e Initial load
duke
parents:
diff changeset
126 * bit of 2/pi after binary point. The corresponding
a61af66fc99e Initial load
duke
parents:
diff changeset
127 * floating value is
a61af66fc99e Initial load
duke
parents:
diff changeset
128 *
a61af66fc99e Initial load
duke
parents:
diff changeset
129 * ipio2[i] * 2^(-24(i+1)).
a61af66fc99e Initial load
duke
parents:
diff changeset
130 *
a61af66fc99e Initial load
duke
parents:
diff changeset
131 * External function:
a61af66fc99e Initial load
duke
parents:
diff changeset
132 * double scalbn(), floor();
a61af66fc99e Initial load
duke
parents:
diff changeset
133 *
a61af66fc99e Initial load
duke
parents:
diff changeset
134 *
a61af66fc99e Initial load
duke
parents:
diff changeset
135 * Here is the description of some local variables:
a61af66fc99e Initial load
duke
parents:
diff changeset
136 *
a61af66fc99e Initial load
duke
parents:
diff changeset
137 * jk jk+1 is the initial number of terms of ipio2[] needed
a61af66fc99e Initial load
duke
parents:
diff changeset
138 * in the computation. The recommended value is 2,3,4,
a61af66fc99e Initial load
duke
parents:
diff changeset
139 * 6 for single, double, extended,and quad.
a61af66fc99e Initial load
duke
parents:
diff changeset
140 *
a61af66fc99e Initial load
duke
parents:
diff changeset
141 * jz local integer variable indicating the number of
a61af66fc99e Initial load
duke
parents:
diff changeset
142 * terms of ipio2[] used.
a61af66fc99e Initial load
duke
parents:
diff changeset
143 *
a61af66fc99e Initial load
duke
parents:
diff changeset
144 * jx nx - 1
a61af66fc99e Initial load
duke
parents:
diff changeset
145 *
a61af66fc99e Initial load
duke
parents:
diff changeset
146 * jv index for pointing to the suitable ipio2[] for the
a61af66fc99e Initial load
duke
parents:
diff changeset
147 * computation. In general, we want
a61af66fc99e Initial load
duke
parents:
diff changeset
148 * ( 2^e0*x[0] * ipio2[jv-1]*2^(-24jv) )/8
a61af66fc99e Initial load
duke
parents:
diff changeset
149 * is an integer. Thus
a61af66fc99e Initial load
duke
parents:
diff changeset
150 * e0-3-24*jv >= 0 or (e0-3)/24 >= jv
a61af66fc99e Initial load
duke
parents:
diff changeset
151 * Hence jv = max(0,(e0-3)/24).
a61af66fc99e Initial load
duke
parents:
diff changeset
152 *
a61af66fc99e Initial load
duke
parents:
diff changeset
153 * jp jp+1 is the number of terms in PIo2[] needed, jp = jk.
a61af66fc99e Initial load
duke
parents:
diff changeset
154 *
a61af66fc99e Initial load
duke
parents:
diff changeset
155 * q[] double array with integral value, representing the
a61af66fc99e Initial load
duke
parents:
diff changeset
156 * 24-bits chunk of the product of x and 2/pi.
a61af66fc99e Initial load
duke
parents:
diff changeset
157 *
a61af66fc99e Initial load
duke
parents:
diff changeset
158 * q0 the corresponding exponent of q[0]. Note that the
a61af66fc99e Initial load
duke
parents:
diff changeset
159 * exponent for q[i] would be q0-24*i.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 *
a61af66fc99e Initial load
duke
parents:
diff changeset
161 * PIo2[] double precision array, obtained by cutting pi/2
a61af66fc99e Initial load
duke
parents:
diff changeset
162 * into 24 bits chunks.
a61af66fc99e Initial load
duke
parents:
diff changeset
163 *
a61af66fc99e Initial load
duke
parents:
diff changeset
164 * f[] ipio2[] in floating point
a61af66fc99e Initial load
duke
parents:
diff changeset
165 *
a61af66fc99e Initial load
duke
parents:
diff changeset
166 * iq[] integer array by breaking up q[] in 24-bits chunk.
a61af66fc99e Initial load
duke
parents:
diff changeset
167 *
a61af66fc99e Initial load
duke
parents:
diff changeset
168 * fq[] final product of x*(2/pi) in fq[0],..,fq[jk]
a61af66fc99e Initial load
duke
parents:
diff changeset
169 *
a61af66fc99e Initial load
duke
parents:
diff changeset
170 * ih integer. If >0 it indicats q[] is >= 0.5, hence
a61af66fc99e Initial load
duke
parents:
diff changeset
171 * it also indicates the *sign* of the result.
a61af66fc99e Initial load
duke
parents:
diff changeset
172 *
a61af66fc99e Initial load
duke
parents:
diff changeset
173 */
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
177 * Constants:
a61af66fc99e Initial load
duke
parents:
diff changeset
178 * The hexadecimal values are the intended ones for the following
a61af66fc99e Initial load
duke
parents:
diff changeset
179 * constants. The decimal values may be used, provided that the
a61af66fc99e Initial load
duke
parents:
diff changeset
180 * compiler will convert from decimal to binary accurately enough
a61af66fc99e Initial load
duke
parents:
diff changeset
181 * to produce the hexadecimal values shown.
a61af66fc99e Initial load
duke
parents:
diff changeset
182 */
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 static const int init_jk[] = {2,3,4,6}; /* initial value for jk */
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 static const double PIo2[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 1.57079625129699707031e+00, /* 0x3FF921FB, 0x40000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
189 7.54978941586159635335e-08, /* 0x3E74442D, 0x00000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
190 5.39030252995776476554e-15, /* 0x3CF84698, 0x80000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
191 3.28200341580791294123e-22, /* 0x3B78CC51, 0x60000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
192 1.27065575308067607349e-29, /* 0x39F01B83, 0x80000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
193 1.22933308981111328932e-36, /* 0x387A2520, 0x40000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
194 2.73370053816464559624e-44, /* 0x36E38222, 0x80000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
195 2.16741683877804819444e-51, /* 0x3569F31D, 0x00000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
196 };
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 static const double
a61af66fc99e Initial load
duke
parents:
diff changeset
199 zeroB = 0.0,
a61af66fc99e Initial load
duke
parents:
diff changeset
200 one = 1.0,
a61af66fc99e Initial load
duke
parents:
diff changeset
201 two24B = 1.67772160000000000000e+07, /* 0x41700000, 0x00000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
202 twon24 = 5.96046447753906250000e-08; /* 0x3E700000, 0x00000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
203
1485
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
204 static SAFEBUF int __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int *ipio2) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
205 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih;
a61af66fc99e Initial load
duke
parents:
diff changeset
206 double z,fw,f[20],fq[20],q[20];
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208 /* initialize jk*/
a61af66fc99e Initial load
duke
parents:
diff changeset
209 jk = init_jk[prec];
a61af66fc99e Initial load
duke
parents:
diff changeset
210 jp = jk;
a61af66fc99e Initial load
duke
parents:
diff changeset
211
a61af66fc99e Initial load
duke
parents:
diff changeset
212 /* determine jx,jv,q0, note that 3>q0 */
a61af66fc99e Initial load
duke
parents:
diff changeset
213 jx = nx-1;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 jv = (e0-3)/24; if(jv<0) jv=0;
a61af66fc99e Initial load
duke
parents:
diff changeset
215 q0 = e0-24*(jv+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 /* set up f[0] to f[jx+jk] where f[jx+jk] = ipio2[jv+jk] */
a61af66fc99e Initial load
duke
parents:
diff changeset
218 j = jv-jx; m = jx+jk;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 for(i=0;i<=m;i++,j++) f[i] = (j<0)? zeroB : (double) ipio2[j];
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 /* compute q[0],q[1],...q[jk] */
a61af66fc99e Initial load
duke
parents:
diff changeset
222 for (i=0;i<=jk;i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 jz = jk;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 recompute:
a61af66fc99e Initial load
duke
parents:
diff changeset
228 /* distill q[] into iq[] reversingly */
a61af66fc99e Initial load
duke
parents:
diff changeset
229 for(i=0,j=jz,z=q[jz];j>0;i++,j--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 fw = (double)((int)(twon24* z));
a61af66fc99e Initial load
duke
parents:
diff changeset
231 iq[i] = (int)(z-two24B*fw);
a61af66fc99e Initial load
duke
parents:
diff changeset
232 z = q[j-1]+fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 /* compute n */
a61af66fc99e Initial load
duke
parents:
diff changeset
236 z = scalbnA(z,q0); /* actual value of z */
a61af66fc99e Initial load
duke
parents:
diff changeset
237 z -= 8.0*floor(z*0.125); /* trim off integer >= 8 */
a61af66fc99e Initial load
duke
parents:
diff changeset
238 n = (int) z;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 z -= (double)n;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 ih = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 if(q0>0) { /* need iq[jz-1] to determine n */
a61af66fc99e Initial load
duke
parents:
diff changeset
242 i = (iq[jz-1]>>(24-q0)); n += i;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 iq[jz-1] -= i<<(24-q0);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 ih = iq[jz-1]>>(23-q0);
a61af66fc99e Initial load
duke
parents:
diff changeset
245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
246 else if(q0==0) ih = iq[jz-1]>>23;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 else if(z>=0.5) ih=2;
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 if(ih>0) { /* q > 0.5 */
a61af66fc99e Initial load
duke
parents:
diff changeset
250 n += 1; carry = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 for(i=0;i<jz ;i++) { /* compute 1-q */
a61af66fc99e Initial load
duke
parents:
diff changeset
252 j = iq[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
253 if(carry==0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 if(j!=0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 carry = 1; iq[i] = 0x1000000- j;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257 } else iq[i] = 0xffffff - j;
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259 if(q0>0) { /* rare case: chance is 1 in 12 */
a61af66fc99e Initial load
duke
parents:
diff changeset
260 switch(q0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
261 case 1:
a61af66fc99e Initial load
duke
parents:
diff changeset
262 iq[jz-1] &= 0x7fffff; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 case 2:
a61af66fc99e Initial load
duke
parents:
diff changeset
264 iq[jz-1] &= 0x3fffff; break;
a61af66fc99e Initial load
duke
parents:
diff changeset
265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
267 if(ih==2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 z = one - z;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 if(carry!=0) z -= scalbnA(one,q0);
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273 /* check if recomputation is needed */
a61af66fc99e Initial load
duke
parents:
diff changeset
274 if(z==zeroB) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 j = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
276 for (i=jz-1;i>=jk;i--) j |= iq[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
277 if(j==0) { /* need recomputation */
a61af66fc99e Initial load
duke
parents:
diff changeset
278 for(k=1;iq[jk-k]==0;k++); /* k = no. of terms needed */
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 for(i=jz+1;i<=jz+k;i++) { /* add q[jz+1] to q[jz+k] */
a61af66fc99e Initial load
duke
parents:
diff changeset
281 f[jx+i] = (double) ipio2[jv+i];
a61af66fc99e Initial load
duke
parents:
diff changeset
282 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j];
a61af66fc99e Initial load
duke
parents:
diff changeset
283 q[i] = fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285 jz += k;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 goto recompute;
a61af66fc99e Initial load
duke
parents:
diff changeset
287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 /* chop off zero terms */
a61af66fc99e Initial load
duke
parents:
diff changeset
291 if(z==0.0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 jz -= 1; q0 -= 24;
a61af66fc99e Initial load
duke
parents:
diff changeset
293 while(iq[jz]==0) { jz--; q0-=24;}
a61af66fc99e Initial load
duke
parents:
diff changeset
294 } else { /* break z into 24-bit if neccessary */
a61af66fc99e Initial load
duke
parents:
diff changeset
295 z = scalbnA(z,-q0);
a61af66fc99e Initial load
duke
parents:
diff changeset
296 if(z>=two24B) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 fw = (double)((int)(twon24*z));
a61af66fc99e Initial load
duke
parents:
diff changeset
298 iq[jz] = (int)(z-two24B*fw);
a61af66fc99e Initial load
duke
parents:
diff changeset
299 jz += 1; q0 += 24;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 iq[jz] = (int) fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 } else iq[jz] = (int) z ;
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303
a61af66fc99e Initial load
duke
parents:
diff changeset
304 /* convert integer "bit" chunk to floating-point value */
a61af66fc99e Initial load
duke
parents:
diff changeset
305 fw = scalbnA(one,q0);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 for(i=jz;i>=0;i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 q[i] = fw*(double)iq[i]; fw*=twon24;
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 /* compute PIo2[0,...,jp]*q[jz,...,0] */
a61af66fc99e Initial load
duke
parents:
diff changeset
311 for(i=jz;i>=0;i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 for(fw=0.0,k=0;k<=jp&&k<=jz-i;k++) fw += PIo2[k]*q[i+k];
a61af66fc99e Initial load
duke
parents:
diff changeset
313 fq[jz-i] = fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316 /* compress fq[] into y[] */
a61af66fc99e Initial load
duke
parents:
diff changeset
317 switch(prec) {
a61af66fc99e Initial load
duke
parents:
diff changeset
318 case 0:
a61af66fc99e Initial load
duke
parents:
diff changeset
319 fw = 0.0;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 for (i=jz;i>=0;i--) fw += fq[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
321 y[0] = (ih==0)? fw: -fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
322 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
323 case 1:
a61af66fc99e Initial load
duke
parents:
diff changeset
324 case 2:
a61af66fc99e Initial load
duke
parents:
diff changeset
325 fw = 0.0;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 for (i=jz;i>=0;i--) fw += fq[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
327 y[0] = (ih==0)? fw: -fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
328 fw = fq[0]-fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
329 for (i=1;i<=jz;i++) fw += fq[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
330 y[1] = (ih==0)? fw: -fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
332 case 3: /* painful */
a61af66fc99e Initial load
duke
parents:
diff changeset
333 for (i=jz;i>0;i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 fw = fq[i-1]+fq[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
335 fq[i] += fq[i-1]-fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
336 fq[i-1] = fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
338 for (i=jz;i>1;i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
339 fw = fq[i-1]+fq[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
340 fq[i] += fq[i-1]-fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
341 fq[i-1] = fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
342 }
a61af66fc99e Initial load
duke
parents:
diff changeset
343 for (fw=0.0,i=jz;i>=2;i--) fw += fq[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
344 if(ih==0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
345 y[0] = fq[0]; y[1] = fq[1]; y[2] = fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
346 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
347 y[0] = -fq[0]; y[1] = -fq[1]; y[2] = -fw;
a61af66fc99e Initial load
duke
parents:
diff changeset
348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
350 return n&7;
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
355 * ====================================================
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1485
diff changeset
356 * Copyright (c) 1993 Oracle and/or its affilates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
357 *
a61af66fc99e Initial load
duke
parents:
diff changeset
358 * Developed at SunPro, a Sun Microsystems, Inc. business.
a61af66fc99e Initial load
duke
parents:
diff changeset
359 * Permission to use, copy, modify, and distribute this
a61af66fc99e Initial load
duke
parents:
diff changeset
360 * software is freely granted, provided that this notice
a61af66fc99e Initial load
duke
parents:
diff changeset
361 * is preserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
362 * ====================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
363 *
a61af66fc99e Initial load
duke
parents:
diff changeset
364 */
a61af66fc99e Initial load
duke
parents:
diff changeset
365
a61af66fc99e Initial load
duke
parents:
diff changeset
366 /* __ieee754_rem_pio2(x,y)
a61af66fc99e Initial load
duke
parents:
diff changeset
367 *
a61af66fc99e Initial load
duke
parents:
diff changeset
368 * return the remainder of x rem pi/2 in y[0]+y[1]
a61af66fc99e Initial load
duke
parents:
diff changeset
369 * use __kernel_rem_pio2()
a61af66fc99e Initial load
duke
parents:
diff changeset
370 */
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
373 * Table of constants for 2/pi, 396 Hex digits (476 decimal) of 2/pi
a61af66fc99e Initial load
duke
parents:
diff changeset
374 */
a61af66fc99e Initial load
duke
parents:
diff changeset
375 static const int two_over_pi[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
376 0xA2F983, 0x6E4E44, 0x1529FC, 0x2757D1, 0xF534DD, 0xC0DB62,
a61af66fc99e Initial load
duke
parents:
diff changeset
377 0x95993C, 0x439041, 0xFE5163, 0xABDEBB, 0xC561B7, 0x246E3A,
a61af66fc99e Initial load
duke
parents:
diff changeset
378 0x424DD2, 0xE00649, 0x2EEA09, 0xD1921C, 0xFE1DEB, 0x1CB129,
a61af66fc99e Initial load
duke
parents:
diff changeset
379 0xA73EE8, 0x8235F5, 0x2EBB44, 0x84E99C, 0x7026B4, 0x5F7E41,
a61af66fc99e Initial load
duke
parents:
diff changeset
380 0x3991D6, 0x398353, 0x39F49C, 0x845F8B, 0xBDF928, 0x3B1FF8,
a61af66fc99e Initial load
duke
parents:
diff changeset
381 0x97FFDE, 0x05980F, 0xEF2F11, 0x8B5A0A, 0x6D1F6D, 0x367ECF,
a61af66fc99e Initial load
duke
parents:
diff changeset
382 0x27CB09, 0xB74F46, 0x3F669E, 0x5FEA2D, 0x7527BA, 0xC7EBE5,
a61af66fc99e Initial load
duke
parents:
diff changeset
383 0xF17B3D, 0x0739F7, 0x8A5292, 0xEA6BFB, 0x5FB11F, 0x8D5D08,
a61af66fc99e Initial load
duke
parents:
diff changeset
384 0x560330, 0x46FC7B, 0x6BABF0, 0xCFBC20, 0x9AF436, 0x1DA9E3,
a61af66fc99e Initial load
duke
parents:
diff changeset
385 0x91615E, 0xE61B08, 0x659985, 0x5F14A0, 0x68408D, 0xFFD880,
a61af66fc99e Initial load
duke
parents:
diff changeset
386 0x4D7327, 0x310606, 0x1556CA, 0x73A8C9, 0x60E27B, 0xC08C6B,
a61af66fc99e Initial load
duke
parents:
diff changeset
387 };
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 static const int npio2_hw[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 0x3FF921FB, 0x400921FB, 0x4012D97C, 0x401921FB, 0x401F6A7A, 0x4022D97C,
a61af66fc99e Initial load
duke
parents:
diff changeset
391 0x4025FDBB, 0x402921FB, 0x402C463A, 0x402F6A7A, 0x4031475C, 0x4032D97C,
a61af66fc99e Initial load
duke
parents:
diff changeset
392 0x40346B9C, 0x4035FDBB, 0x40378FDB, 0x403921FB, 0x403AB41B, 0x403C463A,
a61af66fc99e Initial load
duke
parents:
diff changeset
393 0x403DD85A, 0x403F6A7A, 0x40407E4C, 0x4041475C, 0x4042106C, 0x4042D97C,
a61af66fc99e Initial load
duke
parents:
diff changeset
394 0x4043A28C, 0x40446B9C, 0x404534AC, 0x4045FDBB, 0x4046C6CB, 0x40478FDB,
a61af66fc99e Initial load
duke
parents:
diff changeset
395 0x404858EB, 0x404921FB,
a61af66fc99e Initial load
duke
parents:
diff changeset
396 };
a61af66fc99e Initial load
duke
parents:
diff changeset
397
a61af66fc99e Initial load
duke
parents:
diff changeset
398 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
399 * invpio2: 53 bits of 2/pi
a61af66fc99e Initial load
duke
parents:
diff changeset
400 * pio2_1: first 33 bit of pi/2
a61af66fc99e Initial load
duke
parents:
diff changeset
401 * pio2_1t: pi/2 - pio2_1
a61af66fc99e Initial load
duke
parents:
diff changeset
402 * pio2_2: second 33 bit of pi/2
a61af66fc99e Initial load
duke
parents:
diff changeset
403 * pio2_2t: pi/2 - (pio2_1+pio2_2)
a61af66fc99e Initial load
duke
parents:
diff changeset
404 * pio2_3: third 33 bit of pi/2
a61af66fc99e Initial load
duke
parents:
diff changeset
405 * pio2_3t: pi/2 - (pio2_1+pio2_2+pio2_3)
a61af66fc99e Initial load
duke
parents:
diff changeset
406 */
a61af66fc99e Initial load
duke
parents:
diff changeset
407
a61af66fc99e Initial load
duke
parents:
diff changeset
408 static const double
a61af66fc99e Initial load
duke
parents:
diff changeset
409 zeroA = 0.00000000000000000000e+00, /* 0x00000000, 0x00000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
410 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
411 two24A = 1.67772160000000000000e+07, /* 0x41700000, 0x00000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
412 invpio2 = 6.36619772367581382433e-01, /* 0x3FE45F30, 0x6DC9C883 */
a61af66fc99e Initial load
duke
parents:
diff changeset
413 pio2_1 = 1.57079632673412561417e+00, /* 0x3FF921FB, 0x54400000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
414 pio2_1t = 6.07710050650619224932e-11, /* 0x3DD0B461, 0x1A626331 */
a61af66fc99e Initial load
duke
parents:
diff changeset
415 pio2_2 = 6.07710050630396597660e-11, /* 0x3DD0B461, 0x1A600000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
416 pio2_2t = 2.02226624879595063154e-21, /* 0x3BA3198A, 0x2E037073 */
a61af66fc99e Initial load
duke
parents:
diff changeset
417 pio2_3 = 2.02226624871116645580e-21, /* 0x3BA3198A, 0x2E000000 */
a61af66fc99e Initial load
duke
parents:
diff changeset
418 pio2_3t = 8.47842766036889956997e-32; /* 0x397B839A, 0x252049C1 */
a61af66fc99e Initial load
duke
parents:
diff changeset
419
1485
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 0
diff changeset
420 static SAFEBUF int __ieee754_rem_pio2(double x, double *y) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
421 double z,w,t,r,fn;
a61af66fc99e Initial load
duke
parents:
diff changeset
422 double tx[3];
a61af66fc99e Initial load
duke
parents:
diff changeset
423 int e0,i,j,nx,n,ix,hx,i0;
a61af66fc99e Initial load
duke
parents:
diff changeset
424
a61af66fc99e Initial load
duke
parents:
diff changeset
425 i0 = ((*(int*)&two24A)>>30)^1; /* high word index */
a61af66fc99e Initial load
duke
parents:
diff changeset
426 hx = *(i0+(int*)&x); /* high word of x */
a61af66fc99e Initial load
duke
parents:
diff changeset
427 ix = hx&0x7fffffff;
a61af66fc99e Initial load
duke
parents:
diff changeset
428 if(ix<=0x3fe921fb) /* |x| ~<= pi/4 , no need for reduction */
a61af66fc99e Initial load
duke
parents:
diff changeset
429 {y[0] = x; y[1] = 0; return 0;}
a61af66fc99e Initial load
duke
parents:
diff changeset
430 if(ix<0x4002d97c) { /* |x| < 3pi/4, special case with n=+-1 */
a61af66fc99e Initial load
duke
parents:
diff changeset
431 if(hx>0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 z = x - pio2_1;
a61af66fc99e Initial load
duke
parents:
diff changeset
433 if(ix!=0x3ff921fb) { /* 33+53 bit pi is good enough */
a61af66fc99e Initial load
duke
parents:
diff changeset
434 y[0] = z - pio2_1t;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 y[1] = (z-y[0])-pio2_1t;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 } else { /* near pi/2, use 33+33+53 bit pi */
a61af66fc99e Initial load
duke
parents:
diff changeset
437 z -= pio2_2;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 y[0] = z - pio2_2t;
a61af66fc99e Initial load
duke
parents:
diff changeset
439 y[1] = (z-y[0])-pio2_2t;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441 return 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 } else { /* negative x */
a61af66fc99e Initial load
duke
parents:
diff changeset
443 z = x + pio2_1;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 if(ix!=0x3ff921fb) { /* 33+53 bit pi is good enough */
a61af66fc99e Initial load
duke
parents:
diff changeset
445 y[0] = z + pio2_1t;
a61af66fc99e Initial load
duke
parents:
diff changeset
446 y[1] = (z-y[0])+pio2_1t;
a61af66fc99e Initial load
duke
parents:
diff changeset
447 } else { /* near pi/2, use 33+33+53 bit pi */
a61af66fc99e Initial load
duke
parents:
diff changeset
448 z += pio2_2;
a61af66fc99e Initial load
duke
parents:
diff changeset
449 y[0] = z + pio2_2t;
a61af66fc99e Initial load
duke
parents:
diff changeset
450 y[1] = (z-y[0])+pio2_2t;
a61af66fc99e Initial load
duke
parents:
diff changeset
451 }
a61af66fc99e Initial load
duke
parents:
diff changeset
452 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
453 }
a61af66fc99e Initial load
duke
parents:
diff changeset
454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
455 if(ix<=0x413921fb) { /* |x| ~<= 2^19*(pi/2), medium size */
a61af66fc99e Initial load
duke
parents:
diff changeset
456 t = fabsd(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
457 n = (int) (t*invpio2+half);
a61af66fc99e Initial load
duke
parents:
diff changeset
458 fn = (double)n;
a61af66fc99e Initial load
duke
parents:
diff changeset
459 r = t-fn*pio2_1;
a61af66fc99e Initial load
duke
parents:
diff changeset
460 w = fn*pio2_1t; /* 1st round good to 85 bit */
a61af66fc99e Initial load
duke
parents:
diff changeset
461 if(n<32&&ix!=npio2_hw[n-1]) {
a61af66fc99e Initial load
duke
parents:
diff changeset
462 y[0] = r-w; /* quick check no cancellation */
a61af66fc99e Initial load
duke
parents:
diff changeset
463 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 j = ix>>20;
a61af66fc99e Initial load
duke
parents:
diff changeset
465 y[0] = r-w;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 i = j-(((*(i0+(int*)&y[0]))>>20)&0x7ff);
a61af66fc99e Initial load
duke
parents:
diff changeset
467 if(i>16) { /* 2nd iteration needed, good to 118 */
a61af66fc99e Initial load
duke
parents:
diff changeset
468 t = r;
a61af66fc99e Initial load
duke
parents:
diff changeset
469 w = fn*pio2_2;
a61af66fc99e Initial load
duke
parents:
diff changeset
470 r = t-w;
a61af66fc99e Initial load
duke
parents:
diff changeset
471 w = fn*pio2_2t-((t-r)-w);
a61af66fc99e Initial load
duke
parents:
diff changeset
472 y[0] = r-w;
a61af66fc99e Initial load
duke
parents:
diff changeset
473 i = j-(((*(i0+(int*)&y[0]))>>20)&0x7ff);
a61af66fc99e Initial load
duke
parents:
diff changeset
474 if(i>49) { /* 3rd iteration need, 151 bits acc */
a61af66fc99e Initial load
duke
parents:
diff changeset
475 t = r; /* will cover all possible cases */
a61af66fc99e Initial load
duke
parents:
diff changeset
476 w = fn*pio2_3;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 r = t-w;
a61af66fc99e Initial load
duke
parents:
diff changeset
478 w = fn*pio2_3t-((t-r)-w);
a61af66fc99e Initial load
duke
parents:
diff changeset
479 y[0] = r-w;
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481 }
a61af66fc99e Initial load
duke
parents:
diff changeset
482 }
a61af66fc99e Initial load
duke
parents:
diff changeset
483 y[1] = (r-y[0])-w;
a61af66fc99e Initial load
duke
parents:
diff changeset
484 if(hx<0) {y[0] = -y[0]; y[1] = -y[1]; return -n;}
a61af66fc99e Initial load
duke
parents:
diff changeset
485 else return n;
a61af66fc99e Initial load
duke
parents:
diff changeset
486 }
a61af66fc99e Initial load
duke
parents:
diff changeset
487 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
488 * all other (large) arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
489 */
a61af66fc99e Initial load
duke
parents:
diff changeset
490 if(ix>=0x7ff00000) { /* x is inf or NaN */
a61af66fc99e Initial load
duke
parents:
diff changeset
491 y[0]=y[1]=x-x; return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
492 }
a61af66fc99e Initial load
duke
parents:
diff changeset
493 /* set z = scalbn(|x|,ilogb(x)-23) */
a61af66fc99e Initial load
duke
parents:
diff changeset
494 *(1-i0+(int*)&z) = *(1-i0+(int*)&x);
a61af66fc99e Initial load
duke
parents:
diff changeset
495 e0 = (ix>>20)-1046; /* e0 = ilogb(z)-23; */
a61af66fc99e Initial load
duke
parents:
diff changeset
496 *(i0+(int*)&z) = ix - (e0<<20);
a61af66fc99e Initial load
duke
parents:
diff changeset
497 for(i=0;i<2;i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
498 tx[i] = (double)((int)(z));
a61af66fc99e Initial load
duke
parents:
diff changeset
499 z = (z-tx[i])*two24A;
a61af66fc99e Initial load
duke
parents:
diff changeset
500 }
a61af66fc99e Initial load
duke
parents:
diff changeset
501 tx[2] = z;
a61af66fc99e Initial load
duke
parents:
diff changeset
502 nx = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
503 while(tx[nx-1]==zeroA) nx--; /* skip zero term */
a61af66fc99e Initial load
duke
parents:
diff changeset
504 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
a61af66fc99e Initial load
duke
parents:
diff changeset
505 if(hx<0) {y[0] = -y[0]; y[1] = -y[1]; return -n;}
a61af66fc99e Initial load
duke
parents:
diff changeset
506 return n;
a61af66fc99e Initial load
duke
parents:
diff changeset
507 }
a61af66fc99e Initial load
duke
parents:
diff changeset
508
a61af66fc99e Initial load
duke
parents:
diff changeset
509
a61af66fc99e Initial load
duke
parents:
diff changeset
510 /* __kernel_sin( x, y, iy)
a61af66fc99e Initial load
duke
parents:
diff changeset
511 * kernel sin function on [-pi/4, pi/4], pi/4 ~ 0.7854
a61af66fc99e Initial load
duke
parents:
diff changeset
512 * Input x is assumed to be bounded by ~pi/4 in magnitude.
a61af66fc99e Initial load
duke
parents:
diff changeset
513 * Input y is the tail of x.
a61af66fc99e Initial load
duke
parents:
diff changeset
514 * Input iy indicates whether y is 0. (if iy=0, y assume to be 0).
a61af66fc99e Initial load
duke
parents:
diff changeset
515 *
a61af66fc99e Initial load
duke
parents:
diff changeset
516 * Algorithm
a61af66fc99e Initial load
duke
parents:
diff changeset
517 * 1. Since sin(-x) = -sin(x), we need only to consider positive x.
a61af66fc99e Initial load
duke
parents:
diff changeset
518 * 2. if x < 2^-27 (hx<0x3e400000 0), return x with inexact if x!=0.
a61af66fc99e Initial load
duke
parents:
diff changeset
519 * 3. sin(x) is approximated by a polynomial of degree 13 on
a61af66fc99e Initial load
duke
parents:
diff changeset
520 * [0,pi/4]
a61af66fc99e Initial load
duke
parents:
diff changeset
521 * 3 13
a61af66fc99e Initial load
duke
parents:
diff changeset
522 * sin(x) ~ x + S1*x + ... + S6*x
a61af66fc99e Initial load
duke
parents:
diff changeset
523 * where
a61af66fc99e Initial load
duke
parents:
diff changeset
524 *
a61af66fc99e Initial load
duke
parents:
diff changeset
525 * |sin(x) 2 4 6 8 10 12 | -58
a61af66fc99e Initial load
duke
parents:
diff changeset
526 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
a61af66fc99e Initial load
duke
parents:
diff changeset
527 * | x |
a61af66fc99e Initial load
duke
parents:
diff changeset
528 *
a61af66fc99e Initial load
duke
parents:
diff changeset
529 * 4. sin(x+y) = sin(x) + sin'(x')*y
a61af66fc99e Initial load
duke
parents:
diff changeset
530 * ~ sin(x) + (1-x*x/2)*y
a61af66fc99e Initial load
duke
parents:
diff changeset
531 * For better accuracy, let
a61af66fc99e Initial load
duke
parents:
diff changeset
532 * 3 2 2 2 2
a61af66fc99e Initial load
duke
parents:
diff changeset
533 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
a61af66fc99e Initial load
duke
parents:
diff changeset
534 * then 3 2
a61af66fc99e Initial load
duke
parents:
diff changeset
535 * sin(x) = x + (S1*x + (x *(r-y/2)+y))
a61af66fc99e Initial load
duke
parents:
diff changeset
536 */
a61af66fc99e Initial load
duke
parents:
diff changeset
537
a61af66fc99e Initial load
duke
parents:
diff changeset
538 static const double
a61af66fc99e Initial load
duke
parents:
diff changeset
539 S1 = -1.66666666666666324348e-01, /* 0xBFC55555, 0x55555549 */
a61af66fc99e Initial load
duke
parents:
diff changeset
540 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */
a61af66fc99e Initial load
duke
parents:
diff changeset
541 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */
a61af66fc99e Initial load
duke
parents:
diff changeset
542 S4 = 2.75573137070700676789e-06, /* 0x3EC71DE3, 0x57B1FE7D */
a61af66fc99e Initial load
duke
parents:
diff changeset
543 S5 = -2.50507602534068634195e-08, /* 0xBE5AE5E6, 0x8A2B9CEB */
a61af66fc99e Initial load
duke
parents:
diff changeset
544 S6 = 1.58969099521155010221e-10; /* 0x3DE5D93A, 0x5ACFD57C */
a61af66fc99e Initial load
duke
parents:
diff changeset
545
a61af66fc99e Initial load
duke
parents:
diff changeset
546 static double __kernel_sin(double x, double y, int iy)
a61af66fc99e Initial load
duke
parents:
diff changeset
547 {
a61af66fc99e Initial load
duke
parents:
diff changeset
548 double z,r,v;
a61af66fc99e Initial load
duke
parents:
diff changeset
549 int ix;
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
550 ix = high(x)&0x7fffffff; /* high word of x */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
551 if(ix<0x3e400000) /* |x| < 2**-27 */
a61af66fc99e Initial load
duke
parents:
diff changeset
552 {if((int)x==0) return x;} /* generate inexact */
a61af66fc99e Initial load
duke
parents:
diff changeset
553 z = x*x;
a61af66fc99e Initial load
duke
parents:
diff changeset
554 v = z*x;
a61af66fc99e Initial load
duke
parents:
diff changeset
555 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
a61af66fc99e Initial load
duke
parents:
diff changeset
556 if(iy==0) return x+v*(S1+z*r);
a61af66fc99e Initial load
duke
parents:
diff changeset
557 else return x-((z*(half*y-v*r)-y)-v*S1);
a61af66fc99e Initial load
duke
parents:
diff changeset
558 }
a61af66fc99e Initial load
duke
parents:
diff changeset
559
a61af66fc99e Initial load
duke
parents:
diff changeset
560 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
561 * __kernel_cos( x, y )
a61af66fc99e Initial load
duke
parents:
diff changeset
562 * kernel cos function on [-pi/4, pi/4], pi/4 ~ 0.785398164
a61af66fc99e Initial load
duke
parents:
diff changeset
563 * Input x is assumed to be bounded by ~pi/4 in magnitude.
a61af66fc99e Initial load
duke
parents:
diff changeset
564 * Input y is the tail of x.
a61af66fc99e Initial load
duke
parents:
diff changeset
565 *
a61af66fc99e Initial load
duke
parents:
diff changeset
566 * Algorithm
a61af66fc99e Initial load
duke
parents:
diff changeset
567 * 1. Since cos(-x) = cos(x), we need only to consider positive x.
a61af66fc99e Initial load
duke
parents:
diff changeset
568 * 2. if x < 2^-27 (hx<0x3e400000 0), return 1 with inexact if x!=0.
a61af66fc99e Initial load
duke
parents:
diff changeset
569 * 3. cos(x) is approximated by a polynomial of degree 14 on
a61af66fc99e Initial load
duke
parents:
diff changeset
570 * [0,pi/4]
a61af66fc99e Initial load
duke
parents:
diff changeset
571 * 4 14
a61af66fc99e Initial load
duke
parents:
diff changeset
572 * cos(x) ~ 1 - x*x/2 + C1*x + ... + C6*x
a61af66fc99e Initial load
duke
parents:
diff changeset
573 * where the remez error is
a61af66fc99e Initial load
duke
parents:
diff changeset
574 *
a61af66fc99e Initial load
duke
parents:
diff changeset
575 * | 2 4 6 8 10 12 14 | -58
a61af66fc99e Initial load
duke
parents:
diff changeset
576 * |cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
a61af66fc99e Initial load
duke
parents:
diff changeset
577 * | |
a61af66fc99e Initial load
duke
parents:
diff changeset
578 *
a61af66fc99e Initial load
duke
parents:
diff changeset
579 * 4 6 8 10 12 14
a61af66fc99e Initial load
duke
parents:
diff changeset
580 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
a61af66fc99e Initial load
duke
parents:
diff changeset
581 * cos(x) = 1 - x*x/2 + r
a61af66fc99e Initial load
duke
parents:
diff changeset
582 * since cos(x+y) ~ cos(x) - sin(x)*y
a61af66fc99e Initial load
duke
parents:
diff changeset
583 * ~ cos(x) - x*y,
a61af66fc99e Initial load
duke
parents:
diff changeset
584 * a correction term is necessary in cos(x) and hence
a61af66fc99e Initial load
duke
parents:
diff changeset
585 * cos(x+y) = 1 - (x*x/2 - (r - x*y))
a61af66fc99e Initial load
duke
parents:
diff changeset
586 * For better accuracy when x > 0.3, let qx = |x|/4 with
a61af66fc99e Initial load
duke
parents:
diff changeset
587 * the last 32 bits mask off, and if x > 0.78125, let qx = 0.28125.
a61af66fc99e Initial load
duke
parents:
diff changeset
588 * Then
a61af66fc99e Initial load
duke
parents:
diff changeset
589 * cos(x+y) = (1-qx) - ((x*x/2-qx) - (r-x*y)).
a61af66fc99e Initial load
duke
parents:
diff changeset
590 * Note that 1-qx and (x*x/2-qx) is EXACT here, and the
a61af66fc99e Initial load
duke
parents:
diff changeset
591 * magnitude of the latter is at least a quarter of x*x/2,
a61af66fc99e Initial load
duke
parents:
diff changeset
592 * thus, reducing the rounding error in the subtraction.
a61af66fc99e Initial load
duke
parents:
diff changeset
593 */
a61af66fc99e Initial load
duke
parents:
diff changeset
594
a61af66fc99e Initial load
duke
parents:
diff changeset
595 static const double
a61af66fc99e Initial load
duke
parents:
diff changeset
596 C1 = 4.16666666666666019037e-02, /* 0x3FA55555, 0x5555554C */
a61af66fc99e Initial load
duke
parents:
diff changeset
597 C2 = -1.38888888888741095749e-03, /* 0xBF56C16C, 0x16C15177 */
a61af66fc99e Initial load
duke
parents:
diff changeset
598 C3 = 2.48015872894767294178e-05, /* 0x3EFA01A0, 0x19CB1590 */
a61af66fc99e Initial load
duke
parents:
diff changeset
599 C4 = -2.75573143513906633035e-07, /* 0xBE927E4F, 0x809C52AD */
a61af66fc99e Initial load
duke
parents:
diff changeset
600 C5 = 2.08757232129817482790e-09, /* 0x3E21EE9E, 0xBDB4B1C4 */
a61af66fc99e Initial load
duke
parents:
diff changeset
601 C6 = -1.13596475577881948265e-11; /* 0xBDA8FAE9, 0xBE8838D4 */
a61af66fc99e Initial load
duke
parents:
diff changeset
602
a61af66fc99e Initial load
duke
parents:
diff changeset
603 static double __kernel_cos(double x, double y)
a61af66fc99e Initial load
duke
parents:
diff changeset
604 {
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
605 double a,h,z,r,qx=0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
606 int ix;
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
607 ix = high(x)&0x7fffffff; /* ix = |x|'s high word*/
0
a61af66fc99e Initial load
duke
parents:
diff changeset
608 if(ix<0x3e400000) { /* if x < 2**27 */
a61af66fc99e Initial load
duke
parents:
diff changeset
609 if(((int)x)==0) return one; /* generate inexact */
a61af66fc99e Initial load
duke
parents:
diff changeset
610 }
a61af66fc99e Initial load
duke
parents:
diff changeset
611 z = x*x;
a61af66fc99e Initial load
duke
parents:
diff changeset
612 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
a61af66fc99e Initial load
duke
parents:
diff changeset
613 if(ix < 0x3FD33333) /* if |x| < 0.3 */
a61af66fc99e Initial load
duke
parents:
diff changeset
614 return one - (0.5*z - (z*r - x*y));
a61af66fc99e Initial load
duke
parents:
diff changeset
615 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
616 if(ix > 0x3fe90000) { /* x > 0.78125 */
a61af66fc99e Initial load
duke
parents:
diff changeset
617 qx = 0.28125;
a61af66fc99e Initial load
duke
parents:
diff changeset
618 } else {
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
619 set_high(&qx, ix-0x00200000); /* x/4 */
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
620 set_low(&qx, 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
621 }
14411
bdd155477289 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 1972
diff changeset
622 h = 0.5*z-qx;
bdd155477289 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 1972
diff changeset
623 a = one-qx;
bdd155477289 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 1972
diff changeset
624 return a - (h - (z*r-x*y));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
625 }
a61af66fc99e Initial load
duke
parents:
diff changeset
626 }
a61af66fc99e Initial load
duke
parents:
diff changeset
627
a61af66fc99e Initial load
duke
parents:
diff changeset
628 /* __kernel_tan( x, y, k )
a61af66fc99e Initial load
duke
parents:
diff changeset
629 * kernel tan function on [-pi/4, pi/4], pi/4 ~ 0.7854
a61af66fc99e Initial load
duke
parents:
diff changeset
630 * Input x is assumed to be bounded by ~pi/4 in magnitude.
a61af66fc99e Initial load
duke
parents:
diff changeset
631 * Input y is the tail of x.
a61af66fc99e Initial load
duke
parents:
diff changeset
632 * Input k indicates whether tan (if k=1) or
a61af66fc99e Initial load
duke
parents:
diff changeset
633 * -1/tan (if k= -1) is returned.
a61af66fc99e Initial load
duke
parents:
diff changeset
634 *
a61af66fc99e Initial load
duke
parents:
diff changeset
635 * Algorithm
a61af66fc99e Initial load
duke
parents:
diff changeset
636 * 1. Since tan(-x) = -tan(x), we need only to consider positive x.
a61af66fc99e Initial load
duke
parents:
diff changeset
637 * 2. if x < 2^-28 (hx<0x3e300000 0), return x with inexact if x!=0.
a61af66fc99e Initial load
duke
parents:
diff changeset
638 * 3. tan(x) is approximated by a odd polynomial of degree 27 on
a61af66fc99e Initial load
duke
parents:
diff changeset
639 * [0,0.67434]
a61af66fc99e Initial load
duke
parents:
diff changeset
640 * 3 27
a61af66fc99e Initial load
duke
parents:
diff changeset
641 * tan(x) ~ x + T1*x + ... + T13*x
a61af66fc99e Initial load
duke
parents:
diff changeset
642 * where
a61af66fc99e Initial load
duke
parents:
diff changeset
643 *
a61af66fc99e Initial load
duke
parents:
diff changeset
644 * |tan(x) 2 4 26 | -59.2
a61af66fc99e Initial load
duke
parents:
diff changeset
645 * |----- - (1+T1*x +T2*x +.... +T13*x )| <= 2
a61af66fc99e Initial load
duke
parents:
diff changeset
646 * | x |
a61af66fc99e Initial load
duke
parents:
diff changeset
647 *
a61af66fc99e Initial load
duke
parents:
diff changeset
648 * Note: tan(x+y) = tan(x) + tan'(x)*y
a61af66fc99e Initial load
duke
parents:
diff changeset
649 * ~ tan(x) + (1+x*x)*y
a61af66fc99e Initial load
duke
parents:
diff changeset
650 * Therefore, for better accuracy in computing tan(x+y), let
a61af66fc99e Initial load
duke
parents:
diff changeset
651 * 3 2 2 2 2
a61af66fc99e Initial load
duke
parents:
diff changeset
652 * r = x *(T2+x *(T3+x *(...+x *(T12+x *T13))))
a61af66fc99e Initial load
duke
parents:
diff changeset
653 * then
a61af66fc99e Initial load
duke
parents:
diff changeset
654 * 3 2
a61af66fc99e Initial load
duke
parents:
diff changeset
655 * tan(x+y) = x + (T1*x + (x *(r+y)+y))
a61af66fc99e Initial load
duke
parents:
diff changeset
656 *
a61af66fc99e Initial load
duke
parents:
diff changeset
657 * 4. For x in [0.67434,pi/4], let y = pi/4 - x, then
a61af66fc99e Initial load
duke
parents:
diff changeset
658 * tan(x) = tan(pi/4-y) = (1-tan(y))/(1+tan(y))
a61af66fc99e Initial load
duke
parents:
diff changeset
659 * = 1 - 2*(tan(y) - (tan(y)^2)/(1+tan(y)))
a61af66fc99e Initial load
duke
parents:
diff changeset
660 */
a61af66fc99e Initial load
duke
parents:
diff changeset
661
a61af66fc99e Initial load
duke
parents:
diff changeset
662 static const double
a61af66fc99e Initial load
duke
parents:
diff changeset
663 pio4 = 7.85398163397448278999e-01, /* 0x3FE921FB, 0x54442D18 */
a61af66fc99e Initial load
duke
parents:
diff changeset
664 pio4lo= 3.06161699786838301793e-17, /* 0x3C81A626, 0x33145C07 */
a61af66fc99e Initial load
duke
parents:
diff changeset
665 T[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
666 3.33333333333334091986e-01, /* 0x3FD55555, 0x55555563 */
a61af66fc99e Initial load
duke
parents:
diff changeset
667 1.33333333333201242699e-01, /* 0x3FC11111, 0x1110FE7A */
a61af66fc99e Initial load
duke
parents:
diff changeset
668 5.39682539762260521377e-02, /* 0x3FABA1BA, 0x1BB341FE */
a61af66fc99e Initial load
duke
parents:
diff changeset
669 2.18694882948595424599e-02, /* 0x3F9664F4, 0x8406D637 */
a61af66fc99e Initial load
duke
parents:
diff changeset
670 8.86323982359930005737e-03, /* 0x3F8226E3, 0xE96E8493 */
a61af66fc99e Initial load
duke
parents:
diff changeset
671 3.59207910759131235356e-03, /* 0x3F6D6D22, 0xC9560328 */
a61af66fc99e Initial load
duke
parents:
diff changeset
672 1.45620945432529025516e-03, /* 0x3F57DBC8, 0xFEE08315 */
a61af66fc99e Initial load
duke
parents:
diff changeset
673 5.88041240820264096874e-04, /* 0x3F4344D8, 0xF2F26501 */
a61af66fc99e Initial load
duke
parents:
diff changeset
674 2.46463134818469906812e-04, /* 0x3F3026F7, 0x1A8D1068 */
a61af66fc99e Initial load
duke
parents:
diff changeset
675 7.81794442939557092300e-05, /* 0x3F147E88, 0xA03792A6 */
a61af66fc99e Initial load
duke
parents:
diff changeset
676 7.14072491382608190305e-05, /* 0x3F12B80F, 0x32F0A7E9 */
a61af66fc99e Initial load
duke
parents:
diff changeset
677 -1.85586374855275456654e-05, /* 0xBEF375CB, 0xDB605373 */
a61af66fc99e Initial load
duke
parents:
diff changeset
678 2.59073051863633712884e-05, /* 0x3EFB2A70, 0x74BF7AD4 */
a61af66fc99e Initial load
duke
parents:
diff changeset
679 };
a61af66fc99e Initial load
duke
parents:
diff changeset
680
a61af66fc99e Initial load
duke
parents:
diff changeset
681 static double __kernel_tan(double x, double y, int iy)
a61af66fc99e Initial load
duke
parents:
diff changeset
682 {
a61af66fc99e Initial load
duke
parents:
diff changeset
683 double z,r,v,w,s;
a61af66fc99e Initial load
duke
parents:
diff changeset
684 int ix,hx;
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
685 hx = high(x); /* high word of x */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
686 ix = hx&0x7fffffff; /* high word of |x| */
a61af66fc99e Initial load
duke
parents:
diff changeset
687 if(ix<0x3e300000) { /* x < 2**-28 */
a61af66fc99e Initial load
duke
parents:
diff changeset
688 if((int)x==0) { /* generate inexact */
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
689 if (((ix | low(x)) | (iy + 1)) == 0)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
690 return one / fabsd(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
691 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
692 if (iy == 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
693 return x;
a61af66fc99e Initial load
duke
parents:
diff changeset
694 else { /* compute -1 / (x+y) carefully */
a61af66fc99e Initial load
duke
parents:
diff changeset
695 double a, t;
a61af66fc99e Initial load
duke
parents:
diff changeset
696
a61af66fc99e Initial load
duke
parents:
diff changeset
697 z = w = x + y;
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
698 set_low(&z, 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
699 v = y - (z - x);
a61af66fc99e Initial load
duke
parents:
diff changeset
700 t = a = -one / w;
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
701 set_low(&t, 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
702 s = one + t * z;
a61af66fc99e Initial load
duke
parents:
diff changeset
703 return t + a * (s + t * v);
a61af66fc99e Initial load
duke
parents:
diff changeset
704 }
a61af66fc99e Initial load
duke
parents:
diff changeset
705 }
a61af66fc99e Initial load
duke
parents:
diff changeset
706 }
a61af66fc99e Initial load
duke
parents:
diff changeset
707 }
a61af66fc99e Initial load
duke
parents:
diff changeset
708 if(ix>=0x3FE59428) { /* |x|>=0.6744 */
a61af66fc99e Initial load
duke
parents:
diff changeset
709 if(hx<0) {x = -x; y = -y;}
a61af66fc99e Initial load
duke
parents:
diff changeset
710 z = pio4-x;
a61af66fc99e Initial load
duke
parents:
diff changeset
711 w = pio4lo-y;
a61af66fc99e Initial load
duke
parents:
diff changeset
712 x = z+w; y = 0.0;
a61af66fc99e Initial load
duke
parents:
diff changeset
713 }
a61af66fc99e Initial load
duke
parents:
diff changeset
714 z = x*x;
a61af66fc99e Initial load
duke
parents:
diff changeset
715 w = z*z;
a61af66fc99e Initial load
duke
parents:
diff changeset
716 /* Break x^5*(T[1]+x^2*T[2]+...) into
a61af66fc99e Initial load
duke
parents:
diff changeset
717 * x^5(T[1]+x^4*T[3]+...+x^20*T[11]) +
a61af66fc99e Initial load
duke
parents:
diff changeset
718 * x^5(x^2*(T[2]+x^4*T[4]+...+x^22*[T12]))
a61af66fc99e Initial load
duke
parents:
diff changeset
719 */
a61af66fc99e Initial load
duke
parents:
diff changeset
720 r = T[1]+w*(T[3]+w*(T[5]+w*(T[7]+w*(T[9]+w*T[11]))));
a61af66fc99e Initial load
duke
parents:
diff changeset
721 v = z*(T[2]+w*(T[4]+w*(T[6]+w*(T[8]+w*(T[10]+w*T[12])))));
a61af66fc99e Initial load
duke
parents:
diff changeset
722 s = z*x;
a61af66fc99e Initial load
duke
parents:
diff changeset
723 r = y + z*(s*(r+v)+y);
a61af66fc99e Initial load
duke
parents:
diff changeset
724 r += T[0]*s;
a61af66fc99e Initial load
duke
parents:
diff changeset
725 w = x+r;
a61af66fc99e Initial load
duke
parents:
diff changeset
726 if(ix>=0x3FE59428) {
a61af66fc99e Initial load
duke
parents:
diff changeset
727 v = (double)iy;
a61af66fc99e Initial load
duke
parents:
diff changeset
728 return (double)(1-((hx>>30)&2))*(v-2.0*(x-(w*w/(w+v)-r)));
a61af66fc99e Initial load
duke
parents:
diff changeset
729 }
a61af66fc99e Initial load
duke
parents:
diff changeset
730 if(iy==1) return w;
a61af66fc99e Initial load
duke
parents:
diff changeset
731 else { /* if allow error up to 2 ulp,
a61af66fc99e Initial load
duke
parents:
diff changeset
732 simply return -1.0/(x+r) here */
a61af66fc99e Initial load
duke
parents:
diff changeset
733 /* compute -1.0/(x+r) accurately */
a61af66fc99e Initial load
duke
parents:
diff changeset
734 double a,t;
a61af66fc99e Initial load
duke
parents:
diff changeset
735 z = w;
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
736 set_low(&z, 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
737 v = r-(z - x); /* z+v = r+x */
a61af66fc99e Initial load
duke
parents:
diff changeset
738 t = a = -1.0/w; /* a = -1.0/w */
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
739 set_low(&t, 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
740 s = 1.0+t*z;
a61af66fc99e Initial load
duke
parents:
diff changeset
741 return t+a*(s+t*v);
a61af66fc99e Initial load
duke
parents:
diff changeset
742 }
a61af66fc99e Initial load
duke
parents:
diff changeset
743 }
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745
a61af66fc99e Initial load
duke
parents:
diff changeset
746 //----------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
747 //
a61af66fc99e Initial load
duke
parents:
diff changeset
748 // Routines for new sin/cos implementation
a61af66fc99e Initial load
duke
parents:
diff changeset
749 //
a61af66fc99e Initial load
duke
parents:
diff changeset
750 //----------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
751
a61af66fc99e Initial load
duke
parents:
diff changeset
752 /* sin(x)
a61af66fc99e Initial load
duke
parents:
diff changeset
753 * Return sine function of x.
a61af66fc99e Initial load
duke
parents:
diff changeset
754 *
a61af66fc99e Initial load
duke
parents:
diff changeset
755 * kernel function:
a61af66fc99e Initial load
duke
parents:
diff changeset
756 * __kernel_sin ... sine function on [-pi/4,pi/4]
a61af66fc99e Initial load
duke
parents:
diff changeset
757 * __kernel_cos ... cose function on [-pi/4,pi/4]
a61af66fc99e Initial load
duke
parents:
diff changeset
758 * __ieee754_rem_pio2 ... argument reduction routine
a61af66fc99e Initial load
duke
parents:
diff changeset
759 *
a61af66fc99e Initial load
duke
parents:
diff changeset
760 * Method.
a61af66fc99e Initial load
duke
parents:
diff changeset
761 * Let S,C and T denote the sin, cos and tan respectively on
a61af66fc99e Initial load
duke
parents:
diff changeset
762 * [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/2
a61af66fc99e Initial load
duke
parents:
diff changeset
763 * in [-pi/4 , +pi/4], and let n = k mod 4.
a61af66fc99e Initial load
duke
parents:
diff changeset
764 * We have
a61af66fc99e Initial load
duke
parents:
diff changeset
765 *
a61af66fc99e Initial load
duke
parents:
diff changeset
766 * n sin(x) cos(x) tan(x)
a61af66fc99e Initial load
duke
parents:
diff changeset
767 * ----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
768 * 0 S C T
a61af66fc99e Initial load
duke
parents:
diff changeset
769 * 1 C -S -1/T
a61af66fc99e Initial load
duke
parents:
diff changeset
770 * 2 -S -C T
a61af66fc99e Initial load
duke
parents:
diff changeset
771 * 3 -C S -1/T
a61af66fc99e Initial load
duke
parents:
diff changeset
772 * ----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
773 *
a61af66fc99e Initial load
duke
parents:
diff changeset
774 * Special cases:
a61af66fc99e Initial load
duke
parents:
diff changeset
775 * Let trig be any of sin, cos, or tan.
a61af66fc99e Initial load
duke
parents:
diff changeset
776 * trig(+-INF) is NaN, with signals;
a61af66fc99e Initial load
duke
parents:
diff changeset
777 * trig(NaN) is that NaN;
a61af66fc99e Initial load
duke
parents:
diff changeset
778 *
a61af66fc99e Initial load
duke
parents:
diff changeset
779 * Accuracy:
a61af66fc99e Initial load
duke
parents:
diff changeset
780 * TRIG(x) returns trig(x) nearly rounded
a61af66fc99e Initial load
duke
parents:
diff changeset
781 */
a61af66fc99e Initial load
duke
parents:
diff changeset
782
a61af66fc99e Initial load
duke
parents:
diff changeset
783 JRT_LEAF(jdouble, SharedRuntime::dsin(jdouble x))
a61af66fc99e Initial load
duke
parents:
diff changeset
784 double y[2],z=0.0;
a61af66fc99e Initial load
duke
parents:
diff changeset
785 int n, ix;
a61af66fc99e Initial load
duke
parents:
diff changeset
786
a61af66fc99e Initial load
duke
parents:
diff changeset
787 /* High word of x. */
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
788 ix = high(x);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
789
a61af66fc99e Initial load
duke
parents:
diff changeset
790 /* |x| ~< pi/4 */
a61af66fc99e Initial load
duke
parents:
diff changeset
791 ix &= 0x7fffffff;
a61af66fc99e Initial load
duke
parents:
diff changeset
792 if(ix <= 0x3fe921fb) return __kernel_sin(x,z,0);
a61af66fc99e Initial load
duke
parents:
diff changeset
793
a61af66fc99e Initial load
duke
parents:
diff changeset
794 /* sin(Inf or NaN) is NaN */
a61af66fc99e Initial load
duke
parents:
diff changeset
795 else if (ix>=0x7ff00000) return x-x;
a61af66fc99e Initial load
duke
parents:
diff changeset
796
a61af66fc99e Initial load
duke
parents:
diff changeset
797 /* argument reduction needed */
a61af66fc99e Initial load
duke
parents:
diff changeset
798 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
799 n = __ieee754_rem_pio2(x,y);
a61af66fc99e Initial load
duke
parents:
diff changeset
800 switch(n&3) {
a61af66fc99e Initial load
duke
parents:
diff changeset
801 case 0: return __kernel_sin(y[0],y[1],1);
a61af66fc99e Initial load
duke
parents:
diff changeset
802 case 1: return __kernel_cos(y[0],y[1]);
a61af66fc99e Initial load
duke
parents:
diff changeset
803 case 2: return -__kernel_sin(y[0],y[1],1);
a61af66fc99e Initial load
duke
parents:
diff changeset
804 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
805 return -__kernel_cos(y[0],y[1]);
a61af66fc99e Initial load
duke
parents:
diff changeset
806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
807 }
a61af66fc99e Initial load
duke
parents:
diff changeset
808 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
809
a61af66fc99e Initial load
duke
parents:
diff changeset
810 /* cos(x)
a61af66fc99e Initial load
duke
parents:
diff changeset
811 * Return cosine function of x.
a61af66fc99e Initial load
duke
parents:
diff changeset
812 *
a61af66fc99e Initial load
duke
parents:
diff changeset
813 * kernel function:
a61af66fc99e Initial load
duke
parents:
diff changeset
814 * __kernel_sin ... sine function on [-pi/4,pi/4]
a61af66fc99e Initial load
duke
parents:
diff changeset
815 * __kernel_cos ... cosine function on [-pi/4,pi/4]
a61af66fc99e Initial load
duke
parents:
diff changeset
816 * __ieee754_rem_pio2 ... argument reduction routine
a61af66fc99e Initial load
duke
parents:
diff changeset
817 *
a61af66fc99e Initial load
duke
parents:
diff changeset
818 * Method.
a61af66fc99e Initial load
duke
parents:
diff changeset
819 * Let S,C and T denote the sin, cos and tan respectively on
a61af66fc99e Initial load
duke
parents:
diff changeset
820 * [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/2
a61af66fc99e Initial load
duke
parents:
diff changeset
821 * in [-pi/4 , +pi/4], and let n = k mod 4.
a61af66fc99e Initial load
duke
parents:
diff changeset
822 * We have
a61af66fc99e Initial load
duke
parents:
diff changeset
823 *
a61af66fc99e Initial load
duke
parents:
diff changeset
824 * n sin(x) cos(x) tan(x)
a61af66fc99e Initial load
duke
parents:
diff changeset
825 * ----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
826 * 0 S C T
a61af66fc99e Initial load
duke
parents:
diff changeset
827 * 1 C -S -1/T
a61af66fc99e Initial load
duke
parents:
diff changeset
828 * 2 -S -C T
a61af66fc99e Initial load
duke
parents:
diff changeset
829 * 3 -C S -1/T
a61af66fc99e Initial load
duke
parents:
diff changeset
830 * ----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
831 *
a61af66fc99e Initial load
duke
parents:
diff changeset
832 * Special cases:
a61af66fc99e Initial load
duke
parents:
diff changeset
833 * Let trig be any of sin, cos, or tan.
a61af66fc99e Initial load
duke
parents:
diff changeset
834 * trig(+-INF) is NaN, with signals;
a61af66fc99e Initial load
duke
parents:
diff changeset
835 * trig(NaN) is that NaN;
a61af66fc99e Initial load
duke
parents:
diff changeset
836 *
a61af66fc99e Initial load
duke
parents:
diff changeset
837 * Accuracy:
a61af66fc99e Initial load
duke
parents:
diff changeset
838 * TRIG(x) returns trig(x) nearly rounded
a61af66fc99e Initial load
duke
parents:
diff changeset
839 */
a61af66fc99e Initial load
duke
parents:
diff changeset
840
a61af66fc99e Initial load
duke
parents:
diff changeset
841 JRT_LEAF(jdouble, SharedRuntime::dcos(jdouble x))
a61af66fc99e Initial load
duke
parents:
diff changeset
842 double y[2],z=0.0;
a61af66fc99e Initial load
duke
parents:
diff changeset
843 int n, ix;
a61af66fc99e Initial load
duke
parents:
diff changeset
844
a61af66fc99e Initial load
duke
parents:
diff changeset
845 /* High word of x. */
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
846 ix = high(x);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
847
a61af66fc99e Initial load
duke
parents:
diff changeset
848 /* |x| ~< pi/4 */
a61af66fc99e Initial load
duke
parents:
diff changeset
849 ix &= 0x7fffffff;
a61af66fc99e Initial load
duke
parents:
diff changeset
850 if(ix <= 0x3fe921fb) return __kernel_cos(x,z);
a61af66fc99e Initial load
duke
parents:
diff changeset
851
a61af66fc99e Initial load
duke
parents:
diff changeset
852 /* cos(Inf or NaN) is NaN */
a61af66fc99e Initial load
duke
parents:
diff changeset
853 else if (ix>=0x7ff00000) return x-x;
a61af66fc99e Initial load
duke
parents:
diff changeset
854
a61af66fc99e Initial load
duke
parents:
diff changeset
855 /* argument reduction needed */
a61af66fc99e Initial load
duke
parents:
diff changeset
856 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
857 n = __ieee754_rem_pio2(x,y);
a61af66fc99e Initial load
duke
parents:
diff changeset
858 switch(n&3) {
a61af66fc99e Initial load
duke
parents:
diff changeset
859 case 0: return __kernel_cos(y[0],y[1]);
a61af66fc99e Initial load
duke
parents:
diff changeset
860 case 1: return -__kernel_sin(y[0],y[1],1);
a61af66fc99e Initial load
duke
parents:
diff changeset
861 case 2: return -__kernel_cos(y[0],y[1]);
a61af66fc99e Initial load
duke
parents:
diff changeset
862 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
863 return __kernel_sin(y[0],y[1],1);
a61af66fc99e Initial load
duke
parents:
diff changeset
864 }
a61af66fc99e Initial load
duke
parents:
diff changeset
865 }
a61af66fc99e Initial load
duke
parents:
diff changeset
866 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
867
a61af66fc99e Initial load
duke
parents:
diff changeset
868 /* tan(x)
a61af66fc99e Initial load
duke
parents:
diff changeset
869 * Return tangent function of x.
a61af66fc99e Initial load
duke
parents:
diff changeset
870 *
a61af66fc99e Initial load
duke
parents:
diff changeset
871 * kernel function:
a61af66fc99e Initial load
duke
parents:
diff changeset
872 * __kernel_tan ... tangent function on [-pi/4,pi/4]
a61af66fc99e Initial load
duke
parents:
diff changeset
873 * __ieee754_rem_pio2 ... argument reduction routine
a61af66fc99e Initial load
duke
parents:
diff changeset
874 *
a61af66fc99e Initial load
duke
parents:
diff changeset
875 * Method.
a61af66fc99e Initial load
duke
parents:
diff changeset
876 * Let S,C and T denote the sin, cos and tan respectively on
a61af66fc99e Initial load
duke
parents:
diff changeset
877 * [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/2
a61af66fc99e Initial load
duke
parents:
diff changeset
878 * in [-pi/4 , +pi/4], and let n = k mod 4.
a61af66fc99e Initial load
duke
parents:
diff changeset
879 * We have
a61af66fc99e Initial load
duke
parents:
diff changeset
880 *
a61af66fc99e Initial load
duke
parents:
diff changeset
881 * n sin(x) cos(x) tan(x)
a61af66fc99e Initial load
duke
parents:
diff changeset
882 * ----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
883 * 0 S C T
a61af66fc99e Initial load
duke
parents:
diff changeset
884 * 1 C -S -1/T
a61af66fc99e Initial load
duke
parents:
diff changeset
885 * 2 -S -C T
a61af66fc99e Initial load
duke
parents:
diff changeset
886 * 3 -C S -1/T
a61af66fc99e Initial load
duke
parents:
diff changeset
887 * ----------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
888 *
a61af66fc99e Initial load
duke
parents:
diff changeset
889 * Special cases:
a61af66fc99e Initial load
duke
parents:
diff changeset
890 * Let trig be any of sin, cos, or tan.
a61af66fc99e Initial load
duke
parents:
diff changeset
891 * trig(+-INF) is NaN, with signals;
a61af66fc99e Initial load
duke
parents:
diff changeset
892 * trig(NaN) is that NaN;
a61af66fc99e Initial load
duke
parents:
diff changeset
893 *
a61af66fc99e Initial load
duke
parents:
diff changeset
894 * Accuracy:
a61af66fc99e Initial load
duke
parents:
diff changeset
895 * TRIG(x) returns trig(x) nearly rounded
a61af66fc99e Initial load
duke
parents:
diff changeset
896 */
a61af66fc99e Initial load
duke
parents:
diff changeset
897
a61af66fc99e Initial load
duke
parents:
diff changeset
898 JRT_LEAF(jdouble, SharedRuntime::dtan(jdouble x))
a61af66fc99e Initial load
duke
parents:
diff changeset
899 double y[2],z=0.0;
a61af66fc99e Initial load
duke
parents:
diff changeset
900 int n, ix;
a61af66fc99e Initial load
duke
parents:
diff changeset
901
a61af66fc99e Initial load
duke
parents:
diff changeset
902 /* High word of x. */
20288
a073be2ce5c2 8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
thartmann
parents: 20286
diff changeset
903 ix = high(x);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
904
a61af66fc99e Initial load
duke
parents:
diff changeset
905 /* |x| ~< pi/4 */
a61af66fc99e Initial load
duke
parents:
diff changeset
906 ix &= 0x7fffffff;
a61af66fc99e Initial load
duke
parents:
diff changeset
907 if(ix <= 0x3fe921fb) return __kernel_tan(x,z,1);
a61af66fc99e Initial load
duke
parents:
diff changeset
908
a61af66fc99e Initial load
duke
parents:
diff changeset
909 /* tan(Inf or NaN) is NaN */
a61af66fc99e Initial load
duke
parents:
diff changeset
910 else if (ix>=0x7ff00000) return x-x; /* NaN */
a61af66fc99e Initial load
duke
parents:
diff changeset
911
a61af66fc99e Initial load
duke
parents:
diff changeset
912 /* argument reduction needed */
a61af66fc99e Initial load
duke
parents:
diff changeset
913 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
914 n = __ieee754_rem_pio2(x,y);
a61af66fc99e Initial load
duke
parents:
diff changeset
915 return __kernel_tan(y[0],y[1],1-((n&1)<<1)); /* 1 -- n even
a61af66fc99e Initial load
duke
parents:
diff changeset
916 -1 -- n odd */
a61af66fc99e Initial load
duke
parents:
diff changeset
917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
918 JRT_END
a61af66fc99e Initial load
duke
parents:
diff changeset
919
a61af66fc99e Initial load
duke
parents:
diff changeset
920
a61af66fc99e Initial load
duke
parents:
diff changeset
921 #ifdef WIN32
a61af66fc99e Initial load
duke
parents:
diff changeset
922 # pragma optimize ( "", on )
a61af66fc99e Initial load
duke
parents:
diff changeset
923 #endif