Commit bceab143 authored by Russell King (Oracle)'s avatar Russell King (Oracle)

ARM: findbit: provide more efficient ARMv7 implementation

Provide a more efficient ARMv7 implementation to determine the first
set bit in the supplied value.
Signed-off-by: default avatarRussell King (Oracle) <rmk@armlinux.org.uk>
parent 7e009387
...@@ -170,7 +170,11 @@ ENDPROC(_find_next_bit_be) ...@@ -170,7 +170,11 @@ ENDPROC(_find_next_bit_be)
* One or more bits in the LSB of r3 are assumed to be set. * One or more bits in the LSB of r3 are assumed to be set.
*/ */
.L_found: .L_found:
#if __LINUX_ARM_ARCH__ >= 5 #if __LINUX_ARM_ARCH__ >= 7
rbit r3, r3 @ reverse bits
clz r3, r3 @ count high zero bits
add r0, r2, r3 @ add offset of first set bit
#elif __LINUX_ARM_ARCH__ >= 5
rsb r0, r3, #0 rsb r0, r3, #0
and r3, r3, r0 @ mask out lowest bit set and r3, r3, r0 @ mask out lowest bit set
clz r3, r3 @ count high zero bits clz r3, r3 @ count high zero bits
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment