162306a36Sopenharmony_ci|
262306a36Sopenharmony_ci|	binstr.sa 3.3 12/19/90
362306a36Sopenharmony_ci|
462306a36Sopenharmony_ci|
562306a36Sopenharmony_ci|	Description: Converts a 64-bit binary integer to bcd.
662306a36Sopenharmony_ci|
762306a36Sopenharmony_ci|	Input: 64-bit binary integer in d2:d3, desired length (LEN) in
862306a36Sopenharmony_ci|          d0, and a  pointer to start in memory for bcd characters
962306a36Sopenharmony_ci|          in d0. (This pointer must point to byte 4 of the first
1062306a36Sopenharmony_ci|          lword of the packed decimal memory string.)
1162306a36Sopenharmony_ci|
1262306a36Sopenharmony_ci|	Output:	LEN bcd digits representing the 64-bit integer.
1362306a36Sopenharmony_ci|
1462306a36Sopenharmony_ci|	Algorithm:
1562306a36Sopenharmony_ci|		The 64-bit binary is assumed to have a decimal point before
1662306a36Sopenharmony_ci|		bit 63.  The fraction is multiplied by 10 using a mul by 2
1762306a36Sopenharmony_ci|		shift and a mul by 8 shift.  The bits shifted out of the
1862306a36Sopenharmony_ci|		msb form a decimal digit.  This process is iterated until
1962306a36Sopenharmony_ci|		LEN digits are formed.
2062306a36Sopenharmony_ci|
2162306a36Sopenharmony_ci|	A1. Init d7 to 1.  D7 is the byte digit counter, and if 1, the
2262306a36Sopenharmony_ci|		digit formed will be assumed the least significant.  This is
2362306a36Sopenharmony_ci|		to force the first byte formed to have a 0 in the upper 4 bits.
2462306a36Sopenharmony_ci|
2562306a36Sopenharmony_ci|	A2. Beginning of the loop:
2662306a36Sopenharmony_ci|		Copy the fraction in d2:d3 to d4:d5.
2762306a36Sopenharmony_ci|
2862306a36Sopenharmony_ci|	A3. Multiply the fraction in d2:d3 by 8 using bit-field
2962306a36Sopenharmony_ci|		extracts and shifts.  The three msbs from d2 will go into
3062306a36Sopenharmony_ci|		d1.
3162306a36Sopenharmony_ci|
3262306a36Sopenharmony_ci|	A4. Multiply the fraction in d4:d5 by 2 using shifts.  The msb
3362306a36Sopenharmony_ci|		will be collected by the carry.
3462306a36Sopenharmony_ci|
3562306a36Sopenharmony_ci|	A5. Add using the carry the 64-bit quantities in d2:d3 and d4:d5
3662306a36Sopenharmony_ci|		into d2:d3.  D1 will contain the bcd digit formed.
3762306a36Sopenharmony_ci|
3862306a36Sopenharmony_ci|	A6. Test d7.  If zero, the digit formed is the ms digit.  If non-
3962306a36Sopenharmony_ci|		zero, it is the ls digit.  Put the digit in its place in the
4062306a36Sopenharmony_ci|		upper word of d0.  If it is the ls digit, write the word
4162306a36Sopenharmony_ci|		from d0 to memory.
4262306a36Sopenharmony_ci|
4362306a36Sopenharmony_ci|	A7. Decrement d6 (LEN counter) and repeat the loop until zero.
4462306a36Sopenharmony_ci|
4562306a36Sopenharmony_ci|	Implementation Notes:
4662306a36Sopenharmony_ci|
4762306a36Sopenharmony_ci|	The registers are used as follows:
4862306a36Sopenharmony_ci|
4962306a36Sopenharmony_ci|		d0: LEN counter
5062306a36Sopenharmony_ci|		d1: temp used to form the digit
5162306a36Sopenharmony_ci|		d2: upper 32-bits of fraction for mul by 8
5262306a36Sopenharmony_ci|		d3: lower 32-bits of fraction for mul by 8
5362306a36Sopenharmony_ci|		d4: upper 32-bits of fraction for mul by 2
5462306a36Sopenharmony_ci|		d5: lower 32-bits of fraction for mul by 2
5562306a36Sopenharmony_ci|		d6: temp for bit-field extracts
5662306a36Sopenharmony_ci|		d7: byte digit formation word;digit count {0,1}
5762306a36Sopenharmony_ci|		a0: pointer into memory for packed bcd string formation
5862306a36Sopenharmony_ci|
5962306a36Sopenharmony_ci
6062306a36Sopenharmony_ci|		Copyright (C) Motorola, Inc. 1990
6162306a36Sopenharmony_ci|			All Rights Reserved
6262306a36Sopenharmony_ci|
6362306a36Sopenharmony_ci|       For details on the license for this file, please see the
6462306a36Sopenharmony_ci|       file, README, in this same directory.
6562306a36Sopenharmony_ci
6662306a36Sopenharmony_ci|BINSTR    idnt    2,1 | Motorola 040 Floating Point Software Package
6762306a36Sopenharmony_ci
6862306a36Sopenharmony_ci	|section	8
6962306a36Sopenharmony_ci
7062306a36Sopenharmony_ci#include "fpsp.h"
7162306a36Sopenharmony_ci
7262306a36Sopenharmony_ci	.global	binstr
7362306a36Sopenharmony_cibinstr:
7462306a36Sopenharmony_ci	moveml	%d0-%d7,-(%a7)
7562306a36Sopenharmony_ci|
7662306a36Sopenharmony_ci| A1: Init d7
7762306a36Sopenharmony_ci|
7862306a36Sopenharmony_ci	moveql	#1,%d7			|init d7 for second digit
7962306a36Sopenharmony_ci	subql	#1,%d0			|for dbf d0 would have LEN+1 passes
8062306a36Sopenharmony_ci|
8162306a36Sopenharmony_ci| A2. Copy d2:d3 to d4:d5.  Start loop.
8262306a36Sopenharmony_ci|
8362306a36Sopenharmony_ciloop:
8462306a36Sopenharmony_ci	movel	%d2,%d4			|copy the fraction before muls
8562306a36Sopenharmony_ci	movel	%d3,%d5			|to d4:d5
8662306a36Sopenharmony_ci|
8762306a36Sopenharmony_ci| A3. Multiply d2:d3 by 8; extract msbs into d1.
8862306a36Sopenharmony_ci|
8962306a36Sopenharmony_ci	bfextu	%d2{#0:#3},%d1		|copy 3 msbs of d2 into d1
9062306a36Sopenharmony_ci	asll	#3,%d2			|shift d2 left by 3 places
9162306a36Sopenharmony_ci	bfextu	%d3{#0:#3},%d6		|copy 3 msbs of d3 into d6
9262306a36Sopenharmony_ci	asll	#3,%d3			|shift d3 left by 3 places
9362306a36Sopenharmony_ci	orl	%d6,%d2			|or in msbs from d3 into d2
9462306a36Sopenharmony_ci|
9562306a36Sopenharmony_ci| A4. Multiply d4:d5 by 2; add carry out to d1.
9662306a36Sopenharmony_ci|
9762306a36Sopenharmony_ci	asll	#1,%d5			|mul d5 by 2
9862306a36Sopenharmony_ci	roxll	#1,%d4			|mul d4 by 2
9962306a36Sopenharmony_ci	swap	%d6			|put 0 in d6 lower word
10062306a36Sopenharmony_ci	addxw	%d6,%d1			|add in extend from mul by 2
10162306a36Sopenharmony_ci|
10262306a36Sopenharmony_ci| A5. Add mul by 8 to mul by 2.  D1 contains the digit formed.
10362306a36Sopenharmony_ci|
10462306a36Sopenharmony_ci	addl	%d5,%d3			|add lower 32 bits
10562306a36Sopenharmony_ci	nop				|ERRATA ; FIX #13 (Rev. 1.2 6/6/90)
10662306a36Sopenharmony_ci	addxl	%d4,%d2			|add with extend upper 32 bits
10762306a36Sopenharmony_ci	nop				|ERRATA ; FIX #13 (Rev. 1.2 6/6/90)
10862306a36Sopenharmony_ci	addxw	%d6,%d1			|add in extend from add to d1
10962306a36Sopenharmony_ci	swap	%d6			|with d6 = 0; put 0 in upper word
11062306a36Sopenharmony_ci|
11162306a36Sopenharmony_ci| A6. Test d7 and branch.
11262306a36Sopenharmony_ci|
11362306a36Sopenharmony_ci	tstw	%d7			|if zero, store digit & to loop
11462306a36Sopenharmony_ci	beqs	first_d			|if non-zero, form byte & write
11562306a36Sopenharmony_cisec_d:
11662306a36Sopenharmony_ci	swap	%d7			|bring first digit to word d7b
11762306a36Sopenharmony_ci	aslw	#4,%d7			|first digit in upper 4 bits d7b
11862306a36Sopenharmony_ci	addw	%d1,%d7			|add in ls digit to d7b
11962306a36Sopenharmony_ci	moveb	%d7,(%a0)+		|store d7b byte in memory
12062306a36Sopenharmony_ci	swap	%d7			|put LEN counter in word d7a
12162306a36Sopenharmony_ci	clrw	%d7			|set d7a to signal no digits done
12262306a36Sopenharmony_ci	dbf	%d0,loop		|do loop some more!
12362306a36Sopenharmony_ci	bras	end_bstr		|finished, so exit
12462306a36Sopenharmony_cifirst_d:
12562306a36Sopenharmony_ci	swap	%d7			|put digit word in d7b
12662306a36Sopenharmony_ci	movew	%d1,%d7			|put new digit in d7b
12762306a36Sopenharmony_ci	swap	%d7			|put LEN counter in word d7a
12862306a36Sopenharmony_ci	addqw	#1,%d7			|set d7a to signal first digit done
12962306a36Sopenharmony_ci	dbf	%d0,loop		|do loop some more!
13062306a36Sopenharmony_ci	swap	%d7			|put last digit in string
13162306a36Sopenharmony_ci	lslw	#4,%d7			|move it to upper 4 bits
13262306a36Sopenharmony_ci	moveb	%d7,(%a0)+		|store it in memory string
13362306a36Sopenharmony_ci|
13462306a36Sopenharmony_ci| Clean up and return with result in fp0.
13562306a36Sopenharmony_ci|
13662306a36Sopenharmony_ciend_bstr:
13762306a36Sopenharmony_ci	moveml	(%a7)+,%d0-%d7
13862306a36Sopenharmony_ci	rts
13962306a36Sopenharmony_ci	|end
140