Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 2 | #ifndef _ASM_X86_STRING_32_H |
| 3 | #define _ASM_X86_STRING_32_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | #ifdef __KERNEL__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
Joe Perches | 06b0f57 | 2008-03-23 01:03:33 -0700 | [diff] [blame] | 7 | /* Let gcc decide whether to inline or use the out of line functions */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
| 9 | #define __HAVE_ARCH_STRCPY |
Andi Kleen | b520b85 | 2007-07-21 17:09:59 +0200 | [diff] [blame] | 10 | extern char *strcpy(char *dest, const char *src); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | #define __HAVE_ARCH_STRNCPY |
Andi Kleen | b520b85 | 2007-07-21 17:09:59 +0200 | [diff] [blame] | 13 | extern char *strncpy(char *dest, const char *src, size_t count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | #define __HAVE_ARCH_STRCAT |
Andi Kleen | b520b85 | 2007-07-21 17:09:59 +0200 | [diff] [blame] | 16 | extern char *strcat(char *dest, const char *src); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | #define __HAVE_ARCH_STRNCAT |
Andi Kleen | b520b85 | 2007-07-21 17:09:59 +0200 | [diff] [blame] | 19 | extern char *strncat(char *dest, const char *src, size_t count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | #define __HAVE_ARCH_STRCMP |
Andi Kleen | b520b85 | 2007-07-21 17:09:59 +0200 | [diff] [blame] | 22 | extern int strcmp(const char *cs, const char *ct); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | #define __HAVE_ARCH_STRNCMP |
Andi Kleen | b520b85 | 2007-07-21 17:09:59 +0200 | [diff] [blame] | 25 | extern int strncmp(const char *cs, const char *ct, size_t count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | #define __HAVE_ARCH_STRCHR |
Andi Kleen | b520b85 | 2007-07-21 17:09:59 +0200 | [diff] [blame] | 28 | extern char *strchr(const char *s, int c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #define __HAVE_ARCH_STRLEN |
Andi Kleen | b520b85 | 2007-07-21 17:09:59 +0200 | [diff] [blame] | 31 | extern size_t strlen(const char *s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 33 | static __always_inline void *__memcpy(void *to, const void *from, size_t n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | { |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 35 | int d0, d1, d2; |
| 36 | asm volatile("rep ; movsl\n\t" |
| 37 | "movl %4,%%ecx\n\t" |
| 38 | "andl $3,%%ecx\n\t" |
| 39 | "jz 1f\n\t" |
| 40 | "rep ; movsb\n\t" |
| 41 | "1:" |
| 42 | : "=&c" (d0), "=&D" (d1), "=&S" (d2) |
| 43 | : "0" (n / 4), "g" (n), "1" ((long)to), "2" ((long)from) |
| 44 | : "memory"); |
| 45 | return to; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | /* |
Denis Vlasenko | d5b63d7 | 2005-05-01 08:58:48 -0700 | [diff] [blame] | 49 | * This looks ugly, but the compiler can optimize it totally, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * as the count is constant. |
| 51 | */ |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 52 | static __always_inline void *__constant_memcpy(void *to, const void *from, |
| 53 | size_t n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | { |
Denis Vlasenko | d5b63d7 | 2005-05-01 08:58:48 -0700 | [diff] [blame] | 55 | long esi, edi; |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 56 | if (!n) |
| 57 | return to; |
| 58 | |
Denis Vlasenko | d5b63d7 | 2005-05-01 08:58:48 -0700 | [diff] [blame] | 59 | switch (n) { |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 60 | case 1: |
| 61 | *(char *)to = *(char *)from; |
| 62 | return to; |
| 63 | case 2: |
| 64 | *(short *)to = *(short *)from; |
| 65 | return to; |
| 66 | case 4: |
| 67 | *(int *)to = *(int *)from; |
| 68 | return to; |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 69 | case 3: |
| 70 | *(short *)to = *(short *)from; |
| 71 | *((char *)to + 2) = *((char *)from + 2); |
| 72 | return to; |
| 73 | case 5: |
| 74 | *(int *)to = *(int *)from; |
| 75 | *((char *)to + 4) = *((char *)from + 4); |
| 76 | return to; |
| 77 | case 6: |
| 78 | *(int *)to = *(int *)from; |
| 79 | *((short *)to + 2) = *((short *)from + 2); |
| 80 | return to; |
| 81 | case 8: |
| 82 | *(int *)to = *(int *)from; |
| 83 | *((int *)to + 1) = *((int *)from + 1); |
| 84 | return to; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 86 | |
| 87 | esi = (long)from; |
| 88 | edi = (long)to; |
| 89 | if (n >= 5 * 4) { |
Denis Vlasenko | d5b63d7 | 2005-05-01 08:58:48 -0700 | [diff] [blame] | 90 | /* large block: use rep prefix */ |
| 91 | int ecx; |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 92 | asm volatile("rep ; movsl" |
| 93 | : "=&c" (ecx), "=&D" (edi), "=&S" (esi) |
| 94 | : "0" (n / 4), "1" (edi), "2" (esi) |
| 95 | : "memory" |
Denis Vlasenko | d5b63d7 | 2005-05-01 08:58:48 -0700 | [diff] [blame] | 96 | ); |
| 97 | } else { |
| 98 | /* small block: don't clobber ecx + smaller code */ |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 99 | if (n >= 4 * 4) |
| 100 | asm volatile("movsl" |
| 101 | : "=&D"(edi), "=&S"(esi) |
| 102 | : "0"(edi), "1"(esi) |
| 103 | : "memory"); |
| 104 | if (n >= 3 * 4) |
| 105 | asm volatile("movsl" |
| 106 | : "=&D"(edi), "=&S"(esi) |
| 107 | : "0"(edi), "1"(esi) |
| 108 | : "memory"); |
| 109 | if (n >= 2 * 4) |
| 110 | asm volatile("movsl" |
| 111 | : "=&D"(edi), "=&S"(esi) |
| 112 | : "0"(edi), "1"(esi) |
| 113 | : "memory"); |
| 114 | if (n >= 1 * 4) |
| 115 | asm volatile("movsl" |
| 116 | : "=&D"(edi), "=&S"(esi) |
| 117 | : "0"(edi), "1"(esi) |
| 118 | : "memory"); |
Denis Vlasenko | d5b63d7 | 2005-05-01 08:58:48 -0700 | [diff] [blame] | 119 | } |
| 120 | switch (n % 4) { |
| 121 | /* tail */ |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 122 | case 0: |
| 123 | return to; |
| 124 | case 1: |
| 125 | asm volatile("movsb" |
| 126 | : "=&D"(edi), "=&S"(esi) |
| 127 | : "0"(edi), "1"(esi) |
| 128 | : "memory"); |
| 129 | return to; |
| 130 | case 2: |
| 131 | asm volatile("movsw" |
| 132 | : "=&D"(edi), "=&S"(esi) |
| 133 | : "0"(edi), "1"(esi) |
| 134 | : "memory"); |
| 135 | return to; |
| 136 | default: |
| 137 | asm volatile("movsw\n\tmovsb" |
| 138 | : "=&D"(edi), "=&S"(esi) |
| 139 | : "0"(edi), "1"(esi) |
| 140 | : "memory"); |
| 141 | return to; |
Denis Vlasenko | d5b63d7 | 2005-05-01 08:58:48 -0700 | [diff] [blame] | 142 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | #define __HAVE_ARCH_MEMCPY |
Daniel Micay | 6974f0c | 2017-07-12 14:36:10 -0700 | [diff] [blame] | 146 | extern void *memcpy(void *, const void *, size_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Daniel Micay | 6974f0c | 2017-07-12 14:36:10 -0700 | [diff] [blame] | 148 | #ifndef CONFIG_FORTIFY_SOURCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | #ifdef CONFIG_X86_USE_3DNOW |
| 150 | |
| 151 | #include <asm/mmx.h> |
| 152 | |
| 153 | /* |
| 154 | * This CPU favours 3DNow strongly (eg AMD Athlon) |
| 155 | */ |
| 156 | |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 157 | static inline void *__constant_memcpy3d(void *to, const void *from, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | { |
| 159 | if (len < 512) |
| 160 | return __constant_memcpy(to, from, len); |
| 161 | return _mmx_memcpy(to, from, len); |
| 162 | } |
| 163 | |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 164 | static inline void *__memcpy3d(void *to, const void *from, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { |
| 166 | if (len < 512) |
| 167 | return __memcpy(to, from, len); |
| 168 | return _mmx_memcpy(to, from, len); |
| 169 | } |
| 170 | |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 171 | #define memcpy(t, f, n) \ |
| 172 | (__builtin_constant_p((n)) \ |
| 173 | ? __constant_memcpy3d((t), (f), (n)) \ |
| 174 | : __memcpy3d((t), (f), (n))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | #else |
| 177 | |
| 178 | /* |
| 179 | * No 3D Now! |
| 180 | */ |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 181 | |
Arjan van de Ven | ff60fab | 2009-09-28 14:21:22 +0200 | [diff] [blame] | 182 | #if (__GNUC__ >= 4) |
| 183 | #define memcpy(t, f, n) __builtin_memcpy(t, f, n) |
| 184 | #else |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 185 | #define memcpy(t, f, n) \ |
| 186 | (__builtin_constant_p((n)) \ |
| 187 | ? __constant_memcpy((t), (f), (n)) \ |
| 188 | : __memcpy((t), (f), (n))) |
Arjan van de Ven | ff60fab | 2009-09-28 14:21:22 +0200 | [diff] [blame] | 189 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | #endif |
Daniel Micay | 6974f0c | 2017-07-12 14:36:10 -0700 | [diff] [blame] | 192 | #endif /* !CONFIG_FORTIFY_SOURCE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 194 | #define __HAVE_ARCH_MEMMOVE |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 195 | void *memmove(void *dest, const void *src, size_t n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Daniel Micay | 6974f0c | 2017-07-12 14:36:10 -0700 | [diff] [blame] | 197 | extern int memcmp(const void *, const void *, size_t); |
| 198 | #ifndef CONFIG_FORTIFY_SOURCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | #define memcmp __builtin_memcmp |
Daniel Micay | 6974f0c | 2017-07-12 14:36:10 -0700 | [diff] [blame] | 200 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | #define __HAVE_ARCH_MEMCHR |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 203 | extern void *memchr(const void *cs, int c, size_t count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 205 | static inline void *__memset_generic(void *s, char c, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 207 | int d0, d1; |
| 208 | asm volatile("rep\n\t" |
| 209 | "stosb" |
| 210 | : "=&c" (d0), "=&D" (d1) |
| 211 | : "a" (c), "1" (s), "0" (count) |
| 212 | : "memory"); |
| 213 | return s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | /* we might want to write optimized versions of these later */ |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 217 | #define __constant_count_memset(s, c, count) __memset_generic((s), (c), (count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
| 219 | /* |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 220 | * memset(x, 0, y) is a reasonably common thing to do, so we want to fill |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | * things 32 bits at a time even when we don't know the size of the |
| 222 | * area at compile-time.. |
| 223 | */ |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 224 | static __always_inline |
| 225 | void *__constant_c_memset(void *s, unsigned long c, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | { |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 227 | int d0, d1; |
| 228 | asm volatile("rep ; stosl\n\t" |
| 229 | "testb $2,%b3\n\t" |
| 230 | "je 1f\n\t" |
| 231 | "stosw\n" |
| 232 | "1:\ttestb $1,%b3\n\t" |
| 233 | "je 2f\n\t" |
| 234 | "stosb\n" |
| 235 | "2:" |
| 236 | : "=&c" (d0), "=&D" (d1) |
| 237 | : "a" (c), "q" (count), "0" (count/4), "1" ((long)s) |
| 238 | : "memory"); |
| 239 | return s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | /* Added by Gertjan van Wingerde to make minix and sysv module work */ |
| 243 | #define __HAVE_ARCH_STRNLEN |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 244 | extern size_t strnlen(const char *s, size_t count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | /* end of additional stuff */ |
| 246 | |
| 247 | #define __HAVE_ARCH_STRSTR |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | extern char *strstr(const char *cs, const char *ct); |
| 249 | |
| 250 | /* |
| 251 | * This looks horribly ugly, but the compiler can optimize it totally, |
| 252 | * as we by now know that both pattern and count is constant.. |
| 253 | */ |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 254 | static __always_inline |
| 255 | void *__constant_c_and_count_memset(void *s, unsigned long pattern, |
| 256 | size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | { |
| 258 | switch (count) { |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 259 | case 0: |
| 260 | return s; |
| 261 | case 1: |
| 262 | *(unsigned char *)s = pattern & 0xff; |
| 263 | return s; |
| 264 | case 2: |
| 265 | *(unsigned short *)s = pattern & 0xffff; |
| 266 | return s; |
| 267 | case 3: |
| 268 | *(unsigned short *)s = pattern & 0xffff; |
| 269 | *((unsigned char *)s + 2) = pattern & 0xff; |
| 270 | return s; |
| 271 | case 4: |
| 272 | *(unsigned long *)s = pattern; |
| 273 | return s; |
| 274 | } |
| 275 | |
| 276 | #define COMMON(x) \ |
| 277 | asm volatile("rep ; stosl" \ |
| 278 | x \ |
| 279 | : "=&c" (d0), "=&D" (d1) \ |
H. Peter Anvin | 1a20d3e | 2008-05-26 13:36:53 -0700 | [diff] [blame] | 280 | : "a" (eax), "0" (count/4), "1" ((long)s) \ |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 281 | : "memory") |
| 282 | |
| 283 | { |
| 284 | int d0, d1; |
H. Peter Anvin | 1a20d3e | 2008-05-26 13:36:53 -0700 | [diff] [blame] | 285 | #if __GNUC__ == 4 && __GNUC_MINOR__ == 0 |
| 286 | /* Workaround for broken gcc 4.0 */ |
| 287 | register unsigned long eax asm("%eax") = pattern; |
| 288 | #else |
| 289 | unsigned long eax = pattern; |
| 290 | #endif |
| 291 | |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 292 | switch (count % 4) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | case 0: |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 294 | COMMON(""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | return s; |
| 296 | case 1: |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 297 | COMMON("\n\tstosb"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | return s; |
| 299 | case 2: |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 300 | COMMON("\n\tstosw"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | return s; |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 302 | default: |
| 303 | COMMON("\n\tstosw\n\tstosb"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | return s; |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 305 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | } |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | #undef COMMON |
| 309 | } |
| 310 | |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 311 | #define __constant_c_x_memset(s, c, count) \ |
| 312 | (__builtin_constant_p(count) \ |
| 313 | ? __constant_c_and_count_memset((s), (c), (count)) \ |
| 314 | : __constant_c_memset((s), (c), (count))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 316 | #define __memset(s, c, count) \ |
| 317 | (__builtin_constant_p(count) \ |
| 318 | ? __constant_count_memset((s), (c), (count)) \ |
| 319 | : __memset_generic((s), (c), (count))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | #define __HAVE_ARCH_MEMSET |
Daniel Micay | 6974f0c | 2017-07-12 14:36:10 -0700 | [diff] [blame] | 322 | extern void *memset(void *, int, size_t); |
| 323 | #ifndef CONFIG_FORTIFY_SOURCE |
Arjan van de Ven | ff60fab | 2009-09-28 14:21:22 +0200 | [diff] [blame] | 324 | #if (__GNUC__ >= 4) |
| 325 | #define memset(s, c, count) __builtin_memset(s, c, count) |
| 326 | #else |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 327 | #define memset(s, c, count) \ |
| 328 | (__builtin_constant_p(c) \ |
| 329 | ? __constant_c_x_memset((s), (0x01010101UL * (unsigned char)(c)), \ |
| 330 | (count)) \ |
| 331 | : __memset((s), (c), (count))) |
Arjan van de Ven | ff60fab | 2009-09-28 14:21:22 +0200 | [diff] [blame] | 332 | #endif |
Daniel Micay | 6974f0c | 2017-07-12 14:36:10 -0700 | [diff] [blame] | 333 | #endif /* !CONFIG_FORTIFY_SOURCE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Matthew Wilcox | 4c51248 | 2017-09-08 16:13:56 -0700 | [diff] [blame] | 335 | #define __HAVE_ARCH_MEMSET16 |
| 336 | static inline void *memset16(uint16_t *s, uint16_t v, size_t n) |
| 337 | { |
| 338 | int d0, d1; |
| 339 | asm volatile("rep\n\t" |
| 340 | "stosw" |
| 341 | : "=&c" (d0), "=&D" (d1) |
| 342 | : "a" (v), "1" (s), "0" (n) |
| 343 | : "memory"); |
| 344 | return s; |
| 345 | } |
| 346 | |
| 347 | #define __HAVE_ARCH_MEMSET32 |
| 348 | static inline void *memset32(uint32_t *s, uint32_t v, size_t n) |
| 349 | { |
| 350 | int d0, d1; |
| 351 | asm volatile("rep\n\t" |
| 352 | "stosl" |
| 353 | : "=&c" (d0), "=&D" (d1) |
| 354 | : "a" (v), "1" (s), "0" (n) |
| 355 | : "memory"); |
| 356 | return s; |
| 357 | } |
| 358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | /* |
| 360 | * find the first occurrence of byte 'c', or 1 past the area if none |
| 361 | */ |
| 362 | #define __HAVE_ARCH_MEMSCAN |
Joe Perches | 78d64fc | 2008-05-12 15:44:39 +0200 | [diff] [blame] | 363 | extern void *memscan(void *addr, int c, size_t size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
| 365 | #endif /* __KERNEL__ */ |
| 366 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 367 | #endif /* _ASM_X86_STRING_32_H */ |