Print this page
5261 libm should stop using synonyms.h
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/libm/common/LD/jnl.c
+++ new/usr/src/lib/libm/common/LD/jnl.c
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
↓ open down ↓ |
19 lines elided |
↑ open up ↑ |
20 20 */
21 21
22 22 /*
23 23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
24 24 */
25 25 /*
26 26 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
27 27 * Use is subject to license terms.
28 28 */
29 29
30 -#pragma weak jnl = __jnl
31 -#pragma weak ynl = __ynl
30 +#pragma weak __jnl = jnl
31 +#pragma weak __ynl = ynl
32 32
33 33 /*
34 34 * floating point Bessel's function of the 1st and 2nd kind
35 35 * of order n: jn(n,x),yn(n,x);
36 36 *
37 37 * Special cases:
38 38 * y0(0)=y1(0)=yn(n,0) = -inf with division by zero signal;
39 39 * y0(-ve)=y1(-ve)=yn(n,-ve) are NaN with invalid signal.
40 40 * Note 2. About jn(n,x), yn(n,x)
41 41 * For n=0, j0(x) is called,
42 42 * for n=1, j1(x) is called,
43 43 * for n<x, forward recursion us used starting
44 44 * from values of j0(x) and j1(x).
45 45 * for n>x, a continued fraction approximation to
46 46 * j(n,x)/j(n-1,x) is evaluated and then backward
47 47 * recursion is used starting from a supposed value
48 48 * for j(n,x). The resulting value of j(0,x) is
49 49 * compared with the actual value to correct the
50 50 * supposed value of j(n,x).
51 51 *
52 52 * yn(n,x) is similar in all respects, except
53 53 * that forward recursion is used for all
54 54 * values of n>1.
55 55 *
56 56 */
57 57
58 58 #include "libm.h"
59 59 #include "longdouble.h"
60 60 #include <float.h> /* LDBL_MAX */
61 61
62 62 #define GENERIC long double
63 63
64 64 static const GENERIC
65 65 invsqrtpi = 5.641895835477562869480794515607725858441e-0001L,
66 66 two = 2.0L,
67 67 zero = 0.0L,
68 68 one = 1.0L;
69 69
70 70 GENERIC
71 71 jnl(n, x) int n; GENERIC x; {
72 72 int i, sgn;
73 73 GENERIC a, b, temp = 0, z, w;
74 74
75 75 /*
76 76 * J(-n,x) = (-1)^n * J(n, x), J(n, -x) = (-1)^n * J(n, x)
77 77 * Thus, J(-n,x) = J(n,-x)
78 78 */
79 79 if (n < 0) {
80 80 n = -n;
81 81 x = -x;
82 82 }
83 83 if (n == 0) return (j0l(x));
84 84 if (n == 1) return (j1l(x));
85 85 if (x != x) return x+x;
86 86 if ((n&1) == 0)
87 87 sgn = 0; /* even n */
88 88 else
89 89 sgn = signbitl(x); /* old n */
90 90 x = fabsl(x);
91 91 if (x == zero || !finitel(x)) b = zero;
92 92 else if ((GENERIC)n <= x) {
93 93 /*
94 94 * Safe to use
95 95 * J(n+1,x)=2n/x *J(n,x)-J(n-1,x)
96 96 */
97 97 if (x > 1.0e91L) {
98 98 /*
99 99 * x >> n**2
100 100 * Jn(x) = cos(x-(2n+1)*pi/4)*sqrt(2/x*pi)
101 101 * Yn(x) = sin(x-(2n+1)*pi/4)*sqrt(2/x*pi)
102 102 * Let s=sin(x), c=cos(x),
103 103 * xn=x-(2n+1)*pi/4, sqt2 = sqrt(2),then
104 104 *
105 105 * n sin(xn)*sqt2 cos(xn)*sqt2
106 106 * ----------------------------------
107 107 * 0 s-c c+s
108 108 * 1 -s-c -c+s
109 109 * 2 -s+c -c-s
110 110 * 3 s+c c-s
111 111 */
112 112 switch (n&3) {
113 113 case 0: temp = cosl(x)+sinl(x); break;
114 114 case 1: temp = -cosl(x)+sinl(x); break;
115 115 case 2: temp = -cosl(x)-sinl(x); break;
116 116 case 3: temp = cosl(x)-sinl(x); break;
117 117 }
118 118 b = invsqrtpi*temp/sqrtl(x);
119 119 } else {
120 120 a = j0l(x);
121 121 b = j1l(x);
122 122 for (i = 1; i < n; i++) {
123 123 temp = b;
124 124 b = b*((GENERIC)(i+i)/x) - a; /* avoid underflow */
125 125 a = temp;
126 126 }
127 127 }
128 128 } else {
129 129 if (x < 1e-17L) { /* use J(n,x) = 1/n!*(x/2)^n */
130 130 b = powl(0.5L*x, (GENERIC) n);
131 131 if (b != zero) {
132 132 for (a = one, i = 1; i <= n; i++) a *= (GENERIC)i;
133 133 b = b/a;
134 134 }
135 135 } else {
136 136 /*
137 137 * use backward recurrence
138 138 * x x^2 x^2
139 139 * J(n,x)/J(n-1,x) = ---- ------ ------ .....
140 140 * 2n - 2(n+1) - 2(n+2)
141 141 *
142 142 * 1 1 1
143 143 * (for large x) = ---- ------ ------ .....
144 144 * 2n 2(n+1) 2(n+2)
145 145 * -- - ------ - ------ -
146 146 * x x x
147 147 *
148 148 * Let w = 2n/x and h=2/x, then the above quotient
149 149 * is equal to the continued fraction:
150 150 * 1
151 151 * = -----------------------
152 152 * 1
153 153 * w - -----------------
154 154 * 1
155 155 * w+h - ---------
156 156 * w+2h - ...
157 157 *
158 158 * To determine how many terms needed, let
159 159 * Q(0) = w, Q(1) = w(w+h) - 1,
160 160 * Q(k) = (w+k*h)*Q(k-1) - Q(k-2),
161 161 * When Q(k) > 1e4 good for single
162 162 * When Q(k) > 1e9 good for double
163 163 * When Q(k) > 1e17 good for quaduple
164 164 */
165 165 /* determin k */
166 166 GENERIC t, v;
167 167 double q0, q1, h, tmp; int k, m;
168 168 w = (n+n)/(double)x; h = 2.0/(double)x;
169 169 q0 = w; z = w+h; q1 = w*z - 1.0; k = 1;
170 170 while (q1 < 1.0e17) {
171 171 k += 1; z += h;
172 172 tmp = z*q1 - q0;
173 173 q0 = q1;
174 174 q1 = tmp;
175 175 }
176 176 m = n+n;
177 177 for (t = zero, i = 2*(n+k); i >= m; i -= 2) t = one/(i/x-t);
178 178 a = t;
179 179 b = one;
180 180 /*
181 181 * Estimate log((2/x)^n*n!) = n*log(2/x)+n*ln(n)
182 182 * hence, if n*(log(2n/x)) > ...
183 183 * single 8.8722839355e+01
184 184 * double 7.09782712893383973096e+02
185 185 * long double 1.1356523406294143949491931077970765006170e+04
186 186 * then recurrent value may overflow and the result is
187 187 * likely underflow to zero.
188 188 */
189 189 tmp = n;
190 190 v = two/x;
191 191 tmp = tmp*logl(fabsl(v*tmp));
192 192 if (tmp < 1.1356523406294143949491931077970765e+04L) {
193 193 for (i = n-1; i > 0; i--) {
194 194 temp = b;
195 195 b = ((i+i)/x)*b - a;
196 196 a = temp;
197 197 }
198 198 } else {
199 199 for (i = n-1; i > 0; i--) {
200 200 temp = b;
201 201 b = ((i+i)/x)*b - a;
202 202 a = temp;
203 203 if (b > 1e1000L) {
204 204 a /= b;
205 205 t /= b;
206 206 b = 1.0;
207 207 }
208 208 }
209 209 }
210 210 b = (t*j0l(x)/b);
211 211 }
212 212 }
213 213 if (sgn == 1)
214 214 return -b;
215 215 else
216 216 return b;
217 217 }
218 218
219 219 GENERIC
220 220 ynl(n, x) int n; GENERIC x; {
221 221 int i;
222 222 int sign;
223 223 GENERIC a, b, temp = 0;
224 224
225 225 if (x != x)
226 226 return x+x;
227 227 if (x <= zero) {
228 228 if (x == zero)
229 229 return -one/zero;
230 230 else
231 231 return zero/zero;
232 232 }
233 233 sign = 1;
234 234 if (n < 0) {
235 235 n = -n;
236 236 if ((n&1) == 1) sign = -1;
237 237 }
238 238 if (n == 0) return (y0l(x));
239 239 if (n == 1) return (sign*y1l(x));
240 240 if (!finitel(x)) return zero;
241 241
242 242 if (x > 1.0e91L) {
243 243 /*
244 244 * x >> n**2
245 245 * Jn(x) = cos(x-(2n+1)*pi/4)*sqrt(2/x*pi)
246 246 * Yn(x) = sin(x-(2n+1)*pi/4)*sqrt(2/x*pi)
247 247 * Let s=sin(x), c=cos(x),
248 248 * xn=x-(2n+1)*pi/4, sqt2 = sqrt(2),then
249 249 *
250 250 * n sin(xn)*sqt2 cos(xn)*sqt2
251 251 * ----------------------------------
252 252 * 0 s-c c+s
253 253 * 1 -s-c -c+s
254 254 * 2 -s+c -c-s
255 255 * 3 s+c c-s
256 256 */
257 257 switch (n&3) {
258 258 case 0: temp = sinl(x)-cosl(x); break;
259 259 case 1: temp = -sinl(x)-cosl(x); break;
260 260 case 2: temp = -sinl(x)+cosl(x); break;
261 261 case 3: temp = sinl(x)+cosl(x); break;
262 262 }
263 263 b = invsqrtpi*temp/sqrtl(x);
264 264 } else {
265 265 a = y0l(x);
266 266 b = y1l(x);
267 267 /*
268 268 * fix 1262058 and take care of non-default rounding
269 269 */
270 270 for (i = 1; i < n; i++) {
271 271 temp = b;
272 272 b *= (GENERIC) (i + i) / x;
273 273 if (b <= -LDBL_MAX)
274 274 break;
275 275 b -= a;
276 276 a = temp;
277 277 }
278 278 }
279 279 if (sign > 0)
280 280 return b;
281 281 else
282 282 return -b;
283 283 }
↓ open down ↓ |
242 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX