login
Header Space

 
 

[1/3] Introduce a generic __fls implementation

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Andrew Morton <akpm@...>, linux-arch <linux-arch@...>
Cc: Ingo Molnar <mingo@...>, Andi Kleen <andi@...>, LKML <linux-kernel@...>, <heukelum@...>
Date: Saturday, March 15, 2008 - 1:30 pm

Add a generic __fls implementation in the same spirit as
the generic __ffs one. It finds the last (most significant)
set bit in the given long value.

Signed-off-by: Alexander van Heukelum <heukelum@fastmail.fm>
---
 include/asm-generic/bitops/__fls.h |   43 ++++++++++++++++++++++++++++++++++++
 1 files changed, 43 insertions(+), 0 deletions(-)
 create mode 100644 include/asm-generic/bitops/__fls.h

diff --git a/include/asm-generic/bitops/__fls.h b/include/asm-generic/bitops/__fls.h
new file mode 100644
index 0000000..be24465
--- /dev/null
+++ b/include/asm-generic/bitops/__fls.h
@@ -0,0 +1,43 @@
+#ifndef _ASM_GENERIC_BITOPS___FLS_H_
+#define _ASM_GENERIC_BITOPS___FLS_H_
+
+#include <asm/types.h>
+
+/**
+ * __fls - find last (most-significant) set bit in a long word
+ * @word: the word to search
+ *
+ * Undefined if no set bit exists, so code should check against 0 first.
+ */
+static inline unsigned long __fls(unsigned long word)
+{
+	int num = BITS_PER_LONG - 1;
+
+#if BITS_PER_LONG == 64
+	if (!(word & (~0ul << 32))) {
+		num -= 32;
+		word <<= 32;
+	}
+#endif
+	if (!(word & (~0ul << (BITS_PER_LONG-16)))) {
+		num -= 16;
+		word <<= 16;
+	}
+	if (!(word & (~0ul << (BITS_PER_LONG-8)))) {
+		num -= 8;
+		word <<= 8;
+	}
+	if (!(word & (~0ul << (BITS_PER_LONG-4)))) {
+		num -= 4;
+		word <<= 4;
+	}
+	if (!(word & (~0ul << (BITS_PER_LONG-2)))) {
+		num -= 2;
+		word <<= 2;
+	}
+	if (!(word & (~0ul << (BITS_PER_LONG-1))))
+		num -= 1;
+	return num;
+}
+
+#endif /* _ASM_GENERIC_BITOPS___FLS_H_ */

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[0/3] Improve generic fls64 for 64-bit machines, Alexander van Heukelum, (Sat Mar 15, 1:29 pm)
Re: [0/3] Improve generic fls64 for 64-bit machines, Benny Halevy, (Thu Apr 3, 1:19 pm)
Re: [0/3] Improve generic fls64 for 64-bit machines, Alexander van Heukelum, (Fri Apr 4, 10:22 am)
Re: [0/3] Improve generic fls64 for 64-bit machines, Benny Halevy, (Sun Apr 6, 11:03 am)
Re: [0/3] Improve generic fls64 for 64-bit machines, Alexander van Heukelum, (Sun Apr 6, 3:10 pm)
Re: [0/3] Improve generic fls64 for 64-bit machines, Ingo Molnar, (Fri Mar 21, 9:10 am)
[3/3] Use __fls for fls64 on 64-bit archs, Alexander van Heukelum, (Sat Mar 15, 1:32 pm)
Re: [3/3] Use __fls for fls64 on 64-bit archs, Ricardo M. Correia, (Sat Jul 5, 12:56 pm)
[PATCH] x86: fix description of __fls(): __fls(0) is undefined, Alexander van Heukelum, (Sat Jul 5, 1:53 pm)
[2/3] Implement __fls on all 64-bit archs, Alexander van Heukelum, (Sat Mar 15, 1:31 pm)
[1/3] Introduce a generic __fls implementation, Alexander van Heukelum, (Sat Mar 15, 1:30 pm)
speck-geostationary