NetBSD/sys/lib/libkern/arch/i386/strcmp.S

85 lines
1.3 KiB
ArmAsm
Raw Normal View History

/*
1995-10-07 12:26:14 +03:00
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
1995-02-05 18:06:43 +03:00
#include <machine/asm.h>
#if defined(LIBC_SCCS)
1995-10-07 12:26:14 +03:00
RCSID("$NetBSD: strcmp.S,v 1.6 1995/10/07 09:27:10 mycroft Exp $")
#endif
/*
1995-10-07 12:26:14 +03:00
* NOTE: I've unrolled the loop eight times: large enough to make a
* significant difference, and small enough not to totally trash the
1994-02-15 16:42:30 +03:00
* cache.
*/
ENTRY(strcmp)
movl 0x04(%esp),%eax
movl 0x08(%esp),%edx
jmp L2 /* Jump into the loop! */
.align 2,0x90
L1: incl %eax
incl %edx
L2: movb (%eax),%cl
testb %cl,%cl /* null terminator??? */
1994-02-15 16:42:30 +03:00
jz L3
cmpb %cl,(%edx) /* chars match??? */
jne L3
incl %eax
incl %edx
movb (%eax),%cl
testb %cl,%cl
1994-02-15 16:42:30 +03:00
jz L3
cmpb %cl,(%edx)
jne L3
incl %eax
incl %edx
movb (%eax),%cl
testb %cl,%cl
1994-02-15 16:42:30 +03:00
jz L3
cmpb %cl,(%edx)
jne L3
incl %eax
incl %edx
movb (%eax),%cl
testb %cl,%cl
1994-02-15 16:42:30 +03:00
jz L3
cmpb %cl,(%edx)
jne L3
incl %eax
incl %edx
movb (%eax),%cl
testb %cl,%cl
1994-02-15 16:42:30 +03:00
jz L3
cmpb %cl,(%edx)
jne L3
incl %eax
incl %edx
movb (%eax),%cl
testb %cl,%cl
1994-02-15 16:42:30 +03:00
jz L3
cmpb %cl,(%edx)
jne L3
incl %eax
incl %edx
movb (%eax),%cl
testb %cl,%cl
1994-02-15 16:42:30 +03:00
jz L3
cmpb %cl,(%edx)
jne L3
incl %eax
incl %edx
movb (%eax),%cl
testb %cl,%cl
1994-02-15 16:42:30 +03:00
jz L3
cmpb %cl,(%edx)
je L1
.align 2, 0x90
1994-02-15 16:42:30 +03:00
L3: movzbl (%eax),%eax /* unsigned comparison */
movzbl (%edx),%edx
subl %edx,%eax
ret