Work around a HP cc compiler bug.
[gnulib.git] / lib / count-one-bits.h
1 /* count-one-bits.h -- counts the number of 1-bits in a word.
2    Copyright (C) 2007-2008 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Ben Pfaff.  */
18
19 #ifndef COUNT_ONE_BITS_H
20 # define COUNT_ONE_BITS_H 1
21
22 #include <stdlib.h>
23 #include "verify.h"
24
25 /* Expand the code which computes the number of 1-bits of the local
26    variable 'x' of type TYPE (an unsigned integer type) and returns it
27    from the current function.  */
28 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
29 #define COUNT_ONE_BITS(BUILTIN, TYPE)              \
30         return BUILTIN (x);
31 #else
32 #define COUNT_ONE_BITS(BUILTIN, TYPE)                                       \
33         verify (((TYPE) -1 >> 31 >> 31 >> 2) == 0); /* TYPE has at most 64 bits */ \
34         int count = count_one_bits_32 (x);                                  \
35         if (1 < (TYPE) -1 >> 31) /* TYPE has more than 32 bits? */          \
36           count += count_one_bits_32 (x >> 31 >> 1);                        \
37         return count;
38
39 /* Compute and return the the number of 1-bits set in the least
40    significant 32 bits of X. */
41 static inline int
42 count_one_bits_32 (unsigned int x)
43 {
44   x = ((x & 0xaaaaaaaaU) >> 1) + (x & 0x55555555U);
45   x = ((x & 0xccccccccU) >> 2) + (x & 0x33333333U);
46   x = (x >> 16) + (x & 0xffff);
47   x = ((x & 0xf0f0) >> 4) + (x & 0x0f0f);
48   return (x >> 8) + (x & 0x00ff);
49 }
50 #endif
51
52 /* Compute and return the number of 1-bits set in X. */
53 static inline int
54 count_one_bits (unsigned int x)
55 {
56   COUNT_ONE_BITS (__builtin_popcount, unsigned int);
57 }
58
59 /* Compute and return the number of 1-bits set in X. */
60 static inline int
61 count_one_bits_l (unsigned long int x)
62 {
63   COUNT_ONE_BITS (__builtin_popcountl, unsigned long int);
64 }
65
66 #if HAVE_UNSIGNED_LONG_LONG_INT
67 /* Compute and return the number of 1-bits set in X. */
68 static inline int
69 count_one_bits_ll (unsigned long long int x)
70 {
71   COUNT_ONE_BITS (__builtin_popcountll, unsigned long long int);
72 }
73 #endif
74
75 #endif /* COUNT_ONE_BITS_H */