1 /* origin: FreeBSD /usr/src/lib/msun/src/s_sinf.c */
3 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
4 * Optimized by Bruce D. Evans.
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
14 * ====================================================
20 /* Small multiples of pi/2 rounded to double precision. */
22 s1pio2 = 1*M_PI_2, /* 0x3FF921FB, 0x54442D18 */
23 s2pio2 = 2*M_PI_2, /* 0x400921FB, 0x54442D18 */
24 s3pio2 = 3*M_PI_2, /* 0x4012D97C, 0x7F3321D2 */
25 s4pio2 = 4*M_PI_2; /* 0x401921FB, 0x54442D18 */
27 void sincosf(float x, float *sin, float *cos)
34 GET_FLOAT_WORD(ix, x);
39 if (ix <= 0x3f490fda) {
41 if (ix < 0x39800000) {
42 /* raise inexact if x!=0 and underflow if subnormal */
43 FORCE_EVAL(ix < 0x00100000 ? x/0x1p120f : x+0x1p120f);
54 if (ix <= 0x407b53d1) {
55 if (ix <= 0x4016cbe3) { /* |x| ~<= 3pi/4 */
57 *sin = -__cosdf(x + s1pio2);
58 *cos = __sindf(x + s1pio2);
60 *sin = __cosdf(s1pio2 - x);
61 *cos = __sindf(s1pio2 - x);
65 /* -sin(x+c) is not correct if x+c could be 0: -0 vs +0 */
66 *sin = -__sindf(sign ? x + s2pio2 : x - s2pio2);
67 *cos = -__cosdf(sign ? x + s2pio2 : x - s2pio2);
72 if (ix <= 0x40e231d5) {
73 if (ix <= 0x40afeddf) { /* |x| ~<= 7*pi/4 */
75 *sin = __cosdf(x + s3pio2);
76 *cos = -__sindf(x + s3pio2);
78 *sin = -__cosdf(x - s3pio2);
79 *cos = __sindf(x - s3pio2);
83 *sin = __sindf(sign ? x + s4pio2 : x - s4pio2);
84 *cos = __cosdf(sign ? x + s4pio2 : x - s4pio2);
88 /* sin(Inf or NaN) is NaN */
89 if (ix >= 0x7f800000) {
94 /* general argument reduction needed */
95 n = __rem_pio2f(x, &y);