On Tue, Jan 21, 2014 at 4:32 AM, Jeff King <p...@peff.net> wrote:
> This patch therefore ties the extra tree examination to the
> revs->edge_hint flag; it is the presence of that flag that
> makes the tradeoff worthwhile.
>
> Here is output from the p0001-rev-list showing the
> improvement in performance:
>
> Test                                             HEAD^             HEAD
> -----------------------------------------------------------------------------------------
> 0001.1: rev-list --all                           0.69(0.65+0.02)   
> 0.69(0.66+0.02) +0.0%
> 0001.2: rev-list --all --objects                 3.22(3.19+0.03)   
> 3.23(3.20+0.03) +0.3%
> 0001.4: rev-list $commit --not --all             0.04(0.04+0.00)   
> 0.04(0.04+0.00) +0.0%
> 0001.5: rev-list --objects $commit --not --all   0.27(0.26+0.01)   
> 0.04(0.04+0.00) -85.2%

You must have so much fun (or headache, depending on your view) with
the variety of repos on github :)

> diff --git a/list-objects.c b/list-objects.c
> index 6cbedf0..43ce1d9 100644
> --- a/list-objects.c
> +++ b/list-objects.c
> @@ -162,15 +162,17 @@ void mark_edges_uninteresting(struct rev_info *revs, 
> show_edge_fn show_edge)
>                 }
>                 mark_edge_parents_uninteresting(commit, revs, show_edge);
>         }
> -       for (i = 0; i < revs->cmdline.nr; i++) {
> -               struct object *obj = revs->cmdline.rev[i].item;
> -               struct commit *commit = (struct commit *)obj;
> -               if (obj->type != OBJ_COMMIT || !(obj->flags & UNINTERESTING))
> -                       continue;
> -               mark_tree_uninteresting(commit->tree);
> -               if (revs->edge_hint && !(obj->flags & SHOWN)) {
> -                       obj->flags |= SHOWN;
> -                       show_edge(commit);
> +       if (revs->edge_hint) {
> +               for (i = 0; i < revs->cmdline.nr; i++) {
> +                       struct object *obj = revs->cmdline.rev[i].item;
> +                       struct commit *commit = (struct commit *)obj;
> +                       if (obj->type != OBJ_COMMIT || !(obj->flags & 
> UNINTERESTING))
> +                               continue;
> +                       mark_tree_uninteresting(commit->tree);
> +                       if (revs->edge_hint && !(obj->flags & SHOWN)) {

Not really important, but perhaps remove revs->edge_hint here because
it's already checked?

> +                               obj->flags |= SHOWN;
> +                               show_edge(commit);
> +                       }
>                 }
>         }
>  }
-- 
Duy
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to