851e68a240
Our <machine/asm.h> files were modified from upstream, to the extent that no architecture was actually using the upstream ENTRY or END macros, assuming that architecture even had such a macro upstream. This patch moves everyone to the same macros, with just a few tweaks remaining in the <machine/asm.h> files, which no one should now use directly. I've removed most of the unused cruft from the <machine/asm.h> files, though there's still rather a lot in the mips/mips64 ones. Bug: 12229603 Change-Id: I2fff287dc571ac1087abe9070362fb9420d85d6d
83 lines
1.3 KiB
ArmAsm
83 lines
1.3 KiB
ArmAsm
/* $OpenBSD: strcmp.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */
|
|
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <private/bionic_asm.h>
|
|
|
|
/*
|
|
* NOTE: I've unrolled the loop eight times: large enough to make a
|
|
* significant difference, and small enough not to totally trash the
|
|
* 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??? */
|
|
jz L3
|
|
cmpb %cl,(%edx) /* chars match??? */
|
|
jne L3
|
|
incl %eax
|
|
incl %edx
|
|
movb (%eax),%cl
|
|
testb %cl,%cl
|
|
jz L3
|
|
cmpb %cl,(%edx)
|
|
jne L3
|
|
incl %eax
|
|
incl %edx
|
|
movb (%eax),%cl
|
|
testb %cl,%cl
|
|
jz L3
|
|
cmpb %cl,(%edx)
|
|
jne L3
|
|
incl %eax
|
|
incl %edx
|
|
movb (%eax),%cl
|
|
testb %cl,%cl
|
|
jz L3
|
|
cmpb %cl,(%edx)
|
|
jne L3
|
|
incl %eax
|
|
incl %edx
|
|
movb (%eax),%cl
|
|
testb %cl,%cl
|
|
jz L3
|
|
cmpb %cl,(%edx)
|
|
jne L3
|
|
incl %eax
|
|
incl %edx
|
|
movb (%eax),%cl
|
|
testb %cl,%cl
|
|
jz L3
|
|
cmpb %cl,(%edx)
|
|
jne L3
|
|
incl %eax
|
|
incl %edx
|
|
movb (%eax),%cl
|
|
testb %cl,%cl
|
|
jz L3
|
|
cmpb %cl,(%edx)
|
|
jne L3
|
|
incl %eax
|
|
incl %edx
|
|
movb (%eax),%cl
|
|
testb %cl,%cl
|
|
jz L3
|
|
cmpb %cl,(%edx)
|
|
je L1
|
|
.align 2, 0x90
|
|
L3: movzbl (%eax),%eax /* unsigned comparison */
|
|
movzbl (%edx),%edx
|
|
subl %edx,%eax
|
|
ret
|
|
END(strcmp)
|