2009-03-13 23:53:18 +00:00
|
|
|
/* Initialize CPU feature data.
|
|
|
|
This file is part of the GNU C Library.
|
2016-01-04 16:05:18 +00:00
|
|
|
Copyright (C) 2008-2016 Free Software Foundation, Inc.
|
2009-03-13 23:53:18 +00:00
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2009-03-13 23:53:18 +00:00
|
|
|
|
2009-07-31 18:53:35 +00:00
|
|
|
#include <cpuid.h>
|
2015-08-13 10:37:47 +00:00
|
|
|
#include <cpu-features.h>
|
2009-03-13 23:53:18 +00:00
|
|
|
|
2016-03-22 14:46:56 +00:00
|
|
|
static void
|
2015-08-13 10:37:47 +00:00
|
|
|
get_common_indeces (struct cpu_features *cpu_features,
|
2015-11-30 16:53:37 +00:00
|
|
|
unsigned int *family, unsigned int *model,
|
|
|
|
unsigned int *extended_model)
|
2009-06-30 11:39:09 +00:00
|
|
|
{
|
2016-03-22 14:46:56 +00:00
|
|
|
if (family)
|
2015-11-30 16:53:37 +00:00
|
|
|
{
|
2016-03-22 14:46:56 +00:00
|
|
|
unsigned int eax;
|
|
|
|
__cpuid (1, eax, cpu_features->cpuid[COMMON_CPUID_INDEX_1].ebx,
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_1].ecx,
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_1].edx);
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_1].eax = eax;
|
|
|
|
*family = (eax >> 8) & 0x0f;
|
|
|
|
*model = (eax >> 4) & 0x0f;
|
|
|
|
*extended_model = (eax >> 12) & 0xf0;
|
|
|
|
if (*family == 0x0f)
|
|
|
|
{
|
|
|
|
*family += (eax >> 20) & 0xff;
|
|
|
|
*model += *extended_model;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cpu_features->max_cpuid >= 7)
|
|
|
|
__cpuid_count (7, 0,
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_7].eax,
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_7].ebx,
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_7].ecx,
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_7].edx);
|
|
|
|
|
|
|
|
/* Can we call xgetbv? */
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, OSXSAVE))
|
|
|
|
{
|
|
|
|
unsigned int xcrlow;
|
|
|
|
unsigned int xcrhigh;
|
|
|
|
asm ("xgetbv" : "=a" (xcrlow), "=d" (xcrhigh) : "c" (0));
|
|
|
|
/* Is YMM and XMM state usable? */
|
|
|
|
if ((xcrlow & (bit_YMM_state | bit_XMM_state)) ==
|
|
|
|
(bit_YMM_state | bit_XMM_state))
|
|
|
|
{
|
|
|
|
/* Determine if AVX is usable. */
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, AVX))
|
|
|
|
cpu_features->feature[index_arch_AVX_Usable]
|
|
|
|
|= bit_arch_AVX_Usable;
|
|
|
|
/* Determine if AVX2 is usable. */
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, AVX2))
|
|
|
|
cpu_features->feature[index_arch_AVX2_Usable]
|
|
|
|
|= bit_arch_AVX2_Usable;
|
|
|
|
/* Check if OPMASK state, upper 256-bit of ZMM0-ZMM15 and
|
|
|
|
ZMM16-ZMM31 state are enabled. */
|
|
|
|
if ((xcrlow & (bit_Opmask_state | bit_ZMM0_15_state
|
|
|
|
| bit_ZMM16_31_state)) ==
|
|
|
|
(bit_Opmask_state | bit_ZMM0_15_state | bit_ZMM16_31_state))
|
|
|
|
{
|
|
|
|
/* Determine if AVX512F is usable. */
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, AVX512F))
|
|
|
|
{
|
|
|
|
cpu_features->feature[index_arch_AVX512F_Usable]
|
|
|
|
|= bit_arch_AVX512F_Usable;
|
|
|
|
/* Determine if AVX512DQ is usable. */
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, AVX512DQ))
|
|
|
|
cpu_features->feature[index_arch_AVX512DQ_Usable]
|
|
|
|
|= bit_arch_AVX512DQ_Usable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Determine if FMA is usable. */
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, FMA))
|
|
|
|
cpu_features->feature[index_arch_FMA_Usable]
|
|
|
|
|= bit_arch_FMA_Usable;
|
|
|
|
}
|
2015-11-30 16:53:37 +00:00
|
|
|
}
|
2009-06-30 11:39:09 +00:00
|
|
|
}
|
|
|
|
|
2015-08-13 10:37:47 +00:00
|
|
|
static inline void
|
|
|
|
init_cpu_features (struct cpu_features *cpu_features)
|
2009-03-13 23:53:18 +00:00
|
|
|
{
|
2015-08-13 10:37:47 +00:00
|
|
|
unsigned int ebx, ecx, edx;
|
2010-04-04 07:25:46 +00:00
|
|
|
unsigned int family = 0;
|
|
|
|
unsigned int model = 0;
|
|
|
|
enum cpu_features_kind kind;
|
2009-03-13 23:53:18 +00:00
|
|
|
|
2015-08-18 14:59:49 +00:00
|
|
|
#if !HAS_CPUID
|
2015-08-13 11:52:50 +00:00
|
|
|
if (__get_cpuid_max (0, 0) == 0)
|
|
|
|
{
|
|
|
|
kind = arch_kind_other;
|
|
|
|
goto no_cpuid;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-08-13 10:37:47 +00:00
|
|
|
__cpuid (0, cpu_features->max_cpuid, ebx, ecx, edx);
|
2009-03-13 23:53:18 +00:00
|
|
|
|
|
|
|
/* This spells out "GenuineIntel". */
|
|
|
|
if (ebx == 0x756e6547 && ecx == 0x6c65746e && edx == 0x49656e69)
|
|
|
|
{
|
2015-11-30 16:53:37 +00:00
|
|
|
unsigned int extended_model;
|
|
|
|
|
2010-04-04 07:25:46 +00:00
|
|
|
kind = arch_kind_intel;
|
2009-03-13 23:53:18 +00:00
|
|
|
|
2015-11-30 16:53:37 +00:00
|
|
|
get_common_indeces (cpu_features, &family, &model, &extended_model);
|
2009-06-30 11:39:09 +00:00
|
|
|
|
2015-11-30 16:53:37 +00:00
|
|
|
if (family == 0x06)
|
2010-01-12 19:22:03 +00:00
|
|
|
{
|
2015-08-13 10:37:47 +00:00
|
|
|
ecx = cpu_features->cpuid[COMMON_CPUID_INDEX_1].ecx;
|
2010-04-04 07:25:46 +00:00
|
|
|
model += extended_model;
|
2010-05-27 18:14:18 +00:00
|
|
|
switch (model)
|
2010-01-12 19:22:03 +00:00
|
|
|
{
|
2010-08-25 17:07:37 +00:00
|
|
|
case 0x1c:
|
|
|
|
case 0x26:
|
|
|
|
/* BSF is slow on Atom. */
|
2016-03-10 13:26:46 +00:00
|
|
|
cpu_features->feature[index_arch_Slow_BSF]
|
|
|
|
|= bit_arch_Slow_BSF;
|
2010-08-25 17:07:37 +00:00
|
|
|
break;
|
|
|
|
|
2015-12-15 19:46:54 +00:00
|
|
|
case 0x57:
|
|
|
|
/* Knights Landing. Enable Silvermont optimizations. */
|
2016-03-10 13:26:46 +00:00
|
|
|
cpu_features->feature[index_arch_Prefer_No_VZEROUPPER]
|
|
|
|
|= bit_arch_Prefer_No_VZEROUPPER;
|
2015-12-15 19:46:54 +00:00
|
|
|
|
2016-04-15 12:22:53 +00:00
|
|
|
case 0x5c:
|
|
|
|
case 0x5f:
|
|
|
|
/* Unaligned load versions are faster than SSSE3
|
|
|
|
on Goldmont. */
|
|
|
|
|
|
|
|
case 0x4c:
|
|
|
|
/* Airmont is a die shrink of Silvermont. */
|
|
|
|
|
2013-06-14 18:46:15 +00:00
|
|
|
case 0x37:
|
2015-01-24 01:27:09 +00:00
|
|
|
case 0x4a:
|
|
|
|
case 0x4d:
|
2015-01-24 02:52:45 +00:00
|
|
|
case 0x5a:
|
|
|
|
case 0x5d:
|
2013-06-14 18:46:15 +00:00
|
|
|
/* Unaligned load versions are faster than SSSE3
|
|
|
|
on Silvermont. */
|
2016-03-10 13:26:46 +00:00
|
|
|
#if index_arch_Fast_Unaligned_Load != index_arch_Prefer_PMINUB_for_stringop
|
|
|
|
# error index_arch_Fast_Unaligned_Load != index_arch_Prefer_PMINUB_for_stringop
|
2013-06-28 22:28:50 +00:00
|
|
|
#endif
|
2016-03-10 13:26:46 +00:00
|
|
|
#if index_arch_Fast_Unaligned_Load != index_arch_Slow_SSE4_2
|
|
|
|
# error index_arch_Fast_Unaligned_Load != index_arch_Slow_SSE4_2
|
2016-03-28 11:39:48 +00:00
|
|
|
#endif
|
|
|
|
#if index_arch_Fast_Unaligned_Load != index_arch_Fast_Unaligned_Copy
|
|
|
|
# error index_arch_Fast_Unaligned_Load != index_arch_Fast_Unaligned_Copy
|
2013-06-28 22:28:50 +00:00
|
|
|
#endif
|
2016-03-10 13:26:46 +00:00
|
|
|
cpu_features->feature[index_arch_Fast_Unaligned_Load]
|
|
|
|
|= (bit_arch_Fast_Unaligned_Load
|
2016-03-28 11:39:48 +00:00
|
|
|
| bit_arch_Fast_Unaligned_Copy
|
2016-03-10 13:26:46 +00:00
|
|
|
| bit_arch_Prefer_PMINUB_for_stringop
|
|
|
|
| bit_arch_Slow_SSE4_2);
|
2013-06-14 18:46:15 +00:00
|
|
|
break;
|
|
|
|
|
2011-06-03 11:01:25 +00:00
|
|
|
default:
|
|
|
|
/* Unknown family 0x06 processors. Assuming this is one
|
2011-10-21 02:43:15 +00:00
|
|
|
of Core i3/i5/i7 processors if AVX is available. */
|
2016-03-10 13:26:46 +00:00
|
|
|
if ((ecx & bit_cpu_AVX) == 0)
|
2011-06-03 11:01:25 +00:00
|
|
|
break;
|
|
|
|
|
2010-01-12 19:22:03 +00:00
|
|
|
case 0x1a:
|
|
|
|
case 0x1e:
|
|
|
|
case 0x1f:
|
|
|
|
case 0x25:
|
2010-11-12 08:48:52 +00:00
|
|
|
case 0x2c:
|
2010-01-12 19:22:03 +00:00
|
|
|
case 0x2e:
|
|
|
|
case 0x2f:
|
2016-04-01 22:08:48 +00:00
|
|
|
/* Rep string instructions, unaligned load, unaligned copy,
|
2011-07-19 21:11:54 +00:00
|
|
|
and pminub are fast on Intel Core i3, i5 and i7. */
|
2016-03-10 13:26:46 +00:00
|
|
|
#if index_arch_Fast_Rep_String != index_arch_Fast_Unaligned_Load
|
|
|
|
# error index_arch_Fast_Rep_String != index_arch_Fast_Unaligned_Load
|
2011-07-19 21:11:54 +00:00
|
|
|
#endif
|
2016-03-10 13:26:46 +00:00
|
|
|
#if index_arch_Fast_Rep_String != index_arch_Prefer_PMINUB_for_stringop
|
|
|
|
# error index_arch_Fast_Rep_String != index_arch_Prefer_PMINUB_for_stringop
|
2016-03-28 11:39:48 +00:00
|
|
|
#endif
|
|
|
|
#if index_arch_Fast_Rep_String != index_arch_Fast_Unaligned_Copy
|
|
|
|
# error index_arch_Fast_Rep_String != index_arch_Fast_Unaligned_Copy
|
2010-06-30 15:26:11 +00:00
|
|
|
#endif
|
2016-03-10 13:26:46 +00:00
|
|
|
cpu_features->feature[index_arch_Fast_Rep_String]
|
|
|
|
|= (bit_arch_Fast_Rep_String
|
|
|
|
| bit_arch_Fast_Unaligned_Load
|
2016-03-28 11:39:48 +00:00
|
|
|
| bit_arch_Fast_Unaligned_Copy
|
2016-03-10 13:26:46 +00:00
|
|
|
| bit_arch_Prefer_PMINUB_for_stringop);
|
2010-01-12 19:22:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-03-22 14:46:56 +00:00
|
|
|
|
|
|
|
/* Unaligned load with 256-bit AVX registers are faster on
|
|
|
|
Intel processors with AVX2. */
|
|
|
|
if (CPU_FEATURES_ARCH_P (cpu_features, AVX2_Usable))
|
|
|
|
cpu_features->feature[index_arch_AVX_Fast_Unaligned_Load]
|
|
|
|
|= bit_arch_AVX_Fast_Unaligned_Load;
|
2016-09-06 15:50:55 +00:00
|
|
|
|
|
|
|
/* To avoid SSE transition penalty, use _dl_runtime_resolve_slow.
|
|
|
|
If XGETBV suports ECX == 1, use _dl_runtime_resolve_opt. */
|
|
|
|
cpu_features->feature[index_arch_Use_dl_runtime_resolve_slow]
|
|
|
|
|= bit_arch_Use_dl_runtime_resolve_slow;
|
|
|
|
if (cpu_features->max_cpuid >= 0xd)
|
|
|
|
{
|
|
|
|
unsigned int eax;
|
|
|
|
|
|
|
|
__cpuid_count (0xd, 1, eax, ebx, ecx, edx);
|
|
|
|
if ((eax & (1 << 2)) != 0)
|
|
|
|
cpu_features->feature[index_arch_Use_dl_runtime_resolve_opt]
|
|
|
|
|= bit_arch_Use_dl_runtime_resolve_opt;
|
|
|
|
}
|
2009-03-13 23:53:18 +00:00
|
|
|
}
|
|
|
|
/* This spells out "AuthenticAMD". */
|
|
|
|
else if (ebx == 0x68747541 && ecx == 0x444d4163 && edx == 0x69746e65)
|
|
|
|
{
|
2015-11-30 16:53:37 +00:00
|
|
|
unsigned int extended_model;
|
|
|
|
|
2010-04-04 07:25:46 +00:00
|
|
|
kind = arch_kind_amd;
|
2009-03-13 23:53:18 +00:00
|
|
|
|
2015-11-30 16:53:37 +00:00
|
|
|
get_common_indeces (cpu_features, &family, &model, &extended_model);
|
2011-03-05 04:30:08 +00:00
|
|
|
|
2015-08-13 10:37:47 +00:00
|
|
|
ecx = cpu_features->cpuid[COMMON_CPUID_INDEX_1].ecx;
|
2011-03-05 04:30:08 +00:00
|
|
|
|
2011-10-22 00:47:20 +00:00
|
|
|
unsigned int eax;
|
2011-10-21 02:43:15 +00:00
|
|
|
__cpuid (0x80000000, eax, ebx, ecx, edx);
|
|
|
|
if (eax >= 0x80000001)
|
|
|
|
__cpuid (0x80000001,
|
2015-08-13 10:37:47 +00:00
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_80000001].eax,
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_80000001].ebx,
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_80000001].ecx,
|
|
|
|
cpu_features->cpuid[COMMON_CPUID_INDEX_80000001].edx);
|
2016-01-14 14:36:02 +00:00
|
|
|
|
2016-06-07 15:00:21 +00:00
|
|
|
if (HAS_ARCH_FEATURE (AVX_Usable))
|
|
|
|
{
|
|
|
|
/* Since the FMA4 bit is in COMMON_CPUID_INDEX_80000001 and
|
|
|
|
FMA4 requires AVX, determine if FMA4 is usable here. */
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, FMA4))
|
|
|
|
cpu_features->feature[index_arch_FMA4_Usable]
|
|
|
|
|= bit_arch_FMA4_Usable;
|
|
|
|
}
|
|
|
|
|
2016-01-14 14:36:02 +00:00
|
|
|
if (family == 0x15)
|
|
|
|
{
|
2016-03-28 11:39:48 +00:00
|
|
|
#if index_arch_Fast_Unaligned_Load != index_arch_Fast_Copy_Backward
|
|
|
|
# error index_arch_Fast_Unaligned_Load != index_arch_Fast_Copy_Backward
|
|
|
|
#endif
|
2016-01-14 14:36:02 +00:00
|
|
|
/* "Excavator" */
|
|
|
|
if (model >= 0x60 && model <= 0x7f)
|
2016-03-10 13:26:46 +00:00
|
|
|
cpu_features->feature[index_arch_Fast_Unaligned_Load]
|
2016-03-28 11:39:48 +00:00
|
|
|
|= (bit_arch_Fast_Unaligned_Load
|
|
|
|
| bit_arch_Fast_Copy_Backward);
|
2016-01-14 14:36:02 +00:00
|
|
|
}
|
2009-03-13 23:53:18 +00:00
|
|
|
}
|
|
|
|
else
|
2016-03-22 14:46:56 +00:00
|
|
|
{
|
|
|
|
kind = arch_kind_other;
|
|
|
|
get_common_indeces (cpu_features, NULL, NULL, NULL);
|
|
|
|
}
|
2010-04-04 07:25:46 +00:00
|
|
|
|
2015-08-27 16:06:26 +00:00
|
|
|
/* Support i586 if CX8 is available. */
|
2016-03-22 14:46:56 +00:00
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, CX8))
|
2016-03-10 13:26:46 +00:00
|
|
|
cpu_features->feature[index_arch_I586] |= bit_arch_I586;
|
2015-08-27 16:06:26 +00:00
|
|
|
|
|
|
|
/* Support i686 if CMOV is available. */
|
2016-03-22 14:46:56 +00:00
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, CMOV))
|
2016-03-10 13:26:46 +00:00
|
|
|
cpu_features->feature[index_arch_I686] |= bit_arch_I686;
|
2015-08-27 16:06:26 +00:00
|
|
|
|
2015-08-18 14:59:49 +00:00
|
|
|
#if !HAS_CPUID
|
2015-08-13 11:52:50 +00:00
|
|
|
no_cpuid:
|
|
|
|
#endif
|
|
|
|
|
2015-08-13 10:37:47 +00:00
|
|
|
cpu_features->family = family;
|
|
|
|
cpu_features->model = model;
|
|
|
|
cpu_features->kind = kind;
|
2009-07-29 22:22:28 +00:00
|
|
|
}
|