Blame sysdeps/s390/ifunc-wcscpy.h

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