2 * File: arch/blackfin/lib/divsi3.S
7 * Description: 16 / 32 bit signed division.
9 * 1) If(numerator == 0)
11 * 2) If(denominator ==0)
12 * return positive max = 0x7fffffff
13 * 3) If(numerator == denominator)
15 * 4) If(denominator ==1)
17 * 5) If(denominator == -1)
20 * Operand : R0 - Numerator (i)
21 * R1 - Denominator (i)
23 * Registers Used : R2-R7,P0-P2
26 * Copyright 2004-2006 Analog Devices Inc.
28 * Bugs: Enter bugs at http://blackfin.uclinux.org/
30 * This program is free software; you can redistribute it and/or modify
31 * it under the terms of the GNU General Public License as published by
32 * the Free Software Foundation; either version 2 of the License, or
33 * (at your option) any later version.
35 * This program is distributed in the hope that it will be useful,
36 * but WITHOUT ANY WARRANTY; without even the implied warranty of
37 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38 * GNU General Public License for more details.
40 * You should have received a copy of the GNU General Public License
41 * along with this program; if not, see the file COPYING, or write
42 * to the Free Software Foundation, Inc.,
43 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
47 .type ___divsi3, STT_FUNC;
49 #ifdef CONFIG_ARITHMETIC_OPS_L1
65 r1 = abs r1; /* now both positive, r3.30 means "negate result",
66 ** r3.31 means overflow, add one to result
69 if cc jump .Lret_zero;
96 r1 = r3 >> 31; /* add overflow issue back in */
103 /* Can't use the primitives. Test common identities.
104 ** If the identity is true, return the value in R2.
108 CC = R1 == 0; /* check for divide by zero */
109 IF CC JUMP .Lident_return;
111 CC = R0 == 0; /* check for division of zero */
112 IF CC JUMP .Lzero_return;
114 CC = R0 == R1; /* check for identical operands */
115 IF CC JUMP .Lident_return;
117 CC = R1 == 1; /* check for divide by 1 */
118 IF CC JUMP .Lident_return;
123 IF CC JUMP .Lpower_of_two;
125 /* Identities haven't helped either.
126 ** Perform the full division process.
129 P1 = 31; /* Set loop counter */
131 [--SP] = (R7:5); /* Push registers R5-R7 */
134 R2 = R0 << 1; /* R2 lsw of dividend */
135 R6 = R0 ^ R1; /* Get sign */
136 R5 = R6 >> 31; /* Shift sign to LSB */
138 R0 = 0 ; /* Clear msw partial remainder */
139 R2 = R2 | R5; /* Shift quotient bit */
140 R6 = R0 ^ R1; /* Get new quotient bit */
142 LSETUP(.Llst,.Llend) LC0 = P1; /* Setup loop */
143 .Llst: R7 = R2 >> 31; /* record copy of carry from R2 */
144 R2 = R2 << 1; /* Shift 64 bit dividend up by 1 bit */
145 R0 = R0 << 1 || R5 = [SP];
146 R0 = R0 | R7; /* and add carry */
147 CC = R6 < 0; /* Check quotient(AQ) */
148 /* we might be subtracting divisor (AQ==0) */
149 IF CC R5 = R1; /* or we might be adding divisor (AQ==1)*/
150 R0 = R0 + R5; /* do add or subtract, as indicated by AQ */
151 R6 = R0 ^ R1; /* Generate next quotient bit */
153 /* Assume AQ==1, shift in zero */
154 BITTGL(R5,0); /* tweak AQ to be what we want to shift in */
155 .Llend: R2 = R2 + R5; /* and then set shifted-in value to
164 (R7:5)= [SP++]; /* Pop registers R6-R7 */
168 CC = R1 == 0; /* check for divide by zero => 0x7fffffff */
171 IF CC JUMP .Ltrue_ident_return;
173 CC = R0 == R1; /* check for identical operands => 1 */
175 IF CC JUMP .Ltrue_ident_return;
177 R2 = R0; /* assume divide by 1 => numerator */
181 R0 = R2; /* Return an identity value */
186 RTS; /* ...including zero */
189 /* Y has a single bit set, which means it's a power of two.
190 ** That means we can perform the division just by shifting
191 ** X to the right the appropriate number of bits
194 /* signbits returns the number of sign bits, minus one.
195 ** 1=>30, 2=>29, ..., 0x40000000=>0. Which means we need
196 ** to shift right n-signbits spaces. It also means 0x80000000
197 ** is a special case, because that *also* gives a signbits of 0
202 IF CC JUMP .Ltrue_ident_return;
207 R0 = LSHIFT R0 by R1.L;
210 R2 = -R0; // negate result if necessary
219 .size ___divsi3, .-___divsi3