diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2014-09-15 20:10:18 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2014-10-06 11:19:18 -0400 |
commit | c86f7b80f43d7336eab1119dae78b0f10b7244ec (patch) | |
tree | 951bc7a02304a850aaed2a361df614669f5271aa /ChangeLog | |
parent | 1c4c1a6f4d0e8ffab24419d136fbfe698a201d24 (diff) | |
download | glibc-c86f7b80f43d7336eab1119dae78b0f10b7244ec.zip glibc-c86f7b80f43d7336eab1119dae78b0f10b7244ec.tar.gz glibc-c86f7b80f43d7336eab1119dae78b0f10b7244ec.tar.bz2 |
tilegx: provide optimized strnlen, strstr, and strcasestr
strnlen() is based on the existing tile strlen() with length
checking added. It speeds up by up to 5x, but on average across
the benchtest corpus by around 35%. No regressions are seen.
strstr() does 8-byte aligned loads and compares using a 2-byte
filter on the first two bytes of the needle and then testing
the remaining bytes in needle using memcmp(). It speeds up
about 5x in the best case (for "found" needles), about 2x looking
at benchtest as a whole, with some slowdowns as much as 45%.
on a few cases (including the "fail" case for 128KB search).
strcasestr() is based on strstr() but uses a SIMD tolower
routine to convert 8-bytes to lower case in 5 instructions.
It also uses a 2-byte filter and then strncasecmp() for the
remaining bytes. strncasecmp() is not optimized for SIMD, so
there is futher room for improvement. However, it is still up
to 16x faster for "found" needles, averaging 2x faster on the
whole corpus of benchtests. It does slow down by up to 35%
on a few cases, similarly to strstr().
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2014-10-02 Chris Metcalf <cmetcalf@tilera.com> + * sysdeps/tile/tilegx/string-endian.h (STRSHIFT): New macro. + * sysdeps/tile/tilegx/strcasestr.c: New file. + * sysdeps/tile/tilegx/strnlen.c: New file. + * sysdeps/tile/tilegx/strstr.c: New file. + * sysdeps/tile/tilegx/string-endian.h (copy_byte): Optimize. 2014-10-06 Arjun Shankar <arjun.is@lostca.se> |