Blame sysdeps/s390/ifunc-strcmp.h

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