* lib/count-one-bits.c: New file.
* lib/count-one-bits.h (COUNT_ONE_BITS_INLINE):
New macro. Replace all uses of 'static inline' with it.
Use _GL_INLINE_HEADER_BEGIN, _GL_INLINE_HEADER_END.
* m4/count-one-bits.m4 (gl_COUNT_ONE_BITS):
Do not require AC_C_INLINE.
* modules/count-one-bits (Files, lib_SOURCES):
Add lib/count-one-bits.c.
(Depends-on): Add extern-inline.
2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
+ count-one-bits: better 'inline'
+ * lib/count-one-bits.c: New file.
+ * lib/count-one-bits.h (COUNT_ONE_BITS_INLINE):
+ New macro. Replace all uses of 'static inline' with it.
+ Use _GL_INLINE_HEADER_BEGIN, _GL_INLINE_HEADER_END.
+ * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS):
+ Do not require AC_C_INLINE.
+ * modules/count-one-bits (Files, lib_SOURCES):
+ Add lib/count-one-bits.c.
+ (Depends-on): Add extern-inline.
+
count-leading-zeros: better 'inline'
* lib/count-leading-zeros.c: New file.
* lib/count-leading-zeros.h (COUNT_LEADING_ZEROS_INLINE):
--- /dev/null
+#include <config.h>
+#define COUNT_ONE_BITS_INLINE _GL_EXTERN_INLINE
+#include "count-one-bits.h"
#include <stdlib.h>
#include "verify.h"
+_GL_INLINE_HEADER_BEGIN
+#ifndef COUNT_ONE_BITS_INLINE
+# define COUNT_ONE_BITS_INLINE _GL_INLINE
+#endif
+
/* Expand the code which computes the number of 1-bits of the local
variable 'x' of type TYPE (an unsigned integer type) and returns it
from the current function. */
/* Compute and return the number of 1-bits set in the least
significant 32 bits of X. */
-static inline int
+COUNT_ONE_BITS_INLINE int
count_one_bits_32 (unsigned int x)
{
x = ((x & 0xaaaaaaaaU) >> 1) + (x & 0x55555555U);
#endif
/* Compute and return the number of 1-bits set in X. */
-static inline int
+COUNT_ONE_BITS_INLINE int
count_one_bits (unsigned int x)
{
COUNT_ONE_BITS (__builtin_popcount, unsigned int);
}
/* Compute and return the number of 1-bits set in X. */
-static inline int
+COUNT_ONE_BITS_INLINE int
count_one_bits_l (unsigned long int x)
{
COUNT_ONE_BITS (__builtin_popcountl, unsigned long int);
#if HAVE_UNSIGNED_LONG_LONG_INT
/* Compute and return the number of 1-bits set in X. */
-static inline int
+COUNT_ONE_BITS_INLINE int
count_one_bits_ll (unsigned long long int x)
{
COUNT_ONE_BITS (__builtin_popcountll, unsigned long long int);
}
#endif
+_GL_INLINE_HEADER_END
+
#endif /* COUNT_ONE_BITS_H */
-# count-one-bits.m4 serial 2
+# count-one-bits.m4 serial 3
dnl Copyright (C) 2007, 2009-2012 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl We don't need (and can't compile) count_one_bits_ll
dnl unless the type 'unsigned long long int' exists.
AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
-
- dnl Prerequisites of lib/count-one-bits.h.
- AC_REQUIRE([AC_C_INLINE])
])
Counts the number of 1-bits in a word.
Files:
+lib/count-one-bits.c
lib/count-one-bits.h
m4/count-one-bits.m4
Depends-on:
+extern-inline
verify
configure.ac:
gl_COUNT_ONE_BITS
Makefile.am:
+lib_SOURCES += count-one-bits.c
Include:
"count-one-bits.h"