Blame sysdeps/s390/ifunc-strnlen.h

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