* UCW Library -- Bit Operations
*
* (c) 2005 Martin Mares <mj@ucw.cz>
+ * (c) 2012 Pavel Charvat <pchar@ucw.cz>
*
* This software may be freely distributed and used according to the terms
* of the GNU Lesser General Public License.
#endif
+/* Count the number of bits set */
+
+#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
+
+static inline uns bit_count(uns w)
+{
+ return __builtin_popcount(w);
+}
+
+#else
+
+static inline uns bit_count(uns w)
+{
+ uns n = 0;
+ while (w)
+ {
+ w &= w - 1;
+ n++;
+ }
+ return n;
+}
+
+#endif
+
#endif