diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2018-07-16 17:50:09 +0100 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2018-07-16 17:51:52 +0100 |
commit | 3ae725dfb6d7f61447d27d00ed83e573bd5454f4 (patch) | |
tree | 1a0eada529fc06de4613cb84a20d80e5d69c6d0a /posix | |
parent | 31e422ca9680bbe412aa56b23f058c10eaee7be8 (diff) | |
download | glibc-3ae725dfb6d7f61447d27d00ed83e573bd5454f4.tar.gz glibc-3ae725dfb6d7f61447d27d00ed83e573bd5454f4.tar.xz glibc-3ae725dfb6d7f61447d27d00ed83e573bd5454f4.zip |
Improve strstr performance
Improve strstr performance. Strstr tends to be slow because it uses many calls to memchr and a slow byte loop to scan for the next match. Performance is significantly improved by using strnlen on larger blocks and using strchr to search for the next matching character. strcasestr can also use strnlen to scan ahead, and memmem can use memchr to check for the next match. On the GLIBC bench tests the performance gains on Cortex-A72 are: strstr: +25% strcasestr: +4.3% memmem: +18% On a 256KB dataset strstr performance improves by 67%, strcasestr by 47%. Reviewd-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'posix')
0 files changed, 0 insertions, 0 deletions