1993-12-04 06:05:16 +03:00
|
|
|
/*
|
1995-10-07 12:26:14 +03:00
|
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
|
|
* Public domain.
|
1993-12-04 06:05:16 +03:00
|
|
|
*/
|
|
|
|
|
1995-02-05 18:06:43 +03:00
|
|
|
#include <machine/asm.h>
|
|
|
|
|
1993-12-04 06:05:16 +03:00
|
|
|
#if defined(LIBC_SCCS)
|
1999-08-23 13:07:35 +04:00
|
|
|
RCSID("$NetBSD: strcpy.S,v 1.8 1999/08/23 09:07:35 kleink Exp $")
|
1993-12-04 06:05:16 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
1995-10-07 12:26:14 +03:00
|
|
|
* NOTE: I've unrolled the loop eight times: large enough to make a
|
1993-12-04 06:05:16 +03:00
|
|
|
* significant difference, and small enough not to totally trash the
|
1994-02-15 16:42:30 +03:00
|
|
|
* cache.
|
1993-12-04 06:05:16 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(strcpy)
|
|
|
|
movl 4(%esp),%ecx /* dst address */
|
|
|
|
movl 8(%esp),%edx /* src address */
|
|
|
|
pushl %ecx /* push dst address */
|
|
|
|
|
1999-08-23 13:07:35 +04:00
|
|
|
_ALIGN_TEXT,0x90
|
1993-12-04 06:05:16 +03:00
|
|
|
L1: movb (%edx),%al /* unroll loop, but not too much */
|
|
|
|
movb %al,(%ecx)
|
|
|
|
testb %al,%al
|
1994-02-15 16:42:30 +03:00
|
|
|
jz L2
|
1993-12-04 06:05:16 +03:00
|
|
|
movb 1(%edx),%al
|
|
|
|
movb %al,1(%ecx)
|
|
|
|
testb %al,%al
|
1994-02-15 16:42:30 +03:00
|
|
|
jz L2
|
1993-12-04 06:05:16 +03:00
|
|
|
movb 2(%edx),%al
|
|
|
|
movb %al,2(%ecx)
|
|
|
|
testb %al,%al
|
1994-02-15 16:42:30 +03:00
|
|
|
jz L2
|
1993-12-04 06:05:16 +03:00
|
|
|
movb 3(%edx),%al
|
|
|
|
movb %al,3(%ecx)
|
|
|
|
testb %al,%al
|
1994-02-15 16:42:30 +03:00
|
|
|
jz L2
|
1993-12-04 06:05:16 +03:00
|
|
|
movb 4(%edx),%al
|
|
|
|
movb %al,4(%ecx)
|
|
|
|
testb %al,%al
|
1994-02-15 16:42:30 +03:00
|
|
|
jz L2
|
1993-12-04 06:05:16 +03:00
|
|
|
movb 5(%edx),%al
|
|
|
|
movb %al,5(%ecx)
|
|
|
|
testb %al,%al
|
1994-02-15 16:42:30 +03:00
|
|
|
jz L2
|
1993-12-04 06:05:16 +03:00
|
|
|
movb 6(%edx),%al
|
|
|
|
movb %al,6(%ecx)
|
|
|
|
testb %al,%al
|
1994-02-15 16:42:30 +03:00
|
|
|
jz L2
|
1993-12-04 06:05:16 +03:00
|
|
|
movb 7(%edx),%al
|
|
|
|
movb %al,7(%ecx)
|
|
|
|
addl $8,%edx
|
|
|
|
addl $8,%ecx
|
|
|
|
testb %al,%al
|
1994-02-15 16:42:30 +03:00
|
|
|
jnz L1
|
1993-12-04 06:05:16 +03:00
|
|
|
L2: popl %eax /* pop dst address */
|
|
|
|
ret
|