1 #ifndef _I386_STRING_H_
2 #define _I386_STRING_H_
5 #include <linux/config.h>
7 * On a 486 or Pentium, we are better off not using the
8 * byte string operations. But on a 386 or a PPro the
9 * byte string ops are faster than doing it by hand
10 * (MUCH faster on a Pentium).
14 * This string-include defines all string functions as inline
15 * functions. Use gcc. It also assumes ds=es=data space, this should be
16 * normal. Most of the string-functions are rather heavily hand-optimized,
17 * see especially strsep,strstr,str[c]spn. They should work, but are not
18 * very easy to understand. Everything is done entirely within the register
19 * set, making the functions fast and clean. String instructions have been
20 * used through-out, making for "slightly" unclear code :-)
22 * NO Copyright (C) 1991, 1992 Linus Torvalds,
23 * consider these trivial functions to be PD.
26 /* AK: in fact I bet it would be better to move this stuff all out of line.
29 #define __HAVE_ARCH_STRCPY
30 static inline char * strcpy(char * dest
,const char *src
)
38 : "=&S" (d0
), "=&D" (d1
), "=&a" (d2
)
39 :"0" (src
),"1" (dest
) : "memory");
43 #define __HAVE_ARCH_STRNCPY
44 static inline char * strncpy(char * dest
,const char *src
,size_t count
)
57 : "=&S" (d0
), "=&D" (d1
), "=&c" (d2
), "=&a" (d3
)
58 :"0" (src
),"1" (dest
),"2" (count
) : "memory");
62 #define __HAVE_ARCH_STRCAT
63 static inline char * strcat(char * dest
,const char * src
)
74 : "=&S" (d0
), "=&D" (d1
), "=&a" (d2
), "=&c" (d3
)
75 : "0" (src
), "1" (dest
), "2" (0), "3" (0xffffffffu
):"memory");
79 #define __HAVE_ARCH_STRNCAT
80 static inline char * strncat(char * dest
,const char * src
,size_t count
)
96 : "=&S" (d0
), "=&D" (d1
), "=&a" (d2
), "=&c" (d3
)
97 : "0" (src
),"1" (dest
),"2" (0),"3" (0xffffffffu
), "g" (count
)
102 #define __HAVE_ARCH_STRCMP
103 static inline int strcmp(const char * cs
,const char * ct
)
107 __asm__
__volatile__(
111 "testb %%al,%%al\n\t"
113 "xorl %%eax,%%eax\n\t"
115 "2:\tsbbl %%eax,%%eax\n\t"
118 :"=a" (__res
), "=&S" (d0
), "=&D" (d1
)
123 #define __HAVE_ARCH_STRNCMP
124 static inline int strncmp(const char * cs
,const char * ct
,size_t count
)
128 __asm__
__volatile__(
134 "testb %%al,%%al\n\t"
136 "2:\txorl %%eax,%%eax\n\t"
138 "3:\tsbbl %%eax,%%eax\n\t"
141 :"=a" (__res
), "=&S" (d0
), "=&D" (d1
), "=&c" (d2
)
142 :"1" (cs
),"2" (ct
),"3" (count
));
146 #define __HAVE_ARCH_STRCHR
147 static inline char * strchr(const char * s
, int c
)
150 register char * __res
;
151 __asm__
__volatile__(
156 "testb %%al,%%al\n\t"
161 :"=a" (__res
), "=&S" (d0
) : "1" (s
),"0" (c
));
165 #define __HAVE_ARCH_STRRCHR
166 static inline char * strrchr(const char * s
, int c
)
169 register char * __res
;
170 __asm__
__volatile__(
175 "leal -1(%%esi),%0\n"
176 "2:\ttestb %%al,%%al\n\t"
178 :"=g" (__res
), "=&S" (d0
), "=&a" (d1
) :"0" (0),"1" (s
),"2" (c
));
182 #define __HAVE_ARCH_STRLEN
183 static inline size_t strlen(const char * s
)
187 __asm__
__volatile__(
192 :"=c" (__res
), "=&D" (d0
) :"1" (s
),"a" (0), "0" (0xffffffffu
));
196 static inline void * __memcpy(void * to
, const void * from
, size_t n
)
199 __asm__
__volatile__(
203 #if 1 /* want to pay 2 byte penalty for a chance to skip microcoded rep? */
208 : "=&c" (d0
), "=&D" (d1
), "=&S" (d2
)
209 : "0" (n
/4), "g" (n
), "1" ((long) to
), "2" ((long) from
)
215 * This looks ugly, but the compiler can optimize it totally,
216 * as the count is constant.
218 static inline void * __constant_memcpy(void * to
, const void * from
, size_t n
)
222 #if 1 /* want to do small copies with non-string ops? */
224 case 1: *(char*)to
= *(char*)from
; return to
;
225 case 2: *(short*)to
= *(short*)from
; return to
;
226 case 4: *(int*)to
= *(int*)from
; return to
;
227 #if 1 /* including those doable with two moves? */
228 case 3: *(short*)to
= *(short*)from
;
229 *((char*)to
+2) = *((char*)from
+2); return to
;
230 case 5: *(int*)to
= *(int*)from
;
231 *((char*)to
+4) = *((char*)from
+4); return to
;
232 case 6: *(int*)to
= *(int*)from
;
233 *((short*)to
+2) = *((short*)from
+2); return to
;
234 case 8: *(int*)to
= *(int*)from
;
235 *((int*)to
+1) = *((int*)from
+1); return to
;
242 /* large block: use rep prefix */
244 __asm__
__volatile__(
246 : "=&c" (ecx
), "=&D" (edi
), "=&S" (esi
)
247 : "0" (n
/4), "1" (edi
),"2" (esi
)
251 /* small block: don't clobber ecx + smaller code */
252 if (n
>= 4*4) __asm__
__volatile__("movsl"
253 :"=&D"(edi
),"=&S"(esi
):"0"(edi
),"1"(esi
):"memory");
254 if (n
>= 3*4) __asm__
__volatile__("movsl"
255 :"=&D"(edi
),"=&S"(esi
):"0"(edi
),"1"(esi
):"memory");
256 if (n
>= 2*4) __asm__
__volatile__("movsl"
257 :"=&D"(edi
),"=&S"(esi
):"0"(edi
),"1"(esi
):"memory");
258 if (n
>= 1*4) __asm__
__volatile__("movsl"
259 :"=&D"(edi
),"=&S"(esi
):"0"(edi
),"1"(esi
):"memory");
264 case 1: __asm__
__volatile__("movsb"
265 :"=&D"(edi
),"=&S"(esi
):"0"(edi
),"1"(esi
):"memory");
267 case 2: __asm__
__volatile__("movsw"
268 :"=&D"(edi
),"=&S"(esi
):"0"(edi
),"1"(esi
):"memory");
270 default: __asm__
__volatile__("movsw\n\tmovsb"
271 :"=&D"(edi
),"=&S"(esi
):"0"(edi
),"1"(esi
):"memory");
276 #define __HAVE_ARCH_MEMCPY
278 #ifdef CONFIG_X86_USE_3DNOW
283 * This CPU favours 3DNow strongly (eg AMD Athlon)
286 static inline void * __constant_memcpy3d(void * to
, const void * from
, size_t len
)
289 return __constant_memcpy(to
, from
, len
);
290 return _mmx_memcpy(to
, from
, len
);
293 static __inline__
void *__memcpy3d(void *to
, const void *from
, size_t len
)
296 return __memcpy(to
, from
, len
);
297 return _mmx_memcpy(to
, from
, len
);
300 #define memcpy(t, f, n) \
301 (__builtin_constant_p(n) ? \
302 __constant_memcpy3d((t),(f),(n)) : \
303 __memcpy3d((t),(f),(n)))
311 #define memcpy(t, f, n) \
312 (__builtin_constant_p(n) ? \
313 __constant_memcpy((t),(f),(n)) : \
314 __memcpy((t),(f),(n)))
318 #define __HAVE_ARCH_MEMMOVE
319 void *memmove(void * dest
,const void * src
, size_t n
);
321 #define memcmp __builtin_memcmp
323 #define __HAVE_ARCH_MEMCHR
324 static inline void * memchr(const void * cs
,int c
,size_t count
)
327 register void * __res
;
330 __asm__
__volatile__(
336 :"=D" (__res
), "=&c" (d0
) : "a" (c
),"0" (cs
),"1" (count
));
340 static inline void * __memset_generic(void * s
, char c
,size_t count
)
343 __asm__
__volatile__(
346 : "=&c" (d0
), "=&D" (d1
)
347 :"a" (c
),"1" (s
),"0" (count
)
352 /* we might want to write optimized versions of these later */
353 #define __constant_count_memset(s,c,count) __memset_generic((s),(c),(count))
356 * memset(x,0,y) is a reasonably common thing to do, so we want to fill
357 * things 32 bits at a time even when we don't know the size of the
358 * area at compile-time..
360 static inline void * __constant_c_memset(void * s
, unsigned long c
, size_t count
)
363 __asm__
__volatile__(
368 "1:\ttestb $1,%b3\n\t"
372 : "=&c" (d0
), "=&D" (d1
)
373 :"a" (c
), "q" (count
), "0" (count
/4), "1" ((long) s
)
378 /* Added by Gertjan van Wingerde to make minix and sysv module work */
379 #define __HAVE_ARCH_STRNLEN
380 static inline size_t strnlen(const char * s
, size_t count
)
384 __asm__
__volatile__(
387 "1:\tcmpb $0,(%0)\n\t"
394 :"=a" (__res
), "=&d" (d0
)
395 :"c" (s
),"1" (count
));
398 /* end of additional stuff */
400 #define __HAVE_ARCH_STRSTR
402 extern char *strstr(const char *cs
, const char *ct
);
405 * This looks horribly ugly, but the compiler can optimize it totally,
406 * as we by now know that both pattern and count is constant..
408 static inline void * __constant_c_and_count_memset(void * s
, unsigned long pattern
, size_t count
)
414 *(unsigned char *)s
= pattern
;
417 *(unsigned short *)s
= pattern
;
420 *(unsigned short *)s
= pattern
;
421 *(2+(unsigned char *)s
) = pattern
;
424 *(unsigned long *)s
= pattern
;
428 __asm__ __volatile__( \
431 : "=&c" (d0), "=&D" (d1) \
432 : "a" (pattern),"0" (count/4),"1" ((long) s) \
437 case 0: COMMON(""); return s
;
438 case 1: COMMON("\n\tstosb"); return s
;
439 case 2: COMMON("\n\tstosw"); return s
;
440 default: COMMON("\n\tstosw\n\tstosb"); return s
;
447 #define __constant_c_x_memset(s, c, count) \
448 (__builtin_constant_p(count) ? \
449 __constant_c_and_count_memset((s),(c),(count)) : \
450 __constant_c_memset((s),(c),(count)))
452 #define __memset(s, c, count) \
453 (__builtin_constant_p(count) ? \
454 __constant_count_memset((s),(c),(count)) : \
455 __memset_generic((s),(c),(count)))
457 #define __HAVE_ARCH_MEMSET
458 #define memset(s, c, count) \
459 (__builtin_constant_p(c) ? \
460 __constant_c_x_memset((s),(0x01010101UL*(unsigned char)(c)),(count)) : \
461 __memset((s),(c),(count)))
464 * find the first occurrence of byte 'c', or 1 past the area if none
466 #define __HAVE_ARCH_MEMSCAN
467 static inline void * memscan(void * addr
, int c
, size_t size
)
471 __asm__("repnz; scasb\n\t"
475 : "=D" (addr
), "=c" (size
)
476 : "0" (addr
), "1" (size
), "a" (c
));
480 #endif /* __KERNEL__ */