summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 22:32:05 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-30 22:32:05 +0000
commit0f0121fe1a626080424f86e97159feeb9404bac7 (patch)
treebf2bb47ce27e83ecbedec9ab753bfbe4d87e119b
parentaa2395b8878be3273aa863cdcf27f119e8133b2a (diff)
* string.c (search_nonascii): use nlz on big endian environments.
* internal.h (nlz_intpr): defined. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--internal.h9
-rw-r--r--string.c4
3 files changed, 19 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b52dd0456b..e45dc8a303 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun May 1 07:30:44 2016 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * string.c (search_nonascii): use nlz on big endian environments.
+
+ * internal.h (nlz_intpr): defined.
+
Sun May 1 00:03:30 2016 NARUSE, Yui <naruse@ruby-lang.org>
* configure.in (__builtin_ctz): check.
diff --git a/internal.h b/internal.h
index a8f4240059..0bac79e012 100644
--- a/internal.h
+++ b/internal.h
@@ -261,6 +261,15 @@ nlz_int128(uint128_t x)
#endif
static inline int
+nlz_intptr(uintptr_t x) {
+#if SIZEOF_VOIDP == 8
+ return nlz_long_long(x);
+#elif SIZEOF_VOIDP == 4
+ return nlz_int(x);
+#endif
+}
+
+static inline int
rb_popcount32(uint32_t x) {
x = (x & 0x55555555) + (x >> 1 & 0x55555555);
x = (x & 0x33333333) + (x >> 2 & 0x33333333);
diff --git a/string.c b/string.c
index 04fc5d063d..3bcaa6cd64 100644
--- a/string.c
+++ b/string.c
@@ -449,7 +449,11 @@ search_nonascii(const char *p, const char *e)
const uintptr_t *t = (const uintptr_t *)(e - (SIZEOF_VOIDP-1));
for (;s < t; s++) {
if (*s & NONASCII_MASK) {
+#if BYTE_ORDER == LITTLE_ENDIAN
return (const char *)s + (ntz_intptr(*s&NONASCII_MASK)>>3);
+#else
+ return (const char *)s + (nlz_intptr(*s&NONASCII_MASK)>>3);
+#endif
}
}
p = (const char *)s;