fpu_subr.c revision 1.4 1 1.4 lukem /* $NetBSD: fpu_subr.c,v 1.4 2003/07/15 00:05:00 lukem Exp $ */
2 1.2 deraadt
3 1.1 deraadt /*
4 1.1 deraadt * Copyright (c) 1992, 1993
5 1.1 deraadt * The Regents of the University of California. All rights reserved.
6 1.1 deraadt *
7 1.1 deraadt * This software was developed by the Computer Systems Engineering group
8 1.1 deraadt * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
9 1.1 deraadt * contributed to Berkeley.
10 1.1 deraadt *
11 1.1 deraadt * All advertising materials mentioning features or use of this software
12 1.1 deraadt * must display the following acknowledgement:
13 1.1 deraadt * This product includes software developed by the University of
14 1.1 deraadt * California, Lawrence Berkeley Laboratory.
15 1.1 deraadt *
16 1.1 deraadt * Redistribution and use in source and binary forms, with or without
17 1.1 deraadt * modification, are permitted provided that the following conditions
18 1.1 deraadt * are met:
19 1.1 deraadt * 1. Redistributions of source code must retain the above copyright
20 1.1 deraadt * notice, this list of conditions and the following disclaimer.
21 1.1 deraadt * 2. Redistributions in binary form must reproduce the above copyright
22 1.1 deraadt * notice, this list of conditions and the following disclaimer in the
23 1.1 deraadt * documentation and/or other materials provided with the distribution.
24 1.1 deraadt * 3. All advertising materials mentioning features or use of this software
25 1.1 deraadt * must display the following acknowledgement:
26 1.1 deraadt * This product includes software developed by the University of
27 1.1 deraadt * California, Berkeley and its contributors.
28 1.1 deraadt * 4. Neither the name of the University nor the names of its contributors
29 1.1 deraadt * may be used to endorse or promote products derived from this software
30 1.1 deraadt * without specific prior written permission.
31 1.1 deraadt *
32 1.1 deraadt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
33 1.1 deraadt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 1.1 deraadt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35 1.1 deraadt * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36 1.1 deraadt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 1.1 deraadt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 1.1 deraadt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 1.1 deraadt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40 1.1 deraadt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41 1.1 deraadt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 1.1 deraadt * SUCH DAMAGE.
43 1.1 deraadt *
44 1.1 deraadt * @(#)fpu_subr.c 8.1 (Berkeley) 6/11/93
45 1.1 deraadt */
46 1.1 deraadt
47 1.1 deraadt /*
48 1.1 deraadt * FPU subroutines.
49 1.1 deraadt */
50 1.4 lukem
51 1.4 lukem #include <sys/cdefs.h>
52 1.4 lukem __KERNEL_RCSID(0, "$NetBSD: fpu_subr.c,v 1.4 2003/07/15 00:05:00 lukem Exp $");
53 1.1 deraadt
54 1.1 deraadt #include <sys/types.h>
55 1.3 christos #ifdef DIAGNOSTIC
56 1.3 christos #include <sys/systm.h>
57 1.3 christos #endif
58 1.1 deraadt
59 1.1 deraadt #include <machine/reg.h>
60 1.3 christos #include <machine/instr.h>
61 1.1 deraadt
62 1.1 deraadt #include <sparc/fpu/fpu_arith.h>
63 1.1 deraadt #include <sparc/fpu/fpu_emu.h>
64 1.3 christos #include <sparc/fpu/fpu_extern.h>
65 1.1 deraadt
66 1.1 deraadt /*
67 1.1 deraadt * Shift the given number right rsh bits. Any bits that `fall off' will get
68 1.1 deraadt * shoved into the sticky field; we return the resulting sticky. Note that
69 1.1 deraadt * shifting NaNs is legal (this will never shift all bits out); a NaN's
70 1.1 deraadt * sticky field is ignored anyway.
71 1.1 deraadt */
72 1.1 deraadt int
73 1.1 deraadt fpu_shr(register struct fpn *fp, register int rsh)
74 1.1 deraadt {
75 1.1 deraadt register u_int m0, m1, m2, m3, s;
76 1.1 deraadt register int lsh;
77 1.1 deraadt
78 1.1 deraadt #ifdef DIAGNOSTIC
79 1.1 deraadt if (rsh <= 0 || (fp->fp_class != FPC_NUM && !ISNAN(fp)))
80 1.1 deraadt panic("fpu_rightshift 1");
81 1.1 deraadt #endif
82 1.1 deraadt
83 1.1 deraadt m0 = fp->fp_mant[0];
84 1.1 deraadt m1 = fp->fp_mant[1];
85 1.1 deraadt m2 = fp->fp_mant[2];
86 1.1 deraadt m3 = fp->fp_mant[3];
87 1.1 deraadt
88 1.1 deraadt /* If shifting all the bits out, take a shortcut. */
89 1.1 deraadt if (rsh >= FP_NMANT) {
90 1.1 deraadt #ifdef DIAGNOSTIC
91 1.1 deraadt if ((m0 | m1 | m2 | m3) == 0)
92 1.1 deraadt panic("fpu_rightshift 2");
93 1.1 deraadt #endif
94 1.1 deraadt fp->fp_mant[0] = 0;
95 1.1 deraadt fp->fp_mant[1] = 0;
96 1.1 deraadt fp->fp_mant[2] = 0;
97 1.1 deraadt fp->fp_mant[3] = 0;
98 1.1 deraadt #ifdef notdef
99 1.1 deraadt if ((m0 | m1 | m2 | m3) == 0)
100 1.1 deraadt fp->fp_class = FPC_ZERO;
101 1.1 deraadt else
102 1.1 deraadt #endif
103 1.1 deraadt fp->fp_sticky = 1;
104 1.1 deraadt return (1);
105 1.1 deraadt }
106 1.1 deraadt
107 1.1 deraadt /* Squish out full words. */
108 1.1 deraadt s = fp->fp_sticky;
109 1.1 deraadt if (rsh >= 32 * 3) {
110 1.1 deraadt s |= m3 | m2 | m1;
111 1.1 deraadt m3 = m0, m2 = 0, m1 = 0, m0 = 0;
112 1.1 deraadt } else if (rsh >= 32 * 2) {
113 1.1 deraadt s |= m3 | m2;
114 1.1 deraadt m3 = m1, m2 = m0, m1 = 0, m0 = 0;
115 1.1 deraadt } else if (rsh >= 32) {
116 1.1 deraadt s |= m3;
117 1.1 deraadt m3 = m2, m2 = m1, m1 = m0, m0 = 0;
118 1.1 deraadt }
119 1.1 deraadt
120 1.1 deraadt /* Handle any remaining partial word. */
121 1.1 deraadt if ((rsh &= 31) != 0) {
122 1.1 deraadt lsh = 32 - rsh;
123 1.1 deraadt s |= m3 << lsh;
124 1.1 deraadt m3 = (m3 >> rsh) | (m2 << lsh);
125 1.1 deraadt m2 = (m2 >> rsh) | (m1 << lsh);
126 1.1 deraadt m1 = (m1 >> rsh) | (m0 << lsh);
127 1.1 deraadt m0 >>= rsh;
128 1.1 deraadt }
129 1.1 deraadt fp->fp_mant[0] = m0;
130 1.1 deraadt fp->fp_mant[1] = m1;
131 1.1 deraadt fp->fp_mant[2] = m2;
132 1.1 deraadt fp->fp_mant[3] = m3;
133 1.1 deraadt fp->fp_sticky = s;
134 1.1 deraadt return (s);
135 1.1 deraadt }
136 1.1 deraadt
137 1.1 deraadt /*
138 1.1 deraadt * Force a number to be normal, i.e., make its fraction have all zero
139 1.1 deraadt * bits before FP_1, then FP_1, then all 1 bits. This is used for denorms
140 1.1 deraadt * and (sometimes) for intermediate results.
141 1.1 deraadt *
142 1.1 deraadt * Internally, this may use a `supernormal' -- a number whose fp_mant
143 1.1 deraadt * is greater than or equal to 2.0 -- so as a side effect you can hand it
144 1.1 deraadt * a supernormal and it will fix it (provided fp->fp_mant[3] == 0).
145 1.1 deraadt */
146 1.1 deraadt void
147 1.1 deraadt fpu_norm(register struct fpn *fp)
148 1.1 deraadt {
149 1.1 deraadt register u_int m0, m1, m2, m3, top, sup, nrm;
150 1.1 deraadt register int lsh, rsh, exp;
151 1.1 deraadt
152 1.1 deraadt exp = fp->fp_exp;
153 1.1 deraadt m0 = fp->fp_mant[0];
154 1.1 deraadt m1 = fp->fp_mant[1];
155 1.1 deraadt m2 = fp->fp_mant[2];
156 1.1 deraadt m3 = fp->fp_mant[3];
157 1.1 deraadt
158 1.1 deraadt /* Handle severe subnormals with 32-bit moves. */
159 1.1 deraadt if (m0 == 0) {
160 1.1 deraadt if (m1)
161 1.1 deraadt m0 = m1, m1 = m2, m2 = m3, m3 = 0, exp -= 32;
162 1.1 deraadt else if (m2)
163 1.1 deraadt m0 = m2, m1 = m3, m2 = 0, m3 = 0, exp -= 2 * 32;
164 1.1 deraadt else if (m3)
165 1.1 deraadt m0 = m3, m1 = 0, m2 = 0, m3 = 0, exp -= 3 * 32;
166 1.1 deraadt else {
167 1.1 deraadt fp->fp_class = FPC_ZERO;
168 1.1 deraadt return;
169 1.1 deraadt }
170 1.1 deraadt }
171 1.1 deraadt
172 1.1 deraadt /* Now fix any supernormal or remaining subnormal. */
173 1.1 deraadt nrm = FP_1;
174 1.1 deraadt sup = nrm << 1;
175 1.1 deraadt if (m0 >= sup) {
176 1.1 deraadt /*
177 1.1 deraadt * We have a supernormal number. We need to shift it right.
178 1.1 deraadt * We may assume m3==0.
179 1.1 deraadt */
180 1.1 deraadt for (rsh = 1, top = m0 >> 1; top >= sup; rsh++) /* XXX slow */
181 1.1 deraadt top >>= 1;
182 1.1 deraadt exp += rsh;
183 1.1 deraadt lsh = 32 - rsh;
184 1.1 deraadt m3 = m2 << lsh;
185 1.1 deraadt m2 = (m2 >> rsh) | (m1 << lsh);
186 1.1 deraadt m1 = (m1 >> rsh) | (m0 << lsh);
187 1.1 deraadt m0 = top;
188 1.1 deraadt } else if (m0 < nrm) {
189 1.1 deraadt /*
190 1.1 deraadt * We have a regular denorm (a subnormal number), and need
191 1.1 deraadt * to shift it left.
192 1.1 deraadt */
193 1.1 deraadt for (lsh = 1, top = m0 << 1; top < nrm; lsh++) /* XXX slow */
194 1.1 deraadt top <<= 1;
195 1.1 deraadt exp -= lsh;
196 1.1 deraadt rsh = 32 - lsh;
197 1.1 deraadt m0 = top | (m1 >> rsh);
198 1.1 deraadt m1 = (m1 << lsh) | (m2 >> rsh);
199 1.1 deraadt m2 = (m2 << lsh) | (m3 >> rsh);
200 1.1 deraadt m3 <<= lsh;
201 1.1 deraadt }
202 1.1 deraadt
203 1.1 deraadt fp->fp_exp = exp;
204 1.1 deraadt fp->fp_mant[0] = m0;
205 1.1 deraadt fp->fp_mant[1] = m1;
206 1.1 deraadt fp->fp_mant[2] = m2;
207 1.1 deraadt fp->fp_mant[3] = m3;
208 1.1 deraadt }
209 1.1 deraadt
210 1.1 deraadt /*
211 1.1 deraadt * Concoct a `fresh' Quiet NaN per Appendix N.
212 1.1 deraadt * As a side effect, we set NV (invalid) for the current exceptions.
213 1.1 deraadt */
214 1.1 deraadt struct fpn *
215 1.1 deraadt fpu_newnan(register struct fpemu *fe)
216 1.1 deraadt {
217 1.1 deraadt register struct fpn *fp;
218 1.1 deraadt
219 1.1 deraadt fe->fe_cx = FSR_NV;
220 1.1 deraadt fp = &fe->fe_f3;
221 1.1 deraadt fp->fp_class = FPC_QNAN;
222 1.1 deraadt fp->fp_sign = 0;
223 1.1 deraadt fp->fp_mant[0] = FP_1 - 1;
224 1.1 deraadt fp->fp_mant[1] = fp->fp_mant[2] = fp->fp_mant[3] = ~0;
225 1.1 deraadt return (fp);
226 1.1 deraadt }
227