diff options
author | Jussi Kivilinna <jussi.kivilinna@iki.fi> | 2019-04-26 19:28:11 +0300 |
---|---|---|
committer | Jussi Kivilinna <jussi.kivilinna@iki.fi> | 2019-04-26 19:28:11 +0300 |
commit | 14c8a593ede42f51f567ed7ba77b53124151aa38 (patch) | |
tree | 03a649e8ee9be5efde4b5a313e521814c059b9af /cipher/Makefile.am | |
parent | b878a986f3ab2c35aff89c7f66f137a91542ed5b (diff) | |
download | libgcrypt-14c8a593ede42f51f567ed7ba77b53124151aa38.tar.gz |
Add 64-bit ARMv8/CE PMULL implementation of CRC
* cipher/Makefile.am: Add 'crc-armv8-ce.c' and
'crc-armv8-aarch64-ce.S'.
* cipher/asm-common-aarch64.h [HAVE_GCC_ASM_CFI_DIRECTIVES]: Add CFI
helper macros.
* cipher/crc-armv8-aarch64-ce.S: New.
* cipher/crc-armv8-ce.c: New.
* cipher/crc.c (USE_ARM_PMULL): New.
(CRC_CONTEXT) [USE_ARM_PMULL]: Add 'use_pmull'.
[USE_ARM_PMULL] (_gcry_crc32_armv8_ce_pmull)
(_gcry_crc24rfc2440_armv8_ce_pmull): New prototypes.
(crc32_init, crc32rfc1510_init, crc24rfc2440_init): Enable ARM PMULL
implementations if supported by HW features.
(crc32_write, crc24rfc2440_write) [USE_ARM_PMULL]: Use ARM PMULL
implementations if enabled.
* configure.ac: Add 'crc-armv8-ce.lo' and 'crc-armv8-aarch64-ce.lo'.
--
Benchmark on Cortex-A53 (at 1104 Mhz):
Before:
| nanosecs/byte mebibytes/sec cycles/byte
CRC32 | 2.89 ns/B 330.2 MiB/s 3.19 c/B
CRC32RFC1510 | 2.89 ns/B 330.2 MiB/s 3.19 c/B
CRC24RFC2440 | 2.72 ns/B 350.8 MiB/s 3.00 c/B
After (crc32 ~8.4x faster, crc24 ~6.8x faster):
| nanosecs/byte mebibytes/sec cycles/byte
CRC32 | 0.341 ns/B 2796 MiB/s 0.377 c/B
CRC32RFC1510 | 0.342 ns/B 2792 MiB/s 0.377 c/B
CRC24RFC2440 | 0.398 ns/B 2396 MiB/s 0.439 c/B
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@iki.fi>
Diffstat (limited to 'cipher/Makefile.am')
-rw-r--r-- | cipher/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cipher/Makefile.am b/cipher/Makefile.am index 3f00ed4a..2acd7cb3 100644 --- a/cipher/Makefile.am +++ b/cipher/Makefile.am @@ -78,7 +78,8 @@ EXTRA_libcipher_la_SOURCES = \ cast5.c cast5-amd64.S cast5-arm.S \ chacha20.c chacha20-amd64-ssse3.S chacha20-amd64-avx2.S \ chacha20-armv7-neon.S chacha20-aarch64.S \ - crc.c crc-intel-pclmul.c \ + crc.c crc-intel-pclmul.c crc-armv8-ce.c \ + crc-armv8-aarch64-ce.S \ des.c des-amd64.S \ dsa.c \ elgamal.c \ |