Blame sysdeps/s390/ifunc-wcpcpy.h

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