1 /* SPDX-License-Identifier: GPL-2.0 */
2 #include <linux/linkage.h>
5 * Divide operation for 32 bit integers.
6 * Input : Dividend in Reg r5
8 * Output: Result in Reg r3
12 .type __divsi3, @function
23 beqi r6, div_by_zero /* div_by_zero - division error */
24 beqi r5, result_is_zero /* result is zero */
26 xor r28, r5, r6 /* get the sign of the result */
27 rsubi r5, r5, 0 /* make r5 positive */
30 rsubi r6, r6, 0 /* make r6 positive */
32 addik r30, r0, 0 /* clear mod */
33 addik r3, r0, 0 /* clear div */
34 addik r29, r0, 32 /* initialize the loop count */
36 /* first part try to find the first '1' in the r5 */
38 blti r5, div2 /* this traps r5 == 0x80000000 */
40 add r5, r5, r5 /* left shift logical r5 */
44 /* left shift logical r5 get the '1' into the carry */
46 addc r30, r30, r30 /* move that bit into the mod register */
47 rsub r31, r6, r30 /* try to subtract (r30 a r6) */
48 blti r31, mod_too_small
49 /* move the r31 to mod since the result was positive */
55 add r3, r3, r3 /* shift in the '1' into div */
60 rsubi r3, r3, 0 /* negate the result */
63 or r3, r0, r0 /* set result to 0 */
65 /* restore values of csrs and that of r3 and the divisor and the dividend */
73 .size __divsi3, . - __divsi3