Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752259AbbF1SCH (ORCPT ); Sun, 28 Jun 2015 14:02:07 -0400 Received: from smtprelay0170.hostedemail.com ([216.40.44.170]:55445 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752450AbbF1SB7 (ORCPT ); Sun, 28 Jun 2015 14:01:59 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::,RULES_HIT:41:355:379:541:599:968:973:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1541:1593:1594:1711:1730:1747:1777:1792:2198:2199:2393:2559:2562:2828:3138:3139:3140:3141:3142:3352:3622:3865:3866:3867:3868:3870:3871:3873:4321:5007:6261:7904:8660:10004:10400:10848:11232:11658:11914:12043:12438:12517:12519:12740:13069:13148:13230:13311:13357:14096:14097:21080,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0 X-HE-Tag: uncle32_4b393e366d40b X-Filterd-Recvd-Size: 1997 Message-ID: <1435514515.9587.46.camel@perches.com> Subject: Re: [PATCH] un-improve strrchr() From: Joe Perches To: Alexey Dobriyan Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org, linux@rasmusvillemoes.dk Date: Sun, 28 Jun 2015 11:01:55 -0700 In-Reply-To: <20150628164403.GA7169@p183.telecom.by> References: <20150628163252.GA1991@p183.telecom.by> <20150628164403.GA7169@p183.telecom.by> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.12.11-0ubuntu3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1385 Lines: 44 On Sun, 2015-06-28 at 19:44 +0300, Alexey Dobriyan wrote: > Commit 8da53d4595a53fb9a3380dd4d1c9bc24c7c9aab8 > ("lib/string.c: improve strrchr()") changed strrchr() implementation > from "rewind to the end and search backwards" to "search forward" > optimizing for characher not found case. However, common case is exactly > the opposite: string is absolute pathname, c is '/' always to be found. > > Previous code did 1 branch per character + 1 branch for every character > in the last path component. Current code does 2 branches per characher > regardless. Are you comparing total cycles of all of the branches in the called functions too? As written the current version removes the strlen call. > --- a/lib/string.c > +++ b/lib/string.c > @@ -313,12 +313,13 @@ EXPORT_SYMBOL(strchrnul); > */ > char *strrchr(const char *s, int c) > { > - const char *last = NULL; > + const char *p = s + strlen(s); > + > do { > - if (*s == (char)c) > - last = s; > - } while (*s++); > - return (char *)last; > + if (*p == (char)c) > + return (char *)p; > + } while (--p >= s); > + return NULL; > } > EXPORT_SYMBOL(strrchr); > #endif -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/