Blame sysdeps/s390/ifunc-wcsrchr.h

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