mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bignum.c (ones): Use __builtin_popcountl if available.
* internal.h (GCC_VERSION_SINCE): Macro moved from pack.c. * pack.c: Include internal.h for GCC_VERSION_SINCE. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40262 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3da834800e
commit
16a2acca20
4 changed files with 32 additions and 19 deletions
|
@ -1,3 +1,11 @@
|
|||
Fri Apr 12 20:59:24 2013 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* bignum.c (ones): Use __builtin_popcountl if available.
|
||||
|
||||
* internal.h (GCC_VERSION_SINCE): Macro moved from pack.c.
|
||||
|
||||
* pack.c: Include internal.h for GCC_VERSION_SINCE.
|
||||
|
||||
Fri Apr 12 18:29:42 2013 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* common.mk: version.o depends on $(srcdir)/include/ruby/version.h
|
||||
|
|
4
bignum.c
4
bignum.c
|
@ -887,6 +887,9 @@ static void bigdivmod(VALUE x, VALUE y, volatile VALUE *divp, volatile VALUE *mo
|
|||
static inline int
|
||||
ones(register unsigned long x)
|
||||
{
|
||||
#if GCC_VERSION_SINCE(3, 4, 0)
|
||||
return __builtin_popcountl(x);
|
||||
#else
|
||||
# if SIZEOF_LONG == 8
|
||||
# define MASK_55 0x5555555555555555UL
|
||||
# define MASK_33 0x3333333333333333UL
|
||||
|
@ -908,6 +911,7 @@ ones(register unsigned long x)
|
|||
# undef MASK_0f
|
||||
# undef MASK_33
|
||||
# undef MASK_55
|
||||
#endif
|
||||
}
|
||||
|
||||
static inline unsigned long
|
||||
|
|
|
@ -19,6 +19,12 @@ extern "C" {
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#define GCC_VERSION_SINCE(major, minor, patchlevel) \
|
||||
(defined(__GNUC__) && !defined(__INTEL_COMPILER) && \
|
||||
((__GNUC__ > (major)) || \
|
||||
(__GNUC__ == (major) && __GNUC_MINOR__ > (minor)) || \
|
||||
(__GNUC__ == (major) && __GNUC_MINOR__ == (minor) && __GNUC_PATCHLEVEL__ >= (patchlevel))))
|
||||
|
||||
#if SIGNEDNESS_OF_TIME_T < 0 /* signed */
|
||||
# define TIMET_MAX (time_t)((~(unsigned_time_t)0) >> 1)
|
||||
# define TIMET_MIN (time_t)(((unsigned_time_t)1) << (sizeof(time_t) * CHAR_BIT - 1))
|
||||
|
|
7
pack.c
7
pack.c
|
@ -11,16 +11,11 @@
|
|||
|
||||
#include "ruby/ruby.h"
|
||||
#include "ruby/encoding.h"
|
||||
#include "internal.h"
|
||||
#include <sys/types.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
|
||||
#define GCC_VERSION_SINCE(major, minor, patchlevel) \
|
||||
(defined(__GNUC__) && !defined(__INTEL_COMPILER) && \
|
||||
((__GNUC__ > (major)) || \
|
||||
(__GNUC__ == (major) && __GNUC_MINOR__ > (minor)) || \
|
||||
(__GNUC__ == (major) && __GNUC_MINOR__ == (minor) && __GNUC_PATCHLEVEL__ >= (patchlevel))))
|
||||
|
||||
/*
|
||||
* It is intentional that the condition for natstr is HAVE_TRUE_LONG_LONG
|
||||
* instead of HAVE_LONG_LONG or LONG_LONG.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue