| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 1 | #include <linux/module.h> | 
| Jiri Slaby | 1977f03 | 2007-10-18 23:40:25 -0700 | [diff] [blame] | 2 | #include <linux/bitops.h> | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 3 | #include <asm/types.h> | 
 | 4 |  | 
 | 5 | /** | 
 | 6 |  * hweightN - returns the hamming weight of a N-bit word | 
 | 7 |  * @x: the word to weigh | 
 | 8 |  * | 
 | 9 |  * The Hamming Weight of a number is the total number of bits set in it. | 
 | 10 |  */ | 
 | 11 |  | 
| Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 12 | unsigned int __sw_hweight32(unsigned int w) | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 13 | { | 
| Akinobu Mita | 39d997b | 2009-12-21 16:20:16 -0800 | [diff] [blame] | 14 | #ifdef ARCH_HAS_FAST_MULTIPLIER | 
 | 15 | 	w -= (w >> 1) & 0x55555555; | 
 | 16 | 	w =  (w & 0x33333333) + ((w >> 2) & 0x33333333); | 
 | 17 | 	w =  (w + (w >> 4)) & 0x0f0f0f0f; | 
 | 18 | 	return (w * 0x01010101) >> 24; | 
 | 19 | #else | 
| Akinobu Mita | f9b4192 | 2006-03-26 01:40:00 -0800 | [diff] [blame] | 20 | 	unsigned int res = w - ((w >> 1) & 0x55555555); | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 21 | 	res = (res & 0x33333333) + ((res >> 2) & 0x33333333); | 
| Akinobu Mita | f9b4192 | 2006-03-26 01:40:00 -0800 | [diff] [blame] | 22 | 	res = (res + (res >> 4)) & 0x0F0F0F0F; | 
 | 23 | 	res = res + (res >> 8); | 
 | 24 | 	return (res + (res >> 16)) & 0x000000FF; | 
| Akinobu Mita | 39d997b | 2009-12-21 16:20:16 -0800 | [diff] [blame] | 25 | #endif | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 26 | } | 
| Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 27 | EXPORT_SYMBOL(__sw_hweight32); | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 28 |  | 
| Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 29 | unsigned int __sw_hweight16(unsigned int w) | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 30 | { | 
| Akinobu Mita | f9b4192 | 2006-03-26 01:40:00 -0800 | [diff] [blame] | 31 | 	unsigned int res = w - ((w >> 1) & 0x5555); | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 32 | 	res = (res & 0x3333) + ((res >> 2) & 0x3333); | 
| Akinobu Mita | f9b4192 | 2006-03-26 01:40:00 -0800 | [diff] [blame] | 33 | 	res = (res + (res >> 4)) & 0x0F0F; | 
 | 34 | 	return (res + (res >> 8)) & 0x00FF; | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 35 | } | 
| Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 36 | EXPORT_SYMBOL(__sw_hweight16); | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 37 |  | 
| Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 38 | unsigned int __sw_hweight8(unsigned int w) | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 39 | { | 
| Akinobu Mita | f9b4192 | 2006-03-26 01:40:00 -0800 | [diff] [blame] | 40 | 	unsigned int res = w - ((w >> 1) & 0x55); | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 41 | 	res = (res & 0x33) + ((res >> 2) & 0x33); | 
| Akinobu Mita | f9b4192 | 2006-03-26 01:40:00 -0800 | [diff] [blame] | 42 | 	return (res + (res >> 4)) & 0x0F; | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 43 | } | 
| Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 44 | EXPORT_SYMBOL(__sw_hweight8); | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 45 |  | 
| Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 46 | unsigned long __sw_hweight64(__u64 w) | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 47 | { | 
 | 48 | #if BITS_PER_LONG == 32 | 
| Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 49 | 	return __sw_hweight32((unsigned int)(w >> 32)) + | 
 | 50 | 	       __sw_hweight32((unsigned int)w); | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 51 | #elif BITS_PER_LONG == 64 | 
| Andi Kleen | 0136611 | 2006-09-26 10:52:38 +0200 | [diff] [blame] | 52 | #ifdef ARCH_HAS_FAST_MULTIPLIER | 
 | 53 | 	w -= (w >> 1) & 0x5555555555555555ul; | 
 | 54 | 	w =  (w & 0x3333333333333333ul) + ((w >> 2) & 0x3333333333333333ul); | 
 | 55 | 	w =  (w + (w >> 4)) & 0x0f0f0f0f0f0f0f0ful; | 
 | 56 | 	return (w * 0x0101010101010101ul) >> 56; | 
 | 57 | #else | 
| Akinobu Mita | f9b4192 | 2006-03-26 01:40:00 -0800 | [diff] [blame] | 58 | 	__u64 res = w - ((w >> 1) & 0x5555555555555555ul); | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 59 | 	res = (res & 0x3333333333333333ul) + ((res >> 2) & 0x3333333333333333ul); | 
| Akinobu Mita | f9b4192 | 2006-03-26 01:40:00 -0800 | [diff] [blame] | 60 | 	res = (res + (res >> 4)) & 0x0F0F0F0F0F0F0F0Ful; | 
 | 61 | 	res = res + (res >> 8); | 
 | 62 | 	res = res + (res >> 16); | 
 | 63 | 	return (res + (res >> 32)) & 0x00000000000000FFul; | 
| Andi Kleen | 0136611 | 2006-09-26 10:52:38 +0200 | [diff] [blame] | 64 | #endif | 
| Akinobu Mita | 3b9ed1a | 2006-03-26 01:39:13 -0800 | [diff] [blame] | 65 | #endif | 
 | 66 | } | 
| Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 67 | EXPORT_SYMBOL(__sw_hweight64); |