1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_STRING_32_H
3 #define _ASM_X86_STRING_32_H
7 /* Let gcc decide whether to inline or use the out of line functions */
9 #define __HAVE_ARCH_STRCPY
10 extern char *strcpy(char *dest
, const char *src
);
12 #define __HAVE_ARCH_STRNCPY
13 extern char *strncpy(char *dest
, const char *src
, size_t count
);
15 #define __HAVE_ARCH_STRCAT
16 extern char *strcat(char *dest
, const char *src
);
18 #define __HAVE_ARCH_STRNCAT
19 extern char *strncat(char *dest
, const char *src
, size_t count
);
21 #define __HAVE_ARCH_STRCMP
22 extern int strcmp(const char *cs
, const char *ct
);
24 #define __HAVE_ARCH_STRNCMP
25 extern int strncmp(const char *cs
, const char *ct
, size_t count
);
27 #define __HAVE_ARCH_STRCHR
28 extern char *strchr(const char *s
, int c
);
30 #define __HAVE_ARCH_STRLEN
31 extern size_t strlen(const char *s
);
33 static __always_inline
void *__memcpy(void *to
, const void *from
, size_t n
)
36 asm volatile("rep ; movsl\n\t"
42 : "=&c" (d0
), "=&D" (d1
), "=&S" (d2
)
43 : "0" (n
/ 4), "g" (n
), "1" ((long)to
), "2" ((long)from
)
49 * This looks ugly, but the compiler can optimize it totally,
50 * as the count is constant.
52 static __always_inline
void *__constant_memcpy(void *to
, const void *from
,
61 *(char *)to
= *(char *)from
;
64 *(short *)to
= *(short *)from
;
67 *(int *)to
= *(int *)from
;
70 *(short *)to
= *(short *)from
;
71 *((char *)to
+ 2) = *((char *)from
+ 2);
74 *(int *)to
= *(int *)from
;
75 *((char *)to
+ 4) = *((char *)from
+ 4);
78 *(int *)to
= *(int *)from
;
79 *((short *)to
+ 2) = *((short *)from
+ 2);
82 *(int *)to
= *(int *)from
;
83 *((int *)to
+ 1) = *((int *)from
+ 1);
90 /* large block: use rep prefix */
92 asm volatile("rep ; movsl"
93 : "=&c" (ecx
), "=&D" (edi
), "=&S" (esi
)
94 : "0" (n
/ 4), "1" (edi
), "2" (esi
)
98 /* small block: don't clobber ecx + smaller code */
101 : "=&D"(edi
), "=&S"(esi
)
106 : "=&D"(edi
), "=&S"(esi
)
111 : "=&D"(edi
), "=&S"(esi
)
116 : "=&D"(edi
), "=&S"(esi
)
126 : "=&D"(edi
), "=&S"(esi
)
132 : "=&D"(edi
), "=&S"(esi
)
137 asm volatile("movsw\n\tmovsb"
138 : "=&D"(edi
), "=&S"(esi
)
145 #define __HAVE_ARCH_MEMCPY
146 extern void *memcpy(void *, const void *, size_t);
148 #ifndef CONFIG_FORTIFY_SOURCE
149 #ifdef CONFIG_X86_USE_3DNOW
154 * This CPU favours 3DNow strongly (eg AMD Athlon)
157 static inline void *__constant_memcpy3d(void *to
, const void *from
, size_t len
)
160 return __constant_memcpy(to
, from
, len
);
161 return _mmx_memcpy(to
, from
, len
);
164 static inline void *__memcpy3d(void *to
, const void *from
, size_t len
)
167 return __memcpy(to
, from
, len
);
168 return _mmx_memcpy(to
, from
, len
);
171 #define memcpy(t, f, n) \
172 (__builtin_constant_p((n)) \
173 ? __constant_memcpy3d((t), (f), (n)) \
174 : __memcpy3d((t), (f), (n)))
183 #define memcpy(t, f, n) __builtin_memcpy(t, f, n)
185 #define memcpy(t, f, n) \
186 (__builtin_constant_p((n)) \
187 ? __constant_memcpy((t), (f), (n)) \
188 : __memcpy((t), (f), (n)))
192 #endif /* !CONFIG_FORTIFY_SOURCE */
194 #define __HAVE_ARCH_MEMMOVE
195 void *memmove(void *dest
, const void *src
, size_t n
);
197 extern int memcmp(const void *, const void *, size_t);
198 #ifndef CONFIG_FORTIFY_SOURCE
199 #define memcmp __builtin_memcmp
202 #define __HAVE_ARCH_MEMCHR
203 extern void *memchr(const void *cs
, int c
, size_t count
);
205 static inline void *__memset_generic(void *s
, char c
, size_t count
)
208 asm volatile("rep\n\t"
210 : "=&c" (d0
), "=&D" (d1
)
211 : "a" (c
), "1" (s
), "0" (count
)
216 /* we might want to write optimized versions of these later */
217 #define __constant_count_memset(s, c, count) __memset_generic((s), (c), (count))
220 * memset(x, 0, y) is a reasonably common thing to do, so we want to fill
221 * things 32 bits at a time even when we don't know the size of the
222 * area at compile-time..
224 static __always_inline
225 void *__constant_c_memset(void *s
, unsigned long c
, size_t count
)
228 asm volatile("rep ; stosl\n\t"
232 "1:\ttestb $1,%b3\n\t"
236 : "=&c" (d0
), "=&D" (d1
)
237 : "a" (c
), "q" (count
), "0" (count
/4), "1" ((long)s
)
242 /* Added by Gertjan van Wingerde to make minix and sysv module work */
243 #define __HAVE_ARCH_STRNLEN
244 extern size_t strnlen(const char *s
, size_t count
);
245 /* end of additional stuff */
247 #define __HAVE_ARCH_STRSTR
248 extern char *strstr(const char *cs
, const char *ct
);
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..
254 static __always_inline
255 void *__constant_c_and_count_memset(void *s
, unsigned long pattern
,
262 *(unsigned char *)s
= pattern
& 0xff;
265 *(unsigned short *)s
= pattern
& 0xffff;
268 *(unsigned short *)s
= pattern
& 0xffff;
269 *((unsigned char *)s
+ 2) = pattern
& 0xff;
272 *(unsigned long *)s
= pattern
;
277 asm volatile("rep ; stosl" \
279 : "=&c" (d0), "=&D" (d1) \
280 : "a" (eax), "0" (count/4), "1" ((long)s) \
285 #if __GNUC__ == 4 && __GNUC_MINOR__ == 0
286 /* Workaround for broken gcc 4.0 */
287 register unsigned long eax
asm("%eax") = pattern
;
289 unsigned long eax
= pattern
;
303 COMMON("\n\tstosw\n\tstosb");
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)))
316 #define __memset(s, c, count) \
317 (__builtin_constant_p(count) \
318 ? __constant_count_memset((s), (c), (count)) \
319 : __memset_generic((s), (c), (count)))
321 #define __HAVE_ARCH_MEMSET
322 extern void *memset(void *, int, size_t);
323 #ifndef CONFIG_FORTIFY_SOURCE
325 #define memset(s, c, count) __builtin_memset(s, c, count)
327 #define memset(s, c, count) \
328 (__builtin_constant_p(c) \
329 ? __constant_c_x_memset((s), (0x01010101UL * (unsigned char)(c)), \
331 : __memset((s), (c), (count)))
333 #endif /* !CONFIG_FORTIFY_SOURCE */
335 #define __HAVE_ARCH_MEMSET16
336 static inline void *memset16(uint16_t *s
, uint16_t v
, size_t n
)
339 asm volatile("rep\n\t"
341 : "=&c" (d0
), "=&D" (d1
)
342 : "a" (v
), "1" (s
), "0" (n
)
347 #define __HAVE_ARCH_MEMSET32
348 static inline void *memset32(uint32_t *s
, uint32_t v
, size_t n
)
351 asm volatile("rep\n\t"
353 : "=&c" (d0
), "=&D" (d1
)
354 : "a" (v
), "1" (s
), "0" (n
)
360 * find the first occurrence of byte 'c', or 1 past the area if none
362 #define __HAVE_ARCH_MEMSCAN
363 extern void *memscan(void *addr
, int c
, size_t size
);
365 #endif /* __KERNEL__ */
367 #endif /* _ASM_X86_STRING_32_H */