xref: /OK3568_Linux_fs/u-boot/include/asm-generic/bitops/fls.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun #ifndef _ASM_GENERIC_BITOPS_FLS_H_
2*4882a593Smuzhiyun #define _ASM_GENERIC_BITOPS_FLS_H_
3*4882a593Smuzhiyun 
4*4882a593Smuzhiyun /**
5*4882a593Smuzhiyun  * fls - find last (most-significant) bit set
6*4882a593Smuzhiyun  * @x: the word to search
7*4882a593Smuzhiyun  *
8*4882a593Smuzhiyun  * This is defined the same way as ffs.
9*4882a593Smuzhiyun  * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
10*4882a593Smuzhiyun  */
11*4882a593Smuzhiyun 
fls(int x)12*4882a593Smuzhiyun static __always_inline int fls(int x)
13*4882a593Smuzhiyun {
14*4882a593Smuzhiyun 	int r = 32;
15*4882a593Smuzhiyun 
16*4882a593Smuzhiyun 	if (!x)
17*4882a593Smuzhiyun 		return 0;
18*4882a593Smuzhiyun 	if (!(x & 0xffff0000u)) {
19*4882a593Smuzhiyun 		x <<= 16;
20*4882a593Smuzhiyun 		r -= 16;
21*4882a593Smuzhiyun 	}
22*4882a593Smuzhiyun 	if (!(x & 0xff000000u)) {
23*4882a593Smuzhiyun 		x <<= 8;
24*4882a593Smuzhiyun 		r -= 8;
25*4882a593Smuzhiyun 	}
26*4882a593Smuzhiyun 	if (!(x & 0xf0000000u)) {
27*4882a593Smuzhiyun 		x <<= 4;
28*4882a593Smuzhiyun 		r -= 4;
29*4882a593Smuzhiyun 	}
30*4882a593Smuzhiyun 	if (!(x & 0xc0000000u)) {
31*4882a593Smuzhiyun 		x <<= 2;
32*4882a593Smuzhiyun 		r -= 2;
33*4882a593Smuzhiyun 	}
34*4882a593Smuzhiyun 	if (!(x & 0x80000000u)) {
35*4882a593Smuzhiyun 		x <<= 1;
36*4882a593Smuzhiyun 		r -= 1;
37*4882a593Smuzhiyun 	}
38*4882a593Smuzhiyun 	return r;
39*4882a593Smuzhiyun }
40*4882a593Smuzhiyun 
41*4882a593Smuzhiyun #endif /* _ASM_GENERIC_BITOPS_FLS_H_ */
42