Blame sysdeps/s390/ifunc-strspn.h

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