From: Wilco Dijkstra Date: Fri, 24 Oct 2014 16:12:12 +0000 (+0000) Subject: This patch improves strncat performance by using strlen. Strlen has a fast C implemen... X-Git-Tag: glibc-2.21~461 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e80514b5a87c86a92352ce526c4b9db85f2a242c;p=platform%2Fupstream%2Fglibc.git This patch improves strncat performance by using strlen. Strlen has a fast C implementation, so this will improve performance even on targets which don't have an optimized strlen. It is about twice as fast as the original strncat in bench-strncat. --- diff --git a/ChangeLog b/ChangeLog index f73c55e..40e294b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2014-10-24 Wilco Dijkstra + * string/strncat.c (strncat): Improve performance by using strlen. + +2014-10-24 Wilco Dijkstra + * string/strcat.c (strcat): Improve performance by using strlen/strcpy. 2014-10-24 Wilco Dijkstra diff --git a/string/strncat.c b/string/strncat.c index 7ac4456..6d29114 100644 --- a/string/strncat.c +++ b/string/strncat.c @@ -33,13 +33,11 @@ STRNCAT (char *s1, const char *s2, size_t n) char *s = s1; /* Find the end of S1. */ - do - c = *s1++; - while (c != '\0'); + s1 += strlen (s1); /* Make S1 point before next character, so we can increment it while memory is read (wins on pipelined cpus). */ - s1 -= 2; + s1 -= 1; if (n >= 4) {