Blame sysdeps/s390/ifunc-wcslen.h

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