2009-03-13 23:53:18 +00:00
|
|
|
/* Initialize CPU feature data.
|
|
|
|
This file is part of the GNU C Library.
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 2008-2017 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>
|
x86: Set dl_platform and dl_hwcap from CPU features [BZ #21391]
dl_platform and dl_hwcap are set from AT_PLATFORM and AT_HWCAP very
early during startup. They are used by dynamic linker to determine
platform and build an array of hardware capability names, which are
added to search path when loading shared object. dl_platform and
dl_hwcap are unused on x86-64. On i386, i386, i486, i586 and i686
platforms were supported and only SSE2 capability was used.
On x86, usage of AT_PLATFORM and AT_HWCAP to determine platform and
processor capabilities is obsolete since all information is available
in dl_x86_cpu_features. This patch sets dl_platform and dl_hwcap from
dl_x86_cpu_features in dynamic linker. On i386, the available plaforms
are changed to i586 and i686 since i386 has been deprecated. On x86-64,
the available plaforms are haswell, which is for Haswell class processors
with BMI1, BMI2, LZCNT, MOVBE, POPCNT, AVX2 and FMA, and xeon_phi, which
is for Xeon Phi class processors with AVX512F, AVX512CD, AVX512ER and
AVX512PF. A capability, avx512_1, is also added to x86-64 for AVX512
ISAs: AVX512F, AVX512CD, AVX512BW, AVX512DQ and AVX512VL.
[BZ #21391]
* sysdeps/i386/dl-machine.h (dl_platform_init) [IS_IN (rtld)]:
Only call init_cpu_features.
[!IS_IN (rtld)]: Only set GLRO(dl_platform) to NULL if needed.
* sysdeps/x86_64/dl-machine.h (dl_platform_init): Likewise.
* sysdeps/i386/dl-procinfo.h: Removed.
* sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Don't include
<sysdeps/i386/dl-procinfo.h> nor <ldsodefs.h>. Include
<sysdeps/x86/dl-procinfo.h>.
(_dl_procinfo): Replace _DL_HWCAP_COUNT with 32.
* sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h [!IS_IN (ldconfig)]:
Include <sysdeps/x86/dl-procinfo.h> instead of
<sysdeps/generic/dl-procinfo.h>.
* sysdeps/x86/cpu-features.c: Include <dl-hwcap.h>.
(init_cpu_features): Set dl_platform, dl_hwcap and dl_hwcap_mask.
* sysdeps/x86/cpu-features.h (bit_cpu_LZCNT): New.
(bit_cpu_MOVBE): Likewise.
(bit_cpu_BMI1): Likewise.
(bit_cpu_BMI2): Likewise.
(index_cpu_BMI1): Likewise.
(index_cpu_BMI2): Likewise.
(index_cpu_LZCNT): Likewise.
(index_cpu_MOVBE): Likewise.
(index_cpu_POPCNT): Likewise.
(reg_BMI1): Likewise.
(reg_BMI2): Likewise.
(reg_LZCNT): Likewise.
(reg_MOVBE): Likewise.
(reg_POPCNT): Likewise.
* sysdeps/x86/dl-hwcap.h: New file.
* sysdeps/x86/dl-procinfo.h: Likewise.
* sysdeps/x86/dl-procinfo.c (_dl_x86_hwcap_flags): New.
(_dl_x86_platforms): Likewise.
2017-05-03 20:42:42 +00:00
|
|
|
#include <dl-hwcap.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,
|
2016-12-19 10:20:31 +00:00
|
|
|
unsigned int *extended_model, unsigned int *stepping)
|
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;
|
2016-12-19 10:20:31 +00:00
|
|
|
*stepping = eax & 0x0f;
|
2016-03-22 14:46:56 +00:00
|
|
|
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))
|
2016-10-17 23:35:34 +00:00
|
|
|
{
|
|
|
|
cpu_features->feature[index_arch_AVX_Usable]
|
|
|
|
|= bit_arch_AVX_Usable;
|
|
|
|
/* The following features depend on AVX being 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;
|
|
|
|
/* Determine if FMA is usable. */
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, FMA))
|
|
|
|
cpu_features->feature[index_arch_FMA_Usable]
|
|
|
|
|= bit_arch_FMA_Usable;
|
|
|
|
}
|
|
|
|
|
2016-03-22 14:46:56 +00:00
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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)
|
|
|
|
{
|
2016-12-19 10:20:31 +00:00
|
|
|
unsigned int extended_model, stepping;
|
2015-11-30 16:53:37 +00:00
|
|
|
|
2010-04-04 07:25:46 +00:00
|
|
|
kind = arch_kind_intel;
|
2009-03-13 23:53:18 +00:00
|
|
|
|
2016-12-19 10:20:31 +00:00
|
|
|
get_common_indeces (cpu_features, &family, &model, &extended_model,
|
|
|
|
&stepping);
|
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
|
|
|
{
|
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-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. */
|
2017-03-17 18:38:13 +00:00
|
|
|
if (!CPU_FEATURES_CPU_P (cpu_features, AVX))
|
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-12-19 10:20:31 +00:00
|
|
|
|
|
|
|
case 0x3f:
|
|
|
|
/* Xeon E7 v3 with stepping >= 4 has working TSX. */
|
|
|
|
if (stepping >= 4)
|
|
|
|
break;
|
|
|
|
case 0x3c:
|
|
|
|
case 0x45:
|
|
|
|
case 0x46:
|
|
|
|
/* Disable Intel TSX on Haswell processors (except Xeon E7 v3
|
|
|
|
with stepping >= 4) to avoid TSX on kernels that weren't
|
|
|
|
updated with the latest microcode package (which disables
|
|
|
|
broken feature by default). */
|
2017-02-17 19:53:26 +00:00
|
|
|
cpu_features->cpuid[index_cpu_RTM].reg_RTM &= ~bit_cpu_RTM;
|
2016-12-19 10:20:31 +00:00
|
|
|
break;
|
2010-01-12 19:22:03 +00:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2017-04-18 15:27:22 +00:00
|
|
|
/* Since AVX512ER is unique to Xeon Phi, set Prefer_No_VZEROUPPER
|
2017-04-18 21:01:45 +00:00
|
|
|
if AVX512ER is available. Don't use AVX512 to avoid lower CPU
|
|
|
|
frequency if AVX512ER isn't available. */
|
2017-04-18 15:27:22 +00:00
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, AVX512ER))
|
|
|
|
cpu_features->feature[index_arch_Prefer_No_VZEROUPPER]
|
|
|
|
|= bit_arch_Prefer_No_VZEROUPPER;
|
2017-04-18 21:01:45 +00:00
|
|
|
else
|
|
|
|
cpu_features->feature[index_arch_Prefer_No_AVX512]
|
|
|
|
|= bit_arch_Prefer_No_AVX512;
|
2017-04-18 15:27:22 +00:00
|
|
|
|
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)
|
|
|
|
{
|
2016-12-19 10:20:31 +00:00
|
|
|
unsigned int extended_model, stepping;
|
2015-11-30 16:53:37 +00:00
|
|
|
|
2010-04-04 07:25:46 +00:00
|
|
|
kind = arch_kind_amd;
|
2009-03-13 23:53:18 +00:00
|
|
|
|
2016-12-19 10:20:31 +00:00
|
|
|
get_common_indeces (cpu_features, &family, &model, &extended_model,
|
|
|
|
&stepping);
|
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;
|
2016-12-19 10:20:31 +00:00
|
|
|
get_common_indeces (cpu_features, NULL, NULL, NULL, NULL);
|
2016-03-22 14:46:56 +00:00
|
|
|
}
|
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;
|
x86: Set dl_platform and dl_hwcap from CPU features [BZ #21391]
dl_platform and dl_hwcap are set from AT_PLATFORM and AT_HWCAP very
early during startup. They are used by dynamic linker to determine
platform and build an array of hardware capability names, which are
added to search path when loading shared object. dl_platform and
dl_hwcap are unused on x86-64. On i386, i386, i486, i586 and i686
platforms were supported and only SSE2 capability was used.
On x86, usage of AT_PLATFORM and AT_HWCAP to determine platform and
processor capabilities is obsolete since all information is available
in dl_x86_cpu_features. This patch sets dl_platform and dl_hwcap from
dl_x86_cpu_features in dynamic linker. On i386, the available plaforms
are changed to i586 and i686 since i386 has been deprecated. On x86-64,
the available plaforms are haswell, which is for Haswell class processors
with BMI1, BMI2, LZCNT, MOVBE, POPCNT, AVX2 and FMA, and xeon_phi, which
is for Xeon Phi class processors with AVX512F, AVX512CD, AVX512ER and
AVX512PF. A capability, avx512_1, is also added to x86-64 for AVX512
ISAs: AVX512F, AVX512CD, AVX512BW, AVX512DQ and AVX512VL.
[BZ #21391]
* sysdeps/i386/dl-machine.h (dl_platform_init) [IS_IN (rtld)]:
Only call init_cpu_features.
[!IS_IN (rtld)]: Only set GLRO(dl_platform) to NULL if needed.
* sysdeps/x86_64/dl-machine.h (dl_platform_init): Likewise.
* sysdeps/i386/dl-procinfo.h: Removed.
* sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Don't include
<sysdeps/i386/dl-procinfo.h> nor <ldsodefs.h>. Include
<sysdeps/x86/dl-procinfo.h>.
(_dl_procinfo): Replace _DL_HWCAP_COUNT with 32.
* sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h [!IS_IN (ldconfig)]:
Include <sysdeps/x86/dl-procinfo.h> instead of
<sysdeps/generic/dl-procinfo.h>.
* sysdeps/x86/cpu-features.c: Include <dl-hwcap.h>.
(init_cpu_features): Set dl_platform, dl_hwcap and dl_hwcap_mask.
* sysdeps/x86/cpu-features.h (bit_cpu_LZCNT): New.
(bit_cpu_MOVBE): Likewise.
(bit_cpu_BMI1): Likewise.
(bit_cpu_BMI2): Likewise.
(index_cpu_BMI1): Likewise.
(index_cpu_BMI2): Likewise.
(index_cpu_LZCNT): Likewise.
(index_cpu_MOVBE): Likewise.
(index_cpu_POPCNT): Likewise.
(reg_BMI1): Likewise.
(reg_BMI2): Likewise.
(reg_LZCNT): Likewise.
(reg_MOVBE): Likewise.
(reg_POPCNT): Likewise.
* sysdeps/x86/dl-hwcap.h: New file.
* sysdeps/x86/dl-procinfo.h: Likewise.
* sysdeps/x86/dl-procinfo.c (_dl_x86_hwcap_flags): New.
(_dl_x86_platforms): Likewise.
2017-05-03 20:42:42 +00:00
|
|
|
|
|
|
|
/* Reuse dl_platform, dl_hwcap and dl_hwcap_mask for x86. */
|
|
|
|
GLRO(dl_platform) = NULL;
|
|
|
|
GLRO(dl_hwcap) = 0;
|
2017-05-22 19:29:16 +00:00
|
|
|
#if !HAVE_TUNABLES && defined SHARED
|
2017-06-01 17:02:03 +00:00
|
|
|
/* The glibc.tune.hwcap_mask tunable is initialized already, so no need to do
|
|
|
|
this. */
|
x86: Set dl_platform and dl_hwcap from CPU features [BZ #21391]
dl_platform and dl_hwcap are set from AT_PLATFORM and AT_HWCAP very
early during startup. They are used by dynamic linker to determine
platform and build an array of hardware capability names, which are
added to search path when loading shared object. dl_platform and
dl_hwcap are unused on x86-64. On i386, i386, i486, i586 and i686
platforms were supported and only SSE2 capability was used.
On x86, usage of AT_PLATFORM and AT_HWCAP to determine platform and
processor capabilities is obsolete since all information is available
in dl_x86_cpu_features. This patch sets dl_platform and dl_hwcap from
dl_x86_cpu_features in dynamic linker. On i386, the available plaforms
are changed to i586 and i686 since i386 has been deprecated. On x86-64,
the available plaforms are haswell, which is for Haswell class processors
with BMI1, BMI2, LZCNT, MOVBE, POPCNT, AVX2 and FMA, and xeon_phi, which
is for Xeon Phi class processors with AVX512F, AVX512CD, AVX512ER and
AVX512PF. A capability, avx512_1, is also added to x86-64 for AVX512
ISAs: AVX512F, AVX512CD, AVX512BW, AVX512DQ and AVX512VL.
[BZ #21391]
* sysdeps/i386/dl-machine.h (dl_platform_init) [IS_IN (rtld)]:
Only call init_cpu_features.
[!IS_IN (rtld)]: Only set GLRO(dl_platform) to NULL if needed.
* sysdeps/x86_64/dl-machine.h (dl_platform_init): Likewise.
* sysdeps/i386/dl-procinfo.h: Removed.
* sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Don't include
<sysdeps/i386/dl-procinfo.h> nor <ldsodefs.h>. Include
<sysdeps/x86/dl-procinfo.h>.
(_dl_procinfo): Replace _DL_HWCAP_COUNT with 32.
* sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h [!IS_IN (ldconfig)]:
Include <sysdeps/x86/dl-procinfo.h> instead of
<sysdeps/generic/dl-procinfo.h>.
* sysdeps/x86/cpu-features.c: Include <dl-hwcap.h>.
(init_cpu_features): Set dl_platform, dl_hwcap and dl_hwcap_mask.
* sysdeps/x86/cpu-features.h (bit_cpu_LZCNT): New.
(bit_cpu_MOVBE): Likewise.
(bit_cpu_BMI1): Likewise.
(bit_cpu_BMI2): Likewise.
(index_cpu_BMI1): Likewise.
(index_cpu_BMI2): Likewise.
(index_cpu_LZCNT): Likewise.
(index_cpu_MOVBE): Likewise.
(index_cpu_POPCNT): Likewise.
(reg_BMI1): Likewise.
(reg_BMI2): Likewise.
(reg_LZCNT): Likewise.
(reg_MOVBE): Likewise.
(reg_POPCNT): Likewise.
* sysdeps/x86/dl-hwcap.h: New file.
* sysdeps/x86/dl-procinfo.h: Likewise.
* sysdeps/x86/dl-procinfo.c (_dl_x86_hwcap_flags): New.
(_dl_x86_platforms): Likewise.
2017-05-03 20:42:42 +00:00
|
|
|
GLRO(dl_hwcap_mask) = HWCAP_IMPORTANT;
|
2017-06-01 17:02:03 +00:00
|
|
|
#endif
|
x86: Set dl_platform and dl_hwcap from CPU features [BZ #21391]
dl_platform and dl_hwcap are set from AT_PLATFORM and AT_HWCAP very
early during startup. They are used by dynamic linker to determine
platform and build an array of hardware capability names, which are
added to search path when loading shared object. dl_platform and
dl_hwcap are unused on x86-64. On i386, i386, i486, i586 and i686
platforms were supported and only SSE2 capability was used.
On x86, usage of AT_PLATFORM and AT_HWCAP to determine platform and
processor capabilities is obsolete since all information is available
in dl_x86_cpu_features. This patch sets dl_platform and dl_hwcap from
dl_x86_cpu_features in dynamic linker. On i386, the available plaforms
are changed to i586 and i686 since i386 has been deprecated. On x86-64,
the available plaforms are haswell, which is for Haswell class processors
with BMI1, BMI2, LZCNT, MOVBE, POPCNT, AVX2 and FMA, and xeon_phi, which
is for Xeon Phi class processors with AVX512F, AVX512CD, AVX512ER and
AVX512PF. A capability, avx512_1, is also added to x86-64 for AVX512
ISAs: AVX512F, AVX512CD, AVX512BW, AVX512DQ and AVX512VL.
[BZ #21391]
* sysdeps/i386/dl-machine.h (dl_platform_init) [IS_IN (rtld)]:
Only call init_cpu_features.
[!IS_IN (rtld)]: Only set GLRO(dl_platform) to NULL if needed.
* sysdeps/x86_64/dl-machine.h (dl_platform_init): Likewise.
* sysdeps/i386/dl-procinfo.h: Removed.
* sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Don't include
<sysdeps/i386/dl-procinfo.h> nor <ldsodefs.h>. Include
<sysdeps/x86/dl-procinfo.h>.
(_dl_procinfo): Replace _DL_HWCAP_COUNT with 32.
* sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h [!IS_IN (ldconfig)]:
Include <sysdeps/x86/dl-procinfo.h> instead of
<sysdeps/generic/dl-procinfo.h>.
* sysdeps/x86/cpu-features.c: Include <dl-hwcap.h>.
(init_cpu_features): Set dl_platform, dl_hwcap and dl_hwcap_mask.
* sysdeps/x86/cpu-features.h (bit_cpu_LZCNT): New.
(bit_cpu_MOVBE): Likewise.
(bit_cpu_BMI1): Likewise.
(bit_cpu_BMI2): Likewise.
(index_cpu_BMI1): Likewise.
(index_cpu_BMI2): Likewise.
(index_cpu_LZCNT): Likewise.
(index_cpu_MOVBE): Likewise.
(index_cpu_POPCNT): Likewise.
(reg_BMI1): Likewise.
(reg_BMI2): Likewise.
(reg_LZCNT): Likewise.
(reg_MOVBE): Likewise.
(reg_POPCNT): Likewise.
* sysdeps/x86/dl-hwcap.h: New file.
* sysdeps/x86/dl-procinfo.h: Likewise.
* sysdeps/x86/dl-procinfo.c (_dl_x86_hwcap_flags): New.
(_dl_x86_platforms): Likewise.
2017-05-03 20:42:42 +00:00
|
|
|
|
2017-05-22 19:29:16 +00:00
|
|
|
#ifdef __x86_64__
|
x86: Set dl_platform and dl_hwcap from CPU features [BZ #21391]
dl_platform and dl_hwcap are set from AT_PLATFORM and AT_HWCAP very
early during startup. They are used by dynamic linker to determine
platform and build an array of hardware capability names, which are
added to search path when loading shared object. dl_platform and
dl_hwcap are unused on x86-64. On i386, i386, i486, i586 and i686
platforms were supported and only SSE2 capability was used.
On x86, usage of AT_PLATFORM and AT_HWCAP to determine platform and
processor capabilities is obsolete since all information is available
in dl_x86_cpu_features. This patch sets dl_platform and dl_hwcap from
dl_x86_cpu_features in dynamic linker. On i386, the available plaforms
are changed to i586 and i686 since i386 has been deprecated. On x86-64,
the available plaforms are haswell, which is for Haswell class processors
with BMI1, BMI2, LZCNT, MOVBE, POPCNT, AVX2 and FMA, and xeon_phi, which
is for Xeon Phi class processors with AVX512F, AVX512CD, AVX512ER and
AVX512PF. A capability, avx512_1, is also added to x86-64 for AVX512
ISAs: AVX512F, AVX512CD, AVX512BW, AVX512DQ and AVX512VL.
[BZ #21391]
* sysdeps/i386/dl-machine.h (dl_platform_init) [IS_IN (rtld)]:
Only call init_cpu_features.
[!IS_IN (rtld)]: Only set GLRO(dl_platform) to NULL if needed.
* sysdeps/x86_64/dl-machine.h (dl_platform_init): Likewise.
* sysdeps/i386/dl-procinfo.h: Removed.
* sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Don't include
<sysdeps/i386/dl-procinfo.h> nor <ldsodefs.h>. Include
<sysdeps/x86/dl-procinfo.h>.
(_dl_procinfo): Replace _DL_HWCAP_COUNT with 32.
* sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h [!IS_IN (ldconfig)]:
Include <sysdeps/x86/dl-procinfo.h> instead of
<sysdeps/generic/dl-procinfo.h>.
* sysdeps/x86/cpu-features.c: Include <dl-hwcap.h>.
(init_cpu_features): Set dl_platform, dl_hwcap and dl_hwcap_mask.
* sysdeps/x86/cpu-features.h (bit_cpu_LZCNT): New.
(bit_cpu_MOVBE): Likewise.
(bit_cpu_BMI1): Likewise.
(bit_cpu_BMI2): Likewise.
(index_cpu_BMI1): Likewise.
(index_cpu_BMI2): Likewise.
(index_cpu_LZCNT): Likewise.
(index_cpu_MOVBE): Likewise.
(index_cpu_POPCNT): Likewise.
(reg_BMI1): Likewise.
(reg_BMI2): Likewise.
(reg_LZCNT): Likewise.
(reg_MOVBE): Likewise.
(reg_POPCNT): Likewise.
* sysdeps/x86/dl-hwcap.h: New file.
* sysdeps/x86/dl-procinfo.h: Likewise.
* sysdeps/x86/dl-procinfo.c (_dl_x86_hwcap_flags): New.
(_dl_x86_platforms): Likewise.
2017-05-03 20:42:42 +00:00
|
|
|
if (cpu_features->kind == arch_kind_intel)
|
|
|
|
{
|
|
|
|
if (CPU_FEATURES_ARCH_P (cpu_features, AVX512F_Usable)
|
|
|
|
&& CPU_FEATURES_CPU_P (cpu_features, AVX512CD))
|
|
|
|
{
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, AVX512ER))
|
|
|
|
{
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, AVX512PF))
|
|
|
|
GLRO(dl_platform) = "xeon_phi";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, AVX512BW)
|
|
|
|
&& CPU_FEATURES_CPU_P (cpu_features, AVX512DQ)
|
|
|
|
&& CPU_FEATURES_CPU_P (cpu_features, AVX512VL))
|
|
|
|
GLRO(dl_hwcap) |= HWCAP_X86_AVX512_1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GLRO(dl_platform) == NULL
|
|
|
|
&& CPU_FEATURES_ARCH_P (cpu_features, AVX2_Usable)
|
|
|
|
&& CPU_FEATURES_ARCH_P (cpu_features, FMA_Usable)
|
|
|
|
&& CPU_FEATURES_CPU_P (cpu_features, BMI1)
|
|
|
|
&& CPU_FEATURES_CPU_P (cpu_features, BMI2)
|
|
|
|
&& CPU_FEATURES_CPU_P (cpu_features, LZCNT)
|
|
|
|
&& CPU_FEATURES_CPU_P (cpu_features, MOVBE)
|
|
|
|
&& CPU_FEATURES_CPU_P (cpu_features, POPCNT))
|
|
|
|
GLRO(dl_platform) = "haswell";
|
|
|
|
}
|
2017-05-22 19:29:16 +00:00
|
|
|
#else
|
x86: Set dl_platform and dl_hwcap from CPU features [BZ #21391]
dl_platform and dl_hwcap are set from AT_PLATFORM and AT_HWCAP very
early during startup. They are used by dynamic linker to determine
platform and build an array of hardware capability names, which are
added to search path when loading shared object. dl_platform and
dl_hwcap are unused on x86-64. On i386, i386, i486, i586 and i686
platforms were supported and only SSE2 capability was used.
On x86, usage of AT_PLATFORM and AT_HWCAP to determine platform and
processor capabilities is obsolete since all information is available
in dl_x86_cpu_features. This patch sets dl_platform and dl_hwcap from
dl_x86_cpu_features in dynamic linker. On i386, the available plaforms
are changed to i586 and i686 since i386 has been deprecated. On x86-64,
the available plaforms are haswell, which is for Haswell class processors
with BMI1, BMI2, LZCNT, MOVBE, POPCNT, AVX2 and FMA, and xeon_phi, which
is for Xeon Phi class processors with AVX512F, AVX512CD, AVX512ER and
AVX512PF. A capability, avx512_1, is also added to x86-64 for AVX512
ISAs: AVX512F, AVX512CD, AVX512BW, AVX512DQ and AVX512VL.
[BZ #21391]
* sysdeps/i386/dl-machine.h (dl_platform_init) [IS_IN (rtld)]:
Only call init_cpu_features.
[!IS_IN (rtld)]: Only set GLRO(dl_platform) to NULL if needed.
* sysdeps/x86_64/dl-machine.h (dl_platform_init): Likewise.
* sysdeps/i386/dl-procinfo.h: Removed.
* sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Don't include
<sysdeps/i386/dl-procinfo.h> nor <ldsodefs.h>. Include
<sysdeps/x86/dl-procinfo.h>.
(_dl_procinfo): Replace _DL_HWCAP_COUNT with 32.
* sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h [!IS_IN (ldconfig)]:
Include <sysdeps/x86/dl-procinfo.h> instead of
<sysdeps/generic/dl-procinfo.h>.
* sysdeps/x86/cpu-features.c: Include <dl-hwcap.h>.
(init_cpu_features): Set dl_platform, dl_hwcap and dl_hwcap_mask.
* sysdeps/x86/cpu-features.h (bit_cpu_LZCNT): New.
(bit_cpu_MOVBE): Likewise.
(bit_cpu_BMI1): Likewise.
(bit_cpu_BMI2): Likewise.
(index_cpu_BMI1): Likewise.
(index_cpu_BMI2): Likewise.
(index_cpu_LZCNT): Likewise.
(index_cpu_MOVBE): Likewise.
(index_cpu_POPCNT): Likewise.
(reg_BMI1): Likewise.
(reg_BMI2): Likewise.
(reg_LZCNT): Likewise.
(reg_MOVBE): Likewise.
(reg_POPCNT): Likewise.
* sysdeps/x86/dl-hwcap.h: New file.
* sysdeps/x86/dl-procinfo.h: Likewise.
* sysdeps/x86/dl-procinfo.c (_dl_x86_hwcap_flags): New.
(_dl_x86_platforms): Likewise.
2017-05-03 20:42:42 +00:00
|
|
|
if (CPU_FEATURES_CPU_P (cpu_features, SSE2))
|
|
|
|
GLRO(dl_hwcap) |= HWCAP_X86_SSE2;
|
|
|
|
|
|
|
|
if (CPU_FEATURES_ARCH_P (cpu_features, I686))
|
|
|
|
GLRO(dl_platform) = "i686";
|
|
|
|
else if (CPU_FEATURES_ARCH_P (cpu_features, I586))
|
|
|
|
GLRO(dl_platform) = "i586";
|
|
|
|
#endif
|
2009-07-29 22:22:28 +00:00
|
|
|
}
|