Martin Storsjö be4f0200ed aarch64: Use regular hwcaps flags instead of HWCAP_CPUID for CPU feature detection on Linux
This makes the code much simpler (especially for adding support
for other instruction set extensions), avoids needing inline
assembly for this feature, and generally is more of the canonical
way to do this.

The CPU feature detection was added in
9c3c716882, using HWCAP_CPUID.

The argument for using that, was that HWCAP_CPUID was added much
earlier in the kernel (in Linux v4.11), while the HWCAP flags for
individual features always come later. This allows detecting support
for new CPU extensions before the kernel exposes information about
them via hwcap flags.

However in practice, there's probably quite little advantage in this.
E.g. HWCAP_SVE was added in Linux v4.15, and HWCAP2_SVE2 was added in
v5.10 - later than HWCAP_CPUID, but there's probably very little
practical cases where one would run a kernel older than that on a CPU
that supports those instructions.

Additionally, we provide our own definitions of the flag values to
check (as they are fixed constants anyway), with names not conflicting
with the ones from system headers. This reduces the number of ifdefs
needed, and allows detecting those features even if building with
userland headers that are lacking the definitions of those flags.

Also, slightly older versions of QEMU, e.g. 6.2 in Ubuntu 22.04,
do expose support for these features via HWCAP flags, but the
emulated cpuid registers are missing the bits for exposing e.g. SVE2
(This issue is fixed in later versions of QEMU though.)

Also drop the ifdef check for whether AT_HWCAP is defined; it was
added to glibc in 1997. AT_HWCAP2 was added in 2013, in glibc 2.18,
which also precedes when aarch64 was commonly used anyway, so
don't guard the use of that with an ifdef.
2024-02-28 22:26:17 +00:00
2021-09-29 21:11:16 +00:00
2024-01-13 14:45:39 +03:00
2024-01-13 14:45:39 +03:00
2024-01-13 14:45:39 +03:00
2024-01-13 14:45:39 +03:00
2024-01-13 14:45:39 +03:00
2024-01-13 14:45:39 +03:00
2018-01-17 18:31:04 +01:00
2021-09-29 21:11:16 +00:00
2024-01-13 14:45:39 +03:00
2023-10-10 09:00:09 +08:00
2023-10-10 09:00:09 +08:00
2004-06-03 19:29:33 +00:00
2024-01-13 14:45:39 +03:00
2015-08-19 01:00:22 +03:00
2024-01-13 14:45:39 +03:00
2024-01-13 14:45:39 +03:00
2024-01-13 14:45:39 +03:00
2024-01-13 14:45:39 +03:00
2024-01-13 14:45:39 +03:00
S
Description
No description provided
8.1 MiB
Languages
C 64.5%
Assembly 33.6%
Perl 0.8%
Python 0.8%
Makefile 0.2%