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)
|
1995-10-07 12:26:14 +03:00
|
|
|
RCSID("$NetBSD: strlen.S,v 1.5 1995/10/07 09:27:12 mycroft Exp $")
|
1993-12-04 06:05:16 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
ENTRY(strlen)
|
|
|
|
pushl %edi
|
|
|
|
movl 8(%esp),%edi /* string address */
|
|
|
|
cld /* set search forward */
|
|
|
|
xorl %eax,%eax /* set search for null terminator */
|
|
|
|
movl $-1,%ecx /* set search for lots of characters */
|
|
|
|
repne /* search! */
|
|
|
|
scasb
|
|
|
|
notl %ecx /* get length by taking complement */
|
|
|
|
leal -1(%ecx),%eax /* and subtracting one */
|
|
|
|
popl %edi
|
|
|
|
ret
|