Home | History | Annotate | Line # | Download | only in fpu
fpu_add.c revision 1.1.24.2
      1  1.1.24.1   skrll /*	$NetBSD: fpu_add.c,v 1.1.24.2 2004/09/18 14:39:04 skrll 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.24.1   skrll  * 3. Neither the name of the University nor the names of its contributors
     25       1.1  simonb  *    may be used to endorse or promote products derived from this software
     26       1.1  simonb  *    without specific prior written permission.
     27       1.1  simonb  *
     28       1.1  simonb  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29       1.1  simonb  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30       1.1  simonb  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31       1.1  simonb  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32       1.1  simonb  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33       1.1  simonb  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34       1.1  simonb  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35       1.1  simonb  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36       1.1  simonb  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37       1.1  simonb  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38       1.1  simonb  * SUCH DAMAGE.
     39       1.1  simonb  *
     40       1.1  simonb  *	@(#)fpu_add.c	8.1 (Berkeley) 6/11/93
     41       1.1  simonb  */
     42       1.1  simonb 
     43       1.1  simonb /*
     44       1.1  simonb  * Perform an FPU add (return x + y).
     45       1.1  simonb  *
     46       1.1  simonb  * To subtract, negate y and call add.
     47       1.1  simonb  */
     48       1.1  simonb 
     49  1.1.24.1   skrll #include <sys/cdefs.h>
     50  1.1.24.1   skrll __KERNEL_RCSID(0, "$NetBSD: fpu_add.c,v 1.1.24.2 2004/09/18 14:39:04 skrll Exp $");
     51  1.1.24.1   skrll 
     52       1.1  simonb #include <sys/types.h>
     53       1.1  simonb #if defined(DIAGNOSTIC)||defined(DEBUG)
     54       1.1  simonb #include <sys/systm.h>
     55       1.1  simonb #endif
     56       1.1  simonb 
     57       1.1  simonb #include <machine/reg.h>
     58       1.1  simonb #include <powerpc/instr.h>
     59       1.1  simonb #include <machine/fpu.h>
     60       1.1  simonb 
     61       1.1  simonb #include <powerpc/fpu/fpu_arith.h>
     62       1.1  simonb #include <powerpc/fpu/fpu_emu.h>
     63       1.1  simonb #include <powerpc/fpu/fpu_extern.h>
     64       1.1  simonb 
     65       1.1  simonb struct fpn *
     66       1.1  simonb fpu_add(struct fpemu *fe)
     67       1.1  simonb {
     68       1.1  simonb 	struct fpn *x = &fe->fe_f1, *y = &fe->fe_f2, *r;
     69       1.1  simonb 	u_int r0, r1, r2, r3;
     70       1.1  simonb 	int rd;
     71       1.1  simonb 
     72       1.1  simonb 	/*
     73       1.1  simonb 	 * Put the `heavier' operand on the right (see fpu_emu.h).
     74       1.1  simonb 	 * Then we will have one of the following cases, taken in the
     75       1.1  simonb 	 * following order:
     76       1.1  simonb 	 *
     77       1.1  simonb 	 *  - y = NaN.  Implied: if only one is a signalling NaN, y is.
     78       1.1  simonb 	 *	The result is y.
     79       1.1  simonb 	 *  - y = Inf.  Implied: x != NaN (is 0, number, or Inf: the NaN
     80       1.1  simonb 	 *    case was taken care of earlier).
     81       1.1  simonb 	 *	If x = -y, the result is NaN.  Otherwise the result
     82       1.1  simonb 	 *	is y (an Inf of whichever sign).
     83       1.1  simonb 	 *  - y is 0.  Implied: x = 0.
     84       1.1  simonb 	 *	If x and y differ in sign (one positive, one negative),
     85       1.1  simonb 	 *	the result is +0 except when rounding to -Inf.  If same:
     86       1.1  simonb 	 *	+0 + +0 = +0; -0 + -0 = -0.
     87       1.1  simonb 	 *  - x is 0.  Implied: y != 0.
     88       1.1  simonb 	 *	Result is y.
     89       1.1  simonb 	 *  - other.  Implied: both x and y are numbers.
     90       1.1  simonb 	 *	Do addition a la Hennessey & Patterson.
     91       1.1  simonb 	 */
     92       1.1  simonb 	DPRINTF(FPE_REG, ("fpu_add:\n"));
     93       1.1  simonb 	DUMPFPN(FPE_REG, x);
     94       1.1  simonb 	DUMPFPN(FPE_REG, y);
     95       1.1  simonb 	DPRINTF(FPE_REG, ("=>\n"));
     96       1.1  simonb 	ORDER(x, y);
     97       1.1  simonb 	if (ISNAN(y)) {
     98       1.1  simonb 		fe->fe_cx |= FPSCR_VXSNAN;
     99       1.1  simonb 		DUMPFPN(FPE_REG, y);
    100       1.1  simonb 		return (y);
    101       1.1  simonb 	}
    102       1.1  simonb 	if (ISINF(y)) {
    103       1.1  simonb 		if (ISINF(x) && x->fp_sign != y->fp_sign) {
    104       1.1  simonb 			fe->fe_cx |= FPSCR_VXISI;
    105       1.1  simonb 			return (fpu_newnan(fe));
    106       1.1  simonb 		}
    107       1.1  simonb 		DUMPFPN(FPE_REG, y);
    108       1.1  simonb 		return (y);
    109       1.1  simonb 	}
    110       1.1  simonb 	rd = ((fe->fe_fpscr) & FPSCR_RN);
    111       1.1  simonb 	if (ISZERO(y)) {
    112       1.1  simonb 		if (rd != FSR_RD_RM)	/* only -0 + -0 gives -0 */
    113       1.1  simonb 			y->fp_sign &= x->fp_sign;
    114       1.1  simonb 		else			/* any -0 operand gives -0 */
    115       1.1  simonb 			y->fp_sign |= x->fp_sign;
    116       1.1  simonb 		DUMPFPN(FPE_REG, y);
    117       1.1  simonb 		return (y);
    118       1.1  simonb 	}
    119       1.1  simonb 	if (ISZERO(x)) {
    120       1.1  simonb 		DUMPFPN(FPE_REG, y);
    121       1.1  simonb 		return (y);
    122       1.1  simonb 	}
    123       1.1  simonb 	/*
    124       1.1  simonb 	 * We really have two numbers to add, although their signs may
    125       1.1  simonb 	 * differ.  Make the exponents match, by shifting the smaller
    126       1.1  simonb 	 * number right (e.g., 1.011 => 0.1011) and increasing its
    127       1.1  simonb 	 * exponent (2^3 => 2^4).  Note that we do not alter the exponents
    128       1.1  simonb 	 * of x and y here.
    129       1.1  simonb 	 */
    130       1.1  simonb 	r = &fe->fe_f3;
    131       1.1  simonb 	r->fp_class = FPC_NUM;
    132       1.1  simonb 	if (x->fp_exp == y->fp_exp) {
    133       1.1  simonb 		r->fp_exp = x->fp_exp;
    134       1.1  simonb 		r->fp_sticky = 0;
    135       1.1  simonb 	} else {
    136       1.1  simonb 		if (x->fp_exp < y->fp_exp) {
    137       1.1  simonb 			/*
    138       1.1  simonb 			 * Try to avoid subtract case iii (see below).
    139       1.1  simonb 			 * This also guarantees that x->fp_sticky = 0.
    140       1.1  simonb 			 */
    141       1.1  simonb 			SWAP(x, y);
    142       1.1  simonb 		}
    143       1.1  simonb 		/* now x->fp_exp > y->fp_exp */
    144       1.1  simonb 		r->fp_exp = x->fp_exp;
    145       1.1  simonb 		r->fp_sticky = fpu_shr(y, x->fp_exp - y->fp_exp);
    146       1.1  simonb 	}
    147       1.1  simonb 	r->fp_sign = x->fp_sign;
    148       1.1  simonb 	if (x->fp_sign == y->fp_sign) {
    149       1.1  simonb 		FPU_DECL_CARRY
    150       1.1  simonb 
    151       1.1  simonb 		/*
    152       1.1  simonb 		 * The signs match, so we simply add the numbers.  The result
    153       1.1  simonb 		 * may be `supernormal' (as big as 1.111...1 + 1.111...1, or
    154       1.1  simonb 		 * 11.111...0).  If so, a single bit shift-right will fix it
    155       1.1  simonb 		 * (but remember to adjust the exponent).
    156       1.1  simonb 		 */
    157       1.1  simonb 		/* r->fp_mant = x->fp_mant + y->fp_mant */
    158       1.1  simonb 		FPU_ADDS(r->fp_mant[3], x->fp_mant[3], y->fp_mant[3]);
    159       1.1  simonb 		FPU_ADDCS(r->fp_mant[2], x->fp_mant[2], y->fp_mant[2]);
    160       1.1  simonb 		FPU_ADDCS(r->fp_mant[1], x->fp_mant[1], y->fp_mant[1]);
    161       1.1  simonb 		FPU_ADDC(r0, x->fp_mant[0], y->fp_mant[0]);
    162       1.1  simonb 		if ((r->fp_mant[0] = r0) >= FP_2) {
    163       1.1  simonb 			(void) fpu_shr(r, 1);
    164       1.1  simonb 			r->fp_exp++;
    165       1.1  simonb 		}
    166       1.1  simonb 	} else {
    167       1.1  simonb 		FPU_DECL_CARRY
    168       1.1  simonb 
    169       1.1  simonb 		/*
    170       1.1  simonb 		 * The signs differ, so things are rather more difficult.
    171       1.1  simonb 		 * H&P would have us negate the negative operand and add;
    172       1.1  simonb 		 * this is the same as subtracting the negative operand.
    173       1.1  simonb 		 * This is quite a headache.  Instead, we will subtract
    174       1.1  simonb 		 * y from x, regardless of whether y itself is the negative
    175       1.1  simonb 		 * operand.  When this is done one of three conditions will
    176       1.1  simonb 		 * hold, depending on the magnitudes of x and y:
    177       1.1  simonb 		 *   case i)   |x| > |y|.  The result is just x - y,
    178       1.1  simonb 		 *	with x's sign, but it may need to be normalized.
    179       1.1  simonb 		 *   case ii)  |x| = |y|.  The result is 0 (maybe -0)
    180       1.1  simonb 		 *	so must be fixed up.
    181       1.1  simonb 		 *   case iii) |x| < |y|.  We goofed; the result should
    182       1.1  simonb 		 *	be (y - x), with the same sign as y.
    183       1.1  simonb 		 * We could compare |x| and |y| here and avoid case iii,
    184       1.1  simonb 		 * but that would take just as much work as the subtract.
    185       1.1  simonb 		 * We can tell case iii has occurred by an overflow.
    186       1.1  simonb 		 *
    187       1.1  simonb 		 * N.B.: since x->fp_exp >= y->fp_exp, x->fp_sticky = 0.
    188       1.1  simonb 		 */
    189       1.1  simonb 		/* r->fp_mant = x->fp_mant - y->fp_mant */
    190       1.1  simonb 		FPU_SET_CARRY(y->fp_sticky);
    191       1.1  simonb 		FPU_SUBCS(r3, x->fp_mant[3], y->fp_mant[3]);
    192       1.1  simonb 		FPU_SUBCS(r2, x->fp_mant[2], y->fp_mant[2]);
    193       1.1  simonb 		FPU_SUBCS(r1, x->fp_mant[1], y->fp_mant[1]);
    194       1.1  simonb 		FPU_SUBC(r0, x->fp_mant[0], y->fp_mant[0]);
    195       1.1  simonb 		if (r0 < FP_2) {
    196       1.1  simonb 			/* cases i and ii */
    197       1.1  simonb 			if ((r0 | r1 | r2 | r3) == 0) {
    198       1.1  simonb 				/* case ii */
    199       1.1  simonb 				r->fp_class = FPC_ZERO;
    200       1.1  simonb 				r->fp_sign = rd == FSR_RD_RM;
    201       1.1  simonb 				return (r);
    202       1.1  simonb 			}
    203       1.1  simonb 		} else {
    204       1.1  simonb 			/*
    205       1.1  simonb 			 * Oops, case iii.  This can only occur when the
    206       1.1  simonb 			 * exponents were equal, in which case neither
    207       1.1  simonb 			 * x nor y have sticky bits set.  Flip the sign
    208       1.1  simonb 			 * (to y's sign) and negate the result to get y - x.
    209       1.1  simonb 			 */
    210       1.1  simonb #ifdef DIAGNOSTIC
    211       1.1  simonb 			if (x->fp_exp != y->fp_exp || r->fp_sticky)
    212       1.1  simonb 				panic("fpu_add");
    213       1.1  simonb #endif
    214       1.1  simonb 			r->fp_sign = y->fp_sign;
    215       1.1  simonb 			FPU_SUBS(r3, 0, r3);
    216       1.1  simonb 			FPU_SUBCS(r2, 0, r2);
    217       1.1  simonb 			FPU_SUBCS(r1, 0, r1);
    218       1.1  simonb 			FPU_SUBC(r0, 0, r0);
    219       1.1  simonb 		}
    220       1.1  simonb 		r->fp_mant[3] = r3;
    221       1.1  simonb 		r->fp_mant[2] = r2;
    222       1.1  simonb 		r->fp_mant[1] = r1;
    223       1.1  simonb 		r->fp_mant[0] = r0;
    224       1.1  simonb 		if (r0 < FP_1)
    225       1.1  simonb 			fpu_norm(r);
    226       1.1  simonb 	}
    227       1.1  simonb 	DUMPFPN(FPE_REG, r);
    228       1.1  simonb 	return (r);
    229       1.1  simonb }
    230