openssl/crypto/modes/asm
David Benjamin 40c24d74de Don't use __ARMEL__/__ARMEB__ in aarch64 assembly
GCC's __ARMEL__ and __ARMEB__ defines denote little- and big-endian arm,
respectively. They are not defined on aarch64, which instead use
__AARCH64EL__ and __AARCH64EB__.

However, OpenSSL's assembly originally used the 32-bit defines on both
platforms and even define __ARMEL__ and __ARMEB__ in arm_arch.h. This is
less portable and can even interfere with other headers, which use
__ARMEL__ to detect little-endian arm.

Over time, the aarch64 assembly has switched to the correct defines,
such as in 32bbb62ea6. This commit
finishes the job: poly1305-armv8.pl needed a fix and the dual-arch
armx.pl files get one more transform to convert from 32-bit to 64-bit.

(There is an even more official endianness detector, __ARM_BIG_ENDIAN in
the Arm C Language Extensions. But I've stuck with the GCC ones here as
that would be a larger change.)

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
(Merged from https://github.com/openssl/openssl/pull/17373)
2022-01-09 07:40:44 +01:00
..
aes-gcm-armv8_64.pl aarch64: support BTI and pointer authentication in assembly 2021-10-01 09:35:38 +02:00
aesni-gcm-x86_64.pl Ignore vendor name in Clang version number. 2020-08-27 20:27:26 -07:00
ghash-alpha.pl Update copyright year 2020-04-23 13:55:52 +01:00
ghash-armv4.pl Update copyright year 2020-04-23 13:55:52 +01:00
ghash-c64xplus.pl Update copyright year 2020-04-23 13:55:52 +01:00
ghash-ia64.pl Update copyright year 2020-04-23 13:55:52 +01:00
ghash-parisc.pl Update copyright year 2020-04-23 13:55:52 +01:00
ghash-s390x.pl Update copyright year 2020-04-23 13:55:52 +01:00
ghash-sparcv9.pl Update copyright year 2021-07-29 15:41:35 +01:00
ghash-x86.pl Update copyright year 2020-04-23 13:55:52 +01:00
ghash-x86_64.pl Ignore vendor name in Clang version number. 2020-08-27 20:27:26 -07:00
ghashp8-ppc.pl Update copyright year 2020-04-23 13:55:52 +01:00
ghashv8-armx.pl Don't use __ARMEL__/__ARMEB__ in aarch64 assembly 2022-01-09 07:40:44 +01:00