mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
aarch64/strncmp: Use lsr instead of mov+lsr
A lsr can do what the mov and lsr did. (cherry picked from commit b47c3e7637efb77818cbef55dcd0ed1f0ea0ddf1)
This commit is contained in:
parent
e0a0bd3acc
commit
0fc5934ebd
@ -1,3 +1,8 @@
|
||||
2019-09-06 Siddhesh Poyarekar <siddhesh@sourceware.org>
|
||||
|
||||
* sysdeps/aarch64/strncmp.S (strncmp): Use lsr instead of
|
||||
mov + lsr.
|
||||
|
||||
2019-09-06 Siddhesh Poyarekar <siddhesh@sourceware.org>
|
||||
|
||||
* sysdeps/aarch64/strncmp.S (strncmp): Use a separate shift
|
||||
|
@ -208,15 +208,13 @@ L(done):
|
||||
/* Align the SRC1 to a dword by doing a bytewise compare and then do
|
||||
the dword loop. */
|
||||
L(try_misaligned_words):
|
||||
mov limit_wd, limit
|
||||
lsr limit_wd, limit_wd, #3
|
||||
lsr limit_wd, limit, #3
|
||||
cbz count, L(do_misaligned)
|
||||
|
||||
neg count, count
|
||||
and count, count, #7
|
||||
sub limit, limit, count
|
||||
mov limit_wd, limit
|
||||
lsr limit_wd, limit_wd, #3
|
||||
lsr limit_wd, limit, #3
|
||||
|
||||
L(page_end_loop):
|
||||
ldrb data1w, [src1], #1
|
||||
|
Loading…
x
Reference in New Issue
Block a user