Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 ARM Ltd |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * 1. Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in the |
| 12 | * documentation and/or other materials provided with the distribution. |
| 13 | * 3. The name of the company may not be used to endorse or promote |
| 14 | * products derived from this software without specific prior written |
| 15 | * permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 18 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 19 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 20 | * IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 22 | * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 23 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 24 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 25 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 26 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
| 28 | |
| 29 | #include <machine/cpu-features.h> |
Elliott Hughes | 851e68a | 2014-02-19 16:53:20 -0800 | [diff] [blame] | 30 | #include <private/bionic_asm.h> |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 31 | |
| 32 | #ifdef __ARMEB__ |
| 33 | #define S2LOMEM lsl |
| 34 | #define S2LOMEMEQ lsleq |
| 35 | #define S2HIMEM lsr |
| 36 | #define MSB 0x000000ff |
| 37 | #define LSB 0xff000000 |
| 38 | #define BYTE0_OFFSET 24 |
| 39 | #define BYTE1_OFFSET 16 |
| 40 | #define BYTE2_OFFSET 8 |
| 41 | #define BYTE3_OFFSET 0 |
| 42 | #else /* not __ARMEB__ */ |
| 43 | #define S2LOMEM lsr |
| 44 | #define S2LOMEMEQ lsreq |
| 45 | #define S2HIMEM lsl |
| 46 | #define BYTE0_OFFSET 0 |
| 47 | #define BYTE1_OFFSET 8 |
| 48 | #define BYTE2_OFFSET 16 |
| 49 | #define BYTE3_OFFSET 24 |
| 50 | #define MSB 0xff000000 |
| 51 | #define LSB 0x000000ff |
| 52 | #endif /* not __ARMEB__ */ |
| 53 | |
| 54 | .syntax unified |
| 55 | |
| 56 | #if defined (__thumb__) |
| 57 | .thumb |
| 58 | .thumb_func |
| 59 | #endif |
| 60 | |
| 61 | ENTRY(strcmp) |
| 62 | /* Use LDRD whenever possible. */ |
| 63 | |
| 64 | /* The main thing to look out for when comparing large blocks is that |
| 65 | the loads do not cross a page boundary when loading past the index |
| 66 | of the byte with the first difference or the first string-terminator. |
| 67 | |
| 68 | For example, if the strings are identical and the string-terminator |
| 69 | is at index k, byte by byte comparison will not load beyond address |
| 70 | s1+k and s2+k; word by word comparison may load up to 3 bytes beyond |
| 71 | k; double word - up to 7 bytes. If the load of these bytes crosses |
| 72 | a page boundary, it might cause a memory fault (if the page is not mapped) |
| 73 | that would not have happened in byte by byte comparison. |
| 74 | |
| 75 | If an address is (double) word aligned, then a load of a (double) word |
| 76 | from that address will not cross a page boundary. |
| 77 | Therefore, the algorithm below considers word and double-word alignment |
| 78 | of strings separately. */ |
| 79 | |
| 80 | /* High-level description of the algorithm. |
| 81 | |
| 82 | * The fast path: if both strings are double-word aligned, |
| 83 | use LDRD to load two words from each string in every loop iteration. |
| 84 | * If the strings have the same offset from a word boundary, |
| 85 | use LDRB to load and compare byte by byte until |
| 86 | the first string is aligned to a word boundary (at most 3 bytes). |
| 87 | This is optimized for quick return on short unaligned strings. |
| 88 | * If the strings have the same offset from a double-word boundary, |
| 89 | use LDRD to load two words from each string in every loop iteration, as in the fast path. |
| 90 | * If the strings do not have the same offset from a double-word boundary, |
| 91 | load a word from the second string before the loop to initialize the queue. |
| 92 | Use LDRD to load two words from every string in every loop iteration. |
| 93 | Inside the loop, load the second word from the second string only after comparing |
| 94 | the first word, using the queued value, to guarantee safety across page boundaries. |
| 95 | * If the strings do not have the same offset from a word boundary, |
| 96 | use LDR and a shift queue. Order of loads and comparisons matters, |
| 97 | similarly to the previous case. |
| 98 | |
| 99 | * Use UADD8 and SEL to compare words, and use REV and CLZ to compute the return value. |
| 100 | * The only difference between ARM and Thumb modes is the use of CBZ instruction. |
| 101 | * The only difference between big and little endian is the use of REV in little endian |
| 102 | to compute the return value, instead of MOV. |
| 103 | */ |
| 104 | |
| 105 | .macro m_cbz reg label |
| 106 | #ifdef __thumb2__ |
| 107 | cbz \reg, \label |
| 108 | #else /* not defined __thumb2__ */ |
| 109 | cmp \reg, #0 |
| 110 | beq \label |
| 111 | #endif /* not defined __thumb2__ */ |
| 112 | .endm /* m_cbz */ |
| 113 | |
| 114 | .macro m_cbnz reg label |
| 115 | #ifdef __thumb2__ |
| 116 | cbnz \reg, \label |
| 117 | #else /* not defined __thumb2__ */ |
| 118 | cmp \reg, #0 |
| 119 | bne \label |
| 120 | #endif /* not defined __thumb2__ */ |
| 121 | .endm /* m_cbnz */ |
| 122 | |
| 123 | .macro init |
| 124 | /* Macro to save temporary registers and prepare magic values. */ |
| 125 | subs sp, sp, #16 |
Christopher Ferris | bd7fe1d | 2013-08-20 11:20:48 -0700 | [diff] [blame] | 126 | .cfi_def_cfa_offset 16 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 127 | strd r4, r5, [sp, #8] |
Christopher Ferris | bd7fe1d | 2013-08-20 11:20:48 -0700 | [diff] [blame] | 128 | .cfi_rel_offset r4, 0 |
| 129 | .cfi_rel_offset r5, 4 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 130 | strd r6, r7, [sp] |
Christopher Ferris | bd7fe1d | 2013-08-20 11:20:48 -0700 | [diff] [blame] | 131 | .cfi_rel_offset r6, 8 |
| 132 | .cfi_rel_offset r7, 12 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 133 | mvn r6, #0 /* all F */ |
| 134 | mov r7, #0 /* all 0 */ |
| 135 | .endm /* init */ |
| 136 | |
| 137 | .macro magic_compare_and_branch w1 w2 label |
| 138 | /* Macro to compare registers w1 and w2 and conditionally branch to label. */ |
| 139 | cmp \w1, \w2 /* Are w1 and w2 the same? */ |
| 140 | magic_find_zero_bytes \w1 |
| 141 | it eq |
| 142 | cmpeq ip, #0 /* Is there a zero byte in w1? */ |
| 143 | bne \label |
| 144 | .endm /* magic_compare_and_branch */ |
| 145 | |
| 146 | .macro magic_find_zero_bytes w1 |
| 147 | /* Macro to find all-zero bytes in w1, result is in ip. */ |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 148 | uadd8 ip, \w1, r6 |
| 149 | sel ip, r7, r6 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 150 | .endm /* magic_find_zero_bytes */ |
| 151 | |
| 152 | .macro setup_return w1 w2 |
| 153 | #ifdef __ARMEB__ |
| 154 | mov r1, \w1 |
| 155 | mov r2, \w2 |
| 156 | #else /* not __ARMEB__ */ |
| 157 | rev r1, \w1 |
| 158 | rev r2, \w2 |
| 159 | #endif /* not __ARMEB__ */ |
| 160 | .endm /* setup_return */ |
| 161 | |
| 162 | pld [r0, #0] |
| 163 | pld [r1, #0] |
| 164 | |
| 165 | /* Are both strings double-word aligned? */ |
| 166 | orr ip, r0, r1 |
| 167 | tst ip, #7 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 168 | bne .L_do_align |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 169 | |
| 170 | /* Fast path. */ |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 171 | .save {r4-r7} |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 172 | init |
| 173 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 174 | .L_doubleword_aligned: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 175 | |
| 176 | /* Get here when the strings to compare are double-word aligned. */ |
| 177 | /* Compare two words in every iteration. */ |
| 178 | .p2align 2 |
| 179 | 2: |
| 180 | pld [r0, #16] |
| 181 | pld [r1, #16] |
| 182 | |
| 183 | /* Load the next double-word from each string. */ |
| 184 | ldrd r2, r3, [r0], #8 |
| 185 | ldrd r4, r5, [r1], #8 |
| 186 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 187 | magic_compare_and_branch w1=r2, w2=r4, label=.L_return_24 |
| 188 | magic_compare_and_branch w1=r3, w2=r5, label=.L_return_35 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 189 | b 2b |
| 190 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 191 | .L_do_align: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 192 | /* Is the first string word-aligned? */ |
| 193 | ands ip, r0, #3 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 194 | beq .L_word_aligned_r0 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 195 | |
| 196 | /* Fast compare byte by byte until the first string is word-aligned. */ |
| 197 | /* The offset of r0 from a word boundary is in ip. Thus, the number of bytes |
| 198 | to read until the next word boundary is 4-ip. */ |
| 199 | bic r0, r0, #3 |
| 200 | ldr r2, [r0], #4 |
| 201 | lsls ip, ip, #31 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 202 | beq .L_byte2 |
| 203 | bcs .L_byte3 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 204 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 205 | .L_byte1: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 206 | ldrb ip, [r1], #1 |
| 207 | uxtb r3, r2, ror #BYTE1_OFFSET |
| 208 | subs ip, r3, ip |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 209 | bne .L_fast_return |
| 210 | m_cbz reg=r3, label=.L_fast_return |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 211 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 212 | .L_byte2: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 213 | ldrb ip, [r1], #1 |
| 214 | uxtb r3, r2, ror #BYTE2_OFFSET |
| 215 | subs ip, r3, ip |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 216 | bne .L_fast_return |
| 217 | m_cbz reg=r3, label=.L_fast_return |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 218 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 219 | .L_byte3: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 220 | ldrb ip, [r1], #1 |
| 221 | uxtb r3, r2, ror #BYTE3_OFFSET |
| 222 | subs ip, r3, ip |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 223 | bne .L_fast_return |
| 224 | m_cbnz reg=r3, label=.L_word_aligned_r0 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 225 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 226 | .L_fast_return: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 227 | mov r0, ip |
| 228 | bx lr |
| 229 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 230 | .L_word_aligned_r0: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 231 | init |
| 232 | /* The first string is word-aligned. */ |
| 233 | /* Is the second string word-aligned? */ |
| 234 | ands ip, r1, #3 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 235 | bne .L_strcmp_unaligned |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 236 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 237 | .L_word_aligned: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 238 | /* The strings are word-aligned. */ |
| 239 | /* Is the first string double-word aligned? */ |
| 240 | tst r0, #4 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 241 | beq .L_doubleword_aligned_r0 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 242 | |
| 243 | /* If r0 is not double-word aligned yet, align it by loading |
| 244 | and comparing the next word from each string. */ |
| 245 | ldr r2, [r0], #4 |
| 246 | ldr r4, [r1], #4 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 247 | magic_compare_and_branch w1=r2 w2=r4 label=.L_return_24 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 248 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 249 | .L_doubleword_aligned_r0: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 250 | /* Get here when r0 is double-word aligned. */ |
| 251 | /* Is r1 doubleword_aligned? */ |
| 252 | tst r1, #4 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 253 | beq .L_doubleword_aligned |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 254 | |
| 255 | /* Get here when the strings to compare are word-aligned, |
| 256 | r0 is double-word aligned, but r1 is not double-word aligned. */ |
| 257 | |
| 258 | /* Initialize the queue. */ |
| 259 | ldr r5, [r1], #4 |
| 260 | |
| 261 | /* Compare two words in every iteration. */ |
| 262 | .p2align 2 |
| 263 | 3: |
| 264 | pld [r0, #16] |
| 265 | pld [r1, #16] |
| 266 | |
| 267 | /* Load the next double-word from each string and compare. */ |
| 268 | ldrd r2, r3, [r0], #8 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 269 | magic_compare_and_branch w1=r2 w2=r5 label=.L_return_25 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 270 | ldrd r4, r5, [r1], #8 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 271 | magic_compare_and_branch w1=r3 w2=r4 label=.L_return_34 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 272 | b 3b |
| 273 | |
| 274 | .macro miscmp_word offsetlo offsethi |
| 275 | /* Macro to compare misaligned strings. */ |
| 276 | /* r0, r1 are word-aligned, and at least one of the strings |
| 277 | is not double-word aligned. */ |
| 278 | /* Compare one word in every loop iteration. */ |
| 279 | /* OFFSETLO is the original bit-offset of r1 from a word-boundary, |
| 280 | OFFSETHI is 32 - OFFSETLO (i.e., offset from the next word). */ |
| 281 | |
| 282 | /* Initialize the shift queue. */ |
| 283 | ldr r5, [r1], #4 |
| 284 | |
| 285 | /* Compare one word from each string in every loop iteration. */ |
| 286 | .p2align 2 |
| 287 | 7: |
| 288 | ldr r3, [r0], #4 |
| 289 | S2LOMEM r5, r5, #\offsetlo |
| 290 | magic_find_zero_bytes w1=r3 |
| 291 | cmp r7, ip, S2HIMEM #\offsetlo |
| 292 | and r2, r3, r6, S2LOMEM #\offsetlo |
| 293 | it eq |
| 294 | cmpeq r2, r5 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 295 | bne .L_return_25 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 296 | ldr r5, [r1], #4 |
| 297 | cmp ip, #0 |
| 298 | eor r3, r2, r3 |
| 299 | S2HIMEM r2, r5, #\offsethi |
| 300 | it eq |
| 301 | cmpeq r3, r2 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 302 | bne .L_return_32 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 303 | b 7b |
| 304 | .endm /* miscmp_word */ |
| 305 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 306 | .L_strcmp_unaligned: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 307 | /* r0 is word-aligned, r1 is at offset ip from a word. */ |
| 308 | /* Align r1 to the (previous) word-boundary. */ |
| 309 | bic r1, r1, #3 |
| 310 | |
| 311 | /* Unaligned comparison word by word using LDRs. */ |
| 312 | cmp ip, #2 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 313 | beq .L_miscmp_word_16 /* If ip == 2. */ |
| 314 | bge .L_miscmp_word_24 /* If ip == 3. */ |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 315 | miscmp_word offsetlo=8 offsethi=24 /* If ip == 1. */ |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 316 | .L_miscmp_word_24: miscmp_word offsetlo=24 offsethi=8 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 317 | |
| 318 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 319 | .L_return_32: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 320 | setup_return w1=r3, w2=r2 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 321 | b .L_do_return |
| 322 | .L_return_34: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 323 | setup_return w1=r3, w2=r4 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 324 | b .L_do_return |
| 325 | .L_return_25: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 326 | setup_return w1=r2, w2=r5 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 327 | b .L_do_return |
| 328 | .L_return_35: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 329 | setup_return w1=r3, w2=r5 |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 330 | b .L_do_return |
| 331 | .L_return_24: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 332 | setup_return w1=r2, w2=r4 |
| 333 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 334 | .L_do_return: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 335 | |
| 336 | #ifdef __ARMEB__ |
| 337 | mov r0, ip |
| 338 | #else /* not __ARMEB__ */ |
| 339 | rev r0, ip |
| 340 | #endif /* not __ARMEB__ */ |
| 341 | |
| 342 | /* Restore temporaries early, before computing the return value. */ |
| 343 | ldrd r6, r7, [sp] |
| 344 | ldrd r4, r5, [sp, #8] |
| 345 | adds sp, sp, #16 |
Christopher Ferris | bd7fe1d | 2013-08-20 11:20:48 -0700 | [diff] [blame] | 346 | .cfi_def_cfa_offset 0 |
| 347 | .cfi_restore r4 |
| 348 | .cfi_restore r5 |
| 349 | .cfi_restore r6 |
| 350 | .cfi_restore r7 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 351 | |
| 352 | /* There is a zero or a different byte between r1 and r2. */ |
| 353 | /* r0 contains a mask of all-zero bytes in r1. */ |
| 354 | /* Using r0 and not ip here because cbz requires low register. */ |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 355 | m_cbz reg=r0, label=.L_compute_return_value |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 356 | clz r0, r0 |
| 357 | /* r0 contains the number of bits on the left of the first all-zero byte in r1. */ |
| 358 | rsb r0, r0, #24 |
| 359 | /* Here, r0 contains the number of bits on the right of the first all-zero byte in r1. */ |
| 360 | lsr r1, r1, r0 |
| 361 | lsr r2, r2, r0 |
| 362 | |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 363 | .L_compute_return_value: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 364 | movs r0, #1 |
| 365 | cmp r1, r2 |
| 366 | /* The return value is computed as follows. |
| 367 | If r1>r2 then (C==1 and Z==0) and LS doesn't hold and r0 is #1 at return. |
| 368 | If r1<r2 then (C==0 and Z==0) and we execute SBC with carry_in=0, |
| 369 | which means r0:=r0-r0-1 and r0 is #-1 at return. |
| 370 | If r1=r2 then (C==1 and Z==1) and we execute SBC with carry_in=1, |
| 371 | which means r0:=r0-r0 and r0 is #0 at return. |
| 372 | (C==0 and Z==1) cannot happen because the carry bit is "not borrow". */ |
| 373 | it ls |
| 374 | sbcls r0, r0, r0 |
| 375 | bx lr |
| 376 | |
| 377 | /* The code from the previous version of strcmp.S handles this |
| 378 | * particular case (the second string is 2 bytes off a word alignment) |
| 379 | * faster than any current version. In this very specific case, use the |
| 380 | * previous version. See bionic/libc/arch-arm/cortex-a15/bionic/strcmp.S |
| 381 | * for the unedited version of this code. |
| 382 | */ |
Christopher Ferris | a57c9c0 | 2013-08-21 09:41:12 -0700 | [diff] [blame] | 383 | .L_miscmp_word_16: |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 384 | wp1 .req r0 |
| 385 | wp2 .req r1 |
| 386 | b1 .req r2 |
| 387 | w1 .req r4 |
| 388 | w2 .req r5 |
| 389 | t1 .req ip |
| 390 | @ r3 is scratch |
| 391 | |
| 392 | /* At this point, wp1 (r0) has already been word-aligned. */ |
| 393 | 2: |
| 394 | mov b1, #1 |
| 395 | orr b1, b1, b1, lsl #8 |
| 396 | orr b1, b1, b1, lsl #16 |
| 397 | |
| 398 | and t1, wp2, #3 |
| 399 | bic wp2, wp2, #3 |
| 400 | ldr w1, [wp1], #4 |
| 401 | ldr w2, [wp2], #4 |
| 402 | |
| 403 | /* Critical inner Loop: Block with 2 bytes initial overlap */ |
| 404 | .p2align 2 |
| 405 | 2: |
| 406 | S2HIMEM t1, w1, #16 |
| 407 | sub r3, w1, b1 |
| 408 | S2LOMEM t1, t1, #16 |
| 409 | bic r3, r3, w1 |
| 410 | cmp t1, w2, S2LOMEM #16 |
| 411 | bne 4f |
| 412 | ands r3, r3, b1, lsl #7 |
| 413 | it eq |
| 414 | ldreq w2, [wp2], #4 |
| 415 | bne 5f |
| 416 | eor t1, t1, w1 |
| 417 | cmp t1, w2, S2HIMEM #16 |
| 418 | bne 6f |
| 419 | ldr w1, [wp1], #4 |
| 420 | b 2b |
| 421 | |
| 422 | 5: |
| 423 | #ifdef __ARMEB__ |
| 424 | /* The syndrome value may contain false ones if the string ends |
| 425 | * with the bytes 0x01 0x00 |
| 426 | */ |
| 427 | tst w1, #0xff000000 |
| 428 | it ne |
| 429 | tstne w1, #0x00ff0000 |
| 430 | beq 7f |
| 431 | #else |
| 432 | lsls r3, r3, #16 |
| 433 | bne 7f |
| 434 | #endif |
| 435 | ldrh w2, [wp2] |
| 436 | S2LOMEM t1, w1, #16 |
| 437 | #ifdef __ARMEB__ |
| 438 | lsl w2, w2, #16 |
| 439 | #endif |
| 440 | b 8f |
| 441 | |
| 442 | 6: |
| 443 | S2HIMEM w2, w2, #16 |
| 444 | S2LOMEM t1, w1, #16 |
| 445 | 4: |
| 446 | S2LOMEM w2, w2, #16 |
| 447 | b 8f |
| 448 | |
| 449 | 7: |
| 450 | mov r0, #0 |
| 451 | |
| 452 | /* Restore registers and stack. */ |
| 453 | ldrd r6, r7, [sp] |
| 454 | ldrd r4, r5, [sp, #8] |
| 455 | adds sp, sp, #16 |
Christopher Ferris | bd7fe1d | 2013-08-20 11:20:48 -0700 | [diff] [blame] | 456 | .cfi_def_cfa_offset 0 |
| 457 | .cfi_restore r4 |
| 458 | .cfi_restore r5 |
| 459 | .cfi_restore r6 |
| 460 | .cfi_restore r7 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 461 | |
| 462 | bx lr |
| 463 | |
| 464 | 8: |
| 465 | and r2, t1, #LSB |
| 466 | and r0, w2, #LSB |
| 467 | cmp r0, #1 |
| 468 | it cs |
| 469 | cmpcs r0, r2 |
| 470 | itt eq |
| 471 | S2LOMEMEQ t1, t1, #8 |
| 472 | S2LOMEMEQ w2, w2, #8 |
| 473 | beq 8b |
| 474 | sub r0, r2, r0 |
| 475 | |
| 476 | /* Restore registers and stack. */ |
| 477 | ldrd r6, r7, [sp] |
| 478 | ldrd r4, r5, [sp, #8] |
| 479 | adds sp, sp, #16 |
Christopher Ferris | bd7fe1d | 2013-08-20 11:20:48 -0700 | [diff] [blame] | 480 | .cfi_def_cfa_offset 0 |
| 481 | .cfi_restore r4 |
| 482 | .cfi_restore r5 |
| 483 | .cfi_restore r6 |
| 484 | .cfi_restore r7 |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 485 | |
| 486 | bx lr |
Christopher Ferris | 31dea25 | 2013-03-08 16:50:31 -0800 | [diff] [blame] | 487 | END(strcmp) |