]> git.ipfire.org Git - thirdparty/git.git/commitdiff
merge-ort: avoid recursing into directories when we don't need to
authorElijah Newren <newren@gmail.com>
Fri, 16 Jul 2021 05:22:36 +0000 (05:22 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 20 Jul 2021 21:47:40 +0000 (14:47 -0700)
This combines the work of the last several patches, and implements the
conditions when we don't need to recurse into directories.  It's perhaps
easiest to see the logic by separating the fact that a directory might
have both rename sources and rename destinations:

  * rename sources: only files present in the merge base can serve as
    rename sources, and only when one side deletes that file.  When the
    tree on one side matches the merge base, that means every file
    within the subtree matches the merge base.  This means that the
    skip-irrelevant-rename-detection optimization from before kicks in
    and we don't need any of these files as rename sources.

  * rename destinations: the tree that does not match the merge base
    might have newly added and hence unmatched destination files.
    This is what usually prevents us from doing trivial directory
    resolutions in the merge machinery.  However, the fact that we have
    deferred recursing into this directory until the end means we know
    whether there are any unmatched relevant potential rename sources
    elsewhere in this merge.  If there are no unmatched such relevant
    sources anywhere, then there is no need to look for unmatched
    potential rename destinations to match them with.

This informs our algorithm:
  * Search through relevant_sources; if we have entries, they better all
    be reflected in cached_pairs or cached_irrelevant, otherwise they
    represent an unmatched potential rename source (causing the
    optimization to be disallowed).
  * For any relevant_source represented in cached_pairs, we do need to
    to make sure to get the destination for each source, meaning we need
    to recurse into any ancestor directories of those destinations.
  * Once we've recursed into all the rename destinations for any
    relevant_sources in cached_pairs, we can then do the trivial
    directory resolution for the remaining directories.

For the testcases mentioned in commit 557ac0350d ("merge-ort: begin
performance work; instrument with trace2_region_* calls", 2020-10-28),
this change improves the performance as follows:

                            Before                  After
    no-renames:        5.235 s ±  0.042 s   205.1  ms ±  3.8  ms
    mega-renames:      9.419 s ±  0.107 s     1.564 s ±  0.010 s
    just-one-mega:   480.1  ms ±  3.9  ms   479.5  ms ±  3.9  ms

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
merge-ort.c

index 7e624fcd366b0c38ce345635d87cfa24bc9a7435..ad94b30a76d6405772cde55df71edcf40ecfc054 100644 (file)
@@ -1230,6 +1230,18 @@ static int collect_merge_info_callback(int n,
        return mask;
 }
 
+static void resolve_trivial_directory_merge(struct conflict_info *ci, int side)
+{
+       VERIFY_CI(ci);
+       assert((side == 1 && ci->match_mask == 5) ||
+              (side == 2 && ci->match_mask == 3));
+       oidcpy(&ci->merged.result.oid, &ci->stages[side].oid);
+       ci->merged.result.mode = ci->stages[side].mode;
+       ci->merged.is_null = is_null_oid(&ci->stages[side].oid);
+       ci->match_mask = 0;
+       ci->merged.clean = 1; /* (ci->filemask == 0); */
+}
+
 static int handle_deferred_entries(struct merge_options *opt,
                                   struct traverse_info *info)
 {
@@ -1239,9 +1251,72 @@ static int handle_deferred_entries(struct merge_options *opt,
        int side, ret = 0;
 
        for (side = MERGE_SIDE1; side <= MERGE_SIDE2; side++) {
-               renames->deferred[side].trivial_merges_okay = 0;
-               strintmap_for_each_entry(&renames->deferred[side].possible_trivial_merges,
-                                        &iter, entry) {
+               unsigned optimization_okay = 1;
+               struct strintmap copy;
+
+               /* Loop over the set of paths we need to know rename info for */
+               strset_for_each_entry(&renames->relevant_sources[side],
+                                     &iter, entry) {
+                       char *rename_target, *dir, *dir_marker;
+                       struct strmap_entry *e;
+
+                       /*
+                        * If we don't know delete/rename info for this path,
+                        * then we need to recurse into all trees to get all
+                        * adds to make sure we have it.
+                        */
+                       if (strset_contains(&renames->cached_irrelevant[side],
+                                           entry->key))
+                               continue;
+                       e = strmap_get_entry(&renames->cached_pairs[side],
+                                            entry->key);
+                       if (!e) {
+                               optimization_okay = 0;
+                               break;
+                       }
+
+                       /* If this is a delete, we have enough info already */
+                       rename_target = e->value;
+                       if (!rename_target)
+                               continue;
+
+                       /* If we already walked the rename target, we're good */
+                       if (strmap_contains(&opt->priv->paths, rename_target))
+                               continue;
+
+                       /*
+                        * Otherwise, we need to get a list of directories that
+                        * will need to be recursed into to get this
+                        * rename_target.
+                        */
+                       dir = xstrdup(rename_target);
+                       while ((dir_marker = strrchr(dir, '/'))) {
+                               *dir_marker = '\0';
+                               if (strset_contains(&renames->deferred[side].target_dirs,
+                                                   dir))
+                                       break;
+                               strset_add(&renames->deferred[side].target_dirs,
+                                          dir);
+                       }
+                       free(dir);
+               }
+               renames->deferred[side].trivial_merges_okay = optimization_okay;
+               /*
+                * We need to recurse into any directories in
+                * possible_trivial_merges[side] found in target_dirs[side].
+                * But when we recurse, we may need to queue up some of the
+                * subdirectories for possible_trivial_merges[side].  Since
+                * we can't safely iterate through a hashmap while also adding
+                * entries, move the entries into 'copy', iterate over 'copy',
+                * and then we'll also iterate anything added into
+                * possible_trivial_merges[side] once this loop is done.
+                */
+               copy = renames->deferred[side].possible_trivial_merges;
+               strintmap_init_with_options(&renames->deferred[side].possible_trivial_merges,
+                                           0,
+                                           NULL,
+                                           0);
+               strintmap_for_each_entry(&copy, &iter, entry) {
                        const char *path = entry->key;
                        unsigned dir_rename_mask = (intptr_t)entry->value;
                        struct conflict_info *ci;
@@ -1254,6 +1329,13 @@ static int handle_deferred_entries(struct merge_options *opt,
                        VERIFY_CI(ci);
                        dirmask = ci->dirmask;
 
+                       if (optimization_okay &&
+                           !strset_contains(&renames->deferred[side].target_dirs,
+                                            path)) {
+                               resolve_trivial_directory_merge(ci, side);
+                               continue;
+                       }
+
                        info->name = path;
                        info->namelen = strlen(path);
                        info->pathlen = info->namelen + 1;
@@ -1289,6 +1371,20 @@ static int handle_deferred_entries(struct merge_options *opt,
                        if (ret < 0)
                                return ret;
                }
+               strintmap_clear(&copy);
+               strintmap_for_each_entry(&renames->deferred[side].possible_trivial_merges,
+                                        &iter, entry) {
+                       const char *path = entry->key;
+                       struct conflict_info *ci;
+
+                       ci = strmap_get(&opt->priv->paths, path);
+                       VERIFY_CI(ci);
+
+                       assert(renames->deferred[side].trivial_merges_okay &&
+                              !strset_contains(&renames->deferred[side].target_dirs,
+                                               path));
+                       resolve_trivial_directory_merge(ci, side);
+               }
        }
        return ret;
 }