Blame sysdeps/s390/ifunc-wmemchr.h

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