2012-10-10 14:49:12 +00:00
|
|
|
/* Enumerate available IFUNC implementations of a function. x86-64 version.
|
2016-01-04 16:05:18 +00:00
|
|
|
Copyright (C) 2012-2016 Free Software Foundation, Inc.
|
2012-10-10 14:49:12 +00:00
|
|
|
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/>. */
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <ifunc-impl-list.h>
|
2015-12-18 23:47:28 +00:00
|
|
|
#include <sysdep.h>
|
2012-10-10 14:49:12 +00:00
|
|
|
#include "init-arch.h"
|
|
|
|
|
|
|
|
/* Maximum number of IFUNC implementations. */
|
2016-01-15 21:49:45 +00:00
|
|
|
#define MAX_IFUNC 5
|
2012-10-10 14:49:12 +00:00
|
|
|
|
|
|
|
/* Fill ARRAY of MAX elements with IFUNC implementations for function
|
|
|
|
NAME supported on target machine and return the number of valid
|
|
|
|
entries. */
|
|
|
|
|
|
|
|
size_t
|
|
|
|
__libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
|
|
|
|
size_t max)
|
|
|
|
{
|
|
|
|
assert (max >= MAX_IFUNC);
|
|
|
|
|
|
|
|
size_t i = 0;
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/memcmp.S. */
|
|
|
|
IFUNC_IMPL (i, name, memcmp,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memcmp, HAS_CPU_FEATURE (SSE4_1),
|
2012-10-10 14:49:12 +00:00
|
|
|
__memcmp_sse4_1)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memcmp, HAS_CPU_FEATURE (SSSE3),
|
|
|
|
__memcmp_ssse3)
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memcmp, 1, __memcmp_sse2))
|
|
|
|
|
2016-01-15 21:49:45 +00:00
|
|
|
/* Support sysdeps/x86_64/multiarch/memmove_chk.c. */
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL (i, name, __memmove_chk,
|
2016-01-19 11:34:53 +00:00
|
|
|
#ifdef HAVE_AVX512_ASM_SUPPORT
|
2016-01-15 21:49:45 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __memmove_chk,
|
|
|
|
HAS_ARCH_FEATURE (AVX512F_Usable),
|
|
|
|
__memmove_chk_avx512_no_vzeroupper)
|
2016-01-19 11:34:53 +00:00
|
|
|
#endif
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __memmove_chk,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2014-07-14 04:02:52 +00:00
|
|
|
__memmove_chk_avx_unaligned)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __memmove_chk,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__memmove_chk_ssse3_back)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __memmove_chk,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__memmove_chk_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, __memmove_chk, 1,
|
|
|
|
__memmove_chk_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/memmove.S. */
|
|
|
|
IFUNC_IMPL (i, name, memmove,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memmove,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2014-07-14 04:02:52 +00:00
|
|
|
__memmove_avx_unaligned)
|
2016-01-19 11:34:53 +00:00
|
|
|
#ifdef HAVE_AVX512_ASM_SUPPORT
|
2016-01-15 21:49:45 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memmove,
|
|
|
|
HAS_ARCH_FEATURE (AVX512F_Usable),
|
|
|
|
__memmove_avx512_no_vzeroupper)
|
2016-01-19 11:34:53 +00:00
|
|
|
#endif
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memmove, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__memmove_ssse3_back)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memmove, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__memmove_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, memmove, 1, __memmove_sse2))
|
|
|
|
|
2014-06-20 21:52:29 +00:00
|
|
|
/* Support sysdeps/x86_64/multiarch/memset_chk.S. */
|
|
|
|
IFUNC_IMPL (i, name, __memset_chk,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __memset_chk, 1,
|
|
|
|
__memset_chk_sse2)
|
|
|
|
IFUNC_IMPL_ADD (array, i, __memset_chk,
|
|
|
|
HAS_ARCH_FEATURE (AVX2_Usable),
|
2015-12-18 23:47:28 +00:00
|
|
|
__memset_chk_avx2)
|
|
|
|
#ifdef HAVE_AVX512_ASM_SUPPORT
|
|
|
|
IFUNC_IMPL_ADD (array, i, __memset_chk,
|
|
|
|
HAS_ARCH_FEATURE (AVX512F_Usable),
|
|
|
|
__memset_chk_avx512_no_vzeroupper)
|
|
|
|
#endif
|
|
|
|
)
|
2014-06-20 21:52:29 +00:00
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/memset.S. */
|
|
|
|
IFUNC_IMPL (i, name, memset,
|
|
|
|
IFUNC_IMPL_ADD (array, i, memset, 1, __memset_sse2)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memset,
|
|
|
|
HAS_ARCH_FEATURE (AVX2_Usable),
|
2015-12-18 23:47:28 +00:00
|
|
|
__memset_avx2)
|
|
|
|
#ifdef HAVE_AVX512_ASM_SUPPORT
|
|
|
|
IFUNC_IMPL_ADD (array, i, memset,
|
|
|
|
HAS_ARCH_FEATURE (AVX512F_Usable),
|
|
|
|
__memset_avx512_no_vzeroupper)
|
|
|
|
#endif
|
|
|
|
)
|
2014-06-20 21:52:29 +00:00
|
|
|
|
2012-10-10 14:49:12 +00:00
|
|
|
/* Support sysdeps/x86_64/multiarch/stpncpy.S. */
|
|
|
|
IFUNC_IMPL (i, name, stpncpy,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, stpncpy, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__stpncpy_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, stpncpy, 1,
|
|
|
|
__stpncpy_sse2_unaligned)
|
|
|
|
IFUNC_IMPL_ADD (array, i, stpncpy, 1, __stpncpy_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/stpcpy.S. */
|
|
|
|
IFUNC_IMPL (i, name, stpcpy,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, stpcpy, HAS_CPU_FEATURE (SSSE3),
|
|
|
|
__stpcpy_ssse3)
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, stpcpy, 1, __stpcpy_sse2_unaligned)
|
|
|
|
IFUNC_IMPL_ADD (array, i, stpcpy, 1, __stpcpy_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strcasecmp_l.S. */
|
|
|
|
IFUNC_IMPL (i, name, strcasecmp,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcasecmp,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strcasecmp_avx)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcasecmp,
|
|
|
|
HAS_CPU_FEATURE (SSE4_2),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strcasecmp_sse42)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcasecmp,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strcasecmp_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strcasecmp, 1, __strcasecmp_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strcasecmp_l.S. */
|
|
|
|
IFUNC_IMPL (i, name, strcasecmp_l,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcasecmp_l,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strcasecmp_l_avx)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcasecmp_l,
|
|
|
|
HAS_CPU_FEATURE (SSE4_2),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strcasecmp_l_sse42)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcasecmp_l,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strcasecmp_l_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strcasecmp_l, 1,
|
|
|
|
__strcasecmp_l_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strcat.S. */
|
|
|
|
IFUNC_IMPL (i, name, strcat,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcat, HAS_CPU_FEATURE (SSSE3),
|
|
|
|
__strcat_ssse3)
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcat, 1, __strcat_sse2_unaligned)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strcat, 1, __strcat_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strchr.S. */
|
|
|
|
IFUNC_IMPL (i, name, strchr,
|
|
|
|
IFUNC_IMPL_ADD (array, i, strchr, 1, __strchr_sse2_no_bsf)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strchr, 1, __strchr_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strcmp.S. */
|
|
|
|
IFUNC_IMPL (i, name, strcmp,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcmp, HAS_CPU_FEATURE (SSE4_2),
|
|
|
|
__strcmp_sse42)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strcmp, HAS_CPU_FEATURE (SSSE3),
|
|
|
|
__strcmp_ssse3)
|
2013-09-03 14:21:38 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcmp, 1, __strcmp_sse2_unaligned)
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcmp, 1, __strcmp_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strcpy.S. */
|
|
|
|
IFUNC_IMPL (i, name, strcpy,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcpy, HAS_CPU_FEATURE (SSSE3),
|
|
|
|
__strcpy_ssse3)
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcpy, 1, __strcpy_sse2_unaligned)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strcpy, 1, __strcpy_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strcspn.S. */
|
|
|
|
IFUNC_IMPL (i, name, strcspn,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strcspn, HAS_CPU_FEATURE (SSE4_2),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strcspn_sse42)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strcspn, 1, __strcspn_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strncase_l.S. */
|
|
|
|
IFUNC_IMPL (i, name, strncasecmp,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncasecmp,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncasecmp_avx)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncasecmp,
|
|
|
|
HAS_CPU_FEATURE (SSE4_2),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncasecmp_sse42)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncasecmp,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncasecmp_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strncasecmp, 1,
|
|
|
|
__strncasecmp_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strncase_l.S. */
|
|
|
|
IFUNC_IMPL (i, name, strncasecmp_l,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncasecmp_l,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncasecmp_l_avx)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncasecmp_l,
|
|
|
|
HAS_CPU_FEATURE (SSE4_2),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncasecmp_l_sse42)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncasecmp_l,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncasecmp_l_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strncasecmp_l, 1,
|
|
|
|
__strncasecmp_l_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strncat.S. */
|
|
|
|
IFUNC_IMPL (i, name, strncat,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncat, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncat_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strncat, 1,
|
|
|
|
__strncat_sse2_unaligned)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strncat, 1, __strncat_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strncpy.S. */
|
|
|
|
IFUNC_IMPL (i, name, strncpy,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncpy, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncpy_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strncpy, 1,
|
|
|
|
__strncpy_sse2_unaligned)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strncpy, 1, __strncpy_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strpbrk.S. */
|
|
|
|
IFUNC_IMPL (i, name, strpbrk,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strpbrk, HAS_CPU_FEATURE (SSE4_2),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strpbrk_sse42)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strpbrk, 1, __strpbrk_sse2))
|
|
|
|
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strspn.S. */
|
|
|
|
IFUNC_IMPL (i, name, strspn,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strspn, HAS_CPU_FEATURE (SSE4_2),
|
|
|
|
__strspn_sse42)
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strspn, 1, __strspn_sse2))
|
|
|
|
|
2013-12-16 02:44:14 +00:00
|
|
|
/* Support sysdeps/x86_64/multiarch/strstr.c. */
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL (i, name, strstr,
|
2013-12-14 18:33:56 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strstr, 1, __strstr_sse2_unaligned)
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strstr, 1, __strstr_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/wcscpy.S. */
|
|
|
|
IFUNC_IMPL (i, name, wcscpy,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, wcscpy, HAS_CPU_FEATURE (SSSE3),
|
|
|
|
__wcscpy_ssse3)
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, wcscpy, 1, __wcscpy_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/wmemcmp.S. */
|
|
|
|
IFUNC_IMPL (i, name, wmemcmp,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, wmemcmp, HAS_CPU_FEATURE (SSE4_1),
|
2012-10-10 14:49:12 +00:00
|
|
|
__wmemcmp_sse4_1)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, wmemcmp, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__wmemcmp_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, wmemcmp, 1, __wmemcmp_sse2))
|
|
|
|
|
|
|
|
#ifdef SHARED
|
|
|
|
/* Support sysdeps/x86_64/multiarch/memcpy_chk.S. */
|
|
|
|
IFUNC_IMPL (i, name, __memcpy_chk,
|
2016-01-19 11:34:53 +00:00
|
|
|
#ifdef HAVE_AVX512_ASM_SUPPORT
|
2016-01-15 21:49:45 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __memcpy_chk,
|
|
|
|
HAS_ARCH_FEATURE (AVX512F_Usable),
|
|
|
|
__memcpy_chk_avx512_no_vzeroupper)
|
2016-01-19 11:34:53 +00:00
|
|
|
#endif
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __memcpy_chk,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2014-07-14 04:02:52 +00:00
|
|
|
__memcpy_chk_avx_unaligned)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __memcpy_chk,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__memcpy_chk_ssse3_back)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __memcpy_chk,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__memcpy_chk_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, __memcpy_chk, 1,
|
|
|
|
__memcpy_chk_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/memcpy.S. */
|
|
|
|
IFUNC_IMPL (i, name, memcpy,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memcpy,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2014-07-14 04:02:52 +00:00
|
|
|
__memcpy_avx_unaligned)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memcpy, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__memcpy_ssse3_back)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memcpy, HAS_CPU_FEATURE (SSSE3),
|
|
|
|
__memcpy_ssse3)
|
2016-01-19 11:34:53 +00:00
|
|
|
#ifdef HAVE_AVX512_ASM_SUPPORT
|
2016-01-15 21:49:45 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memcpy,
|
|
|
|
HAS_ARCH_FEATURE (AVX512F_Usable),
|
|
|
|
__memcpy_avx512_no_vzeroupper)
|
2016-01-19 11:34:53 +00:00
|
|
|
#endif
|
2013-05-20 06:20:00 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memcpy, 1, __memcpy_sse2_unaligned)
|
2012-10-10 14:49:12 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, memcpy, 1, __memcpy_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/mempcpy_chk.S. */
|
|
|
|
IFUNC_IMPL (i, name, __mempcpy_chk,
|
2016-01-19 11:34:53 +00:00
|
|
|
#ifdef HAVE_AVX512_ASM_SUPPORT
|
2016-01-15 21:49:45 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __mempcpy_chk,
|
|
|
|
HAS_ARCH_FEATURE (AVX512F_Usable),
|
|
|
|
__mempcpy_chk_avx512_no_vzeroupper)
|
2016-01-19 11:34:53 +00:00
|
|
|
#endif
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __mempcpy_chk,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2014-07-14 04:02:52 +00:00
|
|
|
__mempcpy_chk_avx_unaligned)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __mempcpy_chk,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__mempcpy_chk_ssse3_back)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, __mempcpy_chk,
|
|
|
|
HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__mempcpy_chk_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, __mempcpy_chk, 1,
|
|
|
|
__mempcpy_chk_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/mempcpy.S. */
|
|
|
|
IFUNC_IMPL (i, name, mempcpy,
|
2016-01-19 11:34:53 +00:00
|
|
|
#ifdef HAVE_AVX512_ASM_SUPPORT
|
2016-01-15 21:49:45 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, mempcpy,
|
|
|
|
HAS_ARCH_FEATURE (AVX512F_Usable),
|
|
|
|
__mempcpy_avx512_no_vzeroupper)
|
2016-01-19 11:34:53 +00:00
|
|
|
#endif
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, mempcpy,
|
|
|
|
HAS_ARCH_FEATURE (AVX_Usable),
|
2014-07-14 04:02:52 +00:00
|
|
|
__mempcpy_avx_unaligned)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, mempcpy, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__mempcpy_ssse3_back)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, mempcpy, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__mempcpy_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, mempcpy, 1, __mempcpy_sse2))
|
|
|
|
|
|
|
|
/* Support sysdeps/x86_64/multiarch/strncmp.S. */
|
|
|
|
IFUNC_IMPL (i, name, strncmp,
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncmp, HAS_CPU_FEATURE (SSE4_2),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncmp_sse42)
|
2015-08-13 10:38:47 +00:00
|
|
|
IFUNC_IMPL_ADD (array, i, strncmp, HAS_CPU_FEATURE (SSSE3),
|
2012-10-10 14:49:12 +00:00
|
|
|
__strncmp_ssse3)
|
|
|
|
IFUNC_IMPL_ADD (array, i, strncmp, 1, __strncmp_sse2))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|