* [PATCH v3] skip_prefix: rewrite so that prefix is scanned once @ 2014-03-03 3:13 Siddharth Goel 2014-03-03 19:05 ` Junio C Hamano 0 siblings, 1 reply; 9+ messages in thread From: Siddharth Goel @ 2014-03-03 3:13 UTC (permalink / raw) To: git; +Cc: sunshine, Siddharth Goel Helped-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Siddharth Goel <siddharth98391@gmail.com> --- Added a space after colon in the subject as compared to previous patch [PATCH v2]. [PATCH v2]: http://thread.gmane.org/gmane.comp.version-control.git/243150 git-compat-util.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/git-compat-util.h b/git-compat-util.h index 614a5e9..550dce3 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -357,8 +357,11 @@ extern int suffixcmp(const char *str, const char *suffix); static inline const char *skip_prefix(const char *str, const char *prefix) { - size_t len = strlen(prefix); - return strncmp(str, prefix, len) ? NULL : str + len; + while (*prefix != '\0' && *str == *prefix) { + str++; + prefix++; + } + return (*prefix == '\0' ? str : NULL); } #if defined(NO_MMAP) || defined(USE_WIN32_MMAP) -- 1.9.0.138.g2de3478.dirty ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v3] skip_prefix: rewrite so that prefix is scanned once 2014-03-03 3:13 [PATCH v3] skip_prefix: rewrite so that prefix is scanned once Siddharth Goel @ 2014-03-03 19:05 ` Junio C Hamano 2014-03-03 22:43 ` Junio C Hamano 0 siblings, 1 reply; 9+ messages in thread From: Junio C Hamano @ 2014-03-03 19:05 UTC (permalink / raw) To: Siddharth Goel; +Cc: git, sunshine Siddharth Goel <siddharth98391@gmail.com> writes: > Helped-by: Eric Sunshine <sunshine@sunshineco.com> > Signed-off-by: Siddharth Goel <siddharth98391@gmail.com> > --- > Added a space after colon in the subject as compared to previous > patch [PATCH v2]. > > [PATCH v2]: http://thread.gmane.org/gmane.comp.version-control.git/243150 Whenever you see "Change", "Rewrite", etc. in the subject of a patch that touches existing code, think twice. The subject line is a scarce real estate to be wasted on a noiseword that carries no real information, and we already know a patch that touches existing code changes or rewrites things. Subject: [PATCH v3] skip_prefix: scan prefix only once perhaps? > git-compat-util.h | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/git-compat-util.h b/git-compat-util.h > index 614a5e9..550dce3 100644 > --- a/git-compat-util.h > +++ b/git-compat-util.h > @@ -357,8 +357,11 @@ extern int suffixcmp(const char *str, const char *suffix); > > static inline const char *skip_prefix(const char *str, const char *prefix) > { > - size_t len = strlen(prefix); > - return strncmp(str, prefix, len) ? NULL : str + len; > + while (*prefix != '\0' && *str == *prefix) { > + str++; > + prefix++; > + } > + return (*prefix == '\0' ? str : NULL); Unlike another patch I saw the other day on the same topic, this checks *prefix twice for the last round, even though I think this one is probably slightly easier to read. I dunno. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] skip_prefix: rewrite so that prefix is scanned once 2014-03-03 19:05 ` Junio C Hamano @ 2014-03-03 22:43 ` Junio C Hamano 2014-03-03 23:22 ` David Kastrup 2014-03-03 23:37 ` Duy Nguyen 0 siblings, 2 replies; 9+ messages in thread From: Junio C Hamano @ 2014-03-03 22:43 UTC (permalink / raw) To: Siddharth Goel; +Cc: git, sunshine Junio C Hamano <gitster@pobox.com> writes: > Siddharth Goel <siddharth98391@gmail.com> writes: > >> Helped-by: Eric Sunshine <sunshine@sunshineco.com> >> Signed-off-by: Siddharth Goel <siddharth98391@gmail.com> >> --- >> Added a space after colon in the subject as compared to previous >> patch [PATCH v2]. >> >> [PATCH v2]: http://thread.gmane.org/gmane.comp.version-control.git/243150 > > Whenever you see "Change", "Rewrite", etc. in the subject of a patch > that touches existing code, think twice. The subject line is a > scarce real estate to be wasted on a noiseword that carries no real > information, and we already know a patch that touches existing code > changes or rewrites things. > > Subject: [PATCH v3] skip_prefix: scan prefix only once > > perhaps? > >> git-compat-util.h | 7 +++++-- >> 1 file changed, 5 insertions(+), 2 deletions(-) >> >> diff --git a/git-compat-util.h b/git-compat-util.h >> index 614a5e9..550dce3 100644 >> --- a/git-compat-util.h >> +++ b/git-compat-util.h >> @@ -357,8 +357,11 @@ extern int suffixcmp(const char *str, const char *suffix); >> >> static inline const char *skip_prefix(const char *str, const char *prefix) >> { >> - size_t len = strlen(prefix); >> - return strncmp(str, prefix, len) ? NULL : str + len; >> + while (*prefix != '\0' && *str == *prefix) { >> + str++; >> + prefix++; >> + } >> + return (*prefix == '\0' ? str : NULL); > > Unlike another patch I saw the other day on the same topic, this > checks *prefix twice for the last round, even though I think this > one is probably slightly easier to read. I dunno. That is, something like this instead. After looking at it again, I do not think it is less readable than the above. git-compat-util.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/git-compat-util.h b/git-compat-util.h index cbd86c3..68ffaef 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -357,8 +357,14 @@ extern int suffixcmp(const char *str, const char *suffix); static inline const char *skip_prefix(const char *str, const char *prefix) { - size_t len = strlen(prefix); - return strncmp(str, prefix, len) ? NULL : str + len; + while (1) { + if (!*prefix) + return str; + if (*str != *prefix) + return NULL; + prefix++; + str++; + } } #if defined(NO_MMAP) || defined(USE_WIN32_MMAP) ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v3] skip_prefix: rewrite so that prefix is scanned once 2014-03-03 22:43 ` Junio C Hamano @ 2014-03-03 23:22 ` David Kastrup 2014-03-03 23:35 ` Junio C Hamano 2014-03-03 23:37 ` Duy Nguyen 1 sibling, 1 reply; 9+ messages in thread From: David Kastrup @ 2014-03-03 23:22 UTC (permalink / raw) To: Junio C Hamano; +Cc: Siddharth Goel, git, sunshine Junio C Hamano <gitster@pobox.com> writes: > --- a/git-compat-util.h > +++ b/git-compat-util.h > @@ -357,8 +357,14 @@ extern int suffixcmp(const char *str, const char *suffix); > > static inline const char *skip_prefix(const char *str, const char *prefix) > { > - size_t len = strlen(prefix); > - return strncmp(str, prefix, len) ? NULL : str + len; > + while (1) { > + if (!*prefix) > + return str; > + if (*str != *prefix) > + return NULL; > + prefix++; > + str++; > + } > } How about a function body of do { if (!*prefix) return str; } while (*str++ == *prefix++); return NULL; I'm not too fond of while (1) and tend to use for (;;) instead, but that may again partly be due to some incredibly non-optimizing compiler back in the days of my youth. At any rate, the do-while loop seems a bit brisker. -- David Kastrup ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] skip_prefix: rewrite so that prefix is scanned once 2014-03-03 23:22 ` David Kastrup @ 2014-03-03 23:35 ` Junio C Hamano 0 siblings, 0 replies; 9+ messages in thread From: Junio C Hamano @ 2014-03-03 23:35 UTC (permalink / raw) To: David Kastrup; +Cc: Siddharth Goel, git, sunshine David Kastrup <dak@gnu.org> writes: > How about a function body of > > do { > if (!*prefix) > return str; > } while (*str++ == *prefix++); > return NULL; > > I'm not too fond of while (1) and tend to use for (;;) instead, but that > may again partly be due to some incredibly non-optimizing compiler back > in the days of my youth. At any rate, the do-while loop seems a bit > brisker. I do not have strong preference between "while (1)" and "for (;;)", but I tend to agree for (;; prefix++, str++) { if (!*prefix) return str; if (*str != *prefix) return NULL; } may be easier to read than what I suggested. Your do-while loop is concise and very readable, so let's take that one (I'll forge your Sign-off ;-)). I haven't looked at the generated assembly of any of these, though. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] skip_prefix: rewrite so that prefix is scanned once 2014-03-03 22:43 ` Junio C Hamano 2014-03-03 23:22 ` David Kastrup @ 2014-03-03 23:37 ` Duy Nguyen 2014-03-04 0:09 ` David Kastrup 1 sibling, 1 reply; 9+ messages in thread From: Duy Nguyen @ 2014-03-03 23:37 UTC (permalink / raw) To: Junio C Hamano; +Cc: Siddharth Goel, Git Mailing List, Eric Sunshine On Tue, Mar 4, 2014 at 5:43 AM, Junio C Hamano <gitster@pobox.com> wrote: > diff --git a/git-compat-util.h b/git-compat-util.h > index cbd86c3..68ffaef 100644 > --- a/git-compat-util.h > +++ b/git-compat-util.h > @@ -357,8 +357,14 @@ extern int suffixcmp(const char *str, const char *suffix); > > static inline const char *skip_prefix(const char *str, const char *prefix) > { > - size_t len = strlen(prefix); > - return strncmp(str, prefix, len) ? NULL : str + len; Just a note. gcc does optimize strlen("abcdef") to 6, and with that information at compile time built-in strncmp might do better. > + while (1) { > + if (!*prefix) > + return str; > + if (*str != *prefix) > + return NULL; > + prefix++; > + str++; > + } > } > > #if defined(NO_MMAP) || defined(USE_WIN32_MMAP) -- Duy ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] skip_prefix: rewrite so that prefix is scanned once 2014-03-03 23:37 ` Duy Nguyen @ 2014-03-04 0:09 ` David Kastrup 2014-03-04 1:58 ` Duy Nguyen 0 siblings, 1 reply; 9+ messages in thread From: David Kastrup @ 2014-03-04 0:09 UTC (permalink / raw) To: Duy Nguyen Cc: Junio C Hamano, Siddharth Goel, Git Mailing List, Eric Sunshine Duy Nguyen <pclouds@gmail.com> writes: > On Tue, Mar 4, 2014 at 5:43 AM, Junio C Hamano <gitster@pobox.com> wrote: >> diff --git a/git-compat-util.h b/git-compat-util.h >> index cbd86c3..68ffaef 100644 >> --- a/git-compat-util.h >> +++ b/git-compat-util.h >> @@ -357,8 +357,14 @@ extern int suffixcmp(const char *str, const char *suffix); >> >> static inline const char *skip_prefix(const char *str, const char *prefix) >> { >> - size_t len = strlen(prefix); >> - return strncmp(str, prefix, len) ? NULL : str + len; > > Just a note. gcc does optimize strlen("abcdef") to 6, and with that > information at compile time built-in strncmp might do better. Indeed, most (but not all) of the calls have a constant string as prefix. However, strncmp in each iteration checks for both *str as well as *prefix to be different from '\0' independently (and it appears unlikely to me that the optimizer will figure out that it's unnecessary for either) _and_ compares them for equality so it's not likely to be faster than the open-coded loop. One could, however, use memcmp instead of strncmp. I'm just not sure whether memcmp is guaranteed not to peek beyond the first mismatching byte even if the count would allow for more. It could lead to undefined behavior if the first mismatching byte would be the ending NUL byte of str. -- David Kastrup ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] skip_prefix: rewrite so that prefix is scanned once 2014-03-04 0:09 ` David Kastrup @ 2014-03-04 1:58 ` Duy Nguyen 2014-03-04 9:18 ` David Kastrup 0 siblings, 1 reply; 9+ messages in thread From: Duy Nguyen @ 2014-03-04 1:58 UTC (permalink / raw) To: David Kastrup Cc: Junio C Hamano, Siddharth Goel, Git Mailing List, Eric Sunshine On Tue, Mar 04, 2014 at 01:09:39AM +0100, David Kastrup wrote: > Duy Nguyen <pclouds@gmail.com> writes: > > > On Tue, Mar 4, 2014 at 5:43 AM, Junio C Hamano <gitster@pobox.com> wrote: > >> diff --git a/git-compat-util.h b/git-compat-util.h > >> index cbd86c3..68ffaef 100644 > >> --- a/git-compat-util.h > >> +++ b/git-compat-util.h > >> @@ -357,8 +357,14 @@ extern int suffixcmp(const char *str, const char *suffix); > >> > >> static inline const char *skip_prefix(const char *str, const char *prefix) > >> { > >> - size_t len = strlen(prefix); > >> - return strncmp(str, prefix, len) ? NULL : str + len; > > > > Just a note. gcc does optimize strlen("abcdef") to 6, and with that > > information at compile time built-in strncmp might do better. > > Indeed, most (but not all) of the calls have a constant string as > prefix. However, strncmp in each iteration checks for both *str as well > as *prefix to be different from '\0' independently (and it appears > unlikely to me that the optimizer will figure out that it's unnecessary > for either) _and_ compares them for equality so it's not likely to be > faster than the open-coded loop. > > One could, however, use memcmp instead of strncmp. I'm just not sure > whether memcmp is guaranteed not to peek beyond the first mismatching > byte even if the count would allow for more. It could lead to undefined > behavior if the first mismatching byte would be the ending NUL byte of > str. It turns out gcc does not generate a call to strncmp either. It inlines repz cmpsb instead. I recall we had a discussion long ago about the inefficiency of repz and and open-coded loop is preferred, maybe that was about hashcmp. Anyway this does not matter much as skip_prefix() is unlikely to be in any critical path, so I think readability has higher priority. For the curious, this small C program -- 8< -- #include <stdio.h> #include <string.h> static inline const char *skip(const char *str, const char *prefix) { int len = strlen(prefix); return strncmp(str, prefix, len) ? NULL : str + len; } int main(int ac, char **av) { const char *s = skip(av[1], "foo"); printf("%s\n", s); return 0; } -- 8< -- produces this assembly with gcc -O2 (on x86, apparently) -- 8< -- 00000000 <main>: 0: 55 push %ebp 1: b9 03 00 00 00 mov $0x3,%ecx 6: 89 e5 mov %esp,%ebp 8: 57 push %edi 9: bf 00 00 00 00 mov $0x0,%edi e: 56 push %esi f: 53 push %ebx 10: 83 e4 f0 and $0xfffffff0,%esp 13: 83 ec 10 sub $0x10,%esp 16: 8b 45 0c mov 0xc(%ebp),%eax 19: 8b 40 04 mov 0x4(%eax),%eax 1c: 89 c6 mov %eax,%esi 1e: f3 a6 repz cmpsb %es:(%edi),%ds:(%esi) 20: 0f 97 c3 seta %bl 23: 0f 92 c1 setb %cl 26: 83 c0 03 add $0x3,%eax 29: 31 d2 xor %edx,%edx 2b: 38 cb cmp %cl,%bl 2d: 0f 44 d0 cmove %eax,%edx 30: 89 14 24 mov %edx,(%esp) 33: e8 fc ff ff ff call 34 <main+0x34> 38: 8d 65 f4 lea -0xc(%ebp),%esp 3b: 31 c0 xor %eax,%eax 3d: 5b pop %ebx 3e: 5e pop %esi 3f: 5f pop %edi 40: 5d pop %ebp 41: c3 ret -- 8< -- -- Duy ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3] skip_prefix: rewrite so that prefix is scanned once 2014-03-04 1:58 ` Duy Nguyen @ 2014-03-04 9:18 ` David Kastrup 0 siblings, 0 replies; 9+ messages in thread From: David Kastrup @ 2014-03-04 9:18 UTC (permalink / raw) To: Duy Nguyen Cc: Junio C Hamano, Siddharth Goel, Git Mailing List, Eric Sunshine Duy Nguyen <pclouds@gmail.com> writes: > On Tue, Mar 04, 2014 at 01:09:39AM +0100, David Kastrup wrote: >> Duy Nguyen <pclouds@gmail.com> writes: >> >> > On Tue, Mar 4, 2014 at 5:43 AM, Junio C Hamano <gitster@pobox.com> wrote: >> >> diff --git a/git-compat-util.h b/git-compat-util.h >> >> index cbd86c3..68ffaef 100644 >> >> --- a/git-compat-util.h >> >> +++ b/git-compat-util.h >> >> @@ -357,8 +357,14 @@ extern int suffixcmp(const char *str, const char *suffix); >> >> >> >> static inline const char *skip_prefix(const char *str, const char *prefix) >> >> { >> >> - size_t len = strlen(prefix); >> >> - return strncmp(str, prefix, len) ? NULL : str + len; >> > >> > Just a note. gcc does optimize strlen("abcdef") to 6, and with that >> > information at compile time built-in strncmp might do better. >> >> Indeed, most (but not all) of the calls have a constant string as >> prefix. However, strncmp in each iteration checks for both *str as well >> as *prefix to be different from '\0' independently (and it appears >> unlikely to me that the optimizer will figure out that it's unnecessary >> for either) _and_ compares them for equality so it's not likely to be >> faster than the open-coded loop. >> >> One could, however, use memcmp instead of strncmp. I'm just not sure >> whether memcmp is guaranteed not to peek beyond the first mismatching >> byte even if the count would allow for more. It could lead to undefined >> behavior if the first mismatching byte would be the ending NUL byte of >> str. > > It turns out gcc does not generate a call to strncmp either. It > inlines repz cmpsb instead. Oh wow. So it _does_ know that it's not necessary to check for a NUL byte when the length of one argument is already known. I am seriously impressed. > I recall we had a discussion long ago about the inefficiency of repz > and and open-coded loop is preferred, I think that this mostly applies for Pentium I, possibly also the dead-ended Pentium Pro architecture (that sort-of translated the x86 opcodes into RISC instructions). I think that later processor variants (and AMD anyway) got those instructions back to usable shape. One thing where there was a _lot_ of performance difference between open-coding and builtin was using memcpy (repz movb) for copying well-aligned data bytewise rather than copying, say, integer arrays element-wise. But since that was egg-on-face material, the hardware got better at it. And anyway, GCC should know what to pick here. So with GCC being as smart as that (using the equivalent of memcmp on its own initiative instead of the full strncmp), I don't think we have a reasonable chance to beat its performance with an open-coded variant. > produces this assembly with gcc -O2 (on x86, apparently) > > -- 8< -- > 00000000 <main>: > 0: 55 push %ebp > 1: b9 03 00 00 00 mov $0x3,%ecx > 6: 89 e5 mov %esp,%ebp > 8: 57 push %edi > 9: bf 00 00 00 00 mov $0x0,%edi > e: 56 push %esi > f: 53 push %ebx > 10: 83 e4 f0 and $0xfffffff0,%esp > 13: 83 ec 10 sub $0x10,%esp > 16: 8b 45 0c mov 0xc(%ebp),%eax > 19: 8b 40 04 mov 0x4(%eax),%eax > 1c: 89 c6 mov %eax,%esi > 1e: f3 a6 repz cmpsb %es:(%edi),%ds:(%esi) > 20: 0f 97 c3 seta %bl > 23: 0f 92 c1 setb %cl > 26: 83 c0 03 add $0x3,%eax > 29: 31 d2 xor %edx,%edx > 2b: 38 cb cmp %cl,%bl > 2d: 0f 44 d0 cmove %eax,%edx More like i686 than x86 here. > 30: 89 14 24 mov %edx,(%esp) > 33: e8 fc ff ff ff call 34 <main+0x34> > 38: 8d 65 f4 lea -0xc(%ebp),%esp > 3b: 31 c0 xor %eax,%eax > 3d: 5b pop %ebx > 3e: 5e pop %esi > 3f: 5f pop %edi > 40: 5d pop %ebp > 41: c3 ret Well, we won't beat this here. -- David Kastrup ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-03-04 9:18 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-03-03 3:13 [PATCH v3] skip_prefix: rewrite so that prefix is scanned once Siddharth Goel 2014-03-03 19:05 ` Junio C Hamano 2014-03-03 22:43 ` Junio C Hamano 2014-03-03 23:22 ` David Kastrup 2014-03-03 23:35 ` Junio C Hamano 2014-03-03 23:37 ` Duy Nguyen 2014-03-04 0:09 ` David Kastrup 2014-03-04 1:58 ` Duy Nguyen 2014-03-04 9:18 ` David Kastrup
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).