fpu_mul.c revision 1.2 1 1.2 lukem /* $NetBSD: fpu_mul.c,v 1.2 2003/07/15 02:54:43 lukem Exp $ */
2 1.1 simonb
3 1.1 simonb /*
4 1.1 simonb * Copyright (c) 1992, 1993
5 1.1 simonb * The Regents of the University of California. All rights reserved.
6 1.1 simonb *
7 1.1 simonb * This software was developed by the Computer Systems Engineering group
8 1.1 simonb * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
9 1.1 simonb * contributed to Berkeley.
10 1.1 simonb *
11 1.1 simonb * All advertising materials mentioning features or use of this software
12 1.1 simonb * must display the following acknowledgement:
13 1.1 simonb * This product includes software developed by the University of
14 1.1 simonb * California, Lawrence Berkeley Laboratory.
15 1.1 simonb *
16 1.1 simonb * Redistribution and use in source and binary forms, with or without
17 1.1 simonb * modification, are permitted provided that the following conditions
18 1.1 simonb * are met:
19 1.1 simonb * 1. Redistributions of source code must retain the above copyright
20 1.1 simonb * notice, this list of conditions and the following disclaimer.
21 1.1 simonb * 2. Redistributions in binary form must reproduce the above copyright
22 1.1 simonb * notice, this list of conditions and the following disclaimer in the
23 1.1 simonb * documentation and/or other materials provided with the distribution.
24 1.1 simonb * 3. All advertising materials mentioning features or use of this software
25 1.1 simonb * must display the following acknowledgement:
26 1.1 simonb * This product includes software developed by the University of
27 1.1 simonb * California, Berkeley and its contributors.
28 1.1 simonb * 4. Neither the name of the University nor the names of its contributors
29 1.1 simonb * may be used to endorse or promote products derived from this software
30 1.1 simonb * without specific prior written permission.
31 1.1 simonb *
32 1.1 simonb * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
33 1.1 simonb * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 1.1 simonb * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35 1.1 simonb * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36 1.1 simonb * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 1.1 simonb * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 1.1 simonb * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 1.1 simonb * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40 1.1 simonb * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41 1.1 simonb * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 1.1 simonb * SUCH DAMAGE.
43 1.1 simonb *
44 1.1 simonb * @(#)fpu_mul.c 8.1 (Berkeley) 6/11/93
45 1.1 simonb */
46 1.1 simonb
47 1.1 simonb /*
48 1.1 simonb * Perform an FPU multiply (return x * y).
49 1.1 simonb */
50 1.2 lukem
51 1.2 lukem #include <sys/cdefs.h>
52 1.2 lukem __KERNEL_RCSID(0, "$NetBSD: fpu_mul.c,v 1.2 2003/07/15 02:54:43 lukem Exp $");
53 1.1 simonb
54 1.1 simonb #include <sys/types.h>
55 1.1 simonb #if defined(DIAGNOSTIC)||defined(DEBUG)
56 1.1 simonb #include <sys/systm.h>
57 1.1 simonb #endif
58 1.1 simonb
59 1.1 simonb #include <machine/reg.h>
60 1.1 simonb #include <machine/fpu.h>
61 1.1 simonb
62 1.1 simonb #include <powerpc/fpu/fpu_arith.h>
63 1.1 simonb #include <powerpc/fpu/fpu_emu.h>
64 1.1 simonb
65 1.1 simonb /*
66 1.1 simonb * The multiplication algorithm for normal numbers is as follows:
67 1.1 simonb *
68 1.1 simonb * The fraction of the product is built in the usual stepwise fashion.
69 1.1 simonb * Each step consists of shifting the accumulator right one bit
70 1.1 simonb * (maintaining any guard bits) and, if the next bit in y is set,
71 1.1 simonb * adding the multiplicand (x) to the accumulator. Then, in any case,
72 1.1 simonb * we advance one bit leftward in y. Algorithmically:
73 1.1 simonb *
74 1.1 simonb * A = 0;
75 1.1 simonb * for (bit = 0; bit < FP_NMANT; bit++) {
76 1.1 simonb * sticky |= A & 1, A >>= 1;
77 1.1 simonb * if (Y & (1 << bit))
78 1.1 simonb * A += X;
79 1.1 simonb * }
80 1.1 simonb *
81 1.1 simonb * (X and Y here represent the mantissas of x and y respectively.)
82 1.1 simonb * The resultant accumulator (A) is the product's mantissa. It may
83 1.1 simonb * be as large as 11.11111... in binary and hence may need to be
84 1.1 simonb * shifted right, but at most one bit.
85 1.1 simonb *
86 1.1 simonb * Since we do not have efficient multiword arithmetic, we code the
87 1.1 simonb * accumulator as four separate words, just like any other mantissa.
88 1.1 simonb * We use local variables in the hope that this is faster than memory.
89 1.1 simonb * We keep x->fp_mant in locals for the same reason.
90 1.1 simonb *
91 1.1 simonb * In the algorithm above, the bits in y are inspected one at a time.
92 1.1 simonb * We will pick them up 32 at a time and then deal with those 32, one
93 1.1 simonb * at a time. Note, however, that we know several things about y:
94 1.1 simonb *
95 1.1 simonb * - the guard and round bits at the bottom are sure to be zero;
96 1.1 simonb *
97 1.1 simonb * - often many low bits are zero (y is often from a single or double
98 1.1 simonb * precision source);
99 1.1 simonb *
100 1.1 simonb * - bit FP_NMANT-1 is set, and FP_1*2 fits in a word.
101 1.1 simonb *
102 1.1 simonb * We can also test for 32-zero-bits swiftly. In this case, the center
103 1.1 simonb * part of the loop---setting sticky, shifting A, and not adding---will
104 1.1 simonb * run 32 times without adding X to A. We can do a 32-bit shift faster
105 1.1 simonb * by simply moving words. Since zeros are common, we optimize this case.
106 1.1 simonb * Furthermore, since A is initially zero, we can omit the shift as well
107 1.1 simonb * until we reach a nonzero word.
108 1.1 simonb */
109 1.1 simonb struct fpn *
110 1.1 simonb fpu_mul(struct fpemu *fe)
111 1.1 simonb {
112 1.1 simonb struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2;
113 1.1 simonb u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m;
114 1.1 simonb int sticky;
115 1.1 simonb FPU_DECL_CARRY;
116 1.1 simonb
117 1.1 simonb /*
118 1.1 simonb * Put the `heavier' operand on the right (see fpu_emu.h).
119 1.1 simonb * Then we will have one of the following cases, taken in the
120 1.1 simonb * following order:
121 1.1 simonb *
122 1.1 simonb * - y = NaN. Implied: if only one is a signalling NaN, y is.
123 1.1 simonb * The result is y.
124 1.1 simonb * - y = Inf. Implied: x != NaN (is 0, number, or Inf: the NaN
125 1.1 simonb * case was taken care of earlier).
126 1.1 simonb * If x = 0, the result is NaN. Otherwise the result
127 1.1 simonb * is y, with its sign reversed if x is negative.
128 1.1 simonb * - x = 0. Implied: y is 0 or number.
129 1.1 simonb * The result is 0 (with XORed sign as usual).
130 1.1 simonb * - other. Implied: both x and y are numbers.
131 1.1 simonb * The result is x * y (XOR sign, multiply bits, add exponents).
132 1.1 simonb */
133 1.1 simonb DPRINTF(FPE_REG, ("fpu_mul:\n"));
134 1.1 simonb DUMPFPN(FPE_REG, x);
135 1.1 simonb DUMPFPN(FPE_REG, y);
136 1.1 simonb DPRINTF(FPE_REG, ("=>\n"));
137 1.1 simonb
138 1.1 simonb ORDER(x, y);
139 1.1 simonb if (ISNAN(y)) {
140 1.1 simonb y->fp_sign ^= x->fp_sign;
141 1.1 simonb fe->fe_cx |= FPSCR_VXSNAN;
142 1.1 simonb DUMPFPN(FPE_REG, y);
143 1.1 simonb return (y);
144 1.1 simonb }
145 1.1 simonb if (ISINF(y)) {
146 1.1 simonb if (ISZERO(x)) {
147 1.1 simonb fe->fe_cx |= FPSCR_VXIMZ;
148 1.1 simonb return (fpu_newnan(fe));
149 1.1 simonb }
150 1.1 simonb y->fp_sign ^= x->fp_sign;
151 1.1 simonb DUMPFPN(FPE_REG, y);
152 1.1 simonb return (y);
153 1.1 simonb }
154 1.1 simonb if (ISZERO(x)) {
155 1.1 simonb x->fp_sign ^= y->fp_sign;
156 1.1 simonb DUMPFPN(FPE_REG, x);
157 1.1 simonb return (x);
158 1.1 simonb }
159 1.1 simonb
160 1.1 simonb /*
161 1.1 simonb * Setup. In the code below, the mask `m' will hold the current
162 1.1 simonb * mantissa byte from y. The variable `bit' denotes the bit
163 1.1 simonb * within m. We also define some macros to deal with everything.
164 1.1 simonb */
165 1.1 simonb x3 = x->fp_mant[3];
166 1.1 simonb x2 = x->fp_mant[2];
167 1.1 simonb x1 = x->fp_mant[1];
168 1.1 simonb x0 = x->fp_mant[0];
169 1.1 simonb sticky = a3 = a2 = a1 = a0 = 0;
170 1.1 simonb
171 1.1 simonb #define ADD /* A += X */ \
172 1.1 simonb FPU_ADDS(a3, a3, x3); \
173 1.1 simonb FPU_ADDCS(a2, a2, x2); \
174 1.1 simonb FPU_ADDCS(a1, a1, x1); \
175 1.1 simonb FPU_ADDC(a0, a0, x0)
176 1.1 simonb
177 1.1 simonb #define SHR1 /* A >>= 1, with sticky */ \
178 1.1 simonb sticky |= a3 & 1, a3 = (a3 >> 1) | (a2 << 31), \
179 1.1 simonb a2 = (a2 >> 1) | (a1 << 31), a1 = (a1 >> 1) | (a0 << 31), a0 >>= 1
180 1.1 simonb
181 1.1 simonb #define SHR32 /* A >>= 32, with sticky */ \
182 1.1 simonb sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0
183 1.1 simonb
184 1.1 simonb #define STEP /* each 1-bit step of the multiplication */ \
185 1.1 simonb SHR1; if (bit & m) { ADD; }; bit <<= 1
186 1.1 simonb
187 1.1 simonb /*
188 1.1 simonb * We are ready to begin. The multiply loop runs once for each
189 1.1 simonb * of the four 32-bit words. Some words, however, are special.
190 1.1 simonb * As noted above, the low order bits of Y are often zero. Even
191 1.1 simonb * if not, the first loop can certainly skip the guard bits.
192 1.1 simonb * The last word of y has its highest 1-bit in position FP_NMANT-1,
193 1.1 simonb * so we stop the loop when we move past that bit.
194 1.1 simonb */
195 1.1 simonb if ((m = y->fp_mant[3]) == 0) {
196 1.1 simonb /* SHR32; */ /* unneeded since A==0 */
197 1.1 simonb } else {
198 1.1 simonb bit = 1 << FP_NG;
199 1.1 simonb do {
200 1.1 simonb STEP;
201 1.1 simonb } while (bit != 0);
202 1.1 simonb }
203 1.1 simonb if ((m = y->fp_mant[2]) == 0) {
204 1.1 simonb SHR32;
205 1.1 simonb } else {
206 1.1 simonb bit = 1;
207 1.1 simonb do {
208 1.1 simonb STEP;
209 1.1 simonb } while (bit != 0);
210 1.1 simonb }
211 1.1 simonb if ((m = y->fp_mant[1]) == 0) {
212 1.1 simonb SHR32;
213 1.1 simonb } else {
214 1.1 simonb bit = 1;
215 1.1 simonb do {
216 1.1 simonb STEP;
217 1.1 simonb } while (bit != 0);
218 1.1 simonb }
219 1.1 simonb m = y->fp_mant[0]; /* definitely != 0 */
220 1.1 simonb bit = 1;
221 1.1 simonb do {
222 1.1 simonb STEP;
223 1.1 simonb } while (bit <= m);
224 1.1 simonb
225 1.1 simonb /*
226 1.1 simonb * Done with mantissa calculation. Get exponent and handle
227 1.1 simonb * 11.111...1 case, then put result in place. We reuse x since
228 1.1 simonb * it already has the right class (FP_NUM).
229 1.1 simonb */
230 1.1 simonb m = x->fp_exp + y->fp_exp;
231 1.1 simonb if (a0 >= FP_2) {
232 1.1 simonb SHR1;
233 1.1 simonb m++;
234 1.1 simonb }
235 1.1 simonb x->fp_sign ^= y->fp_sign;
236 1.1 simonb x->fp_exp = m;
237 1.1 simonb x->fp_sticky = sticky;
238 1.1 simonb x->fp_mant[3] = a3;
239 1.1 simonb x->fp_mant[2] = a2;
240 1.1 simonb x->fp_mant[1] = a1;
241 1.1 simonb x->fp_mant[0] = a0;
242 1.1 simonb
243 1.1 simonb DUMPFPN(FPE_REG, x);
244 1.1 simonb return (x);
245 1.1 simonb }
246