Blame sysdeps/s390/strstr-vx.c

Packit Service 24b7ff
/* Default strstr implementation with vector string functions for S/390.
Packit Service 24b7ff
   Copyright (C) 2018 Free Software Foundation, Inc.
Packit Service 24b7ff
   This file is part of the GNU C Library.
Packit Service 24b7ff
Packit Service 24b7ff
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 24b7ff
   modify it under the terms of the GNU Lesser General Public
Packit Service 24b7ff
   License as published by the Free Software Foundation; either
Packit Service 24b7ff
   version 2.1 of the License, or (at your option) any later version.
Packit Service 24b7ff
Packit Service 24b7ff
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 24b7ff
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 24b7ff
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 24b7ff
   Lesser General Public License for more details.
Packit Service 24b7ff
Packit Service 24b7ff
   You should have received a copy of the GNU Lesser General Public
Packit Service 24b7ff
   License along with the GNU C Library; if not, see
Packit Service 24b7ff
   <http://www.gnu.org/licenses/>.  */
Packit Service 24b7ff
Packit Service 24b7ff
#include <ifunc-strstr.h>
Packit Service 24b7ff
Packit Service 24b7ff
#if HAVE_STRSTR_Z13
Packit Service 49e686
# if HAVE_STRSTR_IFUNC || STRSTR_Z13_ONLY_USED_AS_FALLBACK
Packit Service 24b7ff
#  define STRSTR STRSTR_Z13
Packit Service 24b7ff
#  if defined SHARED && IS_IN (libc)
Packit Service 24b7ff
#   undef libc_hidden_builtin_def
Packit Service 49e686
#   if HAVE_STRSTR_C || STRSTR_Z13_ONLY_USED_AS_FALLBACK
Packit Service 24b7ff
#    define libc_hidden_builtin_def(name)
Packit Service 24b7ff
#   else
Packit Service 24b7ff
#    define libc_hidden_builtin_def(name)		\
Packit Service 24b7ff
  __hidden_ver1 (__strstr_vx, __GI_strstr, __strstr_vx);
Packit Service 24b7ff
#   endif
Packit Service 24b7ff
#  endif
Packit Service 24b7ff
# endif
Packit Service 24b7ff
Packit Service 24b7ff
# include <string.h>
Packit Service 24b7ff
Packit Service 24b7ff
# ifdef USE_MULTIARCH
Packit Service 24b7ff
extern __typeof (strchr) __strchr_vx attribute_hidden;
Packit Service 24b7ff
#  define strchr __strchr_vx
Packit Service 24b7ff
Packit Service 24b7ff
extern __typeof (strlen) __strlen_vx attribute_hidden;
Packit Service 24b7ff
#  define strlen __strlen_vx
Packit Service 24b7ff
Packit Service 24b7ff
extern __typeof (__strnlen) __strnlen_vx attribute_hidden;
Packit Service 24b7ff
#  define __strnlen __strnlen_vx
Packit Service 24b7ff
Packit Service 24b7ff
extern __typeof (memcmp) __memcmp_z196 attribute_hidden;
Packit Service 24b7ff
#  define memcmp __memcmp_z196
Packit Service 24b7ff
# endif
Packit Service 24b7ff
Packit Service 24b7ff
# include <string/strstr.c>
Packit Service 24b7ff
#endif