From: Siddhesh Poyarekar Date: Wed, 13 Dec 2017 13:20:27 +0000 (+0530) Subject: aarch64: Improve strcmp unaligned performance X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f690fafad5013d1f21fd434a4b4f2482128b97c;p=thirdparty%2Fglibc.git aarch64: Improve strcmp unaligned performance Replace the simple byte-wise compare in the misaligned case with a dword compare with page boundary checks in place. For simplicity I've chosen a 4K page boundary so that we don't have to query the actual page size on the system. This results in up to 3x improvement in performance in the unaligned case on falkor and about 2.5x improvement on mustang as measured using bench-strcmp. * sysdeps/aarch64/strcmp.S (misaligned8): Compare dword at a time whenever possible. (cherry picked from commit 2bce01ebbaf8db52ba4a5635eb5744f989cdbf69) --- diff --git a/ChangeLog b/ChangeLog index 20d98f08226..436aee29eab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2019-09-06 Siddhesh Poyarekar + + * sysdeps/aarch64/strcmp.S (misaligned8): Compare dword at a + time whenever possible. + 2019-09-06 Siddhesh Poyarekar * sysdeps/aarch64/memcmp.S: Widen comparison to 16 bytes at a