mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03:00 
			
		
		
		
	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.
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* @(#)w_lgamma.c 5.1 93/09/24 */
 | |
| /*
 | |
|  * ====================================================
 | |
|  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 | |
|  *
 | |
|  * Developed at SunPro, a Sun Microsystems, Inc. business.
 | |
|  * Permission to use, copy, modify, and distribute this
 | |
|  * software is freely granted, provided that this notice
 | |
|  * is preserved.
 | |
|  * ====================================================
 | |
|  */
 | |
| 
 | |
| /* double lgamma(double x)
 | |
|  * Return the logarithm of the Gamma function of x.
 | |
|  *
 | |
|  * Method: call __ieee754_lgamma_r
 | |
|  */
 | |
| 
 | |
| #include <math.h>
 | |
| #include <math_private.h>
 | |
| #include <math-svid-compat.h>
 | |
| #include <libm-alias-double.h>
 | |
| 
 | |
| #include <lgamma-compat.h>
 | |
| 
 | |
| #if BUILD_LGAMMA
 | |
| double
 | |
| LGFUNC (__lgamma) (double x)
 | |
| {
 | |
| 	double y = CALL_LGAMMA (double, __ieee754_lgamma_r, x);
 | |
| 	if(__builtin_expect(!isfinite(y), 0)
 | |
| 	   && isfinite(x) && _LIB_VERSION != _IEEE_)
 | |
| 		return __kernel_standard(x, x,
 | |
| 					 __floor(x)==x&&x<=0.0
 | |
| 					 ? 15 /* lgamma pole */
 | |
| 					 : 14); /* lgamma overflow */
 | |
| 
 | |
| 	return y;
 | |
| }
 | |
| # if USE_AS_COMPAT
 | |
| compat_symbol (libm, __lgamma_compat, lgamma, LGAMMA_OLD_VER);
 | |
| #  ifdef NO_LONG_DOUBLE
 | |
| strong_alias (__lgamma_compat, __lgammal_compat)
 | |
| compat_symbol (libm, __lgammal_compat, lgammal, LGAMMA_OLD_VER);
 | |
| #  endif
 | |
| # else
 | |
| versioned_symbol (libm, __lgamma, lgamma, LGAMMA_NEW_VER);
 | |
| #  ifdef NO_LONG_DOUBLE
 | |
| strong_alias (__lgamma, __lgammal)
 | |
| versioned_symbol (libm, __lgammal, lgammal, LGAMMA_NEW_VER);
 | |
| #  endif
 | |
| libm_alias_double_other (__lgamma, lgamma)
 | |
| # endif
 | |
| # if GAMMA_ALIAS
 | |
| strong_alias (LGFUNC (__lgamma), __gamma)
 | |
| weak_alias (__gamma, gamma)
 | |
| #  ifdef NO_LONG_DOUBLE
 | |
| strong_alias (__gamma, __gammal)
 | |
| weak_alias (__gamma, gammal)
 | |
| #  endif
 | |
| # endif
 | |
| #endif
 |