paint_down_to_common: use prio_queue
commit73f43f220f0276012de50c84413fd61bf6aa307b
authorJeff King <peff@peff.net>
Mon, 14 Jul 2014 05:53:54 +0000 (14 01:53 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 15 Jul 2014 18:02:56 +0000 (15 11:02 -0700)
tree85fdc5b812e570aad41e942ff110b5f603b047a0
parente8f91e3df82a33b7e0b59c935cc4af892068baa2
paint_down_to_common: use prio_queue

When we are traversing to find merge bases, we keep our
usual commit_list of commits to process, sorted by their
commit timestamp. As we add each parent to the list, we have
to spend "O(width of history)" to do the insertion, where
the width of history is the number of simultaneous lines of
development.

If we instead use a heap-based priority queue, we can do
these insertions in "O(log width)" time. This provides minor
speedups to merge-base calculations (timings in linux.git,
warm cache, best-of-five):

  [before]
  $ git merge-base HEAD v2.6.12
  real    0m3.251s
  user    0m3.148s
  sys     0m0.104s

  [after]
  $ git merge-base HEAD v2.6.12
  real    0m3.234s
  user    0m3.108s
  sys     0m0.128s

That's only an 0.5% speedup, but it does help protect us
against pathological cases.

While we are munging the "interesting" function, we also
take the opportunity to give it a more descriptive name, and
convert the return value to an int (we returned the first
interesting commit, but nobody ever looked at it).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
commit.c