| 1 | /* Multiple versions of __memcpy_chk | 
|---|
| 2 | All versions must be listed in ifunc-impl-list.c. | 
|---|
| 3 | Copyright (C) 2010-2016 Free Software Foundation, Inc. | 
|---|
| 4 | Contributed by Intel Corporation. | 
|---|
| 5 | This file is part of the GNU C Library. | 
|---|
| 6 |  | 
|---|
| 7 | The GNU C Library is free software; you can redistribute it and/or | 
|---|
| 8 | modify it under the terms of the GNU Lesser General Public | 
|---|
| 9 | License as published by the Free Software Foundation; either | 
|---|
| 10 | version 2.1 of the License, or (at your option) any later version. | 
|---|
| 11 |  | 
|---|
| 12 | The GNU C Library is distributed in the hope that it will be useful, | 
|---|
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
|---|
| 15 | Lesser General Public License for more details. | 
|---|
| 16 |  | 
|---|
| 17 | You should have received a copy of the GNU Lesser General Public | 
|---|
| 18 | License along with the GNU C Library; if not, see | 
|---|
| 19 | <http://www.gnu.org/licenses/>.  */ | 
|---|
| 20 |  | 
|---|
| 21 | #include <sysdep.h> | 
|---|
| 22 | #include <init-arch.h> | 
|---|
| 23 |  | 
|---|
| 24 | /* Define multiple versions only for the definition in lib and for | 
|---|
| 25 | DSO.  There are no multiarch memcpy functions for static binaries. | 
|---|
| 26 | */ | 
|---|
| 27 | #if IS_IN (libc) | 
|---|
| 28 | # ifdef SHARED | 
|---|
| 29 | .text | 
|---|
| 30 | ENTRY(__memcpy_chk) | 
|---|
| 31 | .type	__memcpy_chk, @gnu_indirect_function | 
|---|
| 32 | LOAD_RTLD_GLOBAL_RO_RDX | 
|---|
| 33 | #ifdef HAVE_AVX512_ASM_SUPPORT | 
|---|
| 34 | HAS_ARCH_FEATURE (AVX512F_Usable) | 
|---|
| 35 | jz      1f | 
|---|
| 36 | HAS_ARCH_FEATURE (Prefer_No_VZEROUPPER) | 
|---|
| 37 | jz      1f | 
|---|
| 38 | leaq    __memcpy_chk_avx512_no_vzeroupper(%rip), %rax | 
|---|
| 39 | ret | 
|---|
| 40 | #endif | 
|---|
| 41 | 1:	leaq	__memcpy_chk_sse2(%rip), %rax | 
|---|
| 42 | HAS_CPU_FEATURE (SSSE3) | 
|---|
| 43 | jz	2f | 
|---|
| 44 | leaq	__memcpy_chk_ssse3(%rip), %rax | 
|---|
| 45 | HAS_ARCH_FEATURE (Fast_Copy_Backward) | 
|---|
| 46 | jz	2f | 
|---|
| 47 | leaq	__memcpy_chk_ssse3_back(%rip), %rax | 
|---|
| 48 | HAS_ARCH_FEATURE (AVX_Fast_Unaligned_Load) | 
|---|
| 49 | jz  2f | 
|---|
| 50 | leaq    __memcpy_chk_avx_unaligned(%rip), %rax | 
|---|
| 51 | 2:	ret | 
|---|
| 52 | END(__memcpy_chk) | 
|---|
| 53 | # else | 
|---|
| 54 | #  include "../memcpy_chk.S" | 
|---|
| 55 | # endif | 
|---|
| 56 | #endif | 
|---|
| 57 |  | 
|---|