ifunc-wcsspn.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* wcsspn variant information on S/390 version.
  2. Copyright (C) 2018-2026 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <https://www.gnu.org/licenses/>. */
  15. #if defined USE_MULTIARCH && IS_IN (libc) \
  16. && ! defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
  17. # define HAVE_WCSSPN_IFUNC 1
  18. #else
  19. # define HAVE_WCSSPN_IFUNC 0
  20. #endif
  21. #ifdef HAVE_S390_VX_ASM_SUPPORT
  22. # define HAVE_WCSSPN_IFUNC_AND_VX_SUPPORT HAVE_WCSSPN_IFUNC
  23. #else
  24. # define HAVE_WCSSPN_IFUNC_AND_VX_SUPPORT 0
  25. #endif
  26. #if defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
  27. # define WCSSPN_DEFAULT WCSSPN_Z13
  28. /* The z13 ifunc variant is using the common code variant as fallback! */
  29. # define HAVE_WCSSPN_C 1
  30. # define HAVE_WCSSPN_Z13 1
  31. #else
  32. # define WCSSPN_DEFAULT WCSSPN_C
  33. # define HAVE_WCSSPN_C 1
  34. # define HAVE_WCSSPN_Z13 HAVE_WCSSPN_IFUNC_AND_VX_SUPPORT
  35. #endif
  36. #if HAVE_WCSSPN_C
  37. # define WCSSPN_C __wcsspn_c
  38. #else
  39. # define WCSSPN_C NULL
  40. #endif
  41. #if HAVE_WCSSPN_Z13
  42. # define WCSSPN_Z13 __wcsspn_vx
  43. #else
  44. # define WCSSPN_Z13 NULL
  45. #endif