mirror of
https://github.com/GerbilSoft/zlib-ng.git
synced 2025-06-18 19:45:37 -04:00

ARM64EC is a new ARM64 variant introduced in Windows 11 that uses an ABI similar to AMD64, which allows for better interoperability with emulated AMD64 applications. When enabled in MSVC, it defines _M_AMD64 and _M_ARM64EC, but not _M_ARM64, so we need to check for _M_ARM64EC.
99 lines
2.3 KiB
C
99 lines
2.3 KiB
C
/* crc32_acle.c -- compute the CRC-32 of a data stream
|
|
* Copyright (C) 1995-2006, 2010, 2011, 2012 Mark Adler
|
|
* Copyright (C) 2016 Yang Zhang
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*
|
|
*/
|
|
|
|
#ifdef ARM_ACLE
|
|
#ifdef _MSC_VER
|
|
# include <intrin.h>
|
|
#else
|
|
# include <arm_acle.h>
|
|
#endif
|
|
#include "../../zbuild.h"
|
|
|
|
Z_INTERNAL uint32_t crc32_acle(uint32_t crc, const uint8_t *buf, size_t len) {
|
|
Z_REGISTER uint32_t c;
|
|
Z_REGISTER const uint16_t *buf2;
|
|
Z_REGISTER const uint32_t *buf4;
|
|
|
|
c = ~crc;
|
|
if (len && ((ptrdiff_t)buf & 1)) {
|
|
c = __crc32b(c, *buf++);
|
|
len--;
|
|
}
|
|
|
|
if ((len >= sizeof(uint16_t)) && ((ptrdiff_t)buf & sizeof(uint16_t))) {
|
|
buf2 = (const uint16_t *) buf;
|
|
c = __crc32h(c, *buf2++);
|
|
len -= sizeof(uint16_t);
|
|
buf4 = (const uint32_t *) buf2;
|
|
} else {
|
|
buf4 = (const uint32_t *) buf;
|
|
}
|
|
|
|
#if defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM64EC)
|
|
if ((len >= sizeof(uint32_t)) && ((ptrdiff_t)buf & sizeof(uint32_t))) {
|
|
c = __crc32w(c, *buf4++);
|
|
len -= sizeof(uint32_t);
|
|
}
|
|
|
|
if (len == 0) {
|
|
c = ~c;
|
|
return c;
|
|
}
|
|
|
|
const uint64_t *buf8 = (const uint64_t *) buf4;
|
|
|
|
while (len >= sizeof(uint64_t)) {
|
|
c = __crc32d(c, *buf8++);
|
|
len -= sizeof(uint64_t);
|
|
}
|
|
|
|
if (len >= sizeof(uint32_t)) {
|
|
buf4 = (const uint32_t *) buf8;
|
|
c = __crc32w(c, *buf4++);
|
|
len -= sizeof(uint32_t);
|
|
buf2 = (const uint16_t *) buf4;
|
|
} else {
|
|
buf2 = (const uint16_t *) buf8;
|
|
}
|
|
|
|
if (len >= sizeof(uint16_t)) {
|
|
c = __crc32h(c, *buf2++);
|
|
len -= sizeof(uint16_t);
|
|
}
|
|
|
|
buf = (const unsigned char *) buf2;
|
|
#else /* __aarch64__ */
|
|
|
|
if (len == 0) {
|
|
c = ~c;
|
|
return c;
|
|
}
|
|
|
|
while (len >= sizeof(uint32_t)) {
|
|
c = __crc32w(c, *buf4++);
|
|
len -= sizeof(uint32_t);
|
|
}
|
|
|
|
if (len >= sizeof(uint16_t)) {
|
|
buf2 = (const uint16_t *) buf4;
|
|
c = __crc32h(c, *buf2++);
|
|
len -= sizeof(uint16_t);
|
|
buf = (const unsigned char *) buf2;
|
|
} else {
|
|
buf = (const unsigned char *) buf4;
|
|
}
|
|
#endif /* __aarch64__ */
|
|
|
|
if (len) {
|
|
c = __crc32b(c, *buf);
|
|
}
|
|
|
|
c = ~c;
|
|
return c;
|
|
}
|
|
#endif
|