mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 17:40:06 +00:00
107e6a3c22
Support usable check for all CPU features with the following changes: 1. Change struct cpu_features to struct cpuid_features { struct cpuid_registers cpuid; struct cpuid_registers usable; }; struct cpu_features { struct cpu_features_basic basic; struct cpuid_features features[COMMON_CPUID_INDEX_MAX]; unsigned int preferred[PREFERRED_FEATURE_INDEX_MAX]; ... }; so that there is a usable bit for each cpuid bit. 2. After the cpuid bits have been initialized, copy the known bits to the usable bits. EAX/EBX from INDEX_1 and EAX from INDEX_7 aren't used for CPU feature detection. 3. Clear the usable bits which require OS support. 4. If the feature is supported by OS, copy its cpuid bit to its usable bit. 5. Replace HAS_CPU_FEATURE and CPU_FEATURES_CPU_P with CPU_FEATURE_USABLE and CPU_FEATURE_USABLE_P to check if a feature is usable. 6. Add DEPR_FPU_CS_DS for INDEX_7_EBX_13. 7. Unset MPX feature since it has been deprecated. The results are 1. If the feature is known and doesn't requre OS support, its usable bit is copied from the cpuid bit. 2. Otherwise, its usable bit is copied from the cpuid bit only if the feature is known to supported by OS. 3. CPU_FEATURE_USABLE/CPU_FEATURE_USABLE_P are used to check if the feature can be used. 4. HAS_CPU_FEATURE/CPU_FEATURE_CPU_P are used to check if CPU supports the feature.
54 lines
2.1 KiB
C
54 lines
2.1 KiB
C
/* Runtime architecture check for math tests. x86_64 version.
|
|
Copyright (C) 2014-2020 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
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
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#include <cpu-features.h>
|
|
|
|
#if defined REQUIRE_AVX
|
|
|
|
# define INIT_ARCH_EXT
|
|
# define CHECK_ARCH_EXT \
|
|
do \
|
|
{ \
|
|
if (!CPU_FEATURE_USABLE (AVX)) return; \
|
|
} \
|
|
while (0)
|
|
|
|
#elif defined REQUIRE_AVX2
|
|
|
|
# define INIT_ARCH_EXT
|
|
# define CHECK_ARCH_EXT \
|
|
do \
|
|
{ \
|
|
if (!CPU_FEATURE_USABLE (AVX2)) return; \
|
|
} \
|
|
while (0)
|
|
|
|
#elif defined REQUIRE_AVX512F
|
|
|
|
# define INIT_ARCH_EXT
|
|
# define CHECK_ARCH_EXT \
|
|
do \
|
|
{ \
|
|
if (!CPU_FEATURE_USABLE (AVX512F)) return; \
|
|
} \
|
|
while (0)
|
|
|
|
#else
|
|
# include <sysdeps/generic/math-tests-arch.h>
|
|
#endif
|