xref: /illumos-gate/usr/src/lib/libc/i386/fp/_D_cplx_div.c (revision 1da57d55)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate /*
28*7c478bd9Sstevel@tonic-gate  * _D_cplx_div(z, w) returns z / w with infinities handled according
29*7c478bd9Sstevel@tonic-gate  * to C99.
30*7c478bd9Sstevel@tonic-gate  *
31*7c478bd9Sstevel@tonic-gate  * If z and w are both finite and w is nonzero, _D_cplx_div(z, w)
32*7c478bd9Sstevel@tonic-gate  * delivers the complex quotient q according to the usual formula:
33*7c478bd9Sstevel@tonic-gate  * let a = Re(z), b = Im(z), c = Re(w), and d = Im(w); then q = x +
34*7c478bd9Sstevel@tonic-gate  * I * y where x = (a * c + b * d) / r and y = (b * c - a * d) / r
35*7c478bd9Sstevel@tonic-gate  * with r = c * c + d * d.  This implementation computes intermediate
36*7c478bd9Sstevel@tonic-gate  * results in extended precision to avoid premature underflow or over-
37*7c478bd9Sstevel@tonic-gate  * flow.
38*7c478bd9Sstevel@tonic-gate  *
39*7c478bd9Sstevel@tonic-gate  * If z is neither NaN nor zero and w is zero, or if z is infinite
40*7c478bd9Sstevel@tonic-gate  * and w is finite and nonzero, _D_cplx_div delivers an infinite
41*7c478bd9Sstevel@tonic-gate  * result.  If z is finite and w is infinite, _D_cplx_div delivers
42*7c478bd9Sstevel@tonic-gate  * a zero result.
43*7c478bd9Sstevel@tonic-gate  *
44*7c478bd9Sstevel@tonic-gate  * If z and w are both zero or both infinite, or if either z or w is
45*7c478bd9Sstevel@tonic-gate  * a complex NaN, _D_cplx_div delivers NaN + I * NaN.  C99 doesn't
46*7c478bd9Sstevel@tonic-gate  * specify these cases.
47*7c478bd9Sstevel@tonic-gate  *
48*7c478bd9Sstevel@tonic-gate  * This implementation can raise spurious invalid operation, inexact,
49*7c478bd9Sstevel@tonic-gate  * and division-by-zero exceptions.  C99 allows this.
50*7c478bd9Sstevel@tonic-gate  *
51*7c478bd9Sstevel@tonic-gate  * Warning: Do not attempt to "optimize" this code by removing multi-
52*7c478bd9Sstevel@tonic-gate  * plications by zero.
53*7c478bd9Sstevel@tonic-gate  */
54*7c478bd9Sstevel@tonic-gate 
55*7c478bd9Sstevel@tonic-gate #if !defined(i386) && !defined(__i386) && !defined(__amd64)
56*7c478bd9Sstevel@tonic-gate #error This code is for x86 only
57*7c478bd9Sstevel@tonic-gate #endif
58*7c478bd9Sstevel@tonic-gate 
59*7c478bd9Sstevel@tonic-gate static union {
60*7c478bd9Sstevel@tonic-gate 	int	i;
61*7c478bd9Sstevel@tonic-gate 	float	f;
62*7c478bd9Sstevel@tonic-gate } inf = {
63*7c478bd9Sstevel@tonic-gate 	0x7f800000
64*7c478bd9Sstevel@tonic-gate };
65*7c478bd9Sstevel@tonic-gate 
66*7c478bd9Sstevel@tonic-gate /*
67*7c478bd9Sstevel@tonic-gate  * Return +1 if x is +Inf, -1 if x is -Inf, and 0 otherwise
68*7c478bd9Sstevel@tonic-gate  */
69*7c478bd9Sstevel@tonic-gate static int
testinf(double x)70*7c478bd9Sstevel@tonic-gate testinf(double x)
71*7c478bd9Sstevel@tonic-gate {
72*7c478bd9Sstevel@tonic-gate 	union {
73*7c478bd9Sstevel@tonic-gate 		int	i[2];
74*7c478bd9Sstevel@tonic-gate 		double	d;
75*7c478bd9Sstevel@tonic-gate 	} xx;
76*7c478bd9Sstevel@tonic-gate 
77*7c478bd9Sstevel@tonic-gate 	xx.d = x;
78*7c478bd9Sstevel@tonic-gate 	return (((((xx.i[1] << 1) - 0xffe00000) | xx.i[0]) == 0)?
79*7c478bd9Sstevel@tonic-gate 		(1 | (xx.i[1] >> 31)) : 0);
80*7c478bd9Sstevel@tonic-gate }
81*7c478bd9Sstevel@tonic-gate 
82*7c478bd9Sstevel@tonic-gate double _Complex
_D_cplx_div(double _Complex z,double _Complex w)83*7c478bd9Sstevel@tonic-gate _D_cplx_div(double _Complex z, double _Complex w)
84*7c478bd9Sstevel@tonic-gate {
85*7c478bd9Sstevel@tonic-gate 	double _Complex	v;
86*7c478bd9Sstevel@tonic-gate 	union {
87*7c478bd9Sstevel@tonic-gate 		int	i[2];
88*7c478bd9Sstevel@tonic-gate 		double	d;
89*7c478bd9Sstevel@tonic-gate 	} cc, dd;
90*7c478bd9Sstevel@tonic-gate 	double		a, b, c, d;
91*7c478bd9Sstevel@tonic-gate 	long double	r, x, y;
92*7c478bd9Sstevel@tonic-gate 	int		i, j, recalc;
93*7c478bd9Sstevel@tonic-gate 
94*7c478bd9Sstevel@tonic-gate 	/*
95*7c478bd9Sstevel@tonic-gate 	 * The following is equivalent to
96*7c478bd9Sstevel@tonic-gate 	 *
97*7c478bd9Sstevel@tonic-gate 	 *  a = creal(z); b = cimag(z);
98*7c478bd9Sstevel@tonic-gate 	 *  c = creal(w); d = cimag(w);
99*7c478bd9Sstevel@tonic-gate 	 */
100*7c478bd9Sstevel@tonic-gate 	/* LINTED alignment */
101*7c478bd9Sstevel@tonic-gate 	a = ((double *)&z)[0];
102*7c478bd9Sstevel@tonic-gate 	/* LINTED alignment */
103*7c478bd9Sstevel@tonic-gate 	b = ((double *)&z)[1];
104*7c478bd9Sstevel@tonic-gate 	/* LINTED alignment */
105*7c478bd9Sstevel@tonic-gate 	c = ((double *)&w)[0];
106*7c478bd9Sstevel@tonic-gate 	/* LINTED alignment */
107*7c478bd9Sstevel@tonic-gate 	d = ((double *)&w)[1];
108*7c478bd9Sstevel@tonic-gate 
109*7c478bd9Sstevel@tonic-gate 	r = (long double)c * c + (long double)d * d;
110*7c478bd9Sstevel@tonic-gate 
111*7c478bd9Sstevel@tonic-gate 	if (r == 0.0f) {
112*7c478bd9Sstevel@tonic-gate 		/* w is zero; multiply z by 1/Re(w) - I * Im(w) */
113*7c478bd9Sstevel@tonic-gate 		c = 1.0f / c;
114*7c478bd9Sstevel@tonic-gate 		i = testinf(a);
115*7c478bd9Sstevel@tonic-gate 		j = testinf(b);
116*7c478bd9Sstevel@tonic-gate 		if (i | j) { /* z is infinite */
117*7c478bd9Sstevel@tonic-gate 			a = i;
118*7c478bd9Sstevel@tonic-gate 			b = j;
119*7c478bd9Sstevel@tonic-gate 		}
120*7c478bd9Sstevel@tonic-gate 		/* LINTED alignment */
121*7c478bd9Sstevel@tonic-gate 		((double *)&v)[0] = a * c + b * d;
122*7c478bd9Sstevel@tonic-gate 		/* LINTED alignment */
123*7c478bd9Sstevel@tonic-gate 		((double *)&v)[1] = b * c - a * d;
124*7c478bd9Sstevel@tonic-gate 		return (v);
125*7c478bd9Sstevel@tonic-gate 	}
126*7c478bd9Sstevel@tonic-gate 
127*7c478bd9Sstevel@tonic-gate 	r = 1.0f / r;
128*7c478bd9Sstevel@tonic-gate 	x = ((long double)a * c + (long double)b * d) * r;
129*7c478bd9Sstevel@tonic-gate 	y = ((long double)b * c - (long double)a * d) * r;
130*7c478bd9Sstevel@tonic-gate 
131*7c478bd9Sstevel@tonic-gate 	if (x != x && y != y) {
132*7c478bd9Sstevel@tonic-gate 		/*
133*7c478bd9Sstevel@tonic-gate 		 * Both x and y are NaN, so z and w can't both be finite
134*7c478bd9Sstevel@tonic-gate 		 * and nonzero.  Since we handled the case w = 0 above,
135*7c478bd9Sstevel@tonic-gate 		 * the only cases to check here are when one of z or w
136*7c478bd9Sstevel@tonic-gate 		 * is infinite.
137*7c478bd9Sstevel@tonic-gate 		 */
138*7c478bd9Sstevel@tonic-gate 		r = 1.0f;
139*7c478bd9Sstevel@tonic-gate 		recalc = 0;
140*7c478bd9Sstevel@tonic-gate 		i = testinf(a);
141*7c478bd9Sstevel@tonic-gate 		j = testinf(b);
142*7c478bd9Sstevel@tonic-gate 		if (i | j) { /* z is infinite */
143*7c478bd9Sstevel@tonic-gate 			/* "factor out" infinity */
144*7c478bd9Sstevel@tonic-gate 			a = i;
145*7c478bd9Sstevel@tonic-gate 			b = j;
146*7c478bd9Sstevel@tonic-gate 			r = inf.f;
147*7c478bd9Sstevel@tonic-gate 			recalc = 1;
148*7c478bd9Sstevel@tonic-gate 		}
149*7c478bd9Sstevel@tonic-gate 		i = testinf(c);
150*7c478bd9Sstevel@tonic-gate 		j = testinf(d);
151*7c478bd9Sstevel@tonic-gate 		if (i | j) { /* w is infinite */
152*7c478bd9Sstevel@tonic-gate 			/*
153*7c478bd9Sstevel@tonic-gate 			 * "factor out" infinity, being careful to preserve
154*7c478bd9Sstevel@tonic-gate 			 * signs of finite values
155*7c478bd9Sstevel@tonic-gate 			 */
156*7c478bd9Sstevel@tonic-gate 			cc.d = c;
157*7c478bd9Sstevel@tonic-gate 			dd.d = d;
158*7c478bd9Sstevel@tonic-gate 			c = i? i : ((cc.i[1] < 0)? -0.0f : 0.0f);
159*7c478bd9Sstevel@tonic-gate 			d = j? j : ((dd.i[1] < 0)? -0.0f : 0.0f);
160*7c478bd9Sstevel@tonic-gate 			r *= 0.0f;
161*7c478bd9Sstevel@tonic-gate 			recalc = 1;
162*7c478bd9Sstevel@tonic-gate 		}
163*7c478bd9Sstevel@tonic-gate 		if (recalc) {
164*7c478bd9Sstevel@tonic-gate 			x = ((long double)a * c + (long double)b * d) * r;
165*7c478bd9Sstevel@tonic-gate 			y = ((long double)b * c - (long double)a * d) * r;
166*7c478bd9Sstevel@tonic-gate 		}
167*7c478bd9Sstevel@tonic-gate 	}
168*7c478bd9Sstevel@tonic-gate 
169*7c478bd9Sstevel@tonic-gate 	/*
170*7c478bd9Sstevel@tonic-gate 	 * The following is equivalent to
171*7c478bd9Sstevel@tonic-gate 	 *
172*7c478bd9Sstevel@tonic-gate 	 *  return x + I * y;
173*7c478bd9Sstevel@tonic-gate 	 */
174*7c478bd9Sstevel@tonic-gate 	/* LINTED alignment */
175*7c478bd9Sstevel@tonic-gate 	((double *)&v)[0] = (double)x;
176*7c478bd9Sstevel@tonic-gate 	/* LINTED alignment */
177*7c478bd9Sstevel@tonic-gate 	((double *)&v)[1] = (double)y;
178*7c478bd9Sstevel@tonic-gate 	return (v);
179*7c478bd9Sstevel@tonic-gate }
180