Code

Bypass expensive content comparsion during rename detection.
authorShawn O. Pearce <spearce@spearce.org>
Thu, 14 Dec 2006 10:07:46 +0000 (05:07 -0500)
committerJunio C Hamano <junkio@cox.net>
Thu, 14 Dec 2006 10:40:33 +0000 (02:40 -0800)
When comparing file contents during the second loop through a rename
detection attempt we can skip the expensive byte-by-byte comparsion
if both source and destination files have valid SHA1 values.  This
improves performance by avoiding either an expensive open/mmap to
read the working tree copy, or an expensive inflate of a blob object.

Unfortunately we still have to at least initialize the sizes of the
source and destination files even if the SHA1 values don't match.
Failing to initialize the sizes causes a number of test cases to fail
and start reporting different copy/rename behavior than was expected.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
diffcore-rename.c

index 57a74b6bb83e14af5f7336f397f79fbfcdc8b5f7..91fa2bea519a39ee65dcf018b7a72885b9eeec70 100644 (file)
@@ -109,6 +109,8 @@ static int is_exact_match(struct diff_filespec *src,
                return 0;
        if (src->size != dst->size)
                return 0;
+       if (src->sha1_valid && dst->sha1_valid)
+           return !hashcmp(src->sha1, dst->sha1);
        if (diff_populate_filespec(src, 0) || diff_populate_filespec(dst, 0))
                return 0;
        if (src->size == dst->size &&