2020-07-04 21:35:49 +08:00
|
|
|
/* Initialize CPU feature data via IFUNC relocation.
|
2022-01-02 02:54:23 +08:00
|
|
|
Copyright (C) 2015-2022 Free Software Foundation, Inc.
|
2015-08-13 18:37:47 +08: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
|
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 13:40:42 +08:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2015-08-13 18:37:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include <ldsodefs.h>
|
|
|
|
|
2020-07-04 21:35:49 +08:00
|
|
|
#ifdef SHARED
|
|
|
|
# include <cpu-features.c>
|
2022-01-15 03:16:05 +08:00
|
|
|
# include <gcc-macros.h>
|
2020-07-04 21:35:49 +08:00
|
|
|
|
|
|
|
/* NB: Normally, DL_PLATFORM_INIT calls init_cpu_features to initialize
|
|
|
|
CPU features in dynamic executable. But when loading ld.so inside of
|
|
|
|
static executable, DL_PLATFORM_INIT isn't called and IFUNC relocation
|
|
|
|
is used to call init_cpu_features. In static executable, it is called
|
|
|
|
once by IFUNC relocation. In dynamic executable, it is called twice
|
|
|
|
by DL_PLATFORM_INIT and by IFUNC relocation. */
|
|
|
|
extern void __x86_cpu_features (void) attribute_hidden;
|
2021-01-25 21:29:45 +08:00
|
|
|
void (*const __x86_cpu_features_p) (void) attribute_hidden
|
2020-07-04 21:35:49 +08:00
|
|
|
= __x86_cpu_features;
|
|
|
|
|
|
|
|
void
|
|
|
|
_dl_x86_init_cpu_features (void)
|
|
|
|
{
|
|
|
|
struct cpu_features *cpu_features = __get_cpu_features ();
|
|
|
|
if (cpu_features->basic.kind == arch_kind_unknown)
|
2022-01-15 03:16:05 +08:00
|
|
|
{
|
|
|
|
init_cpu_features (cpu_features);
|
|
|
|
|
|
|
|
# if IS_IN (rtld)
|
|
|
|
/* See isa-level.c. */
|
|
|
|
# if defined GCCMACRO__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 \
|
|
|
|
&& defined HAVE_X86_LAHF_SAHF && defined GCCMACRO__POPCNT__ \
|
|
|
|
&& defined GCCMACRO__SSE3__ && defined GCCMACRO__SSSE3__ \
|
|
|
|
&& defined GCCMACRO__SSE4_1__ && defined GCCMACRO__SSE4_2__
|
|
|
|
if (!(cpu_features->isa_1 & GNU_PROPERTY_X86_ISA_1_V2))
|
|
|
|
_dl_fatal_printf ("\
|
|
|
|
Fatal glibc error: CPU does not support x86-64-v%d\n", 2);
|
|
|
|
# if defined GCCMACRO__AVX__ && defined GCCMACRO__AVX2__ \
|
|
|
|
&& defined GCCMACRO__F16C__ && defined GCCMACRO__FMA__ \
|
|
|
|
&& defined GCCMACRO__LZCNT__ && defined HAVE_X86_MOVBE
|
|
|
|
if (!(cpu_features->isa_1 & GNU_PROPERTY_X86_ISA_1_V3))
|
|
|
|
_dl_fatal_printf ("\
|
|
|
|
Fatal glibc error: CPU does not support x86-64-v%d\n", 3);
|
|
|
|
# if defined GCCMACRO__AVX512F__ && defined GCCMACRO__AVX512BW__ \
|
|
|
|
&& defined GCCMACRO__AVX512CD__ && defined GCCMACRO__AVX512DQ__ \
|
|
|
|
&& defined GCCMACRO__AVX512VL__
|
|
|
|
if (!(cpu_features->isa_1 & GNU_PROPERTY_X86_ISA_1_V4))
|
|
|
|
_dl_fatal_printf ("\
|
|
|
|
Fatal glibc error: CPU does not support x86-64-v%d\n", 4);
|
|
|
|
# endif /* ISA level 4 */
|
|
|
|
# endif /* ISA level 3 */
|
|
|
|
# endif /* ISA level 2 */
|
|
|
|
# endif /* IS_IN (rtld) */
|
|
|
|
}
|
2020-07-04 21:35:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
__ifunc (__x86_cpu_features, __x86_cpu_features, NULL, void,
|
|
|
|
_dl_x86_init_cpu_features);
|
|
|
|
#endif
|
|
|
|
|
2020-12-25 23:30:46 +08:00
|
|
|
#undef _dl_x86_get_cpu_features
|
2015-08-13 18:37:47 +08:00
|
|
|
|
|
|
|
const struct cpu_features *
|
2020-12-25 23:30:46 +08:00
|
|
|
_dl_x86_get_cpu_features (void)
|
2015-08-13 18:37:47 +08:00
|
|
|
{
|
|
|
|
return &GLRO(dl_x86_cpu_features);
|
|
|
|
}
|