]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
aarch64: add HWCAP_ATOMICS to HWCAP_IMPORTANT
authorSzabolcs Nagy <szabolcs.nagy@arm.com>
Thu, 28 Jun 2018 14:30:32 +0000 (15:30 +0100)
committerSzabolcs Nagy <szabolcs.nagy@arm.com>
Fri, 6 Jul 2018 14:58:16 +0000 (15:58 +0100)
This enables searching shared libraries in atomics/ when the hardware
supports LSE atomics of armv8.1 so one can provide optimized variants
of libraries in a portable way.

LSE atomics does not affect library abi, the new instructions can
interoperate with old ones.

I considered the earlier comments on the patch

https://sourceware.org/ml/libc-alpha/2018-04/msg00400.html
https://sourceware.org/ml/libc-alpha/2018-04/msg00625.html

It turns out that the way glibc dynamic linker decides on the search
path is not very flexible: it wants to use hwcap bits and associated
strings.  So some targets reuse hwcap bits for glibc internal purposes
to affect the search logic.  But hwcap is an interface with the kernel,
glibc should not allocate bits in it for its internal logic as that
limits future hwcap extensions and confusing to users who expect to see
hwcap bits in ifunc resolvers.  Instead of rewriting the dynamic linker
path logic (which affects all targets) this patch just uses the existing
mechanism, however this means that the path name has to be the hwcap
name "atomics" and cannot be changed to something more meaningful to
users.

It is hard to tell how much performance benefit this can give, in
principle armv8.1 atomics can be better optimized in the hardware, so it
can make a difference for synchronization heavy code.  On some systems
such multilib setup may be the only viable way to get optimized
libraries used.

* sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h (HWCAP_IMPORTANT): Add
HWCAP_ATOMICS.

ChangeLog
sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h

index 9cb3ddab0353a707709f8919c9e8f46eb9fbc395..b8bf88772b2d9812d6c0e7e5a1b934fd56d46b1c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-07-06  Szabolcs Nagy  <szabolcs.nagy@arm.com>
+
+       * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h (HWCAP_IMPORTANT): Add
+       HWCAP_ATOMICS.
+
 2018-07-06  Szabolcs Nagy  <szabolcs.nagy@arm.com>
 
        * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (init_cpu_features):
index c0dcce15a26d7146fff285f78bf131eab5f722ae..f746f52c8d7dd267f11ddb3e639da864c6287fdb 100644 (file)
@@ -28,7 +28,7 @@
 #define _dl_procinfo(type, word) -1
 
 /* No additional library search paths.  */
-#define HWCAP_IMPORTANT 0
+#define HWCAP_IMPORTANT HWCAP_ATOMICS
 
 static inline const char *
 __attribute__ ((unused))