X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/fac645f7780c7673775f09fe625651f600f7ee7b..00b52725bf15e844360d07248de1d8cbbc1e165e:/base/dispatch.h diff --git a/base/dispatch.h b/base/dispatch.h index bbb81f30..9f335345 100644 --- a/base/dispatch.h +++ b/base/dispatch.h @@ -175,7 +175,19 @@ extern void dispatch_debug(const char */*fmt*/, ...); enum { CPUFEAT_X86_SSE2, /* Streaming SIMD Extensions 2 */ - CPUFEAT_X86_AESNI /* AES Native Instructions */ + CPUFEAT_X86_AESNI, /* AES Native Instructions */ + CPUFEAT_ARM_VFP, /* VFP floating-point (v3 or v4) */ + CPUFEAT_ARM_NEON, /* Advanced SIMD (v1 or v2) */ + CPUFEAT_ARM_V4, /* VFPv4 and/or SIMD v2 */ + CPUFEAT_ARM_D32, /* 32 double registers, not 16 */ + CPUFEAT_X86_RDRAND, /* Built-in cooked entropy source */ + CPUFEAT_ARM_AES, /* AES instructions */ + CPUFEAT_X86_AVX, /* AVX 1 (i.e., 256-bit YMM regs) */ + CPUFEAT_X86_SSSE3, /* Supplementary SSE 3 */ + CPUFEAT_X86_PCLMUL, /* Carry-less multiplication */ + CPUFEAT_ARM_PMULL, /* Polynomial multiplication */ + CPUFEAT_X86_RDSEED, /* Built-in raw entropy source */ + CPUFEAT_X86_AVX2 /* AVX 2 (256-bit integer ops) */ }; extern int cpu_feature_p(int /*feat*/);