Blame sysdeps/s390/ifunc-strcpy.h

Packit Service 2db708
/* strcpy variant information on S/390 version.
Packit Service 2db708
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Service 2db708
   This file is part of the GNU C Library.
Packit Service 2db708
Packit Service 2db708
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 2db708
   modify it under the terms of the GNU Lesser General Public
Packit Service 2db708
   License as published by the Free Software Foundation; either
Packit Service 2db708
   version 2.1 of the License, or (at your option) any later version.
Packit Service 2db708
Packit Service 2db708
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 2db708
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 2db708
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 2db708
   Lesser General Public License for more details.
Packit Service 2db708
Packit Service 2db708
   You should have received a copy of the GNU Lesser General Public
Packit Service 2db708
   License along with the GNU C Library; if not, see
Packit Service 2db708
   <http://www.gnu.org/licenses/>.  */
Packit Service 2db708
Packit Service 2db708
#if defined USE_MULTIARCH && IS_IN (libc)		\
Packit Service 2db708
  && ! defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
Packit Service 2db708
# define HAVE_STRCPY_IFUNC	1
Packit Service 2db708
#else
Packit Service 2db708
# define HAVE_STRCPY_IFUNC	0
Packit Service 2db708
#endif
Packit Service 2db708
Packit Service 2db708
#ifdef HAVE_S390_VX_ASM_SUPPORT
Packit Service 2db708
# define HAVE_STRCPY_IFUNC_AND_VX_SUPPORT HAVE_STRCPY_IFUNC
Packit Service 2db708
#else
Packit Service 2db708
# define HAVE_STRCPY_IFUNC_AND_VX_SUPPORT 0
Packit Service 2db708
#endif
Packit Service 2db708
Packit Service 2db708
#if defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
Packit Service 2db708
# define STRCPY_DEFAULT		STRCPY_Z13
Packit Service 2db708
# define HAVE_STRCPY_Z900_G5	0
Packit Service 2db708
# define HAVE_STRCPY_Z13	1
Packit Service 2db708
#else
Packit Service 2db708
# define STRCPY_DEFAULT		STRCPY_Z900_G5
Packit Service 2db708
# define HAVE_STRCPY_Z900_G5	1
Packit Service 2db708
# define HAVE_STRCPY_Z13	HAVE_STRCPY_IFUNC_AND_VX_SUPPORT
Packit Service 2db708
#endif
Packit Service 2db708
Packit Service 2db708
#if HAVE_STRCPY_Z900_G5
Packit Service 2db708
# define STRCPY_Z900_G5		__strcpy_default
Packit Service 2db708
#else
Packit Service 2db708
# define STRCPY_Z900_G5		NULL
Packit Service 2db708
#endif
Packit Service 2db708
Packit Service 2db708
#if HAVE_STRCPY_Z13
Packit Service 2db708
# define STRCPY_Z13		__strcpy_vx
Packit Service 2db708
#else
Packit Service 2db708
# define STRCPY_Z13		NULL
Packit Service 2db708
#endif