Blame sysdeps/s390/ifunc-wcspbrk.h

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