Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24150
b: refs/heads/master
c: 9363513
h: refs/heads/master
v: v3
  • Loading branch information
Akinobu Mita authored and Linus Torvalds committed Mar 26, 2006
1 parent 29d0e6c commit 14063a6
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f214ef3e193dea10a7b527d4f4b0c15d2d98c984
refs/heads/master: 93635133663ea3155e74a0e3645b64754a046007
31 changes: 30 additions & 1 deletion trunk/include/asm-arm/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -344,13 +344,42 @@ static inline unsigned long __ffs(unsigned long word)

#else

static inline int constant_fls(int x)
{
int r = 32;

if (!x)
return 0;
if (!(x & 0xffff0000u)) {
x <<= 16;
r -= 16;
}
if (!(x & 0xff000000u)) {
x <<= 8;
r -= 8;
}
if (!(x & 0xf0000000u)) {
x <<= 4;
r -= 4;
}
if (!(x & 0xc0000000u)) {
x <<= 2;
r -= 2;
}
if (!(x & 0x80000000u)) {
x <<= 1;
r -= 1;
}
return r;
}

/*
* On ARMv5 and above those functions can be implemented around
* the clz instruction for much better code efficiency.
*/

#define fls(x) \
( __builtin_constant_p(x) ? generic_fls(x) : \
( __builtin_constant_p(x) ? constant_fls(x) : \
({ int __r; asm("clz\t%0, %1" : "=r"(__r) : "r"(x) : "cc"); 32-__r; }) )
#define fls64(x) generic_fls64(x)
#define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })
Expand Down

0 comments on commit 14063a6

Please sign in to comment.