2017-10-12 19:24:44 +00:00
|
|
|
/* IFUNC generic definitions.
|
|
|
|
This file is part of the GNU C Library.
|
2023-01-06 21:08:04 +00:00
|
|
|
Copyright (C) 2017-2023 Free Software Foundation, Inc.
|
2017-10-12 19:24:44 +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
|
|
|
|
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 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2017-10-12 19:24:44 +00:00
|
|
|
|
|
|
|
/* These macros are used to implement ifunc selection in C. To implement
|
|
|
|
an ifunc function, foo, which returns the address of __foo_impl1 or
|
|
|
|
__foo_impl2:
|
|
|
|
|
|
|
|
#define foo __redirect_foo
|
|
|
|
#include <foo.h>
|
|
|
|
#undef foo
|
|
|
|
#define SYMBOL_NAME foo
|
|
|
|
#include <ifunc-init.h>
|
|
|
|
|
|
|
|
extern __typeof (REDIRECT_NAME) OPTIMIZE (impl1) attribute_hidden;
|
|
|
|
extern __typeof (REDIRECT_NAME) OPTIMIZE (impl2) attribute_hidden;
|
|
|
|
|
|
|
|
static inline void *
|
|
|
|
foo_selector (void)
|
|
|
|
{
|
|
|
|
if (condition)
|
|
|
|
return OPTIMIZE (impl2);
|
|
|
|
|
|
|
|
return OPTIMIZE (impl1);
|
|
|
|
}
|
|
|
|
|
|
|
|
libc_ifunc_redirected (__redirect_foo, foo, IFUNC_SELECTOR ());
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define PASTER1(x,y) x##_##y
|
|
|
|
#define EVALUATOR1(x,y) PASTER1 (x,y)
|
|
|
|
#define PASTER2(x,y) __##x##_##y
|
|
|
|
#define EVALUATOR2(x,y) PASTER2 (x,y)
|
|
|
|
|
|
|
|
/* Basically set '__redirect_<symbol>' to use as type definition,
|
|
|
|
'__<symbol>_<variant>' as the optimized implementation and
|
|
|
|
'<symbol>_ifunc_selector' as the IFUNC selector. */
|
|
|
|
#define REDIRECT_NAME EVALUATOR1 (__redirect, SYMBOL_NAME)
|
|
|
|
#define IFUNC_SELECTOR EVALUATOR1 (SYMBOL_NAME, ifunc_selector)
|
2021-10-27 00:43:18 +00:00
|
|
|
#define OPTIMIZE1(name) EVALUATOR1 (SYMBOL_NAME, name)
|
|
|
|
#define OPTIMIZE2(name) EVALUATOR2 (SYMBOL_NAME, name)
|
|
|
|
/* Default is to use OPTIMIZE2. */
|
|
|
|
#define OPTIMIZE(name) OPTIMIZE2(name)
|