memset.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* Multiple versions of memset.
  2. Copyright (C) 2015-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. #include <ifunc-memset.h>
  16. #if HAVE_MEMSET_IFUNC
  17. # define memset __redirect_memset
  18. # include <string.h>
  19. # undef memset
  20. # include <ifunc-resolve.h>
  21. # if HAVE_MEMSET_Z900_G5
  22. extern __typeof (__redirect_memset) MEMSET_Z900_G5 attribute_hidden;
  23. # endif
  24. # if HAVE_MEMSET_Z10
  25. extern __typeof (__redirect_memset) MEMSET_Z10 attribute_hidden;
  26. # endif
  27. # if HAVE_MEMSET_Z196
  28. extern __typeof (__redirect_memset) MEMSET_Z196 attribute_hidden;
  29. # endif
  30. s390_libc_ifunc_expr (__redirect_memset, memset,
  31. ({
  32. s390_libc_ifunc_expr_stfle_init ();
  33. (HAVE_MEMSET_Z196 && S390_IS_Z196 (stfle_bits))
  34. ? MEMSET_Z196
  35. : (HAVE_MEMSET_Z10 && S390_IS_Z10 (stfle_bits))
  36. ? MEMSET_Z10
  37. : MEMSET_DEFAULT;
  38. })
  39. )
  40. #endif