aboutsummaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-05-29 14:29:58 -0700
committerJunio C Hamano <gitster@pobox.com>2013-05-29 14:29:59 -0700
commit4818cfcdcc8011e5eef353d0f64cd9d2374ea381 (patch)
tree61d2aabe7059e0f125077dc48fc344090f2b4d12 /object.c
parentfeffa044374c4bfc29b3f2b1bd26551acbffcf40 (diff)
parent9a414486d9f0325c3663210471e4673ed0cd862c (diff)
downloadgit-4818cfcdcc8011e5eef353d0f64cd9d2374ea381.tar.gz
git-4818cfcdcc8011e5eef353d0f64cd9d2374ea381.tar.xz
Merge branch 'jk/lookup-object-prefer-latest'
Optimizes object lookup when the object hashtable starts to become crowded. * jk/lookup-object-prefer-latest: lookup_object: prioritize recently found objects
Diffstat (limited to 'object.c')
-rw-r--r--object.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/object.c b/object.c
index 20703f52e..88d0bece8 100644
--- a/object.c
+++ b/object.c
@@ -71,13 +71,13 @@ static unsigned int hashtable_index(const unsigned char *sha1)
struct object *lookup_object(const unsigned char *sha1)
{
- unsigned int i;
+ unsigned int i, first;
struct object *obj;
if (!obj_hash)
return NULL;
- i = hashtable_index(sha1);
+ first = i = hashtable_index(sha1);
while ((obj = obj_hash[i]) != NULL) {
if (!hashcmp(sha1, obj->sha1))
break;
@@ -85,6 +85,16 @@ struct object *lookup_object(const unsigned char *sha1)
if (i == obj_hash_size)
i = 0;
}
+ if (obj && i != first) {
+ /*
+ * Move object to where we started to look for it so
+ * that we do not need to walk the hash table the next
+ * time we look for it.
+ */
+ struct object *tmp = obj_hash[i];
+ obj_hash[i] = obj_hash[first];
+ obj_hash[first] = tmp;
+ }
return obj;
}