
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
118 lines
1.5 KiB
ArmAsm
118 lines
1.5 KiB
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@NetBSD.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
#if defined(LIBC_SCCS)
|
|
RCSID("$NetBSD: strncmp.S,v 1.15 2014/05/23 02:34:19 uebayasi Exp $")
|
|
#endif
|
|
|
|
/*
|
|
* 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(strncmp)
|
|
pushl %ebx
|
|
movl 8(%esp),%eax
|
|
movl 12(%esp),%ecx
|
|
movl 16(%esp),%edx
|
|
testl %edx,%edx
|
|
jmp L2 /* Jump into the loop! */
|
|
|
|
_ALIGN_TEXT,0x90
|
|
L1: incl %eax
|
|
incl %ecx
|
|
decl %edx
|
|
L2: jz L4 /* strings are equal */
|
|
movb (%eax),%bl
|
|
testb %bl,%bl
|
|
jz L3
|
|
cmpb %bl,(%ecx)
|
|
jne L3
|
|
|
|
incl %eax
|
|
incl %ecx
|
|
decl %edx
|
|
jz L4
|
|
movb (%eax),%bl
|
|
testb %bl,%bl
|
|
jz L3
|
|
cmpb %bl,(%ecx)
|
|
jne L3
|
|
|
|
incl %eax
|
|
incl %ecx
|
|
decl %edx
|
|
jz L4
|
|
movb (%eax),%bl
|
|
testb %bl,%bl
|
|
jz L3
|
|
cmpb %bl,(%ecx)
|
|
jne L3
|
|
|
|
incl %eax
|
|
incl %ecx
|
|
decl %edx
|
|
jz L4
|
|
movb (%eax),%bl
|
|
testb %bl,%bl
|
|
jz L3
|
|
cmpb %bl,(%ecx)
|
|
jne L3
|
|
|
|
incl %eax
|
|
incl %ecx
|
|
decl %edx
|
|
jz L4
|
|
movb (%eax),%bl
|
|
testb %bl,%bl
|
|
jz L3
|
|
cmpb %bl,(%ecx)
|
|
jne L3
|
|
|
|
incl %eax
|
|
incl %ecx
|
|
decl %edx
|
|
jz L4
|
|
movb (%eax),%bl
|
|
testb %bl,%bl
|
|
jz L3
|
|
cmpb %bl,(%ecx)
|
|
jne L3
|
|
|
|
incl %eax
|
|
incl %ecx
|
|
decl %edx
|
|
jz L4
|
|
movb (%eax),%bl
|
|
testb %bl,%bl
|
|
jz L3
|
|
cmpb %bl,(%ecx)
|
|
jne L3
|
|
|
|
incl %eax
|
|
incl %ecx
|
|
decl %edx
|
|
jz L4
|
|
movb (%eax),%bl
|
|
testb %bl,%bl
|
|
jz L3
|
|
cmpb %bl,(%ecx)
|
|
je L1
|
|
|
|
_ALIGN_TEXT,0x90
|
|
L3: movzbl (%eax),%eax /* unsigned comparison */
|
|
movzbl (%ecx),%ecx
|
|
subl %ecx,%eax
|
|
popl %ebx
|
|
ret
|
|
_ALIGN_TEXT,0x90
|
|
L4: xorl %eax,%eax
|
|
popl %ebx
|
|
ret
|
|
END(strncmp)
|