Blame sysdeps/s390/ifunc-strchrnul.h

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