1 #include <linux/linkage.h>
4 * Unsigned divide operation.
5 * Input : Divisor in Reg r5
7 * Output: Result in Reg r3
12 .type __udivsi3, @function
24 beqi r6, div_by_zero /* div_by_zero /* division error */
25 beqid r5, result_is_zero /* result is zero */
26 addik r30, r0, 0 /* clear mod */
27 addik r29, r0, 32 /* initialize the loop count */
29 /* check if r6 and r5 are equal - if yes, return 1 */
31 beqid r18, return_here
34 /* check if (uns)r6 is greater than (uns)r5. in that case, just return 0 */
37 add r3, r0, r0 /* we would anyways clear r3 */
38 blti r6, return_here /* r6[bit 31 = 1] hence is greater */
40 rsub r18, r6, r5 /* microblazecmp */
43 /* if r6 [bit 31] is set, then return result as 1 */
49 /* first part try to find the first '1' in the r5 */
53 add r5, r5, r5 /* left shift logical r5 */
57 /* left shift logical r5 get the '1' into the carry */
59 addc r30, r30, r30 /* move that bit into the mod register */
60 rsub r31, r6, r30 /* try to subtract (r30 a r6) */
61 blti r31, mod_too_small
62 /* move the r31 to mod since the result was positive */
68 add r3, r3, r3 /* shift in the '1' into div */
74 or r3, r0, r0 /* set result to 0 */
76 /* restore values of csrs and that of r3 and the divisor and the dividend */
83 .size __udivsi3, . - __udivsi3