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 * __vsincosf: single precision vector sincos
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, sindex, cindex, label) \
91 ix = hx & 0x7fffffff; \
94 if (ix <= 0x3f490fdb) { /* |x| < pi/4 */ \
102 } else if (ix <= 0x49c90fdb) { /* |x| < 2^19*pi */ \
106 if (ix >= 0x7f800000) { /* inf or nan */ \
107 s[sindex] = c[cindex] = t / t; \
110 z##N = y##N = (double)t; \
112 n##N = ((hx >> 20) & 0x7ff) - 1046; \
113 HI(z##N) = (hx & 0xfffff) | 0x41600000; \
114 n##N = __vlibm_rem_pio2m(&z##N, &y##N, n##N, 1, 0); \
119 z##N = y##N * y##N; \
120 f##N = (float)(y##N + y##N * z##N * (S0 + z##N * \
121 (S1 + z##N * S2))); \
122 g##N = (float)(one + z##N * (mhalf + z##N * (C0 + \
123 z##N * (C1 + z##N * C2)))); \
140 z##N = y##N * invpio2 + c3two51; \
143 y##N = (y##N - z##N * pio2_1) - z##N * pio2_t; \
145 z##N = y##N * y##N; \
146 f##N = (float)(y##N + y##N * z##N * (S0 + z##N * (S1 + z##N * S2)));\
147 g##N = (float)(one + z##N * (mhalf + z##N * (C0 + z##N * \
148 (C1 + z##N * C2)))); \
164 __vsincosf(int n
, float *restrict x
, int stridex
,
165 float *restrict s
, int strides
, float *restrict c
, int stridec
)
167 double y0
, y1
, y2
, y3
;
168 double z0
, z1
, z2
, z3
;
169 float f0
, f1
, f2
, f3
, t
;
170 float g0
, g1
, g2
, g3
;
171 int n0
= 0, n1
= 0, n2
= 0, n3
, hx
, ix
, medium
;
185 PREPROCESS(0, 0, 0, begin
);
190 PREPROCESS(1, strides
, stridec
, process1
);
195 PREPROCESS(2, (strides
<< 1), (stridec
<< 1), process2
);
200 PREPROCESS(3, (strides
<< 1) + strides
,
201 (stridec
<< 1) + stridec
, process3
);
204 z0
= y0
* invpio2
+ c3two51
;
205 z1
= y1
* invpio2
+ c3two51
;
206 z2
= y2
* invpio2
+ c3two51
;
207 z3
= y3
* invpio2
+ c3two51
;
219 y0
= (y0
- z0
* pio2_1
) - z0
* pio2_t
;
220 y1
= (y1
- z1
* pio2_1
) - z1
* pio2_t
;
221 y2
= (y2
- z2
* pio2_1
) - z2
* pio2_t
;
222 y3
= (y3
- z3
* pio2_1
) - z3
* pio2_t
;
230 f0
= (float)(y0
+ y0
* z0
* (S0
+ z0
* (S1
+ z0
* S2
)));
231 f1
= (float)(y1
+ y1
* z1
* (S0
+ z1
* (S1
+ z1
* S2
)));
232 f2
= (float)(y2
+ y2
* z2
* (S0
+ z2
* (S1
+ z2
* S2
)));
233 f3
= (float)(y3
+ y3
* z3
* (S0
+ z3
* (S1
+ z3
* S2
)));
235 g0
= (float)(one
+ z0
* (mhalf
+ z0
* (C0
+ z0
*
237 g1
= (float)(one
+ z1
* (mhalf
+ z1
* (C0
+ z1
*
239 g2
= (float)(one
+ z2
* (mhalf
+ z2
* (C0
+ z2
*
241 g3
= (float)(one
+ z3
* (mhalf
+ z3
* (C0
+ z3
*