Blame sysdeps/s390/ifunc-wcscat.h

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