Blame sysdeps/s390/memmove.c

Packit 61cd83
/* Multiple versions of memmove.
Packit 61cd83
   Copyright (C) 2016-2018 Free Software Foundation, Inc.
Packit 61cd83
   This file is part of the GNU C Library.
Packit 61cd83
Packit 61cd83
   The GNU C Library is free software; you can redistribute it and/or
Packit 61cd83
   modify it under the terms of the GNU Lesser General Public
Packit 61cd83
   License as published by the Free Software Foundation; either
Packit 61cd83
   version 2.1 of the License, or (at your option) any later version.
Packit 61cd83
Packit 61cd83
   The GNU C Library is distributed in the hope that it will be useful,
Packit 61cd83
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 61cd83
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 61cd83
   Lesser General Public License for more details.
Packit 61cd83
Packit 61cd83
   You should have received a copy of the GNU Lesser General Public
Packit 61cd83
   License along with the GNU C Library; if not, see
Packit 61cd83
   <http://www.gnu.org/licenses/>.  */
Packit 61cd83
Packit 61cd83
#include <ifunc-memcpy.h>
Packit 61cd83
Packit 61cd83
#if HAVE_MEMMOVE_IFUNC
Packit 61cd83
/* If we don't use ifunc, an alias is defined for memmove
Packit 61cd83
   in sysdeps/s390/memmove-c.c or sysdeps/s390/memcpy.S
Packit 61cd83
   depending on the used default implementation.  */
Packit 61cd83
# undef memmove
Packit 61cd83
# define memmove __redirect_memmove
Packit 61cd83
# include <string.h>
Packit 61cd83
# include <ifunc-resolve.h>
Packit 61cd83
# undef memmove
Packit 61cd83
Packit 61cd83
# if HAVE_MEMMOVE_C
Packit 61cd83
extern __typeof (__redirect_memmove) MEMMOVE_C attribute_hidden;
Packit 61cd83
# endif
Packit 61cd83
Packit 61cd83
# if HAVE_MEMMOVE_Z13
Packit 61cd83
extern __typeof (__redirect_memmove) MEMMOVE_Z13 attribute_hidden;
Packit 61cd83
# endif
Packit 61cd83
Packit aec4b9
# if HAVE_MEMMOVE_ARCH13
Packit aec4b9
extern __typeof (__redirect_memmove) MEMMOVE_ARCH13 attribute_hidden;
Packit aec4b9
# endif
Packit aec4b9
Packit 61cd83
s390_libc_ifunc_expr (__redirect_memmove, memmove,
Packit aec4b9
		      ({
Packit aec4b9
			s390_libc_ifunc_expr_stfle_init ();
Packit aec4b9
			(HAVE_MEMMOVE_ARCH13
Packit aec4b9
			 && S390_IS_ARCH13_MIE3 (stfle_bits))
Packit aec4b9
			  ? MEMMOVE_ARCH13
Packit aec4b9
			  : (HAVE_MEMMOVE_Z13 && (hwcap & HWCAP_S390_VX))
Packit aec4b9
			  ? MEMMOVE_Z13
Packit aec4b9
			  : MEMMOVE_DEFAULT;
Packit aec4b9
		      })
Packit 61cd83
		      )
Packit 61cd83
#endif