memcpy.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* Multiple versions of memcpy.
  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-memcpy.h>
  16. #if HAVE_MEMCPY_IFUNC
  17. # define memcpy __redirect_memcpy
  18. # include <string.h>
  19. # undef memcpy
  20. # include <ifunc-resolve.h>
  21. # if HAVE_MEMCPY_Z900_G5
  22. extern __typeof (__redirect_memcpy) MEMCPY_Z900_G5 attribute_hidden;
  23. # endif
  24. # if HAVE_MEMCPY_Z10
  25. extern __typeof (__redirect_memcpy) MEMCPY_Z10 attribute_hidden;
  26. # endif
  27. # if HAVE_MEMCPY_Z196
  28. extern __typeof (__redirect_memcpy) MEMCPY_Z196 attribute_hidden;
  29. # endif
  30. s390_libc_ifunc_expr (__redirect_memcpy, memcpy,
  31. ({
  32. s390_libc_ifunc_expr_stfle_init ();
  33. (HAVE_MEMCPY_Z196 && S390_IS_Z196 (stfle_bits))
  34. ? MEMCPY_Z196
  35. : (HAVE_MEMCPY_Z10 && S390_IS_Z10 (stfle_bits))
  36. ? MEMCPY_Z10
  37. : MEMCPY_DEFAULT;
  38. })
  39. )
  40. #endif