]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/s390/strcmp-z900.S
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / s390 / strcmp-z900.S
CommitLineData
0a51f0ac
UD
1/* strcmp - compare two string. 64 bit S/390 version.
2 This file is part of the GNU C Library.
581c785b 3 Copyright (C) 2001-2022 Free Software Foundation, Inc.
0a51f0ac
UD
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
0a51f0ac
UD
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
0a51f0ac 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
0a51f0ac
UD
18
19/* INPUT PARAMETERS
20 %r2 = address of string 1
21 %r3 = address of string 2. */
22
cdab85fe 23#include <ifunc-strcmp.h>
0a51f0ac
UD
24#include "sysdep.h"
25#include "asm-syntax.h"
26
cdab85fe
SL
27#if HAVE_STRCMP_Z900_G5
28# if defined __s390x__
29# define SLGR slgr
30# define LGHI lghi
31# else
32# define SLGR slr
33# define LGHI lhi
34# endif /* ! defined __s390x__ */
35
0a51f0ac 36 .text
cdab85fe
SL
37ENTRY(STRCMP_Z900_G5)
38 SLGR %r0,%r0
0a51f0ac
UD
390: clst %r2,%r3
40 jo 0b
41 jp 1f
42 jm 2f
cdab85fe 43 SLGR %r2,%r2
0a51f0ac 44 br %r14
cdab85fe 451: LGHI %r2,1
0a51f0ac 46 br %r14
cdab85fe 472: LGHI %r2,-1
0a51f0ac 48 br %r14
cdab85fe
SL
49END(STRCMP_Z900_G5)
50
51# if ! HAVE_STRCMP_IFUNC
52strong_alias (STRCMP_Z900_G5, strcmp)
53# endif
54
55# if defined SHARED && IS_IN (libc)
56strong_alias (STRCMP_Z900_G5, __GI_strcmp)
57# endif
58#endif