mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
* Update zlibng * Set cmake path more directly in zlibng to hopefully fix an issue with the build on drone * I'm dumb, missing / in path * Mackal helps with a dumb gitignore issue * Adding all the files, not sure what's ignoring them and im tired of looking * Some tweaks to zlibng build to hopefully get it to build properly. works on msvc now
70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
#include "../../zutil.h"
|
|
|
|
#if defined(__linux__)
|
|
# include <sys/auxv.h>
|
|
# include <asm/hwcap.h>
|
|
#elif defined(__FreeBSD__) && defined(__aarch64__)
|
|
# include <machine/armreg.h>
|
|
# ifndef ID_AA64ISAR0_CRC32_VAL
|
|
# define ID_AA64ISAR0_CRC32_VAL ID_AA64ISAR0_CRC32
|
|
# endif
|
|
#elif defined(__APPLE__)
|
|
# include <sys/sysctl.h>
|
|
#elif defined(_WIN32)
|
|
# include <winapifamily.h>
|
|
#endif
|
|
|
|
static int arm_has_crc32() {
|
|
#if defined(__linux__) && defined(HWCAP2_CRC32)
|
|
return (getauxval(AT_HWCAP2) & HWCAP2_CRC32) != 0 ? 1 : 0;
|
|
#elif defined(__FreeBSD__) && defined(__aarch64__)
|
|
return getenv("QEMU_EMULATING") == NULL
|
|
&& ID_AA64ISAR0_CRC32_VAL(READ_SPECIALREG(id_aa64isar0_el1)) >= ID_AA64ISAR0_CRC32_BASE;
|
|
#elif defined(__APPLE__)
|
|
int hascrc32;
|
|
size_t size = sizeof(hascrc32);
|
|
return sysctlbyname("hw.optional.armv8_crc32", &hascrc32, &size, NULL, 0) == 0
|
|
&& hascrc32 == 1;
|
|
#elif defined(ARM_NOCHECK_ACLE)
|
|
return 1;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
/* AArch64 has neon. */
|
|
#if !defined(__aarch64__) && !defined(_M_ARM64)
|
|
static inline int arm_has_neon() {
|
|
#if defined(__linux__) && defined(HWCAP_NEON)
|
|
return (getauxval(AT_HWCAP) & HWCAP_NEON) != 0 ? 1 : 0;
|
|
#elif defined(__APPLE__)
|
|
int hasneon;
|
|
size_t size = sizeof(hasneon);
|
|
return sysctlbyname("hw.optional.neon", &hasneon, &size, NULL, 0) == 0
|
|
&& hasneon == 1;
|
|
#elif defined(_M_ARM) && defined(WINAPI_FAMILY_PARTITION)
|
|
# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_PHONE_APP)
|
|
return 1; /* Always supported */
|
|
# endif
|
|
#endif
|
|
|
|
#if defined(ARM_NOCHECK_NEON)
|
|
return 1;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
Z_INTERNAL int arm_cpu_has_neon;
|
|
Z_INTERNAL int arm_cpu_has_crc32;
|
|
|
|
void Z_INTERNAL arm_check_features(void) {
|
|
#if defined(__aarch64__) || defined(_M_ARM64)
|
|
arm_cpu_has_neon = 1; /* always available */
|
|
#else
|
|
arm_cpu_has_neon = arm_has_neon();
|
|
#endif
|
|
arm_cpu_has_crc32 = arm_has_crc32();
|
|
}
|