e1f59bebd8
This patch replaces x86-64 assembly versions of e_expf with generic e_expf.c. For workload-spec2017.wrf, on Nehalem, it improves performance by: Before After Improvement reciprocal-throughput 36.039 20.7749 73% latency 58.8096 40.8715 43% On Skylake, it improves Before After Improvement reciprocal-throughput 18.4436 11.1693 65% latency 47.5162 37.5411 26% * sysdeps/x86_64/fpu/e_expf.S: Removed. * sysdeps/x86_64/fpu/multiarch/e_expf-fma.S: Likewise. * sysdeps/x86_64/fpu/w_expf.c: Likewise. * sysdeps/x86_64/fpu/libm-test-ulps: Updated for generic e_expf.c. * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-e_expf-fma.c): New. * sysdeps/x86_64/fpu/multiarch/e_expf-fma.c: New file. * sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf): Renamed to ... (__redirect_expf): This. (SYMBOL_NAME): Changed to expf. (__ieee754_expf): Renamed to ... (__expf): This. (__GI___expf): This. (__ieee754_expf): Add strong_alias. (__expf_finite): Likewise. (__expf): New. Include <sysdeps/ieee754/flt-32/e_expf.c>.
41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/* Multiple versions of expf.
|
|
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/>. */
|
|
|
|
extern float __redirect_expf (float);
|
|
|
|
#define SYMBOL_NAME expf
|
|
#include "ifunc-fma.h"
|
|
|
|
libc_ifunc_redirected (__redirect_expf, __expf, IFUNC_SELECTOR ());
|
|
|
|
#ifdef SHARED
|
|
__hidden_ver1 (__expf, __GI___expf, __redirect_expf)
|
|
__attribute__ ((visibility ("hidden")));
|
|
|
|
# include <shlib-compat.h>
|
|
versioned_symbol (libm, __expf, expf, GLIBC_2_27);
|
|
#else
|
|
weak_alias (__expf, expf)
|
|
#endif
|
|
|
|
strong_alias (__expf, __ieee754_expf)
|
|
strong_alias (__expf, __expf_finite)
|
|
|
|
#define __expf __expf_sse2
|
|
#include <sysdeps/ieee754/flt-32/e_expf.c>
|