aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/bits_count_ones.h
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-09 04:47:08 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-09 04:47:08 +0000
commit9297c9e7809e9116faf7b73dbb97a39ed75995bf (patch)
tree7f9b599c3cd5d1470276b43864d25e9a3e581eeb /wsutil/bits_count_ones.h
parent3aaf560877c6977aae0084f7f99944cc314791c3 (diff)
Rename swar_count_bits() to ws_count_ones()
Try to make ws_count_ones() inline function. svn path=/trunk/; revision=53178
Diffstat (limited to 'wsutil/bits_count_ones.h')
-rw-r--r--wsutil/bits_count_ones.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/wsutil/bits_count_ones.h b/wsutil/bits_count_ones.h
new file mode 100644
index 0000000000..82f88bc43c
--- /dev/null
+++ b/wsutil/bits_count_ones.h
@@ -0,0 +1,53 @@
+/*
+ * bits_count_ones.h
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ */
+
+#ifndef __WSUTIL_BITS_COUNT_ONES_H__
+#define __WSUTIL_BITS_COUNT_ONES_H__
+
+#include "config.h"
+
+#include <glib.h>
+
+/*
+ * The variable-precision SWAR algorithm is an interesting way to count
+ * the number of bits set in an integer. While its performance is very
+ * good (two times faster than gcc's __builtin_popcount [1] and
+ * 16 instructions when compiled with gcc -O3)
+ * http://playingwithpointers.com/swar.html
+ */
+
+static inline int
+ws_count_ones(const guint32 x)
+{
+ int bits = x;
+
+ bits = bits - ((bits >> 1) & 0x55555555);
+ bits = (bits & 0x33333333) + ((bits >> 2) & 0x33333333);
+ bits = (bits + (bits >> 4)) & 0x0F0F0F0F;
+
+ return (bits * 0x01010101) >> 24;
+}
+
+#endif /* __WSUTIL_BITS_COUNT_ONES_H__ */