diff options
author | Chris Robinson <[email protected]> | 2012-08-13 08:53:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-13 09:07:01 -0700 |
commit | add53e28c2ad6909fe8ed3efdafc419c90023477 (patch) | |
tree | c4e0f19898b8cc65457fe2e966d42412b6eed7c3 /Alc | |
parent | f42f655ea91b50ed60916880271e320d398debe3 (diff) |
Check for some CPU extensions
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 1 | ||||
-rw-r--r-- | Alc/helpers.c | 55 |
2 files changed, 56 insertions, 0 deletions
@@ -790,6 +790,7 @@ static void alc_initconfig(void) ReadALConfig(); + FillCPUCaps(); InitHrtf(); #ifdef _WIN32 diff --git a/Alc/helpers.c b/Alc/helpers.c index 009e83d2..6051573e 100644 --- a/Alc/helpers.c +++ b/Alc/helpers.c @@ -27,6 +27,9 @@ #ifdef HAVE_DLFCN_H #include <dlfcn.h> #endif +#ifdef HAVE_CPUID_H +#include <cpuid.h> +#endif #if defined(HAVE_GUIDDEF_H) || defined(HAVE_INITGUID_H) #define INITGUID @@ -57,6 +60,58 @@ DEFINE_DEVPROPKEY(DEVPKEY_Device_FriendlyName, 0xa45c254e, 0xdf1c, 0x4efd, 0x80, #include "alMain.h" +ALuint CPUCapFlags = 0; + + +void FillCPUCaps(void) +{ +#if defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64) +/* FIXME: We really should get this for all available CPUs in case different + * CPUs have different caps (is that possible on one machine?). */ +#ifdef HAVE_CPUID_H + union { + unsigned int regs[4]; + char str[sizeof(unsigned int[4])]; + } cpuinf[3]; + + if(!__get_cpuid(0, &cpuinf[0].regs[0], &cpuinf[0].regs[1], &cpuinf[0].regs[2], &cpuinf[0].regs[3])) + ERR("Failed to get CPUID\n"); + else + { + TRACE("Vendor ID: \"%.4s%.4s%.4s\"\n", cpuinf[0].str+4, cpuinf[0].str+12, cpuinf[0].str+8); + if(__get_cpuid(0x80000002, &cpuinf[0].regs[0], &cpuinf[0].regs[1], &cpuinf[0].regs[2], &cpuinf[0].regs[3]) && + __get_cpuid(0x80000003, &cpuinf[1].regs[0], &cpuinf[1].regs[1], &cpuinf[1].regs[2], &cpuinf[1].regs[3]) && + __get_cpuid(0x80000004, &cpuinf[2].regs[0], &cpuinf[2].regs[1], &cpuinf[2].regs[2], &cpuinf[2].regs[3])) + TRACE("Name: \"%.16s%.16s%.16s\"\n", cpuinf[0].str, cpuinf[1].str, cpuinf[2].str); + + if(!__get_cpuid(1, &cpuinf[0].regs[0], &cpuinf[0].regs[1], &cpuinf[0].regs[2], &cpuinf[0].regs[3])) + ERR("Failed to get CPU features\n"); + else + { +#ifdef bit_MMX + if((cpuinf[0].regs[3]&bit_MMX)) + CPUCapFlags |= CPU_CAP_MMX; +#endif +#ifdef bit_SSE + if((cpuinf[0].regs[3]&bit_SSE)) + CPUCapFlags |= CPU_CAP_SSE; +#endif + } + } +#endif +#endif +#ifdef HAVE_ARM_NEON_H + /* Assume Neon support if compiled with it */ + CPUCapFlags |= CPU_CAP_NEON; +#endif + + TRACE("Got caps:%s%s%s%s\n", ((CPUCapFlags&CPU_CAP_MMX)?" MMX":""), + ((CPUCapFlags&CPU_CAP_SSE)?" SSE":""), + ((CPUCapFlags&CPU_CAP_NEON)?" Neon":""), + ((!CPUCapFlags)?" (none)":"")); +} + + #ifdef _WIN32 void pthread_once(pthread_once_t *once, void (*callback)(void)) { |