can't get_block(NO_DEV) any more
[minix.git] / common / lib / libc / arch / x86_64 / string / memcmp.S
blob86928e5df68c412f64d8c5b9548419ca9ac9be95
1 /*
2  * Written by J.T. Conklin <jtc@NetBSD.org>.
3  * Public domain.
4  * Adapted for NetBSD/x86_64 by Frank van der Linden <fvdl@wasabisystems.com>
5  */
7 #include <machine/asm.h>
9 #if defined(LIBC_SCCS)
10         RCSID("$NetBSD: memcmp.S,v 1.2 2007/11/12 18:41:59 ad Exp $")
11 #endif
13 ENTRY(memcmp)
14         movq    %rdx,%rcx               /* compare by longs */
15         shrq    $3,%rcx
16         repe
17         cmpsq
18         jne     L5                      /* do we match so far? */
20         movq    %rdx,%rcx               /* compare remainder by bytes */
21         andq    $7,%rcx
22         repe
23         cmpsb
24         jne     L6                      /* do we match? */
26         xorl    %eax,%eax               /* we match, return zero        */
27         ret
29 L5:     movl    $8,%ecx                 /* We know that one of the next */
30         subq    %rcx,%rdi               /* eight pairs of bytes do not  */
31         subq    %rcx,%rsi               /* match.                       */
32         repe
33         cmpsb
34 L6:     xorl    %eax,%eax               /* Perform unsigned comparison  */
35         movb    -1(%rdi),%al
36         xorl    %edx,%edx
37         movb    -1(%rsi),%dl
38         subl    %edx,%eax
39         ret