4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
25 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
26 * Use is subject to license terms.
30 * __vsinf: single precision vector sin
34 * For |x| < pi/4, approximate sin(x) by a polynomial x+x*z*(S0+
35 * z*(S1+z*S2)) and cos(x) by a polynomial 1+z*(-1/2+z*(C0+z*(C1+
36 * z*C2))), where z = x*x, all evaluated in double precision.
40 * The largest error is less than 0.6 ulps.
43 #include <sys/isa_defs.h>
46 #define HI(x) *(1+(int *)&x)
47 #define LO(x) *(unsigned *)&x
49 #define HI(x) *(int *)&x
50 #define LO(x) *(1+(unsigned *)&x)
54 #define restrict _Restrict
59 extern int __vlibm_rem_pio2m(double *, double *, int, int, int);
61 static const double C
[] = {
62 -1.66666552424430847168e-01, /* 2^ -3 * -1.5555460000000 */
63 8.33219196647405624390e-03, /* 2^ -7 * 1.11077E0000000 */
64 -1.95187909412197768688e-04, /* 2^-13 * -1.9956B60000000 */
67 4.16666455566883087158e-02, /* 2^ -5 * 1.55554A0000000 */
68 -1.38873036485165357590e-03, /* 2^-10 * -1.6C0C1E0000000 */
69 2.44309903791872784495e-05, /* 2^-16 * 1.99E24E0000000 */
70 0.636619772367581343075535, /* 2^ -1 * 1.45F306DC9C883 */
71 6755399441055744.0, /* 2^ 52 * 1.8000000000000 */
72 1.570796326734125614166, /* 2^ 0 * 1.921FB54400000 */
73 6.077100506506192601475e-11, /* 2^-34 * 1.0B4611A626331 */
89 #define PREPROCESS(N, index, label) \
91 ix = hx & 0x7fffffff; \
94 if (ix <= 0x3f490fdb) { /* |x| < pi/4 */ \
101 } else if (ix <= 0x49c90fdb) { /* |x| < 2^19*pi */ \
105 if (ix >= 0x7f800000) { /* inf or nan */ \
109 z##N = y##N = (double)t; \
111 n##N = ((hx >> 20) & 0x7ff) - 1046; \
112 HI(z##N) = (hx & 0xfffff) | 0x41600000; \
113 n##N = __vlibm_rem_pio2m(&z##N, &y##N, n##N, 1, 0); \
118 z##N = y##N * y##N; \
119 if (n##N & 1) { /* compute cos y */ \
120 f##N = (float)(one + z##N * (mhalf + z##N * \
121 (C0 + z##N * (C1 + z##N * C2)))); \
122 } else { /* compute sin y */ \
123 f##N = (float)(y##N + y##N * z##N * (S0 + \
124 z##N * (S1 + z##N * S2))); \
126 y[index] = (n##N & 2)? -f##N : f##N; \
132 z##N = y##N * invpio2 + c3two51; \
135 y##N = (y##N - z##N * pio2_1) - z##N * pio2_t; \
137 z##N = y##N * y##N; \
138 if (n##N & 1) { /* compute cos y */ \
139 f##N = (float)(one + z##N * (mhalf + z##N * (C0 + \
140 z##N * (C1 + z##N * C2)))); \
141 } else { /* compute sin y */ \
142 f##N = (float)(y##N + y##N * z##N * (S0 + z##N * (S1 + \
145 *y = (n##N & 2)? -f##N : f##N; \
149 __vsinf(int n
, float *restrict x
, int stridex
, float *restrict y
,
152 double y0
, y1
, y2
, y3
;
153 double z0
, z1
, z2
, z3
;
154 float f0
, f1
, f2
, f3
, t
;
155 int n0
= 0, n1
= 0, n2
= 0, n3
, hx
, ix
, medium
;
167 PREPROCESS(0, 0, begin
);
172 PREPROCESS(1, stridey
, process1
);
177 PREPROCESS(2, (stridey
<< 1), process2
);
182 PREPROCESS(3, (stridey
<< 1) + stridey
, process3
);
185 z0
= y0
* invpio2
+ c3two51
;
186 z1
= y1
* invpio2
+ c3two51
;
187 z2
= y2
* invpio2
+ c3two51
;
188 z3
= y3
* invpio2
+ c3two51
;
200 y0
= (y0
- z0
* pio2_1
) - z0
* pio2_t
;
201 y1
= (y1
- z1
* pio2_1
) - z1
* pio2_t
;
202 y2
= (y2
- z2
* pio2_1
) - z2
* pio2_t
;
203 y3
= (y3
- z3
* pio2_1
) - z3
* pio2_t
;
211 hx
= (n0
& 1) | ((n1
& 1) << 1) | ((n2
& 1) << 2) |
215 f0
= (float)(y0
+ y0
* z0
* (S0
+ z0
* (S1
+ z0
* S2
)));
216 f1
= (float)(y1
+ y1
* z1
* (S0
+ z1
* (S1
+ z1
* S2
)));
217 f2
= (float)(y2
+ y2
* z2
* (S0
+ z2
* (S1
+ z2
* S2
)));
218 f3
= (float)(y3
+ y3
* z3
* (S0
+ z3
* (S1
+ z3
* S2
)));
222 f0
= (float)(one
+ z0
* (mhalf
+ z0
* (C0
+
223 z0
* (C1
+ z0
* C2
))));
224 f1
= (float)(y1
+ y1
* z1
* (S0
+ z1
* (S1
+ z1
* S2
)));
225 f2
= (float)(y2
+ y2
* z2
* (S0
+ z2
* (S1
+ z2
* S2
)));
226 f3
= (float)(y3
+ y3
* z3
* (S0
+ z3
* (S1
+ z3
* S2
)));
230 f0
= (float)(y0
+ y0
* z0
* (S0
+ z0
* (S1
+ z0
* S2
)));
231 f1
= (float)(one
+ z1
* (mhalf
+ z1
* (C0
+
232 z1
* (C1
+ z1
* C2
))));
233 f2
= (float)(y2
+ y2
* z2
* (S0
+ z2
* (S1
+ z2
* S2
)));
234 f3
= (float)(y3
+ y3
* z3
* (S0
+ z3
* (S1
+ z3
* S2
)));
238 f0
= (float)(one
+ z0
* (mhalf
+ z0
* (C0
+
239 z0
* (C1
+ z0
* C2
))));
240 f1
= (float)(one
+ z1
* (mhalf
+ z1
* (C0
+
241 z1
* (C1
+ z1
* C2
))));
242 f2
= (float)(y2
+ y2
* z2
* (S0
+ z2
* (S1
+ z2
* S2
)));
243 f3
= (float)(y3
+ y3
* z3
* (S0
+ z3
* (S1
+ z3
* S2
)));
247 f0
= (float)(y0
+ y0
* z0
* (S0
+ z0
* (S1
+ z0
* S2
)));
248 f1
= (float)(y1
+ y1
* z1
* (S0
+ z1
* (S1
+ z1
* S2
)));
249 f2
= (float)(one
+ z2
* (mhalf
+ z2
* (C0
+
250 z2
* (C1
+ z2
* C2
))));
251 f3
= (float)(y3
+ y3
* z3
* (S0
+ z3
* (S1
+ z3
* S2
)));
255 f0
= (float)(one
+ z0
* (mhalf
+ z0
* (C0
+
256 z0
* (C1
+ z0
* C2
))));
257 f1
= (float)(y1
+ y1
* z1
* (S0
+ z1
* (S1
+ z1
* S2
)));
258 f2
= (float)(one
+ z2
* (mhalf
+ z2
* (C0
+
259 z2
* (C1
+ z2
* C2
))));
260 f3
= (float)(y3
+ y3
* z3
* (S0
+ z3
* (S1
+ z3
* S2
)));
264 f0
= (float)(y0
+ y0
* z0
* (S0
+ z0
* (S1
+ z0
* S2
)));
265 f1
= (float)(one
+ z1
* (mhalf
+ z1
* (C0
+
266 z1
* (C1
+ z1
* C2
))));
267 f2
= (float)(one
+ z2
* (mhalf
+ z2
* (C0
+
268 z2
* (C1
+ z2
* C2
))));
269 f3
= (float)(y3
+ y3
* z3
* (S0
+ z3
* (S1
+ z3
* S2
)));
273 f0
= (float)(one
+ z0
* (mhalf
+ z0
* (C0
+
274 z0
* (C1
+ z0
* C2
))));
275 f1
= (float)(one
+ z1
* (mhalf
+ z1
* (C0
+
276 z1
* (C1
+ z1
* C2
))));
277 f2
= (float)(one
+ z2
* (mhalf
+ z2
* (C0
+
278 z2
* (C1
+ z2
* C2
))));
279 f3
= (float)(y3
+ y3
* z3
* (S0
+ z3
* (S1
+ z3
* S2
)));
283 f0
= (float)(y0
+ y0
* z0
* (S0
+ z0
* (S1
+ z0
* S2
)));
284 f1
= (float)(y1
+ y1
* z1
* (S0
+ z1
* (S1
+ z1
* S2
)));
285 f2
= (float)(y2
+ y2
* z2
* (S0
+ z2
* (S1
+ z2
* S2
)));
286 f3
= (float)(one
+ z3
* (mhalf
+ z3
* (C0
+
287 z3
* (C1
+ z3
* C2
))));
291 f0
= (float)(one
+ z0
* (mhalf
+ z0
* (C0
+
292 z0
* (C1
+ z0
* C2
))));
293 f1
= (float)(y1
+ y1
* z1
* (S0
+ z1
* (S1
+ z1
* S2
)));
294 f2
= (float)(y2
+ y2
* z2
* (S0
+ z2
* (S1
+ z2
* S2
)));
295 f3
= (float)(one
+ z3
* (mhalf
+ z3
* (C0
+
296 z3
* (C1
+ z3
* C2
))));
300 f0
= (float)(y0
+ y0
* z0
* (S0
+ z0
* (S1
+ z0
* S2
)));
301 f1
= (float)(one
+ z1
* (mhalf
+ z1
* (C0
+
302 z1
* (C1
+ z1
* C2
))));
303 f2
= (float)(y2
+ y2
* z2
* (S0
+ z2
* (S1
+ z2
* S2
)));
304 f3
= (float)(one
+ z3
* (mhalf
+ z3
* (C0
+
305 z3
* (C1
+ z3
* C2
))));
309 f0
= (float)(one
+ z0
* (mhalf
+ z0
* (C0
+
310 z0
* (C1
+ z0
* C2
))));
311 f1
= (float)(one
+ z1
* (mhalf
+ z1
* (C0
+
312 z1
* (C1
+ z1
* C2
))));
313 f2
= (float)(y2
+ y2
* z2
* (S0
+ z2
* (S1
+ z2
* S2
)));
314 f3
= (float)(one
+ z3
* (mhalf
+ z3
* (C0
+
315 z3
* (C1
+ z3
* C2
))));
319 f0
= (float)(y0
+ y0
* z0
* (S0
+ z0
* (S1
+ z0
* S2
)));
320 f1
= (float)(y1
+ y1
* z1
* (S0
+ z1
* (S1
+ z1
* S2
)));
321 f2
= (float)(one
+ z2
* (mhalf
+ z2
* (C0
+
322 z2
* (C1
+ z2
* C2
))));
323 f3
= (float)(one
+ z3
* (mhalf
+ z3
* (C0
+
324 z3
* (C1
+ z3
* C2
))));
328 f0
= (float)(one
+ z0
* (mhalf
+ z0
* (C0
+
329 z0
* (C1
+ z0
* C2
))));
330 f1
= (float)(y1
+ y1
* z1
* (S0
+ z1
* (S1
+ z1
* S2
)));
331 f2
= (float)(one
+ z2
* (mhalf
+ z2
* (C0
+
332 z2
* (C1
+ z2
* C2
))));
333 f3
= (float)(one
+ z3
* (mhalf
+ z3
* (C0
+
334 z3
* (C1
+ z3
* C2
))));
338 f0
= (float)(y0
+ y0
* z0
* (S0
+ z0
* (S1
+ z0
* S2
)));
339 f1
= (float)(one
+ z1
* (mhalf
+ z1
* (C0
+
340 z1
* (C1
+ z1
* C2
))));
341 f2
= (float)(one
+ z2
* (mhalf
+ z2
* (C0
+
342 z2
* (C1
+ z2
* C2
))));
343 f3
= (float)(one
+ z3
* (mhalf
+ z3
* (C0
+
344 z3
* (C1
+ z3
* C2
))));
348 f0
= (float)(one
+ z0
* (mhalf
+ z0
* (C0
+
349 z0
* (C1
+ z0
* C2
))));
350 f1
= (float)(one
+ z1
* (mhalf
+ z1
* (C0
+
351 z1
* (C1
+ z1
* C2
))));
352 f2
= (float)(one
+ z2
* (mhalf
+ z2
* (C0
+
353 z2
* (C1
+ z2
* C2
))));
354 f3
= (float)(one
+ z3
* (mhalf
+ z3
* (C0
+
355 z3
* (C1
+ z3
* C2
))));
358 *y
= (n0
& 2)? -f0
: f0
;
360 *y
= (n1
& 2)? -f1
: f1
;
362 *y
= (n2
& 2)? -f2
: f2
;
364 *y
= (n3
& 2)? -f3
: f3
;