]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re-core/uclibc/lib/contrib/uclibc/libc/string/x86_64/strcmp.S
Update
[l4.git] / l4 / pkg / l4re-core / uclibc / lib / contrib / uclibc / libc / string / x86_64 / strcmp.S
1 /* Highly optimized version for x86-64.
2    Copyright (C) 1999, 2000, 2002, 2003, 2005 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Based on i686 version contributed by Ulrich Drepper
5    <drepper@cygnus.com>, 1999.
6
7    The GNU C Library is free software; you can redistribute it and/or
8    modify it under the terms of the GNU Lesser General Public
9    License as published by the Free Software Foundation; either
10    version 2.1 of the License, or (at your option) any later version.
11
12    The GNU C Library is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Lesser General Public License for more details.
16
17    You should have received a copy of the GNU Lesser General Public
18    License along with the GNU C Library; if not, see
19    <http://www.gnu.org/licenses/>.  */
20
21 #include "_glibc_inc.h"
22
23         .text
24 ENTRY (BP_SYM (strcmp))
25 L(oop): movb    (%rdi), %al
26         cmpb    (%rsi), %al
27         jne     L(neq)
28         incq    %rdi
29         incq    %rsi
30         testb   %al, %al
31         jnz     L(oop)
32
33         xorl    %eax, %eax
34         ret
35
36 L(neq): movl    $1, %eax
37         movl    $-1, %ecx
38         cmovbl  %ecx, %eax
39         ret
40 END (BP_SYM (strcmp))
41
42 libc_hidden_def(strcmp)
43 #ifndef __UCLIBC_HAS_LOCALE__
44 strong_alias(strcmp,strcoll)
45 libc_hidden_def(strcoll)
46 #endif