Blame sysdeps/s390/ifunc-wcpncpy.h

Packit Bot 01b4bb
/* wcpncpy variant information on S/390 version.
Packit Bot 01b4bb
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Bot 01b4bb
   This file is part of the GNU C Library.
Packit Bot 01b4bb
Packit Bot 01b4bb
   The GNU C Library is free software; you can redistribute it and/or
Packit Bot 01b4bb
   modify it under the terms of the GNU Lesser General Public
Packit Bot 01b4bb
   License as published by the Free Software Foundation; either
Packit Bot 01b4bb
   version 2.1 of the License, or (at your option) any later version.
Packit Bot 01b4bb
Packit Bot 01b4bb
   The GNU C Library is distributed in the hope that it will be useful,
Packit Bot 01b4bb
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Bot 01b4bb
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Bot 01b4bb
   Lesser General Public License for more details.
Packit Bot 01b4bb
Packit Bot 01b4bb
   You should have received a copy of the GNU Lesser General Public
Packit Bot 01b4bb
   License along with the GNU C Library; if not, see
Packit Bot 01b4bb
   <http://www.gnu.org/licenses/>.  */
Packit Bot 01b4bb
Packit Bot 01b4bb
#if defined USE_MULTIARCH && IS_IN (libc)		\
Packit Bot 01b4bb
  && ! defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
Packit Bot 01b4bb
# define HAVE_WCPNCPY_IFUNC	1
Packit Bot 01b4bb
#else
Packit Bot 01b4bb
# define HAVE_WCPNCPY_IFUNC	0
Packit Bot 01b4bb
#endif
Packit Bot 01b4bb
Packit Bot 01b4bb
#ifdef HAVE_S390_VX_ASM_SUPPORT
Packit Bot 01b4bb
# define HAVE_WCPNCPY_IFUNC_AND_VX_SUPPORT HAVE_WCPNCPY_IFUNC
Packit Bot 01b4bb
#else
Packit Bot 01b4bb
# define HAVE_WCPNCPY_IFUNC_AND_VX_SUPPORT 0
Packit Bot 01b4bb
#endif
Packit Bot 01b4bb
Packit Bot 01b4bb
#if defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
Packit Bot 01b4bb
# define WCPNCPY_DEFAULT	WCPNCPY_Z13
Packit Bot 01b4bb
/* The z13 ifunc variant is using the common code variant as fallback!  */
Packit Bot 01b4bb
# define HAVE_WCPNCPY_C		1
Packit Bot 01b4bb
# define HAVE_WCPNCPY_Z13	1
Packit Bot 01b4bb
#else
Packit Bot 01b4bb
# define WCPNCPY_DEFAULT	WCPNCPY_C
Packit Bot 01b4bb
# define HAVE_WCPNCPY_C		1
Packit Bot 01b4bb
# define HAVE_WCPNCPY_Z13	HAVE_WCPNCPY_IFUNC_AND_VX_SUPPORT
Packit Bot 01b4bb
#endif
Packit Bot 01b4bb
Packit Bot 01b4bb
#if HAVE_WCPNCPY_C
Packit Bot 01b4bb
# define WCPNCPY_C		__wcpncpy_c
Packit Bot 01b4bb
#else
Packit Bot 01b4bb
# define WCPNCPY_C		NULL
Packit Bot 01b4bb
#endif
Packit Bot 01b4bb
Packit Bot 01b4bb
#if HAVE_WCPNCPY_Z13
Packit Bot 01b4bb
# define WCPNCPY_Z13		__wcpncpy_vx
Packit Bot 01b4bb
#else
Packit Bot 01b4bb
# define WCPNCPY_Z13		NULL
Packit Bot 01b4bb
#endif