2012-10-10 14:48:45 +00:00
|
|
|
/* Multiple versions of strstr
|
|
|
|
All versions must be listed in ifunc-impl-list.c. */
|
|
|
|
|
2009-08-04 19:13:43 +00:00
|
|
|
#include "init-arch.h"
|
|
|
|
|
|
|
|
#define STRSTR __strstr_ia32
|
2011-07-15 03:47:54 +00:00
|
|
|
#if defined SHARED && defined DO_VERSIONING && !defined NO_HIDDEN
|
2009-08-04 19:13:43 +00:00
|
|
|
#undef libc_hidden_builtin_def
|
|
|
|
#define libc_hidden_builtin_def(name) \
|
|
|
|
__hidden_ver1 (__strstr_ia32, __GI_strstr, __strstr_ia32);
|
2011-07-15 03:47:54 +00:00
|
|
|
#endif
|
2009-08-04 19:13:43 +00:00
|
|
|
|
2012-08-09 23:04:37 +00:00
|
|
|
/* Redefine strstr so that the compiler won't complain about the type
|
|
|
|
mismatch with the IFUNC selector in strong_alias, below. */
|
|
|
|
#undef strstr
|
|
|
|
#define strstr __redirect_strstr
|
|
|
|
|
2009-08-04 19:13:43 +00:00
|
|
|
#include "string/strstr.c"
|
|
|
|
|
2012-08-09 23:04:37 +00:00
|
|
|
extern __typeof (__redirect_strstr) __strstr_sse42 attribute_hidden;
|
|
|
|
extern __typeof (__redirect_strstr) __strstr_ia32 attribute_hidden;
|
|
|
|
|
|
|
|
/* Avoid DWARF definition DIE on ifunc symbol so that GDB can handle
|
|
|
|
ifunc symbol properly. */
|
|
|
|
extern __typeof (__redirect_strstr) __libc_strstr;
|
|
|
|
libc_ifunc (__libc_strstr, HAS_SSE4_2 ? __strstr_sse42 : __strstr_ia32)
|
2009-08-04 19:13:43 +00:00
|
|
|
|
2012-08-09 23:04:37 +00:00
|
|
|
#undef strstr
|
|
|
|
strong_alias (__libc_strstr, strstr)
|