mirror of git://git.musl-libc.org/musl
arm: add HWCAP_ARM_ hwcap macros
Glibc renamed the linux uapi HWCAP_* macros to HWCAP_ARM_* so have both variants in case some code depends on it. (The HWCAP2_ macros are not defined in glibc currently so those only have the linux uapi variant.)
This commit is contained in:
parent
06fbefd100
commit
8459c6f264
|
@ -27,3 +27,27 @@
|
||||||
#define HWCAP2_SHA1 (1 << 2)
|
#define HWCAP2_SHA1 (1 << 2)
|
||||||
#define HWCAP2_SHA2 (1 << 3)
|
#define HWCAP2_SHA2 (1 << 3)
|
||||||
#define HWCAP2_CRC32 (1 << 4)
|
#define HWCAP2_CRC32 (1 << 4)
|
||||||
|
|
||||||
|
#define HWCAP_ARM_SWP (1 << 0)
|
||||||
|
#define HWCAP_ARM_HALF (1 << 1)
|
||||||
|
#define HWCAP_ARM_THUMB (1 << 2)
|
||||||
|
#define HWCAP_ARM_26BIT (1 << 3)
|
||||||
|
#define HWCAP_ARM_FAST_MULT (1 << 4)
|
||||||
|
#define HWCAP_ARM_FPA (1 << 5)
|
||||||
|
#define HWCAP_ARM_VFP (1 << 6)
|
||||||
|
#define HWCAP_ARM_EDSP (1 << 7)
|
||||||
|
#define HWCAP_ARM_JAVA (1 << 8)
|
||||||
|
#define HWCAP_ARM_IWMMXT (1 << 9)
|
||||||
|
#define HWCAP_ARM_CRUNCH (1 << 10)
|
||||||
|
#define HWCAP_ARM_THUMBEE (1 << 11)
|
||||||
|
#define HWCAP_ARM_NEON (1 << 12)
|
||||||
|
#define HWCAP_ARM_VFPv3 (1 << 13)
|
||||||
|
#define HWCAP_ARM_VFPv3D16 (1 << 14)
|
||||||
|
#define HWCAP_ARM_TLS (1 << 15)
|
||||||
|
#define HWCAP_ARM_VFPv4 (1 << 16)
|
||||||
|
#define HWCAP_ARM_IDIVA (1 << 17)
|
||||||
|
#define HWCAP_ARM_IDIVT (1 << 18)
|
||||||
|
#define HWCAP_ARM_VFPD32 (1 << 19)
|
||||||
|
#define HWCAP_ARM_IDIV (HWCAP_ARM_IDIVA | HWCAP_ARM_IDIVT)
|
||||||
|
#define HWCAP_ARM_LPAE (1 << 20)
|
||||||
|
#define HWCAP_ARM_EVTSTRM (1 << 21)
|
||||||
|
|
Loading…
Reference in New Issue