2 * linux/arch/arm/lib/div64.S
4 * Optimized computation of 64-bit dividend / 32-bit divisor
6 * Author: Nicolas Pitre
8 * Copyright: Monta Vista Software, Inc.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/linkage.h>
16 #include <asm/unwind.h>
31 * __do_div64: perform a division with 64-bit dividend and 32-bit divisor.
33 * Note: Calling convention is totally non standard for optimal code.
34 * This is meant to be used by do_div() from include/asm/div64.h only.
37 * xh-xl = dividend (clobbered)
38 * r4 = divisor (preserved)
44 * Clobbered regs: xl, ip
50 @ Test for easy paths first.
52 bls 9f @ divisor is 0 or 1
54 beq 8f @ divisor is power of 2
56 @ See if we need to handle upper 32-bit result.
61 @ Align divisor with upper part of dividend.
62 @ The aligned divisor is stored in yl preserving the original.
63 @ The bit position is stored in ip.
65 #if __LINUX_ARM_ARCH__ >= 5
78 1: cmp yl, #0x80000000
86 @ The division loop for needed upper bit positions.
87 @ Break out early if dividend reaches 0.
95 @ See if we need to handle lower 32-bit result.
102 @ The division loop for lower bit positions.
103 @ Here we shift remainer bits leftwards rather than moving the
104 @ divisor for comparisons, considering the carry-out bit as well.
106 4: movs xl, xl, lsl #1
116 @ The top part of remainder became zero. If carry is set
117 @ (the 33th bit) this is a false positive so resume the loop.
118 @ Otherwise, if lower part is also null then we are done.
123 @ We still have remainer bits in the low part. Bring them up.
125 #if __LINUX_ARM_ARCH__ >= 5
127 clz xh, xl @ we know xh is zero here so...
134 7: movs xl, xl, lsl #1
140 @ Current remainder is now 1. It is worthless to compare with
141 @ divisor at this point since divisor can not be smaller than 3 here.
142 @ If possible, branch for another shift in the division loop.
143 @ If no bit position left then we are done.
149 8: @ Division by a power of 2: determine what that divisor order is
150 @ then simply shift values around
152 #if __LINUX_ARM_ARCH__ >= 5
162 movhs yl, yl, lsr #16
175 addls ip, ip, yl, lsr #1
182 ARM( orr yl, yl, xh, lsl ip )
183 THUMB( lsl xh, xh, ip )
184 THUMB( orr yl, yl, xh )
189 @ eq -> division by 1: obvious enough...
204 @ as wrong as it could be...