git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] xdiff: optimise for no whitespace difference when ignoring whitespace.
@ 2010-07-05  6:06 Dylan Reid
  2010-07-05  8:34 ` Michael J Gruber
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Dylan Reid @ 2010-07-05  6:06 UTC (permalink / raw)
  To: git; +Cc: dgreid

Invert the order of the memcmp and flag check are done in xdl_recmatch,
as it makes the common case (there is no whitespace difference) faster.
It costs the case where lines are the same length and contain
whitespace differences, but the common case is more than 20% faster.

Signed-off-by: Dylan Reid <dgreid@gmail.com>
---
 xdiff/xutils.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/xdiff/xutils.c b/xdiff/xutils.c
index bc12f29..dc97a21 100644
--- a/xdiff/xutils.c
+++ b/xdiff/xutils.c
@@ -190,8 +190,10 @@ int xdl_recmatch(const char *l1, long s1, const char *l2, long s2, long flags)
 {
 	int i1, i2;
 
-	if (!(flags & XDF_WHITESPACE_FLAGS))
-		return s1 == s2 && !memcmp(l1, l2, s1);
+	if (s1 == s2 && !memcmp(l1, l2, s1))
+		return 1;
+	else if (!(flags & XDF_WHITESPACE_FLAGS))
+		return 0;
 
 	i1 = 0;
 	i2 = 0;
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-07-06  3:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-05  6:06 [PATCH] xdiff: optimise for no whitespace difference when ignoring whitespace Dylan Reid
2010-07-05  8:34 ` Michael J Gruber
2010-07-05 12:34   ` Dylan Reid
2010-07-05 13:00 ` Dylan Reid
2010-07-06  2:36   ` Junio C Hamano
2010-07-06  3:04     ` Dylan Reid
2010-07-06  3:11 ` Dylan Reid

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).