Home | History | Annotate | Line # | Download | only in sparc
divrem.m4 revision 1.4.10.1
      1       1.1  deraadt /*
      2       1.1  deraadt  * Copyright (c) 1992, 1993
      3       1.1  deraadt  *	The Regents of the University of California.  All rights reserved.
      4       1.1  deraadt  *
      5       1.1  deraadt  * This software was developed by the Computer Systems Engineering group
      6       1.1  deraadt  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      7       1.1  deraadt  * contributed to Berkeley.
      8       1.1  deraadt  *
      9       1.1  deraadt  * Redistribution and use in source and binary forms, with or without
     10       1.1  deraadt  * modification, are permitted provided that the following conditions
     11       1.1  deraadt  * are met:
     12       1.1  deraadt  * 1. Redistributions of source code must retain the above copyright
     13       1.1  deraadt  *    notice, this list of conditions and the following disclaimer.
     14       1.1  deraadt  * 2. Redistributions in binary form must reproduce the above copyright
     15       1.1  deraadt  *    notice, this list of conditions and the following disclaimer in the
     16       1.1  deraadt  *    documentation and/or other materials provided with the distribution.
     17       1.1  deraadt  * 3. All advertising materials mentioning features or use of this software
     18       1.1  deraadt  *    must display the following acknowledgement:
     19       1.1  deraadt  *	This product includes software developed by the University of
     20       1.1  deraadt  *	California, Berkeley and its contributors.
     21       1.1  deraadt  * 4. Neither the name of the University nor the names of its contributors
     22       1.1  deraadt  *    may be used to endorse or promote products derived from this software
     23       1.1  deraadt  *    without specific prior written permission.
     24       1.1  deraadt  *
     25       1.1  deraadt  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     26       1.1  deraadt  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     27       1.1  deraadt  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     28       1.1  deraadt  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     29       1.1  deraadt  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     30       1.1  deraadt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     31       1.1  deraadt  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     32       1.1  deraadt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     33       1.1  deraadt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     34       1.1  deraadt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     35       1.1  deraadt  * SUCH DAMAGE.
     36       1.1  deraadt  *
     37       1.4       pk  * from: Header: divrem.m4,v 1.4 92/06/25 13:23:57 torek Exp
     38  1.4.10.1  thorpej  * $NetBSD: divrem.m4,v 1.4.10.1 1997/10/14 10:28:00 thorpej Exp $
     39       1.1  deraadt  */
     40       1.1  deraadt 
     41       1.1  deraadt /*
     42       1.1  deraadt  * Division and remainder, from Appendix E of the Sparc Version 8
     43       1.1  deraadt  * Architecture Manual, with fixes from Gordon Irlam.
     44       1.1  deraadt  */
     45       1.1  deraadt 
     46       1.1  deraadt #if defined(LIBC_SCCS) && !defined(lint)
     47       1.1  deraadt 	.asciz "@(#)divrem.m4	8.1 (Berkeley) 6/4/93"
     48       1.1  deraadt #endif /* LIBC_SCCS and not lint */
     49       1.1  deraadt 
     50       1.1  deraadt /*
     51       1.1  deraadt  * Input: dividend and divisor in %o0 and %o1 respectively.
     52       1.1  deraadt  *
     53       1.1  deraadt  * m4 parameters:
     54       1.1  deraadt  *  NAME	name of function to generate
     55       1.1  deraadt  *  OP		OP=div => %o0 / %o1; OP=rem => %o0 % %o1
     56       1.1  deraadt  *  S		S=true => signed; S=false => unsigned
     57       1.1  deraadt  *
     58       1.1  deraadt  * Algorithm parameters:
     59       1.1  deraadt  *  N		how many bits per iteration we try to get (4)
     60       1.1  deraadt  *  WORDSIZE	total number of bits (32)
     61       1.1  deraadt  *
     62       1.1  deraadt  * Derived constants:
     63       1.1  deraadt  *  TWOSUPN	2^N, for label generation (m4 exponentiation currently broken)
     64       1.1  deraadt  *  TOPBITS	number of bits in the top `decade' of a number
     65       1.1  deraadt  *
     66       1.1  deraadt  * Important variables:
     67       1.1  deraadt  *  Q		the partial quotient under development (initially 0)
     68       1.1  deraadt  *  R		the remainder so far, initially the dividend
     69       1.1  deraadt  *  ITER	number of main division loop iterations required;
     70       1.1  deraadt  *		equal to ceil(log2(quotient) / N).  Note that this
     71       1.1  deraadt  *		is the log base (2^N) of the quotient.
     72       1.1  deraadt  *  V		the current comparand, initially divisor*2^(ITER*N-1)
     73       1.1  deraadt  *
     74       1.1  deraadt  * Cost:
     75       1.1  deraadt  *  Current estimate for non-large dividend is
     76       1.1  deraadt  *	ceil(log2(quotient) / N) * (10 + 7N/2) + C
     77       1.1  deraadt  *  A large dividend is one greater than 2^(31-TOPBITS) and takes a
     78       1.1  deraadt  *  different path, as the upper bits of the quotient must be developed
     79       1.1  deraadt  *  one bit at a time.
     80       1.1  deraadt  */
     81       1.1  deraadt 
     82       1.1  deraadt define(N, `4')
     83       1.1  deraadt define(TWOSUPN, `16')
     84       1.1  deraadt define(WORDSIZE, `32')
     85       1.1  deraadt define(TOPBITS, eval(WORDSIZE - N*((WORDSIZE-1)/N)))
     86       1.1  deraadt 
     87       1.1  deraadt define(dividend, `%o0')
     88       1.1  deraadt define(divisor, `%o1')
     89       1.1  deraadt define(Q, `%o2')
     90       1.1  deraadt define(R, `%o3')
     91       1.1  deraadt define(ITER, `%o4')
     92       1.1  deraadt define(V, `%o5')
     93       1.1  deraadt 
     94       1.1  deraadt /* m4 reminder: ifelse(a,b,c,d) => if a is b, then c, else d */
     95       1.1  deraadt define(T, `%g1')
     96       1.1  deraadt define(SC, `%g7')
     97       1.1  deraadt ifelse(S, `true', `define(SIGN, `%g6')')
     98       1.1  deraadt 
     99       1.1  deraadt /*
    100       1.1  deraadt  * This is the recursive definition for developing quotient digits.
    101       1.1  deraadt  *
    102       1.1  deraadt  * Parameters:
    103       1.1  deraadt  *  $1	the current depth, 1 <= $1 <= N
    104       1.1  deraadt  *  $2	the current accumulation of quotient bits
    105       1.1  deraadt  *  N	max depth
    106       1.1  deraadt  *
    107       1.1  deraadt  * We add a new bit to $2 and either recurse or insert the bits in
    108       1.1  deraadt  * the quotient.  R, Q, and V are inputs and outputs as defined above;
    109       1.1  deraadt  * the condition codes are expected to reflect the input R, and are
    110       1.1  deraadt  * modified to reflect the output R.
    111       1.1  deraadt  */
    112       1.1  deraadt define(DEVELOP_QUOTIENT_BITS,
    113       1.1  deraadt `	! depth $1, accumulated bits $2
    114       1.1  deraadt 	bl	L.$1.eval(TWOSUPN+$2)
    115       1.1  deraadt 	srl	V,1,V
    116       1.1  deraadt 	! remainder is positive
    117       1.1  deraadt 	subcc	R,V,R
    118       1.1  deraadt 	ifelse($1, N,
    119       1.1  deraadt 	`	b	9f
    120       1.1  deraadt 		add	Q, ($2*2+1), Q
    121       1.1  deraadt 	', `	DEVELOP_QUOTIENT_BITS(incr($1), `eval(2*$2+1)')')
    122       1.1  deraadt L.$1.eval(TWOSUPN+$2):
    123       1.1  deraadt 	! remainder is negative
    124       1.1  deraadt 	addcc	R,V,R
    125       1.1  deraadt 	ifelse($1, N,
    126       1.1  deraadt 	`	b	9f
    127       1.1  deraadt 		add	Q, ($2*2-1), Q
    128       1.1  deraadt 	', `	DEVELOP_QUOTIENT_BITS(incr($1), `eval(2*$2-1)')')
    129       1.1  deraadt 	ifelse($1, 1, `9:')')
    130       1.1  deraadt 
    131       1.4       pk #include <machine/asm.h>
    132       1.1  deraadt #include <machine/trap.h>
    133       1.1  deraadt 
    134       1.1  deraadt FUNC(NAME)
    135       1.1  deraadt ifelse(S, `true',
    136       1.1  deraadt `	! compute sign of result; if neither is negative, no problem
    137       1.1  deraadt 	orcc	divisor, dividend, %g0	! either negative?
    138       1.1  deraadt 	bge	2f			! no, go do the divide
    139       1.3       pk 	ifelse(OP, `div',
    140       1.3       pk 		`xor	divisor, dividend, SIGN',
    141       1.3       pk 		`mov	dividend, SIGN')	! compute sign in any case
    142       1.1  deraadt 	tst	divisor
    143       1.1  deraadt 	bge	1f
    144       1.1  deraadt 	tst	dividend
    145       1.1  deraadt 	! divisor is definitely negative; dividend might also be negative
    146       1.1  deraadt 	bge	2f			! if dividend not negative...
    147       1.1  deraadt 	neg	divisor			! in any case, make divisor nonneg
    148       1.1  deraadt 1:	! dividend is negative, divisor is nonnegative
    149       1.1  deraadt 	neg	dividend		! make dividend nonnegative
    150       1.1  deraadt 2:
    151       1.1  deraadt ')
    152       1.1  deraadt 	! Ready to divide.  Compute size of quotient; scale comparand.
    153       1.1  deraadt 	orcc	divisor, %g0, V
    154       1.1  deraadt 	bnz	1f
    155       1.1  deraadt 	mov	dividend, R
    156       1.1  deraadt 
    157       1.1  deraadt 		! Divide by zero trap.  If it returns, return 0 (about as
    158       1.1  deraadt 		! wrong as possible, but that is what SunOS does...).
    159       1.1  deraadt 		t	ST_DIV0
    160       1.1  deraadt 		retl
    161       1.1  deraadt 		clr	%o0
    162       1.1  deraadt 
    163       1.1  deraadt 1:
    164       1.1  deraadt 	cmp	R, V			! if divisor exceeds dividend, done
    165       1.1  deraadt 	blu	Lgot_result		! (and algorithm fails otherwise)
    166       1.1  deraadt 	clr	Q
    167       1.1  deraadt 	sethi	%hi(1 << (WORDSIZE - TOPBITS - 1)), T
    168       1.1  deraadt 	cmp	R, T
    169       1.1  deraadt 	blu	Lnot_really_big
    170       1.1  deraadt 	clr	ITER
    171       1.1  deraadt 
    172       1.1  deraadt 	! `Here the dividend is >= 2^(31-N) or so.  We must be careful here,
    173       1.1  deraadt 	! as our usual N-at-a-shot divide step will cause overflow and havoc.
    174       1.1  deraadt 	! The number of bits in the result here is N*ITER+SC, where SC <= N.
    175       1.1  deraadt 	! Compute ITER in an unorthodox manner: know we need to shift V into
    176       1.1  deraadt 	! the top decade: so do not even bother to compare to R.'
    177       1.1  deraadt 	1:
    178       1.1  deraadt 		cmp	V, T
    179       1.1  deraadt 		bgeu	3f
    180       1.1  deraadt 		mov	1, SC
    181       1.1  deraadt 		sll	V, N, V
    182       1.1  deraadt 		b	1b
    183       1.1  deraadt 		inc	ITER
    184       1.1  deraadt 
    185       1.1  deraadt 	! Now compute SC.
    186       1.1  deraadt 	2:	addcc	V, V, V
    187       1.1  deraadt 		bcc	Lnot_too_big
    188       1.1  deraadt 		inc	SC
    189       1.1  deraadt 
    190       1.1  deraadt 		! We get here if the divisor overflowed while shifting.
    191       1.1  deraadt 		! This means that R has the high-order bit set.
    192       1.1  deraadt 		! Restore V and subtract from R.
    193       1.1  deraadt 		sll	T, TOPBITS, T	! high order bit
    194       1.1  deraadt 		srl	V, 1, V		! rest of V
    195       1.1  deraadt 		add	V, T, V
    196       1.1  deraadt 		b	Ldo_single_div
    197       1.1  deraadt 		dec	SC
    198       1.1  deraadt 
    199       1.1  deraadt 	Lnot_too_big:
    200       1.1  deraadt 	3:	cmp	V, R
    201       1.1  deraadt 		blu	2b
    202       1.1  deraadt 		nop
    203       1.1  deraadt 		be	Ldo_single_div
    204       1.1  deraadt 		nop
    205       1.1  deraadt 	/* NB: these are commented out in the V8-Sparc manual as well */
    206       1.1  deraadt 	/* (I do not understand this) */
    207       1.1  deraadt 	! V > R: went too far: back up 1 step
    208       1.1  deraadt 	!	srl	V, 1, V
    209       1.1  deraadt 	!	dec	SC
    210       1.1  deraadt 	! do single-bit divide steps
    211       1.1  deraadt 	!
    212       1.1  deraadt 	! We have to be careful here.  We know that R >= V, so we can do the
    213       1.1  deraadt 	! first divide step without thinking.  BUT, the others are conditional,
    214       1.1  deraadt 	! and are only done if R >= 0.  Because both R and V may have the high-
    215       1.1  deraadt 	! order bit set in the first step, just falling into the regular
    216       1.1  deraadt 	! division loop will mess up the first time around.
    217       1.1  deraadt 	! So we unroll slightly...
    218       1.1  deraadt 	Ldo_single_div:
    219       1.1  deraadt 		deccc	SC
    220       1.1  deraadt 		bl	Lend_regular_divide
    221       1.1  deraadt 		nop
    222       1.1  deraadt 		sub	R, V, R
    223       1.1  deraadt 		mov	1, Q
    224       1.1  deraadt 		b	Lend_single_divloop
    225       1.1  deraadt 		nop
    226       1.1  deraadt 	Lsingle_divloop:
    227       1.1  deraadt 		sll	Q, 1, Q
    228       1.1  deraadt 		bl	1f
    229       1.1  deraadt 		srl	V, 1, V
    230       1.1  deraadt 		! R >= 0
    231       1.1  deraadt 		sub	R, V, R
    232       1.1  deraadt 		b	2f
    233       1.1  deraadt 		inc	Q
    234       1.1  deraadt 	1:	! R < 0
    235       1.1  deraadt 		add	R, V, R
    236       1.1  deraadt 		dec	Q
    237       1.1  deraadt 	2:
    238       1.1  deraadt 	Lend_single_divloop:
    239       1.1  deraadt 		deccc	SC
    240       1.1  deraadt 		bge	Lsingle_divloop
    241       1.1  deraadt 		tst	R
    242       1.1  deraadt 		b,a	Lend_regular_divide
    243       1.1  deraadt 
    244       1.1  deraadt Lnot_really_big:
    245       1.1  deraadt 1:
    246       1.1  deraadt 	sll	V, N, V
    247       1.1  deraadt 	cmp	V, R
    248       1.1  deraadt 	bleu	1b
    249       1.1  deraadt 	inccc	ITER
    250       1.1  deraadt 	be	Lgot_result
    251       1.1  deraadt 	dec	ITER
    252       1.1  deraadt 
    253       1.1  deraadt 	tst	R	! set up for initial iteration
    254       1.1  deraadt Ldivloop:
    255       1.1  deraadt 	sll	Q, N, Q
    256       1.1  deraadt 	DEVELOP_QUOTIENT_BITS(1, 0)
    257       1.1  deraadt Lend_regular_divide:
    258       1.1  deraadt 	deccc	ITER
    259       1.1  deraadt 	bge	Ldivloop
    260       1.1  deraadt 	tst	R
    261       1.1  deraadt 	bl,a	Lgot_result
    262       1.1  deraadt 	! non-restoring fixup here (one instruction only!)
    263       1.1  deraadt ifelse(OP, `div',
    264       1.1  deraadt `	dec	Q
    265       1.1  deraadt ', `	add	R, divisor, R
    266       1.1  deraadt ')
    267       1.1  deraadt 
    268       1.1  deraadt Lgot_result:
    269       1.1  deraadt ifelse(S, `true',
    270       1.1  deraadt `	! check to see if answer should be < 0
    271       1.1  deraadt 	tst	SIGN
    272       1.1  deraadt 	bl,a	1f
    273       1.1  deraadt 	ifelse(OP, `div', `neg Q', `neg R')
    274       1.1  deraadt 1:')
    275       1.1  deraadt 	retl
    276       1.1  deraadt 	ifelse(OP, `div', `mov Q, %o0', `mov R, %o0')
    277