{
unsigned char *d = dest;
const unsigned char *s = src;
- size_t *wd, k;
- const size_t *ws;
c = (unsigned char)c;
+#ifdef __GNUC__
+ typedef size_t __attribute__((__may_alias__)) word;
+ word *wd;
+ const word *ws;
if (((uintptr_t)s & ALIGN) == ((uintptr_t)d & ALIGN)) {
for (; ((uintptr_t)s & ALIGN) && n && (*d=*s)!=c; n--, s++, d++);
if ((uintptr_t)s & ALIGN) goto tail;
- k = ONES * c;
+ size_t k = ONES * c;
wd=(void *)d; ws=(const void *)s;
for (; n>=sizeof(size_t) && !HASZERO(*ws^k);
n-=sizeof(size_t), ws++, wd++) *wd = *ws;
d=(void *)wd; s=(const void *)ws;
}
+#endif
for (; n && (*d=*s)!=c; n--, s++, d++);
tail:
if (*s==c) return d+1;
{
const unsigned char *s = src;
c = (unsigned char)c;
+#ifdef __GNUC__
for (; ((uintptr_t)s & ALIGN) && n && *s != c; s++, n--);
if (n && *s != c) {
- const size_t *w;
+ typedef size_t __attribute__((__may_alias__)) word;
+ const word *w;
size_t k = ONES * c;
for (w = (const void *)s; n>=SS && !HASZERO(*w^k); w++, n-=SS);
- for (s = (const void *)w; n && *s != c; s++, n--);
+ s = (const void *)w;
}
+#endif
+ for (; n && *s != c; s++, n--);
return n ? (void *)s : 0;
}
#include <string.h>
#include <stdint.h>
-#define WT size_t
+#ifdef __GNUC__
+typedef __attribute__((__may_alias__)) size_t WT;
#define WS (sizeof(WT))
+#endif
void *memmove(void *dest, const void *src, size_t n)
{
if ((uintptr_t)s-(uintptr_t)d-n <= -2*n) return memcpy(d, s, n);
if (d<s) {
+#ifdef __GNUC__
if ((uintptr_t)s % WS == (uintptr_t)d % WS) {
while ((uintptr_t)d % WS) {
if (!n--) return dest;
}
for (; n>=WS; n-=WS, d+=WS, s+=WS) *(WT *)d = *(WT *)s;
}
+#endif
for (; n; n--) *d++ = *s++;
} else {
+#ifdef __GNUC__
if ((uintptr_t)s % WS == (uintptr_t)d % WS) {
while ((uintptr_t)(d+n) % WS) {
if (!n--) return dest;
}
while (n>=WS) n-=WS, *(WT *)(d+n) = *(WT *)(s+n);
}
+#endif
while (n) n--, d[n] = s[n];
}
char *__stpcpy(char *restrict d, const char *restrict s)
{
- size_t *wd;
- const size_t *ws;
-
+#ifdef __GNUC__
+ typedef size_t __attribute__((__may_alias__)) word;
+ word *wd;
+ const word *ws;
if ((uintptr_t)s % ALIGN == (uintptr_t)d % ALIGN) {
for (; (uintptr_t)s % ALIGN; s++, d++)
if (!(*d=*s)) return d;
for (; !HASZERO(*ws); *wd++ = *ws++);
d=(void *)wd; s=(const void *)ws;
}
+#endif
for (; (*d=*s); s++, d++);
return d;
char *__stpncpy(char *restrict d, const char *restrict s, size_t n)
{
- size_t *wd;
- const size_t *ws;
-
+#ifdef __GNUC__
+ typedef size_t __attribute__((__may_alias__)) word;
+ word *wd;
+ const word *ws;
if (((uintptr_t)s & ALIGN) == ((uintptr_t)d & ALIGN)) {
for (; ((uintptr_t)s & ALIGN) && n && (*d=*s); n--, s++, d++);
if (!n || !*s) goto tail;
n-=sizeof(size_t), ws++, wd++) *wd = *ws;
d=(void *)wd; s=(const void *)ws;
}
+#endif
for (; n && (*d=*s); n--, s++, d++);
tail:
memset(d, 0, n);
char *__strchrnul(const char *s, int c)
{
- size_t *w, k;
-
c = (unsigned char)c;
if (!c) return (char *)s + strlen(s);
+#ifdef __GNUC__
+ typedef size_t __attribute__((__may_alias__)) word;
+ const word *w;
for (; (uintptr_t)s % ALIGN; s++)
if (!*s || *(unsigned char *)s == c) return (char *)s;
- k = ONES * c;
+ size_t k = ONES * c;
for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++);
- for (s = (void *)w; *s && *(unsigned char *)s != c; s++);
+ s = (void *)w;
+#endif
+ for (; *s && *(unsigned char *)s != c; s++);
return (char *)s;
}
{
char *d0 = d;
size_t *wd;
- const size_t *ws;
if (!n--) goto finish;
+#ifdef __GNUC__
+ typedef size_t __attribute__((__may_alias__)) word;
+ const word *ws;
if (((uintptr_t)s & ALIGN) == ((uintptr_t)d & ALIGN)) {
for (; ((uintptr_t)s & ALIGN) && n && (*d=*s); n--, s++, d++);
if (n && *s) {
d=(void *)wd; s=(const void *)ws;
}
}
+#endif
for (; n && (*d=*s); n--, s++, d++);
*d = 0;
finish:
size_t strlen(const char *s)
{
const char *a = s;
- const size_t *w;
+#ifdef __GNUC__
+ typedef size_t __attribute__((__may_alias__)) word;
+ const word *w;
for (; (uintptr_t)s % ALIGN; s++) if (!*s) return s-a;
for (w = (const void *)s; !HASZERO(*w); w++);
- for (s = (const void *)w; *s; s++);
+ s = (const void *)w;
+#endif
+ for (; *s; s++);
return s-a;
}