diff options
author | Richard Henderson <rth@twiddle.net> | 2017-07-18 18:40:18 -1000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2017-07-24 12:42:55 +0100 |
commit | 5dd8990841a9e331d9d4838a116291698208cbb6 (patch) | |
tree | e2d46bda2138d892ebb1ecc210696d88f739008a /tcg/i386 | |
parent | df95f1a298a3e16c80293343143dcedbe7978f6c (diff) | |
download | qemu-5dd8990841a9e331d9d4838a116291698208cbb6.zip |
util: Introduce include/qemu/cpuid.h
Clang 3.9 passes the CONFIG_AVX2_OPT configure test. However, the
supplied <cpuid.h> does not contain the bit_AVX2 define that we use
when detecting whether the routine can be enabled.
Introduce a qemu-specific header that uses the compiler's definition
of __cpuid et al, but supplies any missing bit_* definitions needed.
This avoids introducing any extra ifdefs to util/bufferiszero.c, and
allows quite a few to be removed from tcg/i386/tcg-target.inc.c.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20170719044018.18063-1-rth@twiddle.net
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'tcg/i386')
-rw-r--r-- | tcg/i386/tcg-target.inc.c | 36 |
1 files changed, 8 insertions, 28 deletions
diff --git a/tcg/i386/tcg-target.inc.c b/tcg/i386/tcg-target.inc.c index 01e3b4e95c..e4b120a40c 100644 --- a/tcg/i386/tcg-target.inc.c +++ b/tcg/i386/tcg-target.inc.c @@ -109,40 +109,30 @@ static const int tcg_target_call_oarg_regs[] = { detection, as we're not going to go so far as our own inline assembly. If not available, default values will be assumed. */ #if defined(CONFIG_CPUID_H) -#include <cpuid.h> +#include "qemu/cpuid.h" #endif -/* For 32-bit, we are going to attempt to determine at runtime whether cmov - is available. */ +/* For 64-bit, we always know that CMOV is available. */ #if TCG_TARGET_REG_BITS == 64 # define have_cmov 1 -#elif defined(CONFIG_CPUID_H) && defined(bit_CMOV) +#elif defined(CONFIG_CPUID_H) static bool have_cmov; #else # define have_cmov 0 #endif -/* If bit_MOVBE is defined in cpuid.h (added in GCC version 4.6), we are - going to attempt to determine at runtime whether movbe is available. */ -#if defined(CONFIG_CPUID_H) && defined(bit_MOVBE) -static bool have_movbe; -#else -# define have_movbe 0 -#endif - /* We need these symbols in tcg-target.h, and we can't properly conditionalize it there. Therefore we always define the variable. */ bool have_bmi1; bool have_popcnt; -#if defined(CONFIG_CPUID_H) && defined(bit_BMI2) +#ifdef CONFIG_CPUID_H +static bool have_movbe; static bool have_bmi2; -#else -# define have_bmi2 0 -#endif -#if defined(CONFIG_CPUID_H) && defined(bit_LZCNT) static bool have_lzcnt; #else +# define have_movbe 0 +# define have_bmi2 0 # define have_lzcnt 0 #endif @@ -2619,36 +2609,26 @@ static void tcg_target_init(TCGContext *s) available, we'll use a small forward branch. */ have_cmov = (d & bit_CMOV) != 0; #endif -#ifndef have_movbe /* MOVBE is only available on Intel Atom and Haswell CPUs, so we need to probe for it. */ have_movbe = (c & bit_MOVBE) != 0; -#endif -#ifdef bit_POPCNT have_popcnt = (c & bit_POPCNT) != 0; -#endif } if (max >= 7) { /* BMI1 is available on AMD Piledriver and Intel Haswell CPUs. */ __cpuid_count(7, 0, a, b, c, d); -#ifdef bit_BMI have_bmi1 = (b & bit_BMI) != 0; -#endif -#ifndef have_bmi2 have_bmi2 = (b & bit_BMI2) != 0; -#endif } -#endif -#ifndef have_lzcnt max = __get_cpuid_max(0x8000000, 0); if (max >= 1) { __cpuid(0x80000001, a, b, c, d); /* LZCNT was introduced with AMD Barcelona and Intel Haswell CPUs. */ have_lzcnt = (c & bit_LZCNT) != 0; } -#endif +#endif /* CONFIG_CPUID_H */ if (TCG_TARGET_REG_BITS == 64) { tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xffff); |