1 /* Optimized strcasecmp implementation for PowerPC64.
2 Copyright (C) 2011-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
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.
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
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
20 #include <locale-defines.h>
22 /* int [r3] strcasecmp (const char *s1 [r3], const char *s2 [r4] )
24 or if defined USE_IN_EXTENDED_LOCALE_MODEL:
26 int [r3] strcasecmp_l (const char *s1 [r3], const char *s2 [r4],
27 __locale_t loc [r5]) */
30 # define __STRCMP __strcasecmp
31 # define STRCMP strcasecmp
35 #ifndef USE_IN_EXTENDED_LOCALE_MODEL
41 #define rRTN r3 /* Return value */
42 #define rSTR1 r5 /* 1st string */
43 #define rSTR2 r4 /* 2nd string */
44 #define rLOCARG r5 /* 3rd argument: locale_t */
45 #define rCHAR1 r6 /* Byte read from 1st string */
46 #define rCHAR2 r7 /* Byte read from 2nd string */
47 #define rADDR1 r8 /* Address of tolower(rCHAR1) */
48 #define rADDR2 r12 /* Address of tolower(rCHAR2) */
49 #define rLWR1 r8 /* Word tolower(rCHAR1) */
50 #define rLWR2 r12 /* Word tolower(rCHAR2) */
52 #define rLOC r11 /* Default locale address */
55 #ifndef USE_IN_EXTENDED_LOCALE_MODEL
56 ld rTMP, __libc_tsd_LOCALE@got@tprel(r2)
57 add rLOC, rTMP, __libc_tsd_LOCALE@tls
62 ld rLOC, LOCALE_CTYPE_TOLOWER(rLOC)
68 /* Unrolling loop for POWER: loads are done with 'lbz' plus
69 offset and string descriptors are only updated in the end
72 lbz rCHAR1, 0(rSTR1) /* Load char from s1 */
73 lbz rCHAR2, 0(rSTR2) /* Load char from s2 */
75 cmpdi rCHAR1, 0 /* *s1 == '\0' ? */
76 sldi rADDR1, rCHAR1, 2 /* Calculate address for tolower(*s1) */
77 sldi rADDR2, rCHAR2, 2 /* Calculate address for tolower(*s2) */
78 lwzx rLWR1, rLOC, rADDR1 /* Load tolower(*s1) */
79 lwzx rLWR2, rLOC, rADDR2 /* Load tolower(*s2) */
80 cmpw cr1, rLWR1, rLWR2 /* r = tolower(*s1) == tolower(*s2) ? */
81 crorc 4*cr1+eq,eq,4*cr1+eq /* (*s1 != '\0') || (r == 1) */
86 sldi rADDR1, rCHAR1, 2
87 sldi rADDR2, rCHAR2, 2
88 lwzx rLWR1, rLOC, rADDR1
89 lwzx rLWR2, rLOC, rADDR2
90 cmpw cr1, rLWR1, rLWR2
91 crorc 4*cr1+eq,eq,4*cr1+eq
96 sldi rADDR1, rCHAR1, 2
97 sldi rADDR2, rCHAR2, 2
98 lwzx rLWR1, rLOC, rADDR1
99 lwzx rLWR2, rLOC, rADDR2
100 cmpw cr1, rLWR1, rLWR2
101 crorc 4*cr1+eq,eq,4*cr1+eq
106 /* Increment both string descriptors */
109 sldi rADDR1, rCHAR1, 2
110 sldi rADDR2, rCHAR2, 2
111 lwzx rLWR1, rLOC, rADDR1
112 lwzx rLWR2, rLOC, rADDR2
113 cmpw cr1, rLWR1, rLWR2
114 crorc 4*cr1+eq,eq,4*cr1+eq
116 lbz rCHAR1, 0(rSTR1) /* Load char from s1 */
117 lbz rCHAR2, 0(rSTR2) /* Load char from s2 */
120 subf r0, rLWR2, rLWR1
125 weak_alias (__STRCMP, STRCMP)
126 libc_hidden_builtin_def (__STRCMP)