NetBSD/lib/libc/arch/i386/string/strlen.S

24 lines
543 B
ArmAsm
Raw Normal View History

/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
1994-03-12 04:39:55 +03:00
#include <machine/asm.h>
#if defined(LIBC_SCCS)
RCSID("$Id: strlen.S,v 1.5 1995/04/28 22:54:35 jtc Exp $")
#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