diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-06-15 08:57:39 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-06-15 08:57:52 -0700 |
commit | 9f4254b8bd1b948c3a90e48a126236bf3e5e70a0 (patch) | |
tree | 2ae35f450d620168037021810d2ec57230ae609b /sysdeps/x86_64/multiarch/wcscpy.c | |
parent | 9ed0aa15d316fb30e056d3a2e8f3361460c67e78 (diff) | |
download | glibc-9f4254b8bd1b948c3a90e48a126236bf3e5e70a0.tar.gz glibc-9f4254b8bd1b948c3a90e48a126236bf3e5e70a0.tar.xz glibc-9f4254b8bd1b948c3a90e48a126236bf3e5e70a0.zip |
x86-64: Implement wcscpy IFUNC selector in C
* sysdeps/x86_64/multiarch/wcscpy.S: Removed. * sysdeps/x86_64/multiarch/wcscpy.c: New file.
Diffstat (limited to 'sysdeps/x86_64/multiarch/wcscpy.c')
-rw-r--r-- | sysdeps/x86_64/multiarch/wcscpy.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sysdeps/x86_64/multiarch/wcscpy.c b/sysdeps/x86_64/multiarch/wcscpy.c new file mode 100644 index 0000000000..01dee8054a --- /dev/null +++ b/sysdeps/x86_64/multiarch/wcscpy.c @@ -0,0 +1,44 @@ +/* Multiple versions of wcscpy. + All versions must be listed in ifunc-impl-list.c. + 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/>. */ + +/* Define multiple versions only for the definition in libc. */ +#if IS_IN (libc) +# define wcscpy __redirect_wcscpy +# include <wchar.h> +# undef wcscpy + +# define SYMBOL_NAME wcscpy +# include <init-arch.h> + +extern __typeof (REDIRECT_NAME) OPTIMIZE (sse2) attribute_hidden; +extern __typeof (REDIRECT_NAME) OPTIMIZE (ssse3) attribute_hidden; + +static inline void * +IFUNC_SELECTOR (void) +{ + const struct cpu_features* cpu_features = __get_cpu_features (); + + if (CPU_FEATURES_CPU_P (cpu_features, SSSE3)) + return OPTIMIZE (ssse3); + + return OPTIMIZE (sse2); +} + +libc_ifunc_redirected (__redirect_wcscpy, wcscpy, IFUNC_SELECTOR ()); +#endif |