mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
f433d0b3bb
Continuing the preparation for additional _FloatN / _FloatNx function aliases, this patch makes alpha libm function implementations use libm_alias_float macros to define function aliases. In the case of the ABI compatibility for complex functions, libm_alias_float_other is used, with the cfloat_versions macro adjusted to take a function name argument without the trailing 'f' to facilitate this, and cfloat_versions dealing with calling libm_alias_float_other (except for clog10f, which doesn't use that macro because of the complexity associated with __clog10f also being exported). Tested with build-many-glibcs.py for alpha-linux-gnu that installed stripped shared libraries are unchanged by the patch. * sysdeps/alpha/fpu/cfloat-compat.h: Include <libm-alias-float.h>. (cfloat_versions): Take function argument without trailing 'f'. Call libm_alias_float_other. * sysdeps/alpha/fpu/cabsf.c: Update call to cfloat_versions. * sysdeps/alpha/fpu/cargf.c: Likewise. * sysdeps/alpha/fpu/cimagf.c: Likewise. * sysdeps/alpha/fpu/conjf.c: Likewise. * sysdeps/alpha/fpu/crealf.c: Likewise. * sysdeps/alpha/fpu/s_cacosf.c: Likewise. * sysdeps/alpha/fpu/s_cacoshf.c: Likewise. * sysdeps/alpha/fpu/s_casinf.c: Likewise. * sysdeps/alpha/fpu/s_casinhf.c: Likewise. * sysdeps/alpha/fpu/s_catanf.c: Likewise. * sysdeps/alpha/fpu/s_catanhf.c: Likewise. * sysdeps/alpha/fpu/s_ccosf.c: Likewise. * sysdeps/alpha/fpu/s_ccoshf.c: Likewise. * sysdeps/alpha/fpu/s_cexpf.c: Likewise. * sysdeps/alpha/fpu/s_clogf.c: Likewise. * sysdeps/alpha/fpu/s_cpowf.c: Likewise. * sysdeps/alpha/fpu/s_cprojf.c: Likewise. * sysdeps/alpha/fpu/s_csinf.c: Likewise. * sysdeps/alpha/fpu/s_csinhf.c: Likewise. * sysdeps/alpha/fpu/s_csqrtf.c: Likewise. * sysdeps/alpha/fpu/s_ctanf.c: Likewise. * sysdeps/alpha/fpu/s_ctanhf.c: Likewise. * sysdeps/alpha/fpu/s_clog10f.c: Include <libm-alias-float.h>. (clog10f): Use libm_alias_float_other. * sysdeps/alpha/fpu/s_ceilf.c: Include <libm-alias-float.h>. (ceilf): Define using libm_alias_float. * sysdeps/alpha/fpu/s_copysignf.c: Include <libm-alias-float.h>. (copysignf): Define using libm_alias_float. * sysdeps/alpha/fpu/s_fabsf.c: Include <libm-alias-float.h>. (fabsf): Define using libm_alias_float. * sysdeps/alpha/fpu/s_floorf.c: Include <libm-alias-float.h>. (floorf): Define using libm_alias_float. * sysdeps/alpha/fpu/s_fmax.S: Include <libm-alias-float.h>. (fmaxf): Define using libm_alias_float. * sysdeps/alpha/fpu/s_fmin.S: Include <libm-alias-float.h>. (fminf): Define using libm_alias_float. * sysdeps/alpha/fpu/s_lrintf.c: Include <libm-alias-float.h>. (lrintf): Define using libm_alias_float. (llrintf): Likewise. * sysdeps/alpha/fpu/s_lroundf.c: Include <libm-alias-float.h>. (lroundf): Define using libm_alias_float. (llroundf): Likewise. * sysdeps/alpha/fpu/s_rintf.c: Include <libm-alias-float.h>. (rintf): Define using libm_alias_float. * sysdeps/alpha/fpu/s_truncf.c: Include <libm-alias-float.h>. (truncf): Define using libm_alias_float.
61 lines
2.4 KiB
C
61 lines
2.4 KiB
C
/* Compatibility macros for old and new Alpha complex float ABI.
|
|
Copyright (C) 2004-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/>. */
|
|
|
|
/* The behaviour of complex float changed between GCC 3.3 and 3.4.
|
|
|
|
In 3.3 and before (below, complex version 1, or "c1"), complex float
|
|
values were packed into one floating point register.
|
|
|
|
In 3.4 and later (below, complex version 2, or "c2"), GCC changed to
|
|
follow the official Tru64 ABI, which passes the components of a complex
|
|
as separate parameters. */
|
|
|
|
typedef union { double d; _Complex float cf; } c1_compat;
|
|
# define c1_cfloat_decl(x) double x
|
|
# define c1_cfloat_real(x) __real__ c1_cfloat_value (x)
|
|
# define c1_cfloat_imag(x) __imag__ c1_cfloat_value (x)
|
|
# define c1_cfloat_value(x) (((c1_compat *)(void *)&x)->cf)
|
|
# define c1_cfloat_rettype double
|
|
# define c1_cfloat_return(x) ({ c1_compat _; _.cf = (x); _.d; })
|
|
|
|
# define c2_cfloat_decl(x) _Complex float x
|
|
# define c2_cfloat_real(x) __real__ x
|
|
# define c2_cfloat_imag(x) __imag__ x
|
|
# define c2_cfloat_value(x) x
|
|
# define c2_cfloat_rettype _Complex float
|
|
# define c2_cfloat_return(x) x
|
|
|
|
/* Get the proper symbol versions defined for each function. */
|
|
|
|
#include <shlib-compat.h>
|
|
#include <libm-alias-float.h>
|
|
|
|
#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_3_4)
|
|
#define cfloat_versions_compat(func) \
|
|
compat_symbol (libm, __c1_##func, func, GLIBC_2_1)
|
|
#else
|
|
#define cfloat_versions_compat(func)
|
|
#endif
|
|
|
|
#define cfloat_versions(func) \
|
|
cfloat_versions_compat(func##f); \
|
|
versioned_symbol (libm, __c2_##func##f, func##f, GLIBC_2_3_4); \
|
|
extern typeof(__c2_##func##f) __##func##f attribute_hidden; \
|
|
strong_alias (__c2_##func##f, __##func##f); \
|
|
libm_alias_float_other (__##func, func)
|