aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-01 14:19:02 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-01 14:19:02 +0000
commit64837f778aa429aeaffa5207a2d7031c8667ca0e (patch)
treed66c5abd638685d2f0d185f02cde54ab035d5709
parent05655519308b22f55702feea8d6093c4950ecc6f (diff)
downloadruby-64837f778aa429aeaffa5207a2d7031c8667ca0e.tar.gz
fix for where UNALIGNED_WORD_ACCESS is not allowed
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54867 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--string.c29
1 files changed, 17 insertions, 12 deletions
diff --git a/string.c b/string.c
index 39efedd916..6d90ce9085 100644
--- a/string.c
+++ b/string.c
@@ -429,22 +429,27 @@ search_nonascii(const char *p, const char *e)
#endif
#if !UNALIGNED_WORD_ACCESS
- if (e - p > SIZEOF_VOIDP) {
- switch (8 - (uintptr_t)p % 8) {
+ if (e - p >= SIZEOF_VOIDP) {
+ if ((uintptr_t)p % SIZEOF_VOIDP) {
+ int l = SIZEOF_VOIDP - (uintptr_t)p % SIZEOF_VOIDP;
+ p += l;
+ switch (l) {
+ default: UNREACHABLE;
#if SIZEOF_VOIDP > 4
- case 7: if (*p&0x80) return p; p++;
- case 6: if (*p&0x80) return p; p++;
- case 5: if (*p&0x80) return p; p++;
- case 4: if (*p&0x80) return p; p++;
+ case 7: if (p[-7]&0x80) return p-7;
+ case 6: if (p[-6]&0x80) return p-6;
+ case 5: if (p[-5]&0x80) return p-5;
+ case 4: if (p[-4]&0x80) return p-4;
#endif
- case 3: if (*p&0x80) return p; p++;
- case 2: if (*p&0x80) return p; p++;
- case 1: if (*p&0x80) return p; p++;
+ case 3: if (p[-3]&0x80) return p-3;
+ case 2: if (p[-2]&0x80) return p-2;
+ case 1: if (p[-1]&0x80) return p-1;
+ case 0: break;
+ }
}
- }
-#endif
-
+#else
{
+#endif
const uintptr_t *s = (const uintptr_t *)p;
const uintptr_t *t = (const uintptr_t *)(e - (SIZEOF_VOIDP-1));
for (;s < t; s++) {