3 * CPU-specific dispatch
5 * (c) 2015 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of Catacomb.
12 * Catacomb is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * Catacomb is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with Catacomb; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28 /*----- Header files ------------------------------------------------------*/
38 #include <mLib/macros.h>
42 /*----- Intel x86/AMD64 feature probing -----------------------------------*/
44 #if CPUFAM_X86 || CPUFAM_AMD64
46 # define EFLAGS_ID (1u << 21)
47 # define CPUID1D_SSE2 (1u << 26)
48 # define CPUID1D_FXSR (1u << 24)
49 # define CPUID1C_PCLMUL (1u << 1)
50 # define CPUID1C_SSSE3 (1u << 9)
51 # define CPUID1C_AESNI (1u << 25)
52 # define CPUID1C_AVX (1u << 28)
53 # define CPUID1C_RDRAND (1u << 30)
55 struct cpuid { unsigned a, b, c, d; };
59 * Arguments: @struct cpuid *cc@ = where to write the result
60 * @unsigned a, c@ = EAX and ECX registers to set
64 * Use: Minimal C wrapper around the x86 `CPUID' instruction. Checks
65 * that the instruction is actually available before invoking
66 * it; fills the output structure with zero if it's not going to
72 static __inline__ unsigned getflags(void)
73 { unsigned f; __asm__ ("pushf; popl %0" : "=g" (f)); return (f); }
74 static __inline__ unsigned setflags(unsigned f)
77 __asm__ ("pushf; pushl %1; popf; pushf; popl %0; popf"
83 static __inline__ unsigned long getflags(void)
84 { unsigned long f; __asm__ ("pushf; popq %0" : "=g" (f)); return (f); }
85 static __inline__ unsigned long long setflags(unsigned long f)
88 __asm__ ("pushf; pushq %1; popf; pushf; popq %0; popf"
96 static void cpuid(struct cpuid *cc, unsigned a, unsigned c)
102 cc->a = cc->b = cc->c = cc->d = 0;
105 /* Stupid dance to detect whether the CPUID instruction is available. */
107 if (!(setflags(f | EFLAGS_ID) & EFLAGS_ID) ||
108 setflags(f & ~EFLAGS_ID) & EFLAGS_ID) {
109 dispatch_debug("CPUID instruction not available");
114 /* Alas, EBX is magical in PIC code, so abuse ESI instead. This isn't
115 * pretty, but it works.
118 __asm__ ("pushl %%ebx; cpuid; movl %%ebx, %%esi; popl %%ebx"
119 : "=a" (cc->a), "=S" (cc->b), "=c" (cc->c), "=d" (cc->d)
120 : "a" (a) , "c" (c));
122 __asm__ ("pushq %%rbx; cpuid; movl %%ebx, %%esi; popq %%rbx"
123 : "=a" (cc->a), "=S" (cc->b), "=c" (cc->c), "=d" (cc->d)
124 : "a" (a) , "c" (c));
126 # error "I'm confused."
128 dispatch_debug("CPUID(%08x, %08x) -> %08x, %08x, %08x, %08x",
129 a, c, cc->a, cc->b, cc->c, cc->d);
131 dispatch_debug("GNU inline assembler not available; can't CPUID");
135 static unsigned cpuid_maxleaf(void)
136 { struct cpuid c; cpuid(&c, 0, 0); return (c.a); }
138 /* --- @cpuid_features_p@ --- *
140 * Arguments: @unsigned dbits@ = bits to check in EDX
141 * @unsigned cbits@ = bits to check in ECX
143 * Returns: Nonzero if all the requested bits are set in the CPUID result
147 static int cpuid_features_p(unsigned dbits, unsigned cbits)
150 if (cpuid_maxleaf() < 1) return (0);
152 return ((c.d & dbits) == dbits && (c.c & cbits) == cbits);
155 /* --- @xmm_registers_available_p@ --- *
159 * Returns: Nonzero if the operating system has made the XMM registers
163 static int xmm_registers_available_p(void)
167 /* This hack is by Agner Fog. Use FXSAVE/FXRSTOR to figure out whether the
168 * XMM registers are actually alive.
170 if (!cpuid_features_p(CPUID1D_FXSR, 0)) return (0);
172 __asm__ ("movl %%esp, %%edx; subl $512, %%esp; andl $~15, %%esp\n"
174 "movl 160(%%esp), %%eax; xorl $0xaaaa5555, 160(%%esp)\n"
175 "fxrstor (%%esp); fxsave (%%esp)\n"
176 "movl 160(%%esp), %%ecx; movl %%eax, 160(%%esp)\n"
177 "fxrstor (%%esp); movl %%edx, %%esp\n"
183 __asm__ ("movq %%rsp, %%rdx; subq $512, %%rsp; andq $~15, %%rsp\n"
185 "movl 160(%%rsp), %%eax; xorl $0xaaaa5555, 160(%%rsp)\n"
186 "fxrstor (%%rsp); fxsave (%%rsp)\n"
187 "movl 160(%%rsp), %%ecx; movl %%eax, 160(%%rsp)\n"
188 "fxrstor (%%rsp); movq %%rdx, %%rsp\n"
194 # error "I'm confused."
196 dispatch_debug("XMM registers %savailable", f ? "" : "not ");
199 dispatch_debug("GNU inline assembler not available; can't check for XMM");
204 /* --- @rdrand_works_p@ --- *
209 * Returns: Nonzero if the `rdrand' instruction actually works. Assumes
210 * that it's already been verified to be safe to issue.
214 static int rdrand(unsigned *x)
220 __asm__ ("" : "=g" (_t));
221 __asm__ ("0: rdrand %2; jc 1f; decl %1; jnz 0b\n"
222 "mov $-1, %0; jmp 9f\n"
223 "1: movl %2, (%3); xorl %0, %0\n"
225 : "=r" (rc), "+r" (i), "+r" (_t)
232 static int rdrand_works_p(void)
236 /* Check that it doesn't always give the same answer. Try four times: this
237 * will fail with probability %$2^{-128}$% with a truly random generator,
238 * which seems fair enough.
240 if (rdrand(&ref)) goto fail;
241 for (i = 0; i < 4; i++) {
242 if (rdrand(&x)) goto fail;
243 if (x != ref) goto not_stuck;
245 dispatch_debug("RDRAND always returns 0x%08x!", ref);
249 dispatch_debug("RDRAND instruction looks plausible");
253 dispatch_debug("RDRAND instruction fails too often");
259 /*----- General feature probing using auxiliary vectors -------------------*/
261 /* Try to find the system's definitions for auxiliary vector entries. */
262 #ifdef HAVE_SYS_AUXV_H
263 # include <sys/auxv.h>
265 #ifdef HAVE_LINUX_AUXVEC_H
266 # include <linux/auxvec.h>
268 #ifdef HAVE_ASM_HWCAP_H
269 # include <asm/hwcap.h>
272 /* The type of entries in the auxiliary vector. I'm assuming that `unsigned
273 * long' matches each platform's word length; if this is false then we'll
274 * need some host-specific tweaking here.
276 union auxval { long i; unsigned long u; const void *p; };
277 struct auxentry { unsigned long type; union auxval value; };
279 /* Register each CPU family's interest in the auxiliary vector. Make sure
280 * that the necessary entry types are defined. This is primarily ordered by
281 * entry type to minimize duplication.
283 #if defined(AT_HWCAP) && CPUFAM_ARMEL
285 # define WANT_AT_HWCAP(_) _(AT_HWCAP, u, hwcap)
288 #if defined(AT_HWCAP) && CPUFAM_ARM64
290 # define WANT_AT_HWCAP(_) _(AT_HWCAP, u, hwcap)
293 #if defined(AT_HWCAP2) && CPUFAM_ARMEL
295 # define WANT_AT_HWCAP2(_) _(AT_HWCAP2, u, hwcap2)
298 /* If we couldn't find any interesting entries then we can switch all of this
299 * machinery off. Also do that if we have no means for atomic updates.
301 #if WANT_ANY && CPU_DISPATCH_P
303 /* The main output of this section is a bitmask of detected features. The
304 * least significant bit will be set if we've tried to probe. Always access
305 * this using `DISPATCH_LOAD' and `DISPATCH_STORE'.
307 static unsigned hwcaps = 0;
309 /* For each potentially interesting type which turned out not to exist or be
310 * wanted, define a dummy macro for the sake of the next step.
312 #ifndef WANT_AT_HWCAP
313 # define WANT_AT_HWCAP(_)
315 #ifndef WANT_AT_HWCAP2
316 # define WANT_AT_HWCAP2(_)
319 /* For each CPU family, define two lists.
321 * * `WANTAUX' is a list of the `WANT_AT_MUMBLE' macros which the CPU
322 * family tried to register interest in above. Each entry contains the
323 * interesting auxiliary vector entry type, the name of the union branch
324 * for its value, and the name of the slot in `struct auxprobe' in which
325 * to store the value.
327 * * `CAPMAP' is a list describing the output features which the CPU family
328 * intends to satisfy from the auxiliary vector. Each entry contains a
329 * feature name suffix, and the token name (for `check_env').
332 # define WANTAUX(_) \
336 _(ARM_VFP, "arm:vfp") \
337 _(ARM_NEON, "arm:neon") \
338 _(ARM_V4, "arm:v4") \
339 _(ARM_D32, "arm:d32") \
340 _(ARM_AES, "arm:aes") \
341 _(ARM_PMULL, "arm:pmull")
344 # define WANTAUX(_) \
347 _(ARM_AES, "arm:aes") \
348 _(ARM_PMULL, "arm:pmull")
351 /* Build the bitmask for `hwcaps' from the `CAPMAP' list. */
354 #define HFI__ENUM(feat, tok) HFI_##feat,
361 #define HF__FLAG(feat, tok) HF_##feat = 1 << HFI_##feat,
367 /* Build a structure in which we can capture the interesting data from the
370 #define AUXUTYPE_i long
371 #define AUXUTYPE_u unsigned long
372 #define AUXUTYPE_p const void *
374 #define AUXPROBE__SLOT(type, ubranch, slot) AUXUTYPE_##ubranch slot;
375 WANTAUX(AUXPROBE__SLOT)
379 /* --- @probe_hwcaps@ --- *
385 * Use: Attempt to find the auxiliary vector (which is well hidden)
386 * and discover interesting features from it.
389 static void probe_hwcaps(void)
391 unsigned hw = HF_PROBED;
392 struct auxprobe probed = { 0 };
394 /* Populate `probed' with the information we manage to retrieve from the
395 * auxiliary vector. Slots we couldn't find are left zero-valued.
397 #if defined(HAVE_GETAUXVAL)
398 /* Shiny new libc lets us request individual entry types. This is almost
401 # define CAP__GET(type, ubranch, slot) \
402 probed.slot = (AUXUTYPE_##ubranch)getauxval(type);
405 /* Otherwise we're a bit stuck, really. Modern Linux kernels make a copy
406 * of the vector available in `/procc' so we could try that.
408 * The usual place is stuck on the end of the environment vector, but that
409 * may well have moved, and we have no way of telling whether it has or
410 * whether there was ever an auxiliary vector there at all; so don't do
415 unsigned char *p = 0, *q = 0;
416 const struct auxentry *a;
419 /* Open the file and read it into a memory chunk. */
420 if ((fp = fopen("/proc/self/auxv", "rb")) == 0) goto clean;
422 if ((p = malloc(sz)) == 0) goto clean;
424 n = fread(p + off, 1, sz - off, fp);
427 sz *= 2; if ((q = realloc(p, sz)) == 0) break;
431 /* Work through the vector (or as much of it as we found) and extract the
432 * types we're interested in.
434 for (a = (const struct auxentry *)p,
435 n = sz/sizeof(struct auxentry);
438 #define CAP__SWITCH(type, ubranch, slot) \
439 case type: probed.slot = a->value.ubranch; break;
441 case AT_NULL: goto clean;
451 /* Each CPU family now has to pick through what was found and stashed in
452 * `probed', and set the appropriate flag bits in `hw'.
455 if (probed.hwcap & HWCAP_VFPv3) hw |= HF_ARM_VFP;
456 if (probed.hwcap & HWCAP_NEON) hw |= HF_ARM_NEON;
457 if (probed.hwcap & HWCAP_VFPD32) hw |= HF_ARM_D32;
458 if (probed.hwcap & HWCAP_VFPv4) hw |= HF_ARM_V4;
460 if (probed.hwcap2 & HWCAP2_AES) hw |= HF_ARM_AES;
463 if (probed.hwcap2 & HWCAP2_PMULL) hw |= HF_ARM_PMULL;
467 if (probed.hwcap & HWCAP_AES) hw |= HF_ARM_AES;
468 if (probed.hwcap & HWCAP_PMULL) hw |= HF_ARM_PMULL;
471 /* Store the bitmask of features we probed for everyone to see. */
472 DISPATCH_STORE(hwcaps, hw);
474 /* Finally, make a report about the things we found. (Doing this earlier
475 * will pointlessly widen the window in which multiple threads will do the
476 * above auxiliary-vector probing.)
478 #define CAP__DEBUG(feat, tok) \
479 dispatch_debug("check auxv for feature `%s': %s", tok, \
480 hw & HF_##feat ? "available" : "absent");
485 /* --- @get_hwcaps@ --- *
489 * Returns: A mask of hardware capabilities and other features, as probed
490 * from the auxiliary vector.
493 static unsigned get_hwcaps(void)
497 DISPATCH_LOAD(hwcaps, hw);
498 if (!(hwcaps & HF_PROBED)) { probe_hwcaps(); DISPATCH_LOAD(hwcaps, hw); }
504 /*----- External interface ------------------------------------------------*/
506 /* --- @dispatch_debug@ --- *
508 * Arguments: @const char *fmt@ = a format string
509 * @...@ = additional arguments
513 * Use: Writes a formatted message to standard output if dispatch
514 * debugging is enabled.
517 void dispatch_debug(const char *fmt, ...)
520 const char *e = getenv("CATACOMB_CPUDISPATCH_DEBUG");
522 if (e && *e != 'n' && *e != '0') {
524 fputs("Catacomb CPUDISPATCH: ", stderr);
525 vfprintf(stderr, fmt, ap);
531 /* --- @check_env@ --- *
533 * Arguments: @const char *ftok@ = feature token
535 * Returns: Zero if the feature is forced off; positive if it's forced
536 * on; negative if the user hasn't decided.
538 * Use: Checks the environment variable `CATACOMB_CPUFEAT' for the
539 * feature token @ftok@. The variable, if it exists, should be
540 * a space-separated sequence of `+tok' and `-tok' items. These
541 * tokens may end in `*', which matches any suffix.
544 static int IGNORABLE check_env(const char *ftok)
546 const char *p, *q, *pp;
549 p = getenv("CATACOMB_CPUFEAT");
553 while (isspace((unsigned char)*p)) p++;
554 if (!*p) return (-1);
556 case '+': d = +1; p++; break;
557 case '-': d = 0; p++; break;
558 default: d = -1; break;
560 for (q = p; *q && !isspace((unsigned char)*q); q++);
562 for (pp = ftok; p < q && *pp && *p == *pp; p++, pp++);
563 if ((p == q && !*pp) || (*p == '*' && p + 1 == q)) return (d);
570 /* --- @cpu_feature_p@ --- *
572 * Arguments: @unsigned feat@ = a @CPUFEAT_...@ code
574 * Returns: Nonzero if the feature is available.
580 feat_debug(const char *ftok, const char *check, int verdict)
583 dispatch_debug("feature `%s': %s -> %s", ftok, check,
584 verdict ? "available" : "absent");
589 int cpu_feature_p(int feat)
593 #define CASE_CPUFEAT(feat, ftok, cond) case CPUFEAT_##feat: \
594 if ((f = feat_debug(ftok, "environment override", \
595 check_env(ftok))) >= 0) \
598 return (feat_debug(ftok, "runtime probe", cond));
601 #if CPUFAM_X86 || CPUFAM_AMD64
602 CASE_CPUFEAT(X86_SSE2, "x86:sse2",
603 cpuid_features_p(CPUID1D_SSE2, 0) &&
604 xmm_registers_available_p());
605 CASE_CPUFEAT(X86_AESNI, "x86:aesni",
606 cpuid_features_p(CPUID1D_SSE2, CPUID1C_AESNI) &&
607 xmm_registers_available_p());
608 CASE_CPUFEAT(X86_RDRAND, "x86:rdrand",
609 cpuid_features_p(0, CPUID1C_RDRAND) && rdrand_works_p());
610 CASE_CPUFEAT(X86_AVX, "x86:avx",
611 cpuid_features_p(0, CPUID1C_AVX) &&
612 xmm_registers_available_p());
613 CASE_CPUFEAT(X86_SSSE3, "x86:ssse3",
614 cpuid_features_p(0, CPUID1C_SSSE3) &&
615 xmm_registers_available_p());
616 CASE_CPUFEAT(X86_PCLMUL, "x86:pclmul",
617 cpuid_features_p(0, CPUID1C_PCLMUL) &&
618 xmm_registers_available_p());
621 # define FEATP__CASE(feat, tok) \
622 CASE_CPUFEAT(feat, tok, get_hwcaps() & HF_##feat)
627 dispatch_debug("denying unknown feature %d", feat);
633 /*----- That's all, folks -------------------------------------------------*/