Home | History | Annotate | Line # | Download | only in fpu
fpu_explode.c revision 1.3.30.1
      1  1.3.30.1    bouyer /*	$NetBSD: fpu_explode.c,v 1.3.30.1 2000/11/20 20:25:36 bouyer 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_explode.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: `explode' the machine's `packed binary' format numbers
     49       1.1   deraadt  * into our internal format.
     50       1.1   deraadt  */
     51       1.1   deraadt 
     52       1.1   deraadt #include <sys/types.h>
     53       1.3  christos #include <sys/systm.h>
     54       1.1   deraadt 
     55       1.1   deraadt #include <machine/ieee.h>
     56       1.1   deraadt #include <machine/instr.h>
     57       1.1   deraadt #include <machine/reg.h>
     58       1.1   deraadt 
     59       1.1   deraadt #include <sparc/fpu/fpu_arith.h>
     60       1.1   deraadt #include <sparc/fpu/fpu_emu.h>
     61       1.3  christos #include <sparc/fpu/fpu_extern.h>
     62       1.1   deraadt 
     63       1.1   deraadt /*
     64       1.1   deraadt  * N.B.: in all of the following, we assume the FP format is
     65       1.1   deraadt  *
     66       1.1   deraadt  *	---------------------------
     67       1.1   deraadt  *	| s | exponent | fraction |
     68       1.1   deraadt  *	---------------------------
     69       1.1   deraadt  *
     70       1.1   deraadt  * (which represents -1**s * 1.fraction * 2**exponent), so that the
     71       1.1   deraadt  * sign bit is way at the top (bit 31), the exponent is next, and
     72       1.1   deraadt  * then the remaining bits mark the fraction.  A zero exponent means
     73       1.1   deraadt  * zero or denormalized (0.fraction rather than 1.fraction), and the
     74       1.1   deraadt  * maximum possible exponent, 2bias+1, signals inf (fraction==0) or NaN.
     75       1.1   deraadt  *
     76       1.1   deraadt  * Since the sign bit is always the topmost bit---this holds even for
     77       1.1   deraadt  * integers---we set that outside all the *tof functions.  Each function
     78       1.1   deraadt  * returns the class code for the new number (but note that we use
     79       1.1   deraadt  * FPC_QNAN for all NaNs; fpu_explode will fix this if appropriate).
     80       1.1   deraadt  */
     81       1.1   deraadt 
     82       1.1   deraadt /*
     83       1.1   deraadt  * int -> fpn.
     84       1.1   deraadt  */
     85       1.1   deraadt int
     86       1.1   deraadt fpu_itof(fp, i)
     87       1.1   deraadt 	register struct fpn *fp;
     88       1.1   deraadt 	register u_int i;
     89       1.1   deraadt {
     90       1.1   deraadt 
     91       1.1   deraadt 	if (i == 0)
     92       1.1   deraadt 		return (FPC_ZERO);
     93       1.1   deraadt 	/*
     94       1.1   deraadt 	 * The value FP_1 represents 2^FP_LG, so set the exponent
     95       1.1   deraadt 	 * there and let normalization fix it up.  Convert negative
     96       1.1   deraadt 	 * numbers to sign-and-magnitude.  Note that this relies on
     97       1.1   deraadt 	 * fpu_norm()'s handling of `supernormals'; see fpu_subr.c.
     98       1.1   deraadt 	 */
     99       1.1   deraadt 	fp->fp_exp = FP_LG;
    100       1.1   deraadt 	fp->fp_mant[0] = (int)i < 0 ? -i : i;
    101       1.1   deraadt 	fp->fp_mant[1] = 0;
    102       1.1   deraadt 	fp->fp_mant[2] = 0;
    103       1.1   deraadt 	fp->fp_mant[3] = 0;
    104       1.1   deraadt 	fpu_norm(fp);
    105       1.1   deraadt 	return (FPC_NUM);
    106       1.1   deraadt }
    107       1.1   deraadt 
    108  1.3.30.1    bouyer #ifdef SUN4U
    109  1.3.30.1    bouyer /*
    110  1.3.30.1    bouyer  * 64-bit int -> fpn.
    111  1.3.30.1    bouyer  */
    112  1.3.30.1    bouyer int
    113  1.3.30.1    bouyer fpu_xtof(fp, i)
    114  1.3.30.1    bouyer 	register struct fpn *fp;
    115  1.3.30.1    bouyer 	register u_int64_t i;
    116  1.3.30.1    bouyer {
    117  1.3.30.1    bouyer 
    118  1.3.30.1    bouyer 	if (i == 0)
    119  1.3.30.1    bouyer 		return (FPC_ZERO);
    120  1.3.30.1    bouyer 	/*
    121  1.3.30.1    bouyer 	 * The value FP_1 represents 2^FP_LG, so set the exponent
    122  1.3.30.1    bouyer 	 * there and let normalization fix it up.  Convert negative
    123  1.3.30.1    bouyer 	 * numbers to sign-and-magnitude.  Note that this relies on
    124  1.3.30.1    bouyer 	 * fpu_norm()'s handling of `supernormals'; see fpu_subr.c.
    125  1.3.30.1    bouyer 	 */
    126  1.3.30.1    bouyer 	fp->fp_exp = FP_LG2;
    127  1.3.30.1    bouyer 	*((int64_t*)fp->fp_mant) = (int64_t)i < 0 ? -i : i;
    128  1.3.30.1    bouyer 	fp->fp_mant[2] = 0;
    129  1.3.30.1    bouyer 	fp->fp_mant[3] = 0;
    130  1.3.30.1    bouyer 	fpu_norm(fp);
    131  1.3.30.1    bouyer 	return (FPC_NUM);
    132  1.3.30.1    bouyer }
    133  1.3.30.1    bouyer #endif /* SUN4U */
    134  1.3.30.1    bouyer 
    135  1.3.30.1    bouyer #define	mask(nbits) ((1L << (nbits)) - 1)
    136       1.1   deraadt 
    137       1.1   deraadt /*
    138       1.1   deraadt  * All external floating formats convert to internal in the same manner,
    139       1.1   deraadt  * as defined here.  Note that only normals get an implied 1.0 inserted.
    140       1.1   deraadt  */
    141       1.1   deraadt #define	FP_TOF(exp, expbias, allfrac, f0, f1, f2, f3) \
    142       1.1   deraadt 	if (exp == 0) { \
    143       1.1   deraadt 		if (allfrac == 0) \
    144       1.1   deraadt 			return (FPC_ZERO); \
    145       1.1   deraadt 		fp->fp_exp = 1 - expbias; \
    146       1.1   deraadt 		fp->fp_mant[0] = f0; \
    147       1.1   deraadt 		fp->fp_mant[1] = f1; \
    148       1.1   deraadt 		fp->fp_mant[2] = f2; \
    149       1.1   deraadt 		fp->fp_mant[3] = f3; \
    150       1.1   deraadt 		fpu_norm(fp); \
    151       1.1   deraadt 		return (FPC_NUM); \
    152       1.1   deraadt 	} \
    153       1.1   deraadt 	if (exp == (2 * expbias + 1)) { \
    154       1.1   deraadt 		if (allfrac == 0) \
    155       1.1   deraadt 			return (FPC_INF); \
    156       1.1   deraadt 		fp->fp_mant[0] = f0; \
    157       1.1   deraadt 		fp->fp_mant[1] = f1; \
    158       1.1   deraadt 		fp->fp_mant[2] = f2; \
    159       1.1   deraadt 		fp->fp_mant[3] = f3; \
    160       1.1   deraadt 		return (FPC_QNAN); \
    161       1.1   deraadt 	} \
    162       1.1   deraadt 	fp->fp_exp = exp - expbias; \
    163       1.1   deraadt 	fp->fp_mant[0] = FP_1 | f0; \
    164       1.1   deraadt 	fp->fp_mant[1] = f1; \
    165       1.1   deraadt 	fp->fp_mant[2] = f2; \
    166       1.1   deraadt 	fp->fp_mant[3] = f3; \
    167       1.1   deraadt 	return (FPC_NUM)
    168       1.1   deraadt 
    169       1.1   deraadt /*
    170       1.1   deraadt  * 32-bit single precision -> fpn.
    171       1.1   deraadt  * We assume a single occupies at most (64-FP_LG) bits in the internal
    172       1.1   deraadt  * format: i.e., needs at most fp_mant[0] and fp_mant[1].
    173       1.1   deraadt  */
    174       1.1   deraadt int
    175       1.1   deraadt fpu_stof(fp, i)
    176       1.1   deraadt 	register struct fpn *fp;
    177       1.1   deraadt 	register u_int i;
    178       1.1   deraadt {
    179       1.1   deraadt 	register int exp;
    180       1.1   deraadt 	register u_int frac, f0, f1;
    181       1.1   deraadt #define SNG_SHIFT (SNG_FRACBITS - FP_LG)
    182       1.1   deraadt 
    183       1.1   deraadt 	exp = (i >> (32 - 1 - SNG_EXPBITS)) & mask(SNG_EXPBITS);
    184       1.1   deraadt 	frac = i & mask(SNG_FRACBITS);
    185       1.1   deraadt 	f0 = frac >> SNG_SHIFT;
    186       1.1   deraadt 	f1 = frac << (32 - SNG_SHIFT);
    187       1.1   deraadt 	FP_TOF(exp, SNG_EXP_BIAS, frac, f0, f1, 0, 0);
    188       1.1   deraadt }
    189       1.1   deraadt 
    190       1.1   deraadt /*
    191       1.1   deraadt  * 64-bit double -> fpn.
    192       1.1   deraadt  * We assume this uses at most (96-FP_LG) bits.
    193       1.1   deraadt  */
    194       1.1   deraadt int
    195       1.1   deraadt fpu_dtof(fp, i, j)
    196       1.1   deraadt 	register struct fpn *fp;
    197       1.1   deraadt 	register u_int i, j;
    198       1.1   deraadt {
    199       1.1   deraadt 	register int exp;
    200       1.1   deraadt 	register u_int frac, f0, f1, f2;
    201       1.1   deraadt #define DBL_SHIFT (DBL_FRACBITS - 32 - FP_LG)
    202       1.1   deraadt 
    203       1.1   deraadt 	exp = (i >> (32 - 1 - DBL_EXPBITS)) & mask(DBL_EXPBITS);
    204       1.1   deraadt 	frac = i & mask(DBL_FRACBITS - 32);
    205       1.1   deraadt 	f0 = frac >> DBL_SHIFT;
    206       1.1   deraadt 	f1 = (frac << (32 - DBL_SHIFT)) | (j >> DBL_SHIFT);
    207       1.1   deraadt 	f2 = j << (32 - DBL_SHIFT);
    208       1.1   deraadt 	frac |= j;
    209       1.1   deraadt 	FP_TOF(exp, DBL_EXP_BIAS, frac, f0, f1, f2, 0);
    210       1.1   deraadt }
    211       1.1   deraadt 
    212       1.1   deraadt /*
    213       1.1   deraadt  * 128-bit extended -> fpn.
    214       1.1   deraadt  */
    215       1.1   deraadt int
    216  1.3.30.1    bouyer fpu_qtof(fp, i, j, k, l)
    217       1.1   deraadt 	register struct fpn *fp;
    218       1.1   deraadt 	register u_int i, j, k, l;
    219       1.1   deraadt {
    220       1.1   deraadt 	register int exp;
    221       1.1   deraadt 	register u_int frac, f0, f1, f2, f3;
    222       1.1   deraadt #define EXT_SHIFT (-(EXT_FRACBITS - 3 * 32 - FP_LG))	/* left shift! */
    223       1.1   deraadt 
    224       1.1   deraadt 	/*
    225       1.1   deraadt 	 * Note that ext and fpn `line up', hence no shifting needed.
    226       1.1   deraadt 	 */
    227       1.1   deraadt 	exp = (i >> (32 - 1 - EXT_EXPBITS)) & mask(EXT_EXPBITS);
    228       1.1   deraadt 	frac = i & mask(EXT_FRACBITS - 3 * 32);
    229       1.1   deraadt 	f0 = (frac << EXT_SHIFT) | (j >> (32 - EXT_SHIFT));
    230       1.1   deraadt 	f1 = (j << EXT_SHIFT) | (k >> (32 - EXT_SHIFT));
    231       1.1   deraadt 	f2 = (k << EXT_SHIFT) | (l >> (32 - EXT_SHIFT));
    232       1.1   deraadt 	f3 = l << EXT_SHIFT;
    233       1.1   deraadt 	frac |= j | k | l;
    234       1.1   deraadt 	FP_TOF(exp, EXT_EXP_BIAS, frac, f0, f1, f2, f3);
    235       1.1   deraadt }
    236       1.1   deraadt 
    237       1.1   deraadt /*
    238       1.1   deraadt  * Explode the contents of a register / regpair / regquad.
    239       1.1   deraadt  * If the input is a signalling NaN, an NV (invalid) exception
    240       1.1   deraadt  * will be set.  (Note that nothing but NV can occur until ALU
    241       1.1   deraadt  * operations are performed.)
    242       1.1   deraadt  */
    243       1.1   deraadt void
    244       1.1   deraadt fpu_explode(fe, fp, type, reg)
    245       1.1   deraadt 	register struct fpemu *fe;
    246       1.1   deraadt 	register struct fpn *fp;
    247       1.1   deraadt 	int type, reg;
    248       1.1   deraadt {
    249       1.1   deraadt 	register u_int s, *space;
    250  1.3.30.1    bouyer #ifdef SUN4U
    251  1.3.30.1    bouyer 	u_int64_t l, *xspace;
    252       1.1   deraadt 
    253  1.3.30.1    bouyer 	xspace = (u_int64_t *)&fe->fe_fpstate->fs_regs[reg & ~1];
    254  1.3.30.1    bouyer 	l = xspace[0];
    255  1.3.30.1    bouyer #endif /* SUN4U */
    256       1.1   deraadt 	space = &fe->fe_fpstate->fs_regs[reg];
    257       1.1   deraadt 	s = space[0];
    258       1.1   deraadt 	fp->fp_sign = s >> 31;
    259       1.1   deraadt 	fp->fp_sticky = 0;
    260       1.1   deraadt 	switch (type) {
    261  1.3.30.1    bouyer #ifdef SUN4U
    262  1.3.30.1    bouyer 	case FTYPE_LNG:
    263  1.3.30.1    bouyer 		s = fpu_xtof(fp, l);
    264  1.3.30.1    bouyer 		break;
    265  1.3.30.1    bouyer #endif /* SUN4U */
    266       1.1   deraadt 
    267       1.1   deraadt 	case FTYPE_INT:
    268       1.1   deraadt 		s = fpu_itof(fp, s);
    269       1.1   deraadt 		break;
    270       1.1   deraadt 
    271       1.1   deraadt 	case FTYPE_SNG:
    272       1.1   deraadt 		s = fpu_stof(fp, s);
    273       1.1   deraadt 		break;
    274       1.1   deraadt 
    275       1.1   deraadt 	case FTYPE_DBL:
    276       1.1   deraadt 		s = fpu_dtof(fp, s, space[1]);
    277       1.1   deraadt 		break;
    278       1.1   deraadt 
    279       1.1   deraadt 	case FTYPE_EXT:
    280  1.3.30.1    bouyer 		s = fpu_qtof(fp, s, space[1], space[2], space[3]);
    281       1.1   deraadt 		break;
    282       1.1   deraadt 
    283       1.1   deraadt 	default:
    284       1.1   deraadt 		panic("fpu_explode");
    285       1.1   deraadt 	}
    286  1.3.30.1    bouyer 
    287       1.1   deraadt 	if (s == FPC_QNAN && (fp->fp_mant[0] & FP_QUIETBIT) == 0) {
    288       1.1   deraadt 		/*
    289       1.1   deraadt 		 * Input is a signalling NaN.  All operations that return
    290       1.1   deraadt 		 * an input NaN operand put it through a ``NaN conversion'',
    291       1.1   deraadt 		 * which basically just means ``turn on the quiet bit''.
    292       1.1   deraadt 		 * We do this here so that all NaNs internally look quiet
    293       1.1   deraadt 		 * (we can tell signalling ones by their class).
    294       1.1   deraadt 		 */
    295       1.1   deraadt 		fp->fp_mant[0] |= FP_QUIETBIT;
    296       1.1   deraadt 		fe->fe_cx = FSR_NV;	/* assert invalid operand */
    297       1.1   deraadt 		s = FPC_SNAN;
    298       1.1   deraadt 	}
    299       1.1   deraadt 	fp->fp_class = s;
    300  1.3.30.1    bouyer 	DPRINTF(FPE_REG, ("fpu_explode: %%%c%d => ", (type == FTYPE_LNG) ? 'x' :
    301  1.3.30.1    bouyer 		((type == FTYPE_INT) ? 'i' :
    302  1.3.30.1    bouyer 			((type == FTYPE_SNG) ? 's' :
    303  1.3.30.1    bouyer 				((type == FTYPE_DBL) ? 'd' :
    304  1.3.30.1    bouyer 					((type == FTYPE_EXT) ? 'q' : '?')))),
    305  1.3.30.1    bouyer 		reg));
    306  1.3.30.1    bouyer 	DUMPFPN(FPE_REG, fp);
    307  1.3.30.1    bouyer 	DPRINTF(FPE_REG, ("\n"));
    308       1.1   deraadt }
    309