sysdeps/ieee754/ldbl-opt/Makefile: Split and sort libnldbl-calls
[glibc.git] / sysdeps / s390 / ifunc-wcscpy.h
blob4a591b728bc1d3ef2b96e060bf69b11f2a27935b
1 /* wcscpy variant information on S/390 version.
2 Copyright (C) 2018-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #if defined USE_MULTIARCH && IS_IN (libc) \
20 && ! defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
21 # define HAVE_WCSCPY_IFUNC 1
22 #else
23 # define HAVE_WCSCPY_IFUNC 0
24 #endif
26 #ifdef HAVE_S390_VX_ASM_SUPPORT
27 # define HAVE_WCSCPY_IFUNC_AND_VX_SUPPORT HAVE_WCSCPY_IFUNC
28 #else
29 # define HAVE_WCSCPY_IFUNC_AND_VX_SUPPORT 0
30 #endif
32 #if defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
33 # define WCSCPY_DEFAULT WCSCPY_Z13
34 /* The z13 ifunc variant is using the common code variant as fallback! */
35 # define HAVE_WCSCPY_C 1
36 # define HAVE_WCSCPY_Z13 1
37 #else
38 # define WCSCPY_DEFAULT WCSCPY_C
39 # define HAVE_WCSCPY_C 1
40 # define HAVE_WCSCPY_Z13 HAVE_WCSCPY_IFUNC_AND_VX_SUPPORT
41 #endif
43 #if HAVE_WCSCPY_C
44 # define WCSCPY_C __wcscpy_c
45 #else
46 # define WCSCPY_C NULL
47 #endif
49 #if HAVE_WCSCPY_Z13
50 # define WCSCPY_Z13 __wcscpy_vx
51 #else
52 # define WCSCPY_Z13 NULL
53 #endif