mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 07:40:05 +00:00
584b18eb4d
A sse42 version of strstr used pcmpistr instruction which is quite ineffective. A faster way is look for pairs of characters which is uses sse2, is faster than pcmpistr and for real strings a pairs we look for are relatively rare. For linear time complexity we use buy or rent technique which switches to two-way algorithm when superlinear behaviour is detected.
14 lines
311 B
C
14 lines
311 B
C
/* Multiple versions of strcasestr
|
|
All versions must be listed in ifunc-impl-list.c. */
|
|
|
|
#include "init-arch.h"
|
|
|
|
#define STRCASESTR __strcasestr_sse2
|
|
|
|
#include "string/strcasestr.c"
|
|
|
|
extern __typeof (__strcasestr_sse2) __strcasestr_sse2 attribute_hidden;
|
|
|
|
libc_ifunc (__strcasestr,
|
|
__strcasestr_sse2);
|