mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 21:10:07 +00:00
24b6515d87
Some libm functions are unable to use the generic alias macros such as libm_alias_double because they have special symbol versioning requirements for the main float, double or long double public names. To facilitate adding _FloatN / _FloatNx function aliases in future, it's still desirable to have generic macros those functions can use as far as possible. This patch adds macros such as libm_alias_double_other, which only define names for _FloatN / _FloatNx aliases, not for float / double / long double. As present, all these new macros do nothing, but they are called in the appropriate places in macros such as libm_alias_double. This patch also arranges for lgamma implementations, and the recently added optimized float function implementations, to use the new macros to make them ready for addition of _FloatN / _FloatNx aliases. Tested for x86_64, and tested with build-many-glibcs.py that installed stripped shared libraries are unchanged by this patch. * sysdeps/generic/libm-alias-double.h (libm_alias_double_other_r): New macro. (libm_alias_double_other): Likewise. (libm_alias_double_r): Use libm_alias_double_other_r. * sysdeps/generic/libm-alias-float.h (libm_alias_float_other_r): New macro. (libm_alias_float_other): Likewise. (libm_alias_float_r): Use libm_alias_float_other_r. * sysdeps/generic/libm-alias-float128.h (libm_alias_float128_other_r): New macro. (libm_alias_float128_other): Likewise. (libm_alias_float128_r): Use libm_alias_float128_other_r. * sysdeps/generic/libm-alias-ldouble.h (libm_alias_ldouble_other_r): New macro. (libm_alias_ldouble_other): Likewise. (libm_alias_ldouble_r): Use libm_alias_ldouble_other_r. * sysdeps/ieee754/ldbl-opt/libm-alias-double.h (libm_alias_double_other_r): New macro. (libm_alias_double_other): Likewise. (libm_alias_double_r): Use libm_alias_double_other_r. * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h (libm_alias_ldouble_other_r): New macro. (libm_alias_ldouble_other): Likewise. (libm_alias_ldouble_r): Use libm_alias_ldouble_other_r. * math/w_lgamma_main.c: Include <libm-alias-double.h>. [!USE_AS_COMPAT]: Use libm_alias_double_other. * math/w_lgammaf_main.c: Include <libm-alias-float.h>. [!USE_AS_COMPAT]: Use libm_alias_float_other. * math/w_lgammal_main.c: Include <libm-alias-ldouble.h>. [!USE_AS_COMPAT]: Use libm_alias_ldouble_other. * math/w_exp2f.c: Use libm_alias_float_other. * math/w_expf.c: Likewise. * math/w_log2f.c: Likewise. * math/w_logf.c: Likewise. * math/w_powf.c: Likewise. * sysdeps/ieee754/flt-32/e_exp2f.c: Include <libm-alias-float.h>. [!__exp2f]: Use libm_alias_float_other. * sysdeps/ieee754/flt-32/e_expf.c: Include <libm-alias-float.h>. [!__expf]: Use libm_alias_float_other. * sysdeps/ieee754/flt-32/e_log2f.c: Include <libm-alias-float.h>. [!__log2f]: Use libm_alias_float_other. * sysdeps/ieee754/flt-32/e_logf.c: Include <libm-alias-float.h>. [!__logf]: Use libm_alias_float_other. * sysdeps/ieee754/flt-32/e_powf.c: Include <libm-alias-float.h>. [!__powf]: Use libm_alias_float_other.
55 lines
2.2 KiB
C
55 lines
2.2 KiB
C
/* Define aliases for libm double functions.
|
|
Copyright (C) 2017 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
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef _LIBM_ALIAS_DOUBLE_H
|
|
#define _LIBM_ALIAS_DOUBLE_H
|
|
|
|
/* Define _FloatN / _FloatNx aliases for a double libm function that
|
|
has internal name FROM ## R and public names TO ## suffix ## R for
|
|
each suffix of a supported _FloatN / _FloatNx floating-point type
|
|
with the same format as double. */
|
|
#define libm_alias_double_other_r(from, to, r)
|
|
|
|
/* Likewise, but without the R suffix. */
|
|
#define libm_alias_double_other(from, to) \
|
|
libm_alias_double_other_r (from, to, )
|
|
|
|
/* Define aliases for a double libm function that has internal name
|
|
FROM ## R and public names TO ## suffix ## R for each suffix of a
|
|
supported floating-point type with the same format as double. This
|
|
should only be used for functions where such public names exist for
|
|
_FloatN types, not for implementation-namespace exported names
|
|
(where there is one name per format, not per type) or for
|
|
obsolescent functions not provided for _FloatN types. */
|
|
#ifdef NO_LONG_DOUBLE
|
|
# define libm_alias_double_r(from, to, r) \
|
|
weak_alias (from ## r, to ## r) \
|
|
strong_alias (from ## r, from ## l ## r) \
|
|
weak_alias (from ## r, to ## l ## r) \
|
|
libm_alias_double_other_r (from, to, r)
|
|
#else
|
|
# define libm_alias_double_r(from, to, r) \
|
|
weak_alias (from ## r, to ## r) \
|
|
libm_alias_double_other_r (from, to, r)
|
|
#endif
|
|
|
|
/* Likewise, but without the R suffix. */
|
|
#define libm_alias_double(from, to) libm_alias_double_r (from, to, )
|
|
|
|
#endif
|