sha1-name: replace unsigned int with option struct
[git] / revision.c
1 #include "cache.h"
2 #include "object-store.h"
3 #include "tag.h"
4 #include "blob.h"
5 #include "tree.h"
6 #include "commit.h"
7 #include "diff.h"
8 #include "refs.h"
9 #include "revision.h"
10 #include "repository.h"
11 #include "graph.h"
12 #include "grep.h"
13 #include "reflog-walk.h"
14 #include "patch-ids.h"
15 #include "decorate.h"
16 #include "log-tree.h"
17 #include "string-list.h"
18 #include "line-log.h"
19 #include "mailmap.h"
20 #include "commit-slab.h"
21 #include "dir.h"
22 #include "cache-tree.h"
23 #include "bisect.h"
24 #include "packfile.h"
25 #include "worktree.h"
26 #include "argv-array.h"
27 #include "commit-reach.h"
28 #include "commit-graph.h"
29 #include "prio-queue.h"
30 #include "hashmap.h"
31 #include "utf8.h"
32 #include "bloom.h"
33 #include "json-writer.h"
34
35 volatile show_early_output_fn_t show_early_output;
36
37 static const char *term_bad;
38 static const char *term_good;
39
40 implement_shared_commit_slab(revision_sources, char *);
41
42 static inline int want_ancestry(const struct rev_info *revs);
43
44 void show_object_with_name(FILE *out, struct object *obj, const char *name)
45 {
46         const char *p;
47
48         fprintf(out, "%s ", oid_to_hex(&obj->oid));
49         for (p = name; *p && *p != '\n'; p++)
50                 fputc(*p, out);
51         fputc('\n', out);
52 }
53
54 static void mark_blob_uninteresting(struct blob *blob)
55 {
56         if (!blob)
57                 return;
58         if (blob->object.flags & UNINTERESTING)
59                 return;
60         blob->object.flags |= UNINTERESTING;
61 }
62
63 static void mark_tree_contents_uninteresting(struct repository *r,
64                                              struct tree *tree)
65 {
66         struct tree_desc desc;
67         struct name_entry entry;
68
69         if (parse_tree_gently(tree, 1) < 0)
70                 return;
71
72         init_tree_desc(&desc, tree->buffer, tree->size);
73         while (tree_entry(&desc, &entry)) {
74                 switch (object_type(entry.mode)) {
75                 case OBJ_TREE:
76                         mark_tree_uninteresting(r, lookup_tree(r, &entry.oid));
77                         break;
78                 case OBJ_BLOB:
79                         mark_blob_uninteresting(lookup_blob(r, &entry.oid));
80                         break;
81                 default:
82                         /* Subproject commit - not in this repository */
83                         break;
84                 }
85         }
86
87         /*
88          * We don't care about the tree any more
89          * after it has been marked uninteresting.
90          */
91         free_tree_buffer(tree);
92 }
93
94 void mark_tree_uninteresting(struct repository *r, struct tree *tree)
95 {
96         struct object *obj;
97
98         if (!tree)
99                 return;
100
101         obj = &tree->object;
102         if (obj->flags & UNINTERESTING)
103                 return;
104         obj->flags |= UNINTERESTING;
105         mark_tree_contents_uninteresting(r, tree);
106 }
107
108 struct path_and_oids_entry {
109         struct hashmap_entry ent;
110         char *path;
111         struct oidset trees;
112 };
113
114 static int path_and_oids_cmp(const void *hashmap_cmp_fn_data,
115                              const struct hashmap_entry *eptr,
116                              const struct hashmap_entry *entry_or_key,
117                              const void *keydata)
118 {
119         const struct path_and_oids_entry *e1, *e2;
120
121         e1 = container_of(eptr, const struct path_and_oids_entry, ent);
122         e2 = container_of(entry_or_key, const struct path_and_oids_entry, ent);
123
124         return strcmp(e1->path, e2->path);
125 }
126
127 static void paths_and_oids_init(struct hashmap *map)
128 {
129         hashmap_init(map, path_and_oids_cmp, NULL, 0);
130 }
131
132 static void paths_and_oids_clear(struct hashmap *map)
133 {
134         struct hashmap_iter iter;
135         struct path_and_oids_entry *entry;
136
137         hashmap_for_each_entry(map, &iter, entry, ent /* member name */) {
138                 oidset_clear(&entry->trees);
139                 free(entry->path);
140         }
141
142         hashmap_free_entries(map, struct path_and_oids_entry, ent);
143 }
144
145 static void paths_and_oids_insert(struct hashmap *map,
146                                   const char *path,
147                                   const struct object_id *oid)
148 {
149         int hash = strhash(path);
150         struct path_and_oids_entry key;
151         struct path_and_oids_entry *entry;
152
153         hashmap_entry_init(&key.ent, hash);
154
155         /* use a shallow copy for the lookup */
156         key.path = (char *)path;
157         oidset_init(&key.trees, 0);
158
159         entry = hashmap_get_entry(map, &key, ent, NULL);
160         if (!entry) {
161                 entry = xcalloc(1, sizeof(struct path_and_oids_entry));
162                 hashmap_entry_init(&entry->ent, hash);
163                 entry->path = xstrdup(key.path);
164                 oidset_init(&entry->trees, 16);
165                 hashmap_put(map, &entry->ent);
166         }
167
168         oidset_insert(&entry->trees, oid);
169 }
170
171 static void add_children_by_path(struct repository *r,
172                                  struct tree *tree,
173                                  struct hashmap *map)
174 {
175         struct tree_desc desc;
176         struct name_entry entry;
177
178         if (!tree)
179                 return;
180
181         if (parse_tree_gently(tree, 1) < 0)
182                 return;
183
184         init_tree_desc(&desc, tree->buffer, tree->size);
185         while (tree_entry(&desc, &entry)) {
186                 switch (object_type(entry.mode)) {
187                 case OBJ_TREE:
188                         paths_and_oids_insert(map, entry.path, &entry.oid);
189
190                         if (tree->object.flags & UNINTERESTING) {
191                                 struct tree *child = lookup_tree(r, &entry.oid);
192                                 if (child)
193                                         child->object.flags |= UNINTERESTING;
194                         }
195                         break;
196                 case OBJ_BLOB:
197                         if (tree->object.flags & UNINTERESTING) {
198                                 struct blob *child = lookup_blob(r, &entry.oid);
199                                 if (child)
200                                         child->object.flags |= UNINTERESTING;
201                         }
202                         break;
203                 default:
204                         /* Subproject commit - not in this repository */
205                         break;
206                 }
207         }
208
209         free_tree_buffer(tree);
210 }
211
212 void mark_trees_uninteresting_sparse(struct repository *r,
213                                      struct oidset *trees)
214 {
215         unsigned has_interesting = 0, has_uninteresting = 0;
216         struct hashmap map;
217         struct hashmap_iter map_iter;
218         struct path_and_oids_entry *entry;
219         struct object_id *oid;
220         struct oidset_iter iter;
221
222         oidset_iter_init(trees, &iter);
223         while ((!has_interesting || !has_uninteresting) &&
224                (oid = oidset_iter_next(&iter))) {
225                 struct tree *tree = lookup_tree(r, oid);
226
227                 if (!tree)
228                         continue;
229
230                 if (tree->object.flags & UNINTERESTING)
231                         has_uninteresting = 1;
232                 else
233                         has_interesting = 1;
234         }
235
236         /* Do not walk unless we have both types of trees. */
237         if (!has_uninteresting || !has_interesting)
238                 return;
239
240         paths_and_oids_init(&map);
241
242         oidset_iter_init(trees, &iter);
243         while ((oid = oidset_iter_next(&iter))) {
244                 struct tree *tree = lookup_tree(r, oid);
245                 add_children_by_path(r, tree, &map);
246         }
247
248         hashmap_for_each_entry(&map, &map_iter, entry, ent /* member name */)
249                 mark_trees_uninteresting_sparse(r, &entry->trees);
250
251         paths_and_oids_clear(&map);
252 }
253
254 struct commit_stack {
255         struct commit **items;
256         size_t nr, alloc;
257 };
258 #define COMMIT_STACK_INIT { NULL, 0, 0 }
259
260 static void commit_stack_push(struct commit_stack *stack, struct commit *commit)
261 {
262         ALLOC_GROW(stack->items, stack->nr + 1, stack->alloc);
263         stack->items[stack->nr++] = commit;
264 }
265
266 static struct commit *commit_stack_pop(struct commit_stack *stack)
267 {
268         return stack->nr ? stack->items[--stack->nr] : NULL;
269 }
270
271 static void commit_stack_clear(struct commit_stack *stack)
272 {
273         FREE_AND_NULL(stack->items);
274         stack->nr = stack->alloc = 0;
275 }
276
277 static void mark_one_parent_uninteresting(struct commit *commit,
278                                           struct commit_stack *pending)
279 {
280         struct commit_list *l;
281
282         if (commit->object.flags & UNINTERESTING)
283                 return;
284         commit->object.flags |= UNINTERESTING;
285
286         /*
287          * Normally we haven't parsed the parent
288          * yet, so we won't have a parent of a parent
289          * here. However, it may turn out that we've
290          * reached this commit some other way (where it
291          * wasn't uninteresting), in which case we need
292          * to mark its parents recursively too..
293          */
294         for (l = commit->parents; l; l = l->next)
295                 commit_stack_push(pending, l->item);
296 }
297
298 void mark_parents_uninteresting(struct commit *commit)
299 {
300         struct commit_stack pending = COMMIT_STACK_INIT;
301         struct commit_list *l;
302
303         for (l = commit->parents; l; l = l->next)
304                 mark_one_parent_uninteresting(l->item, &pending);
305
306         while (pending.nr > 0)
307                 mark_one_parent_uninteresting(commit_stack_pop(&pending),
308                                               &pending);
309
310         commit_stack_clear(&pending);
311 }
312
313 static void add_pending_object_with_path(struct rev_info *revs,
314                                          struct object *obj,
315                                          const char *name, unsigned mode,
316                                          const char *path)
317 {
318         struct interpret_branch_name_options options = { 0 };
319         if (!obj)
320                 return;
321         if (revs->no_walk && (obj->flags & UNINTERESTING))
322                 revs->no_walk = 0;
323         if (revs->reflog_info && obj->type == OBJ_COMMIT) {
324                 struct strbuf buf = STRBUF_INIT;
325                 int len = interpret_branch_name(name, 0, &buf, &options);
326
327                 if (0 < len && name[len] && buf.len)
328                         strbuf_addstr(&buf, name + len);
329                 add_reflog_for_walk(revs->reflog_info,
330                                     (struct commit *)obj,
331                                     buf.buf[0] ? buf.buf: name);
332                 strbuf_release(&buf);
333                 return; /* do not add the commit itself */
334         }
335         add_object_array_with_path(obj, name, &revs->pending, mode, path);
336 }
337
338 static void add_pending_object_with_mode(struct rev_info *revs,
339                                          struct object *obj,
340                                          const char *name, unsigned mode)
341 {
342         add_pending_object_with_path(revs, obj, name, mode, NULL);
343 }
344
345 void add_pending_object(struct rev_info *revs,
346                         struct object *obj, const char *name)
347 {
348         add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
349 }
350
351 void add_head_to_pending(struct rev_info *revs)
352 {
353         struct object_id oid;
354         struct object *obj;
355         if (get_oid("HEAD", &oid))
356                 return;
357         obj = parse_object(revs->repo, &oid);
358         if (!obj)
359                 return;
360         add_pending_object(revs, obj, "HEAD");
361 }
362
363 static struct object *get_reference(struct rev_info *revs, const char *name,
364                                     const struct object_id *oid,
365                                     unsigned int flags)
366 {
367         struct object *object;
368
369         /*
370          * If the repository has commit graphs, repo_parse_commit() avoids
371          * reading the object buffer, so use it whenever possible.
372          */
373         if (oid_object_info(revs->repo, oid, NULL) == OBJ_COMMIT) {
374                 struct commit *c = lookup_commit(revs->repo, oid);
375                 if (!repo_parse_commit(revs->repo, c))
376                         object = (struct object *) c;
377                 else
378                         object = NULL;
379         } else {
380                 object = parse_object(revs->repo, oid);
381         }
382
383         if (!object) {
384                 if (revs->ignore_missing)
385                         return object;
386                 if (revs->exclude_promisor_objects && is_promisor_object(oid))
387                         return NULL;
388                 die("bad object %s", name);
389         }
390         object->flags |= flags;
391         return object;
392 }
393
394 void add_pending_oid(struct rev_info *revs, const char *name,
395                       const struct object_id *oid, unsigned int flags)
396 {
397         struct object *object = get_reference(revs, name, oid, flags);
398         add_pending_object(revs, object, name);
399 }
400
401 static struct commit *handle_commit(struct rev_info *revs,
402                                     struct object_array_entry *entry)
403 {
404         struct object *object = entry->item;
405         const char *name = entry->name;
406         const char *path = entry->path;
407         unsigned int mode = entry->mode;
408         unsigned long flags = object->flags;
409
410         /*
411          * Tag object? Look what it points to..
412          */
413         while (object->type == OBJ_TAG) {
414                 struct tag *tag = (struct tag *) object;
415                 if (revs->tag_objects && !(flags & UNINTERESTING))
416                         add_pending_object(revs, object, tag->tag);
417                 object = parse_object(revs->repo, get_tagged_oid(tag));
418                 if (!object) {
419                         if (revs->ignore_missing_links || (flags & UNINTERESTING))
420                                 return NULL;
421                         if (revs->exclude_promisor_objects &&
422                             is_promisor_object(&tag->tagged->oid))
423                                 return NULL;
424                         die("bad object %s", oid_to_hex(&tag->tagged->oid));
425                 }
426                 object->flags |= flags;
427                 /*
428                  * We'll handle the tagged object by looping or dropping
429                  * through to the non-tag handlers below. Do not
430                  * propagate path data from the tag's pending entry.
431                  */
432                 path = NULL;
433                 mode = 0;
434         }
435
436         /*
437          * Commit object? Just return it, we'll do all the complex
438          * reachability crud.
439          */
440         if (object->type == OBJ_COMMIT) {
441                 struct commit *commit = (struct commit *)object;
442
443                 if (parse_commit(commit) < 0)
444                         die("unable to parse commit %s", name);
445                 if (flags & UNINTERESTING) {
446                         mark_parents_uninteresting(commit);
447
448                         if (!revs->topo_order || !generation_numbers_enabled(the_repository))
449                                 revs->limited = 1;
450                 }
451                 if (revs->sources) {
452                         char **slot = revision_sources_at(revs->sources, commit);
453
454                         if (!*slot)
455                                 *slot = xstrdup(name);
456                 }
457                 return commit;
458         }
459
460         /*
461          * Tree object? Either mark it uninteresting, or add it
462          * to the list of objects to look at later..
463          */
464         if (object->type == OBJ_TREE) {
465                 struct tree *tree = (struct tree *)object;
466                 if (!revs->tree_objects)
467                         return NULL;
468                 if (flags & UNINTERESTING) {
469                         mark_tree_contents_uninteresting(revs->repo, tree);
470                         return NULL;
471                 }
472                 add_pending_object_with_path(revs, object, name, mode, path);
473                 return NULL;
474         }
475
476         /*
477          * Blob object? You know the drill by now..
478          */
479         if (object->type == OBJ_BLOB) {
480                 if (!revs->blob_objects)
481                         return NULL;
482                 if (flags & UNINTERESTING)
483                         return NULL;
484                 add_pending_object_with_path(revs, object, name, mode, path);
485                 return NULL;
486         }
487         die("%s is unknown object", name);
488 }
489
490 static int everybody_uninteresting(struct commit_list *orig,
491                                    struct commit **interesting_cache)
492 {
493         struct commit_list *list = orig;
494
495         if (*interesting_cache) {
496                 struct commit *commit = *interesting_cache;
497                 if (!(commit->object.flags & UNINTERESTING))
498                         return 0;
499         }
500
501         while (list) {
502                 struct commit *commit = list->item;
503                 list = list->next;
504                 if (commit->object.flags & UNINTERESTING)
505                         continue;
506
507                 *interesting_cache = commit;
508                 return 0;
509         }
510         return 1;
511 }
512
513 /*
514  * A definition of "relevant" commit that we can use to simplify limited graphs
515  * by eliminating side branches.
516  *
517  * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
518  * in our list), or that is a specified BOTTOM commit. Then after computing
519  * a limited list, during processing we can generally ignore boundary merges
520  * coming from outside the graph, (ie from irrelevant parents), and treat
521  * those merges as if they were single-parent. TREESAME is defined to consider
522  * only relevant parents, if any. If we are TREESAME to our on-graph parents,
523  * we don't care if we were !TREESAME to non-graph parents.
524  *
525  * Treating bottom commits as relevant ensures that a limited graph's
526  * connection to the actual bottom commit is not viewed as a side branch, but
527  * treated as part of the graph. For example:
528  *
529  *   ....Z...A---X---o---o---B
530  *        .     /
531  *         W---Y
532  *
533  * When computing "A..B", the A-X connection is at least as important as
534  * Y-X, despite A being flagged UNINTERESTING.
535  *
536  * And when computing --ancestry-path "A..B", the A-X connection is more
537  * important than Y-X, despite both A and Y being flagged UNINTERESTING.
538  */
539 static inline int relevant_commit(struct commit *commit)
540 {
541         return (commit->object.flags & (UNINTERESTING | BOTTOM)) != UNINTERESTING;
542 }
543
544 /*
545  * Return a single relevant commit from a parent list. If we are a TREESAME
546  * commit, and this selects one of our parents, then we can safely simplify to
547  * that parent.
548  */
549 static struct commit *one_relevant_parent(const struct rev_info *revs,
550                                           struct commit_list *orig)
551 {
552         struct commit_list *list = orig;
553         struct commit *relevant = NULL;
554
555         if (!orig)
556                 return NULL;
557
558         /*
559          * For 1-parent commits, or if first-parent-only, then return that
560          * first parent (even if not "relevant" by the above definition).
561          * TREESAME will have been set purely on that parent.
562          */
563         if (revs->first_parent_only || !orig->next)
564                 return orig->item;
565
566         /*
567          * For multi-parent commits, identify a sole relevant parent, if any.
568          * If we have only one relevant parent, then TREESAME will be set purely
569          * with regard to that parent, and we can simplify accordingly.
570          *
571          * If we have more than one relevant parent, or no relevant parents
572          * (and multiple irrelevant ones), then we can't select a parent here
573          * and return NULL.
574          */
575         while (list) {
576                 struct commit *commit = list->item;
577                 list = list->next;
578                 if (relevant_commit(commit)) {
579                         if (relevant)
580                                 return NULL;
581                         relevant = commit;
582                 }
583         }
584         return relevant;
585 }
586
587 /*
588  * The goal is to get REV_TREE_NEW as the result only if the
589  * diff consists of all '+' (and no other changes), REV_TREE_OLD
590  * if the whole diff is removal of old data, and otherwise
591  * REV_TREE_DIFFERENT (of course if the trees are the same we
592  * want REV_TREE_SAME).
593  *
594  * The only time we care about the distinction is when
595  * remove_empty_trees is in effect, in which case we care only about
596  * whether the whole change is REV_TREE_NEW, or if there's another type
597  * of change. Which means we can stop the diff early in either of these
598  * cases:
599  *
600  *   1. We're not using remove_empty_trees at all.
601  *
602  *   2. We saw anything except REV_TREE_NEW.
603  */
604 static int tree_difference = REV_TREE_SAME;
605
606 static void file_add_remove(struct diff_options *options,
607                     int addremove, unsigned mode,
608                     const struct object_id *oid,
609                     int oid_valid,
610                     const char *fullpath, unsigned dirty_submodule)
611 {
612         int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
613         struct rev_info *revs = options->change_fn_data;
614
615         tree_difference |= diff;
616         if (!revs->remove_empty_trees || tree_difference != REV_TREE_NEW)
617                 options->flags.has_changes = 1;
618 }
619
620 static void file_change(struct diff_options *options,
621                  unsigned old_mode, unsigned new_mode,
622                  const struct object_id *old_oid,
623                  const struct object_id *new_oid,
624                  int old_oid_valid, int new_oid_valid,
625                  const char *fullpath,
626                  unsigned old_dirty_submodule, unsigned new_dirty_submodule)
627 {
628         tree_difference = REV_TREE_DIFFERENT;
629         options->flags.has_changes = 1;
630 }
631
632 static int bloom_filter_atexit_registered;
633 static unsigned int count_bloom_filter_maybe;
634 static unsigned int count_bloom_filter_definitely_not;
635 static unsigned int count_bloom_filter_false_positive;
636 static unsigned int count_bloom_filter_not_present;
637 static unsigned int count_bloom_filter_length_zero;
638
639 static void trace2_bloom_filter_statistics_atexit(void)
640 {
641         struct json_writer jw = JSON_WRITER_INIT;
642
643         jw_object_begin(&jw, 0);
644         jw_object_intmax(&jw, "filter_not_present", count_bloom_filter_not_present);
645         jw_object_intmax(&jw, "zero_length_filter", count_bloom_filter_length_zero);
646         jw_object_intmax(&jw, "maybe", count_bloom_filter_maybe);
647         jw_object_intmax(&jw, "definitely_not", count_bloom_filter_definitely_not);
648         jw_object_intmax(&jw, "false_positive", count_bloom_filter_false_positive);
649         jw_end(&jw);
650
651         trace2_data_json("bloom", the_repository, "statistics", &jw);
652
653         jw_release(&jw);
654 }
655
656 static int forbid_bloom_filters(struct pathspec *spec)
657 {
658         if (spec->has_wildcard)
659                 return 1;
660         if (spec->nr > 1)
661                 return 1;
662         if (spec->magic & ~PATHSPEC_LITERAL)
663                 return 1;
664         if (spec->nr && (spec->items[0].magic & ~PATHSPEC_LITERAL))
665                 return 1;
666
667         return 0;
668 }
669
670 static void prepare_to_use_bloom_filter(struct rev_info *revs)
671 {
672         struct pathspec_item *pi;
673         char *path_alloc = NULL;
674         const char *path;
675         int last_index;
676         int len;
677
678         if (!revs->commits)
679                 return;
680
681         if (forbid_bloom_filters(&revs->prune_data))
682                 return;
683
684         repo_parse_commit(revs->repo, revs->commits->item);
685
686         if (!revs->repo->objects->commit_graph)
687                 return;
688
689         revs->bloom_filter_settings = revs->repo->objects->commit_graph->bloom_filter_settings;
690         if (!revs->bloom_filter_settings)
691                 return;
692
693         if (!revs->pruning.pathspec.nr)
694                 return;
695
696         pi = &revs->pruning.pathspec.items[0];
697         last_index = pi->len - 1;
698
699         /* remove single trailing slash from path, if needed */
700         if (pi->match[last_index] == '/') {
701             path_alloc = xstrdup(pi->match);
702             path_alloc[last_index] = '\0';
703             path = path_alloc;
704         } else
705             path = pi->match;
706
707         len = strlen(path);
708
709         revs->bloom_key = xmalloc(sizeof(struct bloom_key));
710         fill_bloom_key(path, len, revs->bloom_key, revs->bloom_filter_settings);
711
712         if (trace2_is_enabled() && !bloom_filter_atexit_registered) {
713                 atexit(trace2_bloom_filter_statistics_atexit);
714                 bloom_filter_atexit_registered = 1;
715         }
716
717         free(path_alloc);
718 }
719
720 static int check_maybe_different_in_bloom_filter(struct rev_info *revs,
721                                                  struct commit *commit)
722 {
723         struct bloom_filter *filter;
724         int result;
725
726         if (!revs->repo->objects->commit_graph)
727                 return -1;
728
729         if (commit_graph_generation(commit) == GENERATION_NUMBER_INFINITY)
730                 return -1;
731
732         filter = get_bloom_filter(revs->repo, commit, 0);
733
734         if (!filter) {
735                 count_bloom_filter_not_present++;
736                 return -1;
737         }
738
739         if (!filter->len) {
740                 count_bloom_filter_length_zero++;
741                 return -1;
742         }
743
744         result = bloom_filter_contains(filter,
745                                        revs->bloom_key,
746                                        revs->bloom_filter_settings);
747
748         if (result)
749                 count_bloom_filter_maybe++;
750         else
751                 count_bloom_filter_definitely_not++;
752
753         return result;
754 }
755
756 static int rev_compare_tree(struct rev_info *revs,
757                             struct commit *parent, struct commit *commit, int nth_parent)
758 {
759         struct tree *t1 = get_commit_tree(parent);
760         struct tree *t2 = get_commit_tree(commit);
761         int bloom_ret = 1;
762
763         if (!t1)
764                 return REV_TREE_NEW;
765         if (!t2)
766                 return REV_TREE_OLD;
767
768         if (revs->simplify_by_decoration) {
769                 /*
770                  * If we are simplifying by decoration, then the commit
771                  * is worth showing if it has a tag pointing at it.
772                  */
773                 if (get_name_decoration(&commit->object))
774                         return REV_TREE_DIFFERENT;
775                 /*
776                  * A commit that is not pointed by a tag is uninteresting
777                  * if we are not limited by path.  This means that you will
778                  * see the usual "commits that touch the paths" plus any
779                  * tagged commit by specifying both --simplify-by-decoration
780                  * and pathspec.
781                  */
782                 if (!revs->prune_data.nr)
783                         return REV_TREE_SAME;
784         }
785
786         if (revs->bloom_key && !nth_parent) {
787                 bloom_ret = check_maybe_different_in_bloom_filter(revs, commit);
788
789                 if (bloom_ret == 0)
790                         return REV_TREE_SAME;
791         }
792
793         tree_difference = REV_TREE_SAME;
794         revs->pruning.flags.has_changes = 0;
795         if (diff_tree_oid(&t1->object.oid, &t2->object.oid, "",
796                            &revs->pruning) < 0)
797                 return REV_TREE_DIFFERENT;
798
799         if (!nth_parent)
800                 if (bloom_ret == 1 && tree_difference == REV_TREE_SAME)
801                         count_bloom_filter_false_positive++;
802
803         return tree_difference;
804 }
805
806 static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
807 {
808         int retval;
809         struct tree *t1 = get_commit_tree(commit);
810
811         if (!t1)
812                 return 0;
813
814         tree_difference = REV_TREE_SAME;
815         revs->pruning.flags.has_changes = 0;
816         retval = diff_tree_oid(NULL, &t1->object.oid, "", &revs->pruning);
817
818         return retval >= 0 && (tree_difference == REV_TREE_SAME);
819 }
820
821 struct treesame_state {
822         unsigned int nparents;
823         unsigned char treesame[FLEX_ARRAY];
824 };
825
826 static struct treesame_state *initialise_treesame(struct rev_info *revs, struct commit *commit)
827 {
828         unsigned n = commit_list_count(commit->parents);
829         struct treesame_state *st = xcalloc(1, st_add(sizeof(*st), n));
830         st->nparents = n;
831         add_decoration(&revs->treesame, &commit->object, st);
832         return st;
833 }
834
835 /*
836  * Must be called immediately after removing the nth_parent from a commit's
837  * parent list, if we are maintaining the per-parent treesame[] decoration.
838  * This does not recalculate the master TREESAME flag - update_treesame()
839  * should be called to update it after a sequence of treesame[] modifications
840  * that may have affected it.
841  */
842 static int compact_treesame(struct rev_info *revs, struct commit *commit, unsigned nth_parent)
843 {
844         struct treesame_state *st;
845         int old_same;
846
847         if (!commit->parents) {
848                 /*
849                  * Have just removed the only parent from a non-merge.
850                  * Different handling, as we lack decoration.
851                  */
852                 if (nth_parent != 0)
853                         die("compact_treesame %u", nth_parent);
854                 old_same = !!(commit->object.flags & TREESAME);
855                 if (rev_same_tree_as_empty(revs, commit))
856                         commit->object.flags |= TREESAME;
857                 else
858                         commit->object.flags &= ~TREESAME;
859                 return old_same;
860         }
861
862         st = lookup_decoration(&revs->treesame, &commit->object);
863         if (!st || nth_parent >= st->nparents)
864                 die("compact_treesame %u", nth_parent);
865
866         old_same = st->treesame[nth_parent];
867         memmove(st->treesame + nth_parent,
868                 st->treesame + nth_parent + 1,
869                 st->nparents - nth_parent - 1);
870
871         /*
872          * If we've just become a non-merge commit, update TREESAME
873          * immediately, and remove the no-longer-needed decoration.
874          * If still a merge, defer update until update_treesame().
875          */
876         if (--st->nparents == 1) {
877                 if (commit->parents->next)
878                         die("compact_treesame parents mismatch");
879                 if (st->treesame[0] && revs->dense)
880                         commit->object.flags |= TREESAME;
881                 else
882                         commit->object.flags &= ~TREESAME;
883                 free(add_decoration(&revs->treesame, &commit->object, NULL));
884         }
885
886         return old_same;
887 }
888
889 static unsigned update_treesame(struct rev_info *revs, struct commit *commit)
890 {
891         if (commit->parents && commit->parents->next) {
892                 unsigned n;
893                 struct treesame_state *st;
894                 struct commit_list *p;
895                 unsigned relevant_parents;
896                 unsigned relevant_change, irrelevant_change;
897
898                 st = lookup_decoration(&revs->treesame, &commit->object);
899                 if (!st)
900                         die("update_treesame %s", oid_to_hex(&commit->object.oid));
901                 relevant_parents = 0;
902                 relevant_change = irrelevant_change = 0;
903                 for (p = commit->parents, n = 0; p; n++, p = p->next) {
904                         if (relevant_commit(p->item)) {
905                                 relevant_change |= !st->treesame[n];
906                                 relevant_parents++;
907                         } else
908                                 irrelevant_change |= !st->treesame[n];
909                 }
910                 if (relevant_parents ? relevant_change : irrelevant_change)
911                         commit->object.flags &= ~TREESAME;
912                 else
913                         commit->object.flags |= TREESAME;
914         }
915
916         return commit->object.flags & TREESAME;
917 }
918
919 static inline int limiting_can_increase_treesame(const struct rev_info *revs)
920 {
921         /*
922          * TREESAME is irrelevant unless prune && dense;
923          * if simplify_history is set, we can't have a mixture of TREESAME and
924          *    !TREESAME INTERESTING parents (and we don't have treesame[]
925          *    decoration anyway);
926          * if first_parent_only is set, then the TREESAME flag is locked
927          *    against the first parent (and again we lack treesame[] decoration).
928          */
929         return revs->prune && revs->dense &&
930                !revs->simplify_history &&
931                !revs->first_parent_only;
932 }
933
934 static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
935 {
936         struct commit_list **pp, *parent;
937         struct treesame_state *ts = NULL;
938         int relevant_change = 0, irrelevant_change = 0;
939         int relevant_parents, nth_parent;
940
941         /*
942          * If we don't do pruning, everything is interesting
943          */
944         if (!revs->prune)
945                 return;
946
947         if (!get_commit_tree(commit))
948                 return;
949
950         if (!commit->parents) {
951                 if (rev_same_tree_as_empty(revs, commit))
952                         commit->object.flags |= TREESAME;
953                 return;
954         }
955
956         /*
957          * Normal non-merge commit? If we don't want to make the
958          * history dense, we consider it always to be a change..
959          */
960         if (!revs->dense && !commit->parents->next)
961                 return;
962
963         for (pp = &commit->parents, nth_parent = 0, relevant_parents = 0;
964              (parent = *pp) != NULL;
965              pp = &parent->next, nth_parent++) {
966                 struct commit *p = parent->item;
967                 if (relevant_commit(p))
968                         relevant_parents++;
969
970                 if (nth_parent == 1) {
971                         /*
972                          * This our second loop iteration - so we now know
973                          * we're dealing with a merge.
974                          *
975                          * Do not compare with later parents when we care only about
976                          * the first parent chain, in order to avoid derailing the
977                          * traversal to follow a side branch that brought everything
978                          * in the path we are limited to by the pathspec.
979                          */
980                         if (revs->first_parent_only)
981                                 break;
982                         /*
983                          * If this will remain a potentially-simplifiable
984                          * merge, remember per-parent treesame if needed.
985                          * Initialise the array with the comparison from our
986                          * first iteration.
987                          */
988                         if (revs->treesame.name &&
989                             !revs->simplify_history &&
990                             !(commit->object.flags & UNINTERESTING)) {
991                                 ts = initialise_treesame(revs, commit);
992                                 if (!(irrelevant_change || relevant_change))
993                                         ts->treesame[0] = 1;
994                         }
995                 }
996                 if (parse_commit(p) < 0)
997                         die("cannot simplify commit %s (because of %s)",
998                             oid_to_hex(&commit->object.oid),
999                             oid_to_hex(&p->object.oid));
1000                 switch (rev_compare_tree(revs, p, commit, nth_parent)) {
1001                 case REV_TREE_SAME:
1002                         if (!revs->simplify_history || !relevant_commit(p)) {
1003                                 /* Even if a merge with an uninteresting
1004                                  * side branch brought the entire change
1005                                  * we are interested in, we do not want
1006                                  * to lose the other branches of this
1007                                  * merge, so we just keep going.
1008                                  */
1009                                 if (ts)
1010                                         ts->treesame[nth_parent] = 1;
1011                                 continue;
1012                         }
1013                         parent->next = NULL;
1014                         commit->parents = parent;
1015
1016                         /*
1017                          * A merge commit is a "diversion" if it is not
1018                          * TREESAME to its first parent but is TREESAME
1019                          * to a later parent. In the simplified history,
1020                          * we "divert" the history walk to the later
1021                          * parent. These commits are shown when "show_pulls"
1022                          * is enabled, so do not mark the object as
1023                          * TREESAME here.
1024                          */
1025                         if (!revs->show_pulls || !nth_parent)
1026                                 commit->object.flags |= TREESAME;
1027
1028                         return;
1029
1030                 case REV_TREE_NEW:
1031                         if (revs->remove_empty_trees &&
1032                             rev_same_tree_as_empty(revs, p)) {
1033                                 /* We are adding all the specified
1034                                  * paths from this parent, so the
1035                                  * history beyond this parent is not
1036                                  * interesting.  Remove its parents
1037                                  * (they are grandparents for us).
1038                                  * IOW, we pretend this parent is a
1039                                  * "root" commit.
1040                                  */
1041                                 if (parse_commit(p) < 0)
1042                                         die("cannot simplify commit %s (invalid %s)",
1043                                             oid_to_hex(&commit->object.oid),
1044                                             oid_to_hex(&p->object.oid));
1045                                 p->parents = NULL;
1046                         }
1047                 /* fallthrough */
1048                 case REV_TREE_OLD:
1049                 case REV_TREE_DIFFERENT:
1050                         if (relevant_commit(p))
1051                                 relevant_change = 1;
1052                         else
1053                                 irrelevant_change = 1;
1054
1055                         if (!nth_parent)
1056                                 commit->object.flags |= PULL_MERGE;
1057
1058                         continue;
1059                 }
1060                 die("bad tree compare for commit %s", oid_to_hex(&commit->object.oid));
1061         }
1062
1063         /*
1064          * TREESAME is straightforward for single-parent commits. For merge
1065          * commits, it is most useful to define it so that "irrelevant"
1066          * parents cannot make us !TREESAME - if we have any relevant
1067          * parents, then we only consider TREESAMEness with respect to them,
1068          * allowing irrelevant merges from uninteresting branches to be
1069          * simplified away. Only if we have only irrelevant parents do we
1070          * base TREESAME on them. Note that this logic is replicated in
1071          * update_treesame, which should be kept in sync.
1072          */
1073         if (relevant_parents ? !relevant_change : !irrelevant_change)
1074                 commit->object.flags |= TREESAME;
1075 }
1076
1077 static int process_parents(struct rev_info *revs, struct commit *commit,
1078                            struct commit_list **list, struct prio_queue *queue)
1079 {
1080         struct commit_list *parent = commit->parents;
1081         unsigned left_flag;
1082
1083         if (commit->object.flags & ADDED)
1084                 return 0;
1085         commit->object.flags |= ADDED;
1086
1087         if (revs->include_check &&
1088             !revs->include_check(commit, revs->include_check_data))
1089                 return 0;
1090
1091         /*
1092          * If the commit is uninteresting, don't try to
1093          * prune parents - we want the maximal uninteresting
1094          * set.
1095          *
1096          * Normally we haven't parsed the parent
1097          * yet, so we won't have a parent of a parent
1098          * here. However, it may turn out that we've
1099          * reached this commit some other way (where it
1100          * wasn't uninteresting), in which case we need
1101          * to mark its parents recursively too..
1102          */
1103         if (commit->object.flags & UNINTERESTING) {
1104                 while (parent) {
1105                         struct commit *p = parent->item;
1106                         parent = parent->next;
1107                         if (p)
1108                                 p->object.flags |= UNINTERESTING;
1109                         if (parse_commit_gently(p, 1) < 0)
1110                                 continue;
1111                         if (p->parents)
1112                                 mark_parents_uninteresting(p);
1113                         if (p->object.flags & SEEN)
1114                                 continue;
1115                         p->object.flags |= SEEN;
1116                         if (list)
1117                                 commit_list_insert_by_date(p, list);
1118                         if (queue)
1119                                 prio_queue_put(queue, p);
1120                 }
1121                 return 0;
1122         }
1123
1124         /*
1125          * Ok, the commit wasn't uninteresting. Try to
1126          * simplify the commit history and find the parent
1127          * that has no differences in the path set if one exists.
1128          */
1129         try_to_simplify_commit(revs, commit);
1130
1131         if (revs->no_walk)
1132                 return 0;
1133
1134         left_flag = (commit->object.flags & SYMMETRIC_LEFT);
1135
1136         for (parent = commit->parents; parent; parent = parent->next) {
1137                 struct commit *p = parent->item;
1138                 int gently = revs->ignore_missing_links ||
1139                              revs->exclude_promisor_objects;
1140                 if (parse_commit_gently(p, gently) < 0) {
1141                         if (revs->exclude_promisor_objects &&
1142                             is_promisor_object(&p->object.oid)) {
1143                                 if (revs->first_parent_only)
1144                                         break;
1145                                 continue;
1146                         }
1147                         return -1;
1148                 }
1149                 if (revs->sources) {
1150                         char **slot = revision_sources_at(revs->sources, p);
1151
1152                         if (!*slot)
1153                                 *slot = *revision_sources_at(revs->sources, commit);
1154                 }
1155                 p->object.flags |= left_flag;
1156                 if (!(p->object.flags & SEEN)) {
1157                         p->object.flags |= SEEN;
1158                         if (list)
1159                                 commit_list_insert_by_date(p, list);
1160                         if (queue)
1161                                 prio_queue_put(queue, p);
1162                 }
1163                 if (revs->first_parent_only)
1164                         break;
1165         }
1166         return 0;
1167 }
1168
1169 static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
1170 {
1171         struct commit_list *p;
1172         int left_count = 0, right_count = 0;
1173         int left_first;
1174         struct patch_ids ids;
1175         unsigned cherry_flag;
1176
1177         /* First count the commits on the left and on the right */
1178         for (p = list; p; p = p->next) {
1179                 struct commit *commit = p->item;
1180                 unsigned flags = commit->object.flags;
1181                 if (flags & BOUNDARY)
1182                         ;
1183                 else if (flags & SYMMETRIC_LEFT)
1184                         left_count++;
1185                 else
1186                         right_count++;
1187         }
1188
1189         if (!left_count || !right_count)
1190                 return;
1191
1192         left_first = left_count < right_count;
1193         init_patch_ids(revs->repo, &ids);
1194         ids.diffopts.pathspec = revs->diffopt.pathspec;
1195
1196         /* Compute patch-ids for one side */
1197         for (p = list; p; p = p->next) {
1198                 struct commit *commit = p->item;
1199                 unsigned flags = commit->object.flags;
1200
1201                 if (flags & BOUNDARY)
1202                         continue;
1203                 /*
1204                  * If we have fewer left, left_first is set and we omit
1205                  * commits on the right branch in this loop.  If we have
1206                  * fewer right, we skip the left ones.
1207                  */
1208                 if (left_first != !!(flags & SYMMETRIC_LEFT))
1209                         continue;
1210                 add_commit_patch_id(commit, &ids);
1211         }
1212
1213         /* either cherry_mark or cherry_pick are true */
1214         cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
1215
1216         /* Check the other side */
1217         for (p = list; p; p = p->next) {
1218                 struct commit *commit = p->item;
1219                 struct patch_id *id;
1220                 unsigned flags = commit->object.flags;
1221
1222                 if (flags & BOUNDARY)
1223                         continue;
1224                 /*
1225                  * If we have fewer left, left_first is set and we omit
1226                  * commits on the left branch in this loop.
1227                  */
1228                 if (left_first == !!(flags & SYMMETRIC_LEFT))
1229                         continue;
1230
1231                 /*
1232                  * Have we seen the same patch id?
1233                  */
1234                 id = has_commit_patch_id(commit, &ids);
1235                 if (!id)
1236                         continue;
1237
1238                 commit->object.flags |= cherry_flag;
1239                 id->commit->object.flags |= cherry_flag;
1240         }
1241
1242         free_patch_ids(&ids);
1243 }
1244
1245 /* How many extra uninteresting commits we want to see.. */
1246 #define SLOP 5
1247
1248 static int still_interesting(struct commit_list *src, timestamp_t date, int slop,
1249                              struct commit **interesting_cache)
1250 {
1251         /*
1252          * No source list at all? We're definitely done..
1253          */
1254         if (!src)
1255                 return 0;
1256
1257         /*
1258          * Does the destination list contain entries with a date
1259          * before the source list? Definitely _not_ done.
1260          */
1261         if (date <= src->item->date)
1262                 return SLOP;
1263
1264         /*
1265          * Does the source list still have interesting commits in
1266          * it? Definitely not done..
1267          */
1268         if (!everybody_uninteresting(src, interesting_cache))
1269                 return SLOP;
1270
1271         /* Ok, we're closing in.. */
1272         return slop-1;
1273 }
1274
1275 /*
1276  * "rev-list --ancestry-path A..B" computes commits that are ancestors
1277  * of B but not ancestors of A but further limits the result to those
1278  * that are descendants of A.  This takes the list of bottom commits and
1279  * the result of "A..B" without --ancestry-path, and limits the latter
1280  * further to the ones that can reach one of the commits in "bottom".
1281  */
1282 static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
1283 {
1284         struct commit_list *p;
1285         struct commit_list *rlist = NULL;
1286         int made_progress;
1287
1288         /*
1289          * Reverse the list so that it will be likely that we would
1290          * process parents before children.
1291          */
1292         for (p = list; p; p = p->next)
1293                 commit_list_insert(p->item, &rlist);
1294
1295         for (p = bottom; p; p = p->next)
1296                 p->item->object.flags |= TMP_MARK;
1297
1298         /*
1299          * Mark the ones that can reach bottom commits in "list",
1300          * in a bottom-up fashion.
1301          */
1302         do {
1303                 made_progress = 0;
1304                 for (p = rlist; p; p = p->next) {
1305                         struct commit *c = p->item;
1306                         struct commit_list *parents;
1307                         if (c->object.flags & (TMP_MARK | UNINTERESTING))
1308                                 continue;
1309                         for (parents = c->parents;
1310                              parents;
1311                              parents = parents->next) {
1312                                 if (!(parents->item->object.flags & TMP_MARK))
1313                                         continue;
1314                                 c->object.flags |= TMP_MARK;
1315                                 made_progress = 1;
1316                                 break;
1317                         }
1318                 }
1319         } while (made_progress);
1320
1321         /*
1322          * NEEDSWORK: decide if we want to remove parents that are
1323          * not marked with TMP_MARK from commit->parents for commits
1324          * in the resulting list.  We may not want to do that, though.
1325          */
1326
1327         /*
1328          * The ones that are not marked with TMP_MARK are uninteresting
1329          */
1330         for (p = list; p; p = p->next) {
1331                 struct commit *c = p->item;
1332                 if (c->object.flags & TMP_MARK)
1333                         continue;
1334                 c->object.flags |= UNINTERESTING;
1335         }
1336
1337         /* We are done with the TMP_MARK */
1338         for (p = list; p; p = p->next)
1339                 p->item->object.flags &= ~TMP_MARK;
1340         for (p = bottom; p; p = p->next)
1341                 p->item->object.flags &= ~TMP_MARK;
1342         free_commit_list(rlist);
1343 }
1344
1345 /*
1346  * Before walking the history, keep the set of "negative" refs the
1347  * caller has asked to exclude.
1348  *
1349  * This is used to compute "rev-list --ancestry-path A..B", as we need
1350  * to filter the result of "A..B" further to the ones that can actually
1351  * reach A.
1352  */
1353 static struct commit_list *collect_bottom_commits(struct commit_list *list)
1354 {
1355         struct commit_list *elem, *bottom = NULL;
1356         for (elem = list; elem; elem = elem->next)
1357                 if (elem->item->object.flags & BOTTOM)
1358                         commit_list_insert(elem->item, &bottom);
1359         return bottom;
1360 }
1361
1362 /* Assumes either left_only or right_only is set */
1363 static void limit_left_right(struct commit_list *list, struct rev_info *revs)
1364 {
1365         struct commit_list *p;
1366
1367         for (p = list; p; p = p->next) {
1368                 struct commit *commit = p->item;
1369
1370                 if (revs->right_only) {
1371                         if (commit->object.flags & SYMMETRIC_LEFT)
1372                                 commit->object.flags |= SHOWN;
1373                 } else  /* revs->left_only is set */
1374                         if (!(commit->object.flags & SYMMETRIC_LEFT))
1375                                 commit->object.flags |= SHOWN;
1376         }
1377 }
1378
1379 static int limit_list(struct rev_info *revs)
1380 {
1381         int slop = SLOP;
1382         timestamp_t date = TIME_MAX;
1383         struct commit_list *list = revs->commits;
1384         struct commit_list *newlist = NULL;
1385         struct commit_list **p = &newlist;
1386         struct commit_list *bottom = NULL;
1387         struct commit *interesting_cache = NULL;
1388
1389         if (revs->ancestry_path) {
1390                 bottom = collect_bottom_commits(list);
1391                 if (!bottom)
1392                         die("--ancestry-path given but there are no bottom commits");
1393         }
1394
1395         while (list) {
1396                 struct commit *commit = pop_commit(&list);
1397                 struct object *obj = &commit->object;
1398                 show_early_output_fn_t show;
1399
1400                 if (commit == interesting_cache)
1401                         interesting_cache = NULL;
1402
1403                 if (revs->max_age != -1 && (commit->date < revs->max_age))
1404                         obj->flags |= UNINTERESTING;
1405                 if (process_parents(revs, commit, &list, NULL) < 0)
1406                         return -1;
1407                 if (obj->flags & UNINTERESTING) {
1408                         mark_parents_uninteresting(commit);
1409                         slop = still_interesting(list, date, slop, &interesting_cache);
1410                         if (slop)
1411                                 continue;
1412                         break;
1413                 }
1414                 if (revs->min_age != -1 && (commit->date > revs->min_age) &&
1415                     !revs->line_level_traverse)
1416                         continue;
1417                 date = commit->date;
1418                 p = &commit_list_insert(commit, p)->next;
1419
1420                 show = show_early_output;
1421                 if (!show)
1422                         continue;
1423
1424                 show(revs, newlist);
1425                 show_early_output = NULL;
1426         }
1427         if (revs->cherry_pick || revs->cherry_mark)
1428                 cherry_pick_list(newlist, revs);
1429
1430         if (revs->left_only || revs->right_only)
1431                 limit_left_right(newlist, revs);
1432
1433         if (bottom) {
1434                 limit_to_ancestry(bottom, newlist);
1435                 free_commit_list(bottom);
1436         }
1437
1438         /*
1439          * Check if any commits have become TREESAME by some of their parents
1440          * becoming UNINTERESTING.
1441          */
1442         if (limiting_can_increase_treesame(revs))
1443                 for (list = newlist; list; list = list->next) {
1444                         struct commit *c = list->item;
1445                         if (c->object.flags & (UNINTERESTING | TREESAME))
1446                                 continue;
1447                         update_treesame(revs, c);
1448                 }
1449
1450         revs->commits = newlist;
1451         return 0;
1452 }
1453
1454 /*
1455  * Add an entry to refs->cmdline with the specified information.
1456  * *name is copied.
1457  */
1458 static void add_rev_cmdline(struct rev_info *revs,
1459                             struct object *item,
1460                             const char *name,
1461                             int whence,
1462                             unsigned flags)
1463 {
1464         struct rev_cmdline_info *info = &revs->cmdline;
1465         unsigned int nr = info->nr;
1466
1467         ALLOC_GROW(info->rev, nr + 1, info->alloc);
1468         info->rev[nr].item = item;
1469         info->rev[nr].name = xstrdup(name);
1470         info->rev[nr].whence = whence;
1471         info->rev[nr].flags = flags;
1472         info->nr++;
1473 }
1474
1475 static void add_rev_cmdline_list(struct rev_info *revs,
1476                                  struct commit_list *commit_list,
1477                                  int whence,
1478                                  unsigned flags)
1479 {
1480         while (commit_list) {
1481                 struct object *object = &commit_list->item->object;
1482                 add_rev_cmdline(revs, object, oid_to_hex(&object->oid),
1483                                 whence, flags);
1484                 commit_list = commit_list->next;
1485         }
1486 }
1487
1488 struct all_refs_cb {
1489         int all_flags;
1490         int warned_bad_reflog;
1491         struct rev_info *all_revs;
1492         const char *name_for_errormsg;
1493         struct worktree *wt;
1494 };
1495
1496 int ref_excluded(struct string_list *ref_excludes, const char *path)
1497 {
1498         struct string_list_item *item;
1499
1500         if (!ref_excludes)
1501                 return 0;
1502         for_each_string_list_item(item, ref_excludes) {
1503                 if (!wildmatch(item->string, path, 0))
1504                         return 1;
1505         }
1506         return 0;
1507 }
1508
1509 static int handle_one_ref(const char *path, const struct object_id *oid,
1510                           int flag, void *cb_data)
1511 {
1512         struct all_refs_cb *cb = cb_data;
1513         struct object *object;
1514
1515         if (ref_excluded(cb->all_revs->ref_excludes, path))
1516             return 0;
1517
1518         object = get_reference(cb->all_revs, path, oid, cb->all_flags);
1519         add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags);
1520         add_pending_oid(cb->all_revs, path, oid, cb->all_flags);
1521         return 0;
1522 }
1523
1524 static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
1525         unsigned flags)
1526 {
1527         cb->all_revs = revs;
1528         cb->all_flags = flags;
1529         revs->rev_input_given = 1;
1530         cb->wt = NULL;
1531 }
1532
1533 void clear_ref_exclusion(struct string_list **ref_excludes_p)
1534 {
1535         if (*ref_excludes_p) {
1536                 string_list_clear(*ref_excludes_p, 0);
1537                 free(*ref_excludes_p);
1538         }
1539         *ref_excludes_p = NULL;
1540 }
1541
1542 void add_ref_exclusion(struct string_list **ref_excludes_p, const char *exclude)
1543 {
1544         if (!*ref_excludes_p) {
1545                 *ref_excludes_p = xcalloc(1, sizeof(**ref_excludes_p));
1546                 (*ref_excludes_p)->strdup_strings = 1;
1547         }
1548         string_list_append(*ref_excludes_p, exclude);
1549 }
1550
1551 static void handle_refs(struct ref_store *refs,
1552                         struct rev_info *revs, unsigned flags,
1553                         int (*for_each)(struct ref_store *, each_ref_fn, void *))
1554 {
1555         struct all_refs_cb cb;
1556
1557         if (!refs) {
1558                 /* this could happen with uninitialized submodules */
1559                 return;
1560         }
1561
1562         init_all_refs_cb(&cb, revs, flags);
1563         for_each(refs, handle_one_ref, &cb);
1564 }
1565
1566 static void handle_one_reflog_commit(struct object_id *oid, void *cb_data)
1567 {
1568         struct all_refs_cb *cb = cb_data;
1569         if (!is_null_oid(oid)) {
1570                 struct object *o = parse_object(cb->all_revs->repo, oid);
1571                 if (o) {
1572                         o->flags |= cb->all_flags;
1573                         /* ??? CMDLINEFLAGS ??? */
1574                         add_pending_object(cb->all_revs, o, "");
1575                 }
1576                 else if (!cb->warned_bad_reflog) {
1577                         warning("reflog of '%s' references pruned commits",
1578                                 cb->name_for_errormsg);
1579                         cb->warned_bad_reflog = 1;
1580                 }
1581         }
1582 }
1583
1584 static int handle_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
1585                 const char *email, timestamp_t timestamp, int tz,
1586                 const char *message, void *cb_data)
1587 {
1588         handle_one_reflog_commit(ooid, cb_data);
1589         handle_one_reflog_commit(noid, cb_data);
1590         return 0;
1591 }
1592
1593 static int handle_one_reflog(const char *refname_in_wt,
1594                              const struct object_id *oid,
1595                              int flag, void *cb_data)
1596 {
1597         struct all_refs_cb *cb = cb_data;
1598         struct strbuf refname = STRBUF_INIT;
1599
1600         cb->warned_bad_reflog = 0;
1601         strbuf_worktree_ref(cb->wt, &refname, refname_in_wt);
1602         cb->name_for_errormsg = refname.buf;
1603         refs_for_each_reflog_ent(get_main_ref_store(the_repository),
1604                                  refname.buf,
1605                                  handle_one_reflog_ent, cb_data);
1606         strbuf_release(&refname);
1607         return 0;
1608 }
1609
1610 static void add_other_reflogs_to_pending(struct all_refs_cb *cb)
1611 {
1612         struct worktree **worktrees, **p;
1613
1614         worktrees = get_worktrees();
1615         for (p = worktrees; *p; p++) {
1616                 struct worktree *wt = *p;
1617
1618                 if (wt->is_current)
1619                         continue;
1620
1621                 cb->wt = wt;
1622                 refs_for_each_reflog(get_worktree_ref_store(wt),
1623                                      handle_one_reflog,
1624                                      cb);
1625         }
1626         free_worktrees(worktrees);
1627 }
1628
1629 void add_reflogs_to_pending(struct rev_info *revs, unsigned flags)
1630 {
1631         struct all_refs_cb cb;
1632
1633         cb.all_revs = revs;
1634         cb.all_flags = flags;
1635         cb.wt = NULL;
1636         for_each_reflog(handle_one_reflog, &cb);
1637
1638         if (!revs->single_worktree)
1639                 add_other_reflogs_to_pending(&cb);
1640 }
1641
1642 static void add_cache_tree(struct cache_tree *it, struct rev_info *revs,
1643                            struct strbuf *path, unsigned int flags)
1644 {
1645         size_t baselen = path->len;
1646         int i;
1647
1648         if (it->entry_count >= 0) {
1649                 struct tree *tree = lookup_tree(revs->repo, &it->oid);
1650                 tree->object.flags |= flags;
1651                 add_pending_object_with_path(revs, &tree->object, "",
1652                                              040000, path->buf);
1653         }
1654
1655         for (i = 0; i < it->subtree_nr; i++) {
1656                 struct cache_tree_sub *sub = it->down[i];
1657                 strbuf_addf(path, "%s%s", baselen ? "/" : "", sub->name);
1658                 add_cache_tree(sub->cache_tree, revs, path, flags);
1659                 strbuf_setlen(path, baselen);
1660         }
1661
1662 }
1663
1664 static void do_add_index_objects_to_pending(struct rev_info *revs,
1665                                             struct index_state *istate,
1666                                             unsigned int flags)
1667 {
1668         int i;
1669
1670         for (i = 0; i < istate->cache_nr; i++) {
1671                 struct cache_entry *ce = istate->cache[i];
1672                 struct blob *blob;
1673
1674                 if (S_ISGITLINK(ce->ce_mode))
1675                         continue;
1676
1677                 blob = lookup_blob(revs->repo, &ce->oid);
1678                 if (!blob)
1679                         die("unable to add index blob to traversal");
1680                 blob->object.flags |= flags;
1681                 add_pending_object_with_path(revs, &blob->object, "",
1682                                              ce->ce_mode, ce->name);
1683         }
1684
1685         if (istate->cache_tree) {
1686                 struct strbuf path = STRBUF_INIT;
1687                 add_cache_tree(istate->cache_tree, revs, &path, flags);
1688                 strbuf_release(&path);
1689         }
1690 }
1691
1692 void add_index_objects_to_pending(struct rev_info *revs, unsigned int flags)
1693 {
1694         struct worktree **worktrees, **p;
1695
1696         repo_read_index(revs->repo);
1697         do_add_index_objects_to_pending(revs, revs->repo->index, flags);
1698
1699         if (revs->single_worktree)
1700                 return;
1701
1702         worktrees = get_worktrees();
1703         for (p = worktrees; *p; p++) {
1704                 struct worktree *wt = *p;
1705                 struct index_state istate = { NULL };
1706
1707                 if (wt->is_current)
1708                         continue; /* current index already taken care of */
1709
1710                 if (read_index_from(&istate,
1711                                     worktree_git_path(wt, "index"),
1712                                     get_worktree_git_dir(wt)) > 0)
1713                         do_add_index_objects_to_pending(revs, &istate, flags);
1714                 discard_index(&istate);
1715         }
1716         free_worktrees(worktrees);
1717 }
1718
1719 struct add_alternate_refs_data {
1720         struct rev_info *revs;
1721         unsigned int flags;
1722 };
1723
1724 static void add_one_alternate_ref(const struct object_id *oid,
1725                                   void *vdata)
1726 {
1727         const char *name = ".alternate";
1728         struct add_alternate_refs_data *data = vdata;
1729         struct object *obj;
1730
1731         obj = get_reference(data->revs, name, oid, data->flags);
1732         add_rev_cmdline(data->revs, obj, name, REV_CMD_REV, data->flags);
1733         add_pending_object(data->revs, obj, name);
1734 }
1735
1736 static void add_alternate_refs_to_pending(struct rev_info *revs,
1737                                           unsigned int flags)
1738 {
1739         struct add_alternate_refs_data data;
1740         data.revs = revs;
1741         data.flags = flags;
1742         for_each_alternate_ref(add_one_alternate_ref, &data);
1743 }
1744
1745 static int add_parents_only(struct rev_info *revs, const char *arg_, int flags,
1746                             int exclude_parent)
1747 {
1748         struct object_id oid;
1749         struct object *it;
1750         struct commit *commit;
1751         struct commit_list *parents;
1752         int parent_number;
1753         const char *arg = arg_;
1754
1755         if (*arg == '^') {
1756                 flags ^= UNINTERESTING | BOTTOM;
1757                 arg++;
1758         }
1759         if (get_oid_committish(arg, &oid))
1760                 return 0;
1761         while (1) {
1762                 it = get_reference(revs, arg, &oid, 0);
1763                 if (!it && revs->ignore_missing)
1764                         return 0;
1765                 if (it->type != OBJ_TAG)
1766                         break;
1767                 if (!((struct tag*)it)->tagged)
1768                         return 0;
1769                 oidcpy(&oid, &((struct tag*)it)->tagged->oid);
1770         }
1771         if (it->type != OBJ_COMMIT)
1772                 return 0;
1773         commit = (struct commit *)it;
1774         if (exclude_parent &&
1775             exclude_parent > commit_list_count(commit->parents))
1776                 return 0;
1777         for (parents = commit->parents, parent_number = 1;
1778              parents;
1779              parents = parents->next, parent_number++) {
1780                 if (exclude_parent && parent_number != exclude_parent)
1781                         continue;
1782
1783                 it = &parents->item->object;
1784                 it->flags |= flags;
1785                 add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags);
1786                 add_pending_object(revs, it, arg);
1787         }
1788         return 1;
1789 }
1790
1791 void repo_init_revisions(struct repository *r,
1792                          struct rev_info *revs,
1793                          const char *prefix)
1794 {
1795         memset(revs, 0, sizeof(*revs));
1796
1797         revs->repo = r;
1798         revs->abbrev = DEFAULT_ABBREV;
1799         revs->ignore_merges = 1;
1800         revs->simplify_history = 1;
1801         revs->pruning.repo = r;
1802         revs->pruning.flags.recursive = 1;
1803         revs->pruning.flags.quick = 1;
1804         revs->pruning.add_remove = file_add_remove;
1805         revs->pruning.change = file_change;
1806         revs->pruning.change_fn_data = revs;
1807         revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
1808         revs->dense = 1;
1809         revs->prefix = prefix;
1810         revs->max_age = -1;
1811         revs->min_age = -1;
1812         revs->skip_count = -1;
1813         revs->max_count = -1;
1814         revs->max_parents = -1;
1815         revs->expand_tabs_in_log = -1;
1816
1817         revs->commit_format = CMIT_FMT_DEFAULT;
1818         revs->expand_tabs_in_log_default = 8;
1819
1820         init_grep_defaults(revs->repo);
1821         grep_init(&revs->grep_filter, revs->repo, prefix);
1822         revs->grep_filter.status_only = 1;
1823
1824         repo_diff_setup(revs->repo, &revs->diffopt);
1825         if (prefix && !revs->diffopt.prefix) {
1826                 revs->diffopt.prefix = prefix;
1827                 revs->diffopt.prefix_length = strlen(prefix);
1828         }
1829
1830         init_display_notes(&revs->notes_opt);
1831 }
1832
1833 static void add_pending_commit_list(struct rev_info *revs,
1834                                     struct commit_list *commit_list,
1835                                     unsigned int flags)
1836 {
1837         while (commit_list) {
1838                 struct object *object = &commit_list->item->object;
1839                 object->flags |= flags;
1840                 add_pending_object(revs, object, oid_to_hex(&object->oid));
1841                 commit_list = commit_list->next;
1842         }
1843 }
1844
1845 static void prepare_show_merge(struct rev_info *revs)
1846 {
1847         struct commit_list *bases;
1848         struct commit *head, *other;
1849         struct object_id oid;
1850         const char **prune = NULL;
1851         int i, prune_num = 1; /* counting terminating NULL */
1852         struct index_state *istate = revs->repo->index;
1853
1854         if (get_oid("HEAD", &oid))
1855                 die("--merge without HEAD?");
1856         head = lookup_commit_or_die(&oid, "HEAD");
1857         if (get_oid("MERGE_HEAD", &oid))
1858                 die("--merge without MERGE_HEAD?");
1859         other = lookup_commit_or_die(&oid, "MERGE_HEAD");
1860         add_pending_object(revs, &head->object, "HEAD");
1861         add_pending_object(revs, &other->object, "MERGE_HEAD");
1862         bases = get_merge_bases(head, other);
1863         add_rev_cmdline_list(revs, bases, REV_CMD_MERGE_BASE, UNINTERESTING | BOTTOM);
1864         add_pending_commit_list(revs, bases, UNINTERESTING | BOTTOM);
1865         free_commit_list(bases);
1866         head->object.flags |= SYMMETRIC_LEFT;
1867
1868         if (!istate->cache_nr)
1869                 repo_read_index(revs->repo);
1870         for (i = 0; i < istate->cache_nr; i++) {
1871                 const struct cache_entry *ce = istate->cache[i];
1872                 if (!ce_stage(ce))
1873                         continue;
1874                 if (ce_path_match(istate, ce, &revs->prune_data, NULL)) {
1875                         prune_num++;
1876                         REALLOC_ARRAY(prune, prune_num);
1877                         prune[prune_num-2] = ce->name;
1878                         prune[prune_num-1] = NULL;
1879                 }
1880                 while ((i+1 < istate->cache_nr) &&
1881                        ce_same_name(ce, istate->cache[i+1]))
1882                         i++;
1883         }
1884         clear_pathspec(&revs->prune_data);
1885         parse_pathspec(&revs->prune_data, PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
1886                        PATHSPEC_PREFER_FULL | PATHSPEC_LITERAL_PATH, "", prune);
1887         revs->limited = 1;
1888 }
1889
1890 static int dotdot_missing(const char *arg, char *dotdot,
1891                           struct rev_info *revs, int symmetric)
1892 {
1893         if (revs->ignore_missing)
1894                 return 0;
1895         /* de-munge so we report the full argument */
1896         *dotdot = '.';
1897         die(symmetric
1898             ? "Invalid symmetric difference expression %s"
1899             : "Invalid revision range %s", arg);
1900 }
1901
1902 static int handle_dotdot_1(const char *arg, char *dotdot,
1903                            struct rev_info *revs, int flags,
1904                            int cant_be_filename,
1905                            struct object_context *a_oc,
1906                            struct object_context *b_oc)
1907 {
1908         const char *a_name, *b_name;
1909         struct object_id a_oid, b_oid;
1910         struct object *a_obj, *b_obj;
1911         unsigned int a_flags, b_flags;
1912         int symmetric = 0;
1913         unsigned int flags_exclude = flags ^ (UNINTERESTING | BOTTOM);
1914         unsigned int oc_flags = GET_OID_COMMITTISH | GET_OID_RECORD_PATH;
1915
1916         a_name = arg;
1917         if (!*a_name)
1918                 a_name = "HEAD";
1919
1920         b_name = dotdot + 2;
1921         if (*b_name == '.') {
1922                 symmetric = 1;
1923                 b_name++;
1924         }
1925         if (!*b_name)
1926                 b_name = "HEAD";
1927
1928         if (get_oid_with_context(revs->repo, a_name, oc_flags, &a_oid, a_oc) ||
1929             get_oid_with_context(revs->repo, b_name, oc_flags, &b_oid, b_oc))
1930                 return -1;
1931
1932         if (!cant_be_filename) {
1933                 *dotdot = '.';
1934                 verify_non_filename(revs->prefix, arg);
1935                 *dotdot = '\0';
1936         }
1937
1938         a_obj = parse_object(revs->repo, &a_oid);
1939         b_obj = parse_object(revs->repo, &b_oid);
1940         if (!a_obj || !b_obj)
1941                 return dotdot_missing(arg, dotdot, revs, symmetric);
1942
1943         if (!symmetric) {
1944                 /* just A..B */
1945                 b_flags = flags;
1946                 a_flags = flags_exclude;
1947         } else {
1948                 /* A...B -- find merge bases between the two */
1949                 struct commit *a, *b;
1950                 struct commit_list *exclude;
1951
1952                 a = lookup_commit_reference(revs->repo, &a_obj->oid);
1953                 b = lookup_commit_reference(revs->repo, &b_obj->oid);
1954                 if (!a || !b)
1955                         return dotdot_missing(arg, dotdot, revs, symmetric);
1956
1957                 exclude = get_merge_bases(a, b);
1958                 add_rev_cmdline_list(revs, exclude, REV_CMD_MERGE_BASE,
1959                                      flags_exclude);
1960                 add_pending_commit_list(revs, exclude, flags_exclude);
1961                 free_commit_list(exclude);
1962
1963                 b_flags = flags;
1964                 a_flags = flags | SYMMETRIC_LEFT;
1965         }
1966
1967         a_obj->flags |= a_flags;
1968         b_obj->flags |= b_flags;
1969         add_rev_cmdline(revs, a_obj, a_name, REV_CMD_LEFT, a_flags);
1970         add_rev_cmdline(revs, b_obj, b_name, REV_CMD_RIGHT, b_flags);
1971         add_pending_object_with_path(revs, a_obj, a_name, a_oc->mode, a_oc->path);
1972         add_pending_object_with_path(revs, b_obj, b_name, b_oc->mode, b_oc->path);
1973         return 0;
1974 }
1975
1976 static int handle_dotdot(const char *arg,
1977                          struct rev_info *revs, int flags,
1978                          int cant_be_filename)
1979 {
1980         struct object_context a_oc, b_oc;
1981         char *dotdot = strstr(arg, "..");
1982         int ret;
1983
1984         if (!dotdot)
1985                 return -1;
1986
1987         memset(&a_oc, 0, sizeof(a_oc));
1988         memset(&b_oc, 0, sizeof(b_oc));
1989
1990         *dotdot = '\0';
1991         ret = handle_dotdot_1(arg, dotdot, revs, flags, cant_be_filename,
1992                               &a_oc, &b_oc);
1993         *dotdot = '.';
1994
1995         free(a_oc.path);
1996         free(b_oc.path);
1997
1998         return ret;
1999 }
2000
2001 int handle_revision_arg(const char *arg_, struct rev_info *revs, int flags, unsigned revarg_opt)
2002 {
2003         struct object_context oc;
2004         char *mark;
2005         struct object *object;
2006         struct object_id oid;
2007         int local_flags;
2008         const char *arg = arg_;
2009         int cant_be_filename = revarg_opt & REVARG_CANNOT_BE_FILENAME;
2010         unsigned get_sha1_flags = GET_OID_RECORD_PATH;
2011
2012         flags = flags & UNINTERESTING ? flags | BOTTOM : flags & ~BOTTOM;
2013
2014         if (!cant_be_filename && !strcmp(arg, "..")) {
2015                 /*
2016                  * Just ".."?  That is not a range but the
2017                  * pathspec for the parent directory.
2018                  */
2019                 return -1;
2020         }
2021
2022         if (!handle_dotdot(arg, revs, flags, revarg_opt))
2023                 return 0;
2024
2025         mark = strstr(arg, "^@");
2026         if (mark && !mark[2]) {
2027                 *mark = 0;
2028                 if (add_parents_only(revs, arg, flags, 0))
2029                         return 0;
2030                 *mark = '^';
2031         }
2032         mark = strstr(arg, "^!");
2033         if (mark && !mark[2]) {
2034                 *mark = 0;
2035                 if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), 0))
2036                         *mark = '^';
2037         }
2038         mark = strstr(arg, "^-");
2039         if (mark) {
2040                 int exclude_parent = 1;
2041
2042                 if (mark[2]) {
2043                         char *end;
2044                         exclude_parent = strtoul(mark + 2, &end, 10);
2045                         if (*end != '\0' || !exclude_parent)
2046                                 return -1;
2047                 }
2048
2049                 *mark = 0;
2050                 if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), exclude_parent))
2051                         *mark = '^';
2052         }
2053
2054         local_flags = 0;
2055         if (*arg == '^') {
2056                 local_flags = UNINTERESTING | BOTTOM;
2057                 arg++;
2058         }
2059
2060         if (revarg_opt & REVARG_COMMITTISH)
2061                 get_sha1_flags |= GET_OID_COMMITTISH;
2062
2063         if (get_oid_with_context(revs->repo, arg, get_sha1_flags, &oid, &oc))
2064                 return revs->ignore_missing ? 0 : -1;
2065         if (!cant_be_filename)
2066                 verify_non_filename(revs->prefix, arg);
2067         object = get_reference(revs, arg, &oid, flags ^ local_flags);
2068         if (!object)
2069                 return revs->ignore_missing ? 0 : -1;
2070         add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
2071         add_pending_object_with_path(revs, object, arg, oc.mode, oc.path);
2072         free(oc.path);
2073         return 0;
2074 }
2075
2076 static void read_pathspec_from_stdin(struct strbuf *sb,
2077                                      struct argv_array *prune)
2078 {
2079         while (strbuf_getline(sb, stdin) != EOF)
2080                 argv_array_push(prune, sb->buf);
2081 }
2082
2083 static void read_revisions_from_stdin(struct rev_info *revs,
2084                                       struct argv_array *prune)
2085 {
2086         struct strbuf sb;
2087         int seen_dashdash = 0;
2088         int save_warning;
2089
2090         save_warning = warn_on_object_refname_ambiguity;
2091         warn_on_object_refname_ambiguity = 0;
2092
2093         strbuf_init(&sb, 1000);
2094         while (strbuf_getline(&sb, stdin) != EOF) {
2095                 int len = sb.len;
2096                 if (!len)
2097                         break;
2098                 if (sb.buf[0] == '-') {
2099                         if (len == 2 && sb.buf[1] == '-') {
2100                                 seen_dashdash = 1;
2101                                 break;
2102                         }
2103                         die("options not supported in --stdin mode");
2104                 }
2105                 if (handle_revision_arg(sb.buf, revs, 0,
2106                                         REVARG_CANNOT_BE_FILENAME))
2107                         die("bad revision '%s'", sb.buf);
2108         }
2109         if (seen_dashdash)
2110                 read_pathspec_from_stdin(&sb, prune);
2111
2112         strbuf_release(&sb);
2113         warn_on_object_refname_ambiguity = save_warning;
2114 }
2115
2116 static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
2117 {
2118         append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
2119 }
2120
2121 static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
2122 {
2123         append_header_grep_pattern(&revs->grep_filter, field, pattern);
2124 }
2125
2126 static void add_message_grep(struct rev_info *revs, const char *pattern)
2127 {
2128         add_grep(revs, pattern, GREP_PATTERN_BODY);
2129 }
2130
2131 static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
2132                                int *unkc, const char **unkv,
2133                                const struct setup_revision_opt* opt)
2134 {
2135         const char *arg = argv[0];
2136         const char *optarg;
2137         int argcount;
2138         const unsigned hexsz = the_hash_algo->hexsz;
2139
2140         /* pseudo revision arguments */
2141         if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
2142             !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
2143             !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
2144             !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
2145             !strcmp(arg, "--bisect") || starts_with(arg, "--glob=") ||
2146             !strcmp(arg, "--indexed-objects") ||
2147             !strcmp(arg, "--alternate-refs") ||
2148             starts_with(arg, "--exclude=") ||
2149             starts_with(arg, "--branches=") || starts_with(arg, "--tags=") ||
2150             starts_with(arg, "--remotes=") || starts_with(arg, "--no-walk="))
2151         {
2152                 unkv[(*unkc)++] = arg;
2153                 return 1;
2154         }
2155
2156         if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
2157                 revs->max_count = atoi(optarg);
2158                 revs->no_walk = 0;
2159                 return argcount;
2160         } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
2161                 revs->skip_count = atoi(optarg);
2162                 return argcount;
2163         } else if ((*arg == '-') && isdigit(arg[1])) {
2164                 /* accept -<digit>, like traditional "head" */
2165                 if (strtol_i(arg + 1, 10, &revs->max_count) < 0 ||
2166                     revs->max_count < 0)
2167                         die("'%s': not a non-negative integer", arg + 1);
2168                 revs->no_walk = 0;
2169         } else if (!strcmp(arg, "-n")) {
2170                 if (argc <= 1)
2171                         return error("-n requires an argument");
2172                 revs->max_count = atoi(argv[1]);
2173                 revs->no_walk = 0;
2174                 return 2;
2175         } else if (skip_prefix(arg, "-n", &optarg)) {
2176                 revs->max_count = atoi(optarg);
2177                 revs->no_walk = 0;
2178         } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
2179                 revs->max_age = atoi(optarg);
2180                 return argcount;
2181         } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
2182                 revs->max_age = approxidate(optarg);
2183                 return argcount;
2184         } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
2185                 revs->max_age = approxidate(optarg);
2186                 return argcount;
2187         } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
2188                 revs->min_age = atoi(optarg);
2189                 return argcount;
2190         } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
2191                 revs->min_age = approxidate(optarg);
2192                 return argcount;
2193         } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
2194                 revs->min_age = approxidate(optarg);
2195                 return argcount;
2196         } else if (!strcmp(arg, "--first-parent")) {
2197                 revs->first_parent_only = 1;
2198         } else if (!strcmp(arg, "--ancestry-path")) {
2199                 revs->ancestry_path = 1;
2200                 revs->simplify_history = 0;
2201                 revs->limited = 1;
2202         } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
2203                 init_reflog_walk(&revs->reflog_info);
2204         } else if (!strcmp(arg, "--default")) {
2205                 if (argc <= 1)
2206                         return error("bad --default argument");
2207                 revs->def = argv[1];
2208                 return 2;
2209         } else if (!strcmp(arg, "--merge")) {
2210                 revs->show_merge = 1;
2211         } else if (!strcmp(arg, "--topo-order")) {
2212                 revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
2213                 revs->topo_order = 1;
2214         } else if (!strcmp(arg, "--simplify-merges")) {
2215                 revs->simplify_merges = 1;
2216                 revs->topo_order = 1;
2217                 revs->rewrite_parents = 1;
2218                 revs->simplify_history = 0;
2219                 revs->limited = 1;
2220         } else if (!strcmp(arg, "--simplify-by-decoration")) {
2221                 revs->simplify_merges = 1;
2222                 revs->topo_order = 1;
2223                 revs->rewrite_parents = 1;
2224                 revs->simplify_history = 0;
2225                 revs->simplify_by_decoration = 1;
2226                 revs->limited = 1;
2227                 revs->prune = 1;
2228         } else if (!strcmp(arg, "--date-order")) {
2229                 revs->sort_order = REV_SORT_BY_COMMIT_DATE;
2230                 revs->topo_order = 1;
2231         } else if (!strcmp(arg, "--author-date-order")) {
2232                 revs->sort_order = REV_SORT_BY_AUTHOR_DATE;
2233                 revs->topo_order = 1;
2234         } else if (!strcmp(arg, "--early-output")) {
2235                 revs->early_output = 100;
2236                 revs->topo_order = 1;
2237         } else if (skip_prefix(arg, "--early-output=", &optarg)) {
2238                 if (strtoul_ui(optarg, 10, &revs->early_output) < 0)
2239                         die("'%s': not a non-negative integer", optarg);
2240                 revs->topo_order = 1;
2241         } else if (!strcmp(arg, "--parents")) {
2242                 revs->rewrite_parents = 1;
2243                 revs->print_parents = 1;
2244         } else if (!strcmp(arg, "--dense")) {
2245                 revs->dense = 1;
2246         } else if (!strcmp(arg, "--sparse")) {
2247                 revs->dense = 0;
2248         } else if (!strcmp(arg, "--in-commit-order")) {
2249                 revs->tree_blobs_in_commit_order = 1;
2250         } else if (!strcmp(arg, "--remove-empty")) {
2251                 revs->remove_empty_trees = 1;
2252         } else if (!strcmp(arg, "--merges")) {
2253                 revs->min_parents = 2;
2254         } else if (!strcmp(arg, "--no-merges")) {
2255                 revs->max_parents = 1;
2256         } else if (skip_prefix(arg, "--min-parents=", &optarg)) {
2257                 revs->min_parents = atoi(optarg);
2258         } else if (!strcmp(arg, "--no-min-parents")) {
2259                 revs->min_parents = 0;
2260         } else if (skip_prefix(arg, "--max-parents=", &optarg)) {
2261                 revs->max_parents = atoi(optarg);
2262         } else if (!strcmp(arg, "--no-max-parents")) {
2263                 revs->max_parents = -1;
2264         } else if (!strcmp(arg, "--boundary")) {
2265                 revs->boundary = 1;
2266         } else if (!strcmp(arg, "--left-right")) {
2267                 revs->left_right = 1;
2268         } else if (!strcmp(arg, "--left-only")) {
2269                 if (revs->right_only)
2270                         die("--left-only is incompatible with --right-only"
2271                             " or --cherry");
2272                 revs->left_only = 1;
2273         } else if (!strcmp(arg, "--right-only")) {
2274                 if (revs->left_only)
2275                         die("--right-only is incompatible with --left-only");
2276                 revs->right_only = 1;
2277         } else if (!strcmp(arg, "--cherry")) {
2278                 if (revs->left_only)
2279                         die("--cherry is incompatible with --left-only");
2280                 revs->cherry_mark = 1;
2281                 revs->right_only = 1;
2282                 revs->max_parents = 1;
2283                 revs->limited = 1;
2284         } else if (!strcmp(arg, "--count")) {
2285                 revs->count = 1;
2286         } else if (!strcmp(arg, "--cherry-mark")) {
2287                 if (revs->cherry_pick)
2288                         die("--cherry-mark is incompatible with --cherry-pick");
2289                 revs->cherry_mark = 1;
2290                 revs->limited = 1; /* needs limit_list() */
2291         } else if (!strcmp(arg, "--cherry-pick")) {
2292                 if (revs->cherry_mark)
2293                         die("--cherry-pick is incompatible with --cherry-mark");
2294                 revs->cherry_pick = 1;
2295                 revs->limited = 1;
2296         } else if (!strcmp(arg, "--objects")) {
2297                 revs->tag_objects = 1;
2298                 revs->tree_objects = 1;
2299                 revs->blob_objects = 1;
2300         } else if (!strcmp(arg, "--objects-edge")) {
2301                 revs->tag_objects = 1;
2302                 revs->tree_objects = 1;
2303                 revs->blob_objects = 1;
2304                 revs->edge_hint = 1;
2305         } else if (!strcmp(arg, "--objects-edge-aggressive")) {
2306                 revs->tag_objects = 1;
2307                 revs->tree_objects = 1;
2308                 revs->blob_objects = 1;
2309                 revs->edge_hint = 1;
2310                 revs->edge_hint_aggressive = 1;
2311         } else if (!strcmp(arg, "--verify-objects")) {
2312                 revs->tag_objects = 1;
2313                 revs->tree_objects = 1;
2314                 revs->blob_objects = 1;
2315                 revs->verify_objects = 1;
2316         } else if (!strcmp(arg, "--unpacked")) {
2317                 revs->unpacked = 1;
2318         } else if (starts_with(arg, "--unpacked=")) {
2319                 die("--unpacked=<packfile> no longer supported.");
2320         } else if (!strcmp(arg, "-r")) {
2321                 revs->diff = 1;
2322                 revs->diffopt.flags.recursive = 1;
2323         } else if (!strcmp(arg, "-t")) {
2324                 revs->diff = 1;
2325                 revs->diffopt.flags.recursive = 1;
2326                 revs->diffopt.flags.tree_in_recursive = 1;
2327         } else if (!strcmp(arg, "-m")) {
2328                 revs->ignore_merges = 0;
2329         } else if (!strcmp(arg, "-c")) {
2330                 revs->diff = 1;
2331                 revs->dense_combined_merges = 0;
2332                 revs->combine_merges = 1;
2333         } else if (!strcmp(arg, "--combined-all-paths")) {
2334                 revs->diff = 1;
2335                 revs->combined_all_paths = 1;
2336         } else if (!strcmp(arg, "--cc")) {
2337                 revs->diff = 1;
2338                 revs->dense_combined_merges = 1;
2339                 revs->combine_merges = 1;
2340         } else if (!strcmp(arg, "-v")) {
2341                 revs->verbose_header = 1;
2342         } else if (!strcmp(arg, "--pretty")) {
2343                 revs->verbose_header = 1;
2344                 revs->pretty_given = 1;
2345                 get_commit_format(NULL, revs);
2346         } else if (skip_prefix(arg, "--pretty=", &optarg) ||
2347                    skip_prefix(arg, "--format=", &optarg)) {
2348                 /*
2349                  * Detached form ("--pretty X" as opposed to "--pretty=X")
2350                  * not allowed, since the argument is optional.
2351                  */
2352                 revs->verbose_header = 1;
2353                 revs->pretty_given = 1;
2354                 get_commit_format(optarg, revs);
2355         } else if (!strcmp(arg, "--expand-tabs")) {
2356                 revs->expand_tabs_in_log = 8;
2357         } else if (!strcmp(arg, "--no-expand-tabs")) {
2358                 revs->expand_tabs_in_log = 0;
2359         } else if (skip_prefix(arg, "--expand-tabs=", &arg)) {
2360                 int val;
2361                 if (strtol_i(arg, 10, &val) < 0 || val < 0)
2362                         die("'%s': not a non-negative integer", arg);
2363                 revs->expand_tabs_in_log = val;
2364         } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
2365                 enable_default_display_notes(&revs->notes_opt, &revs->show_notes);
2366                 revs->show_notes_given = 1;
2367         } else if (!strcmp(arg, "--show-signature")) {
2368                 revs->show_signature = 1;
2369         } else if (!strcmp(arg, "--no-show-signature")) {
2370                 revs->show_signature = 0;
2371         } else if (!strcmp(arg, "--show-linear-break")) {
2372                 revs->break_bar = "                    ..........";
2373                 revs->track_linear = 1;
2374                 revs->track_first_time = 1;
2375         } else if (skip_prefix(arg, "--show-linear-break=", &optarg)) {
2376                 revs->break_bar = xstrdup(optarg);
2377                 revs->track_linear = 1;
2378                 revs->track_first_time = 1;
2379         } else if (skip_prefix(arg, "--show-notes=", &optarg) ||
2380                    skip_prefix(arg, "--notes=", &optarg)) {
2381                 if (starts_with(arg, "--show-notes=") &&
2382                     revs->notes_opt.use_default_notes < 0)
2383                         revs->notes_opt.use_default_notes = 1;
2384                 enable_ref_display_notes(&revs->notes_opt, &revs->show_notes, optarg);
2385                 revs->show_notes_given = 1;
2386         } else if (!strcmp(arg, "--no-notes")) {
2387                 disable_display_notes(&revs->notes_opt, &revs->show_notes);
2388                 revs->show_notes_given = 1;
2389         } else if (!strcmp(arg, "--standard-notes")) {
2390                 revs->show_notes_given = 1;
2391                 revs->notes_opt.use_default_notes = 1;
2392         } else if (!strcmp(arg, "--no-standard-notes")) {
2393                 revs->notes_opt.use_default_notes = 0;
2394         } else if (!strcmp(arg, "--oneline")) {
2395                 revs->verbose_header = 1;
2396                 get_commit_format("oneline", revs);
2397                 revs->pretty_given = 1;
2398                 revs->abbrev_commit = 1;
2399         } else if (!strcmp(arg, "--graph")) {
2400                 revs->topo_order = 1;
2401                 revs->rewrite_parents = 1;
2402                 revs->graph = graph_init(revs);
2403         } else if (!strcmp(arg, "--encode-email-headers")) {
2404                 revs->encode_email_headers = 1;
2405         } else if (!strcmp(arg, "--no-encode-email-headers")) {
2406                 revs->encode_email_headers = 0;
2407         } else if (!strcmp(arg, "--root")) {
2408                 revs->show_root_diff = 1;
2409         } else if (!strcmp(arg, "--no-commit-id")) {
2410                 revs->no_commit_id = 1;
2411         } else if (!strcmp(arg, "--always")) {
2412                 revs->always_show_header = 1;
2413         } else if (!strcmp(arg, "--no-abbrev")) {
2414                 revs->abbrev = 0;
2415         } else if (!strcmp(arg, "--abbrev")) {
2416                 revs->abbrev = DEFAULT_ABBREV;
2417         } else if (skip_prefix(arg, "--abbrev=", &optarg)) {
2418                 revs->abbrev = strtoul(optarg, NULL, 10);
2419                 if (revs->abbrev < MINIMUM_ABBREV)
2420                         revs->abbrev = MINIMUM_ABBREV;
2421                 else if (revs->abbrev > hexsz)
2422                         revs->abbrev = hexsz;
2423         } else if (!strcmp(arg, "--abbrev-commit")) {
2424                 revs->abbrev_commit = 1;
2425                 revs->abbrev_commit_given = 1;
2426         } else if (!strcmp(arg, "--no-abbrev-commit")) {
2427                 revs->abbrev_commit = 0;
2428         } else if (!strcmp(arg, "--full-diff")) {
2429                 revs->diff = 1;
2430                 revs->full_diff = 1;
2431         } else if (!strcmp(arg, "--show-pulls")) {
2432                 revs->show_pulls = 1;
2433         } else if (!strcmp(arg, "--full-history")) {
2434                 revs->simplify_history = 0;
2435         } else if (!strcmp(arg, "--relative-date")) {
2436                 revs->date_mode.type = DATE_RELATIVE;
2437                 revs->date_mode_explicit = 1;
2438         } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
2439                 parse_date_format(optarg, &revs->date_mode);
2440                 revs->date_mode_explicit = 1;
2441                 return argcount;
2442         } else if (!strcmp(arg, "--log-size")) {
2443                 revs->show_log_size = 1;
2444         }
2445         /*
2446          * Grepping the commit log
2447          */
2448         else if ((argcount = parse_long_opt("author", argv, &optarg))) {
2449                 add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
2450                 return argcount;
2451         } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
2452                 add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
2453                 return argcount;
2454         } else if ((argcount = parse_long_opt("grep-reflog", argv, &optarg))) {
2455                 add_header_grep(revs, GREP_HEADER_REFLOG, optarg);
2456                 return argcount;
2457         } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
2458                 add_message_grep(revs, optarg);
2459                 return argcount;
2460         } else if (!strcmp(arg, "--grep-debug")) {
2461                 revs->grep_filter.debug = 1;
2462         } else if (!strcmp(arg, "--basic-regexp")) {
2463                 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_BRE;
2464         } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
2465                 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_ERE;
2466         } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
2467                 revs->grep_filter.ignore_case = 1;
2468                 revs->diffopt.pickaxe_opts |= DIFF_PICKAXE_IGNORE_CASE;
2469         } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
2470                 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_FIXED;
2471         } else if (!strcmp(arg, "--perl-regexp") || !strcmp(arg, "-P")) {
2472                 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_PCRE;
2473         } else if (!strcmp(arg, "--all-match")) {
2474                 revs->grep_filter.all_match = 1;
2475         } else if (!strcmp(arg, "--invert-grep")) {
2476                 revs->invert_grep = 1;
2477         } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
2478                 if (strcmp(optarg, "none"))
2479                         git_log_output_encoding = xstrdup(optarg);
2480                 else
2481                         git_log_output_encoding = "";
2482                 return argcount;
2483         } else if (!strcmp(arg, "--reverse")) {
2484                 revs->reverse ^= 1;
2485         } else if (!strcmp(arg, "--children")) {
2486                 revs->children.name = "children";
2487                 revs->limited = 1;
2488         } else if (!strcmp(arg, "--ignore-missing")) {
2489                 revs->ignore_missing = 1;
2490         } else if (opt && opt->allow_exclude_promisor_objects &&
2491                    !strcmp(arg, "--exclude-promisor-objects")) {
2492                 if (fetch_if_missing)
2493                         BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
2494                 revs->exclude_promisor_objects = 1;
2495         } else {
2496                 int opts = diff_opt_parse(&revs->diffopt, argv, argc, revs->prefix);
2497                 if (!opts)
2498                         unkv[(*unkc)++] = arg;
2499                 return opts;
2500         }
2501         if (revs->graph && revs->track_linear)
2502                 die("--show-linear-break and --graph are incompatible");
2503
2504         return 1;
2505 }
2506
2507 void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
2508                         const struct option *options,
2509                         const char * const usagestr[])
2510 {
2511         int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
2512                                     &ctx->cpidx, ctx->out, NULL);
2513         if (n <= 0) {
2514                 error("unknown option `%s'", ctx->argv[0]);
2515                 usage_with_options(usagestr, options);
2516         }
2517         ctx->argv += n;
2518         ctx->argc -= n;
2519 }
2520
2521 static int for_each_bisect_ref(struct ref_store *refs, each_ref_fn fn,
2522                                void *cb_data, const char *term)
2523 {
2524         struct strbuf bisect_refs = STRBUF_INIT;
2525         int status;
2526         strbuf_addf(&bisect_refs, "refs/bisect/%s", term);
2527         status = refs_for_each_fullref_in(refs, bisect_refs.buf, fn, cb_data, 0);
2528         strbuf_release(&bisect_refs);
2529         return status;
2530 }
2531
2532 static int for_each_bad_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
2533 {
2534         return for_each_bisect_ref(refs, fn, cb_data, term_bad);
2535 }
2536
2537 static int for_each_good_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
2538 {
2539         return for_each_bisect_ref(refs, fn, cb_data, term_good);
2540 }
2541
2542 static int handle_revision_pseudo_opt(const char *submodule,
2543                                 struct rev_info *revs,
2544                                 int argc, const char **argv, int *flags)
2545 {
2546         const char *arg = argv[0];
2547         const char *optarg;
2548         struct ref_store *refs;
2549         int argcount;
2550
2551         if (submodule) {
2552                 /*
2553                  * We need some something like get_submodule_worktrees()
2554                  * before we can go through all worktrees of a submodule,
2555                  * .e.g with adding all HEADs from --all, which is not
2556                  * supported right now, so stick to single worktree.
2557                  */
2558                 if (!revs->single_worktree)
2559                         BUG("--single-worktree cannot be used together with submodule");
2560                 refs = get_submodule_ref_store(submodule);
2561         } else
2562                 refs = get_main_ref_store(revs->repo);
2563
2564         /*
2565          * NOTE!
2566          *
2567          * Commands like "git shortlog" will not accept the options below
2568          * unless parse_revision_opt queues them (as opposed to erroring
2569          * out).
2570          *
2571          * When implementing your new pseudo-option, remember to
2572          * register it in the list at the top of handle_revision_opt.
2573          */
2574         if (!strcmp(arg, "--all")) {
2575                 handle_refs(refs, revs, *flags, refs_for_each_ref);
2576                 handle_refs(refs, revs, *flags, refs_head_ref);
2577                 if (!revs->single_worktree) {
2578                         struct all_refs_cb cb;
2579
2580                         init_all_refs_cb(&cb, revs, *flags);
2581                         other_head_refs(handle_one_ref, &cb);
2582                 }
2583                 clear_ref_exclusion(&revs->ref_excludes);
2584         } else if (!strcmp(arg, "--branches")) {
2585                 handle_refs(refs, revs, *flags, refs_for_each_branch_ref);
2586                 clear_ref_exclusion(&revs->ref_excludes);
2587         } else if (!strcmp(arg, "--bisect")) {
2588                 read_bisect_terms(&term_bad, &term_good);
2589                 handle_refs(refs, revs, *flags, for_each_bad_bisect_ref);
2590                 handle_refs(refs, revs, *flags ^ (UNINTERESTING | BOTTOM),
2591                             for_each_good_bisect_ref);
2592                 revs->bisect = 1;
2593         } else if (!strcmp(arg, "--tags")) {
2594                 handle_refs(refs, revs, *flags, refs_for_each_tag_ref);
2595                 clear_ref_exclusion(&revs->ref_excludes);
2596         } else if (!strcmp(arg, "--remotes")) {
2597                 handle_refs(refs, revs, *flags, refs_for_each_remote_ref);
2598                 clear_ref_exclusion(&revs->ref_excludes);
2599         } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
2600                 struct all_refs_cb cb;
2601                 init_all_refs_cb(&cb, revs, *flags);
2602                 for_each_glob_ref(handle_one_ref, optarg, &cb);
2603                 clear_ref_exclusion(&revs->ref_excludes);
2604                 return argcount;
2605         } else if ((argcount = parse_long_opt("exclude", argv, &optarg))) {
2606                 add_ref_exclusion(&revs->ref_excludes, optarg);
2607                 return argcount;
2608         } else if (skip_prefix(arg, "--branches=", &optarg)) {
2609                 struct all_refs_cb cb;
2610                 init_all_refs_cb(&cb, revs, *flags);
2611                 for_each_glob_ref_in(handle_one_ref, optarg, "refs/heads/", &cb);
2612                 clear_ref_exclusion(&revs->ref_excludes);
2613         } else if (skip_prefix(arg, "--tags=", &optarg)) {
2614                 struct all_refs_cb cb;
2615                 init_all_refs_cb(&cb, revs, *flags);
2616                 for_each_glob_ref_in(handle_one_ref, optarg, "refs/tags/", &cb);
2617                 clear_ref_exclusion(&revs->ref_excludes);
2618         } else if (skip_prefix(arg, "--remotes=", &optarg)) {
2619                 struct all_refs_cb cb;
2620                 init_all_refs_cb(&cb, revs, *flags);
2621                 for_each_glob_ref_in(handle_one_ref, optarg, "refs/remotes/", &cb);
2622                 clear_ref_exclusion(&revs->ref_excludes);
2623         } else if (!strcmp(arg, "--reflog")) {
2624                 add_reflogs_to_pending(revs, *flags);
2625         } else if (!strcmp(arg, "--indexed-objects")) {
2626                 add_index_objects_to_pending(revs, *flags);
2627         } else if (!strcmp(arg, "--alternate-refs")) {
2628                 add_alternate_refs_to_pending(revs, *flags);
2629         } else if (!strcmp(arg, "--not")) {
2630                 *flags ^= UNINTERESTING | BOTTOM;
2631         } else if (!strcmp(arg, "--no-walk")) {
2632                 revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
2633         } else if (skip_prefix(arg, "--no-walk=", &optarg)) {
2634                 /*
2635                  * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2636                  * not allowed, since the argument is optional.
2637                  */
2638                 if (!strcmp(optarg, "sorted"))
2639                         revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
2640                 else if (!strcmp(optarg, "unsorted"))
2641                         revs->no_walk = REVISION_WALK_NO_WALK_UNSORTED;
2642                 else
2643                         return error("invalid argument to --no-walk");
2644         } else if (!strcmp(arg, "--do-walk")) {
2645                 revs->no_walk = 0;
2646         } else if (!strcmp(arg, "--single-worktree")) {
2647                 revs->single_worktree = 1;
2648         } else {
2649                 return 0;
2650         }
2651
2652         return 1;
2653 }
2654
2655 static void NORETURN diagnose_missing_default(const char *def)
2656 {
2657         int flags;
2658         const char *refname;
2659
2660         refname = resolve_ref_unsafe(def, 0, NULL, &flags);
2661         if (!refname || !(flags & REF_ISSYMREF) || (flags & REF_ISBROKEN))
2662                 die(_("your current branch appears to be broken"));
2663
2664         skip_prefix(refname, "refs/heads/", &refname);
2665         die(_("your current branch '%s' does not have any commits yet"),
2666             refname);
2667 }
2668
2669 /*
2670  * Parse revision information, filling in the "rev_info" structure,
2671  * and removing the used arguments from the argument list.
2672  *
2673  * Returns the number of arguments left that weren't recognized
2674  * (which are also moved to the head of the argument list)
2675  */
2676 int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
2677 {
2678         int i, flags, left, seen_dashdash, got_rev_arg = 0, revarg_opt;
2679         struct argv_array prune_data = ARGV_ARRAY_INIT;
2680         const char *submodule = NULL;
2681         int seen_end_of_options = 0;
2682
2683         if (opt)
2684                 submodule = opt->submodule;
2685
2686         /* First, search for "--" */
2687         if (opt && opt->assume_dashdash) {
2688                 seen_dashdash = 1;
2689         } else {
2690                 seen_dashdash = 0;
2691                 for (i = 1; i < argc; i++) {
2692                         const char *arg = argv[i];
2693                         if (strcmp(arg, "--"))
2694                                 continue;
2695                         argv[i] = NULL;
2696                         argc = i;
2697                         if (argv[i + 1])
2698                                 argv_array_pushv(&prune_data, argv + i + 1);
2699                         seen_dashdash = 1;
2700                         break;
2701                 }
2702         }
2703
2704         /* Second, deal with arguments and options */
2705         flags = 0;
2706         revarg_opt = opt ? opt->revarg_opt : 0;
2707         if (seen_dashdash)
2708                 revarg_opt |= REVARG_CANNOT_BE_FILENAME;
2709         for (left = i = 1; i < argc; i++) {
2710                 const char *arg = argv[i];
2711                 if (!seen_end_of_options && *arg == '-') {
2712                         int opts;
2713
2714                         opts = handle_revision_pseudo_opt(submodule,
2715                                                 revs, argc - i, argv + i,
2716                                                 &flags);
2717                         if (opts > 0) {
2718                                 i += opts - 1;
2719                                 continue;
2720                         }
2721
2722                         if (!strcmp(arg, "--stdin")) {
2723                                 if (revs->disable_stdin) {
2724                                         argv[left++] = arg;
2725                                         continue;
2726                                 }
2727                                 if (revs->read_from_stdin++)
2728                                         die("--stdin given twice?");
2729                                 read_revisions_from_stdin(revs, &prune_data);
2730                                 continue;
2731                         }
2732
2733                         if (!strcmp(arg, "--end-of-options")) {
2734                                 seen_end_of_options = 1;
2735                                 continue;
2736                         }
2737
2738                         opts = handle_revision_opt(revs, argc - i, argv + i,
2739                                                    &left, argv, opt);
2740                         if (opts > 0) {
2741                                 i += opts - 1;
2742                                 continue;
2743                         }
2744                         if (opts < 0)
2745                                 exit(128);
2746                         continue;
2747                 }
2748
2749
2750                 if (handle_revision_arg(arg, revs, flags, revarg_opt)) {
2751                         int j;
2752                         if (seen_dashdash || *arg == '^')
2753                                 die("bad revision '%s'", arg);
2754
2755                         /* If we didn't have a "--":
2756                          * (1) all filenames must exist;
2757                          * (2) all rev-args must not be interpretable
2758                          *     as a valid filename.
2759                          * but the latter we have checked in the main loop.
2760                          */
2761                         for (j = i; j < argc; j++)
2762                                 verify_filename(revs->prefix, argv[j], j == i);
2763
2764                         argv_array_pushv(&prune_data, argv + i);
2765                         break;
2766                 }
2767                 else
2768                         got_rev_arg = 1;
2769         }
2770
2771         if (prune_data.argc) {
2772                 /*
2773                  * If we need to introduce the magic "a lone ':' means no
2774                  * pathspec whatsoever", here is the place to do so.
2775                  *
2776                  * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2777                  *      prune_data.nr = 0;
2778                  *      prune_data.alloc = 0;
2779                  *      free(prune_data.path);
2780                  *      prune_data.path = NULL;
2781                  * } else {
2782                  *      terminate prune_data.alloc with NULL and
2783                  *      call init_pathspec() to set revs->prune_data here.
2784                  * }
2785                  */
2786                 parse_pathspec(&revs->prune_data, 0, 0,
2787                                revs->prefix, prune_data.argv);
2788         }
2789         argv_array_clear(&prune_data);
2790
2791         if (revs->def == NULL)
2792                 revs->def = opt ? opt->def : NULL;
2793         if (opt && opt->tweak)
2794                 opt->tweak(revs, opt);
2795         if (revs->show_merge)
2796                 prepare_show_merge(revs);
2797         if (revs->def && !revs->pending.nr && !revs->rev_input_given && !got_rev_arg) {
2798                 struct object_id oid;
2799                 struct object *object;
2800                 struct object_context oc;
2801                 if (get_oid_with_context(revs->repo, revs->def, 0, &oid, &oc))
2802                         diagnose_missing_default(revs->def);
2803                 object = get_reference(revs, revs->def, &oid, 0);
2804                 add_pending_object_with_mode(revs, object, revs->def, oc.mode);
2805         }
2806
2807         /* Did the user ask for any diff output? Run the diff! */
2808         if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
2809                 revs->diff = 1;
2810
2811         /* Pickaxe, diff-filter and rename following need diffs */
2812         if ((revs->diffopt.pickaxe_opts & DIFF_PICKAXE_KINDS_MASK) ||
2813             revs->diffopt.filter ||
2814             revs->diffopt.flags.follow_renames)
2815                 revs->diff = 1;
2816
2817         if (revs->diffopt.objfind)
2818                 revs->simplify_history = 0;
2819
2820         if (revs->line_level_traverse) {
2821                 if (want_ancestry(revs))
2822                         revs->limited = 1;
2823                 revs->topo_order = 1;
2824         }
2825
2826         if (revs->topo_order && !generation_numbers_enabled(the_repository))
2827                 revs->limited = 1;
2828
2829         if (revs->prune_data.nr) {
2830                 copy_pathspec(&revs->pruning.pathspec, &revs->prune_data);
2831                 /* Can't prune commits with rename following: the paths change.. */
2832                 if (!revs->diffopt.flags.follow_renames)
2833                         revs->prune = 1;
2834                 if (!revs->full_diff)
2835                         copy_pathspec(&revs->diffopt.pathspec,
2836                                       &revs->prune_data);
2837         }
2838         if (revs->combine_merges)
2839                 revs->ignore_merges = 0;
2840         if (revs->combined_all_paths && !revs->combine_merges)
2841                 die("--combined-all-paths makes no sense without -c or --cc");
2842
2843         revs->diffopt.abbrev = revs->abbrev;
2844
2845         diff_setup_done(&revs->diffopt);
2846
2847         grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED,
2848                                  &revs->grep_filter);
2849         if (!is_encoding_utf8(get_log_output_encoding()))
2850                 revs->grep_filter.ignore_locale = 1;
2851         compile_grep_patterns(&revs->grep_filter);
2852
2853         if (revs->reverse && revs->reflog_info)
2854                 die("cannot combine --reverse with --walk-reflogs");
2855         if (revs->reflog_info && revs->limited)
2856                 die("cannot combine --walk-reflogs with history-limiting options");
2857         if (revs->rewrite_parents && revs->children.name)
2858                 die("cannot combine --parents and --children");
2859
2860         /*
2861          * Limitations on the graph functionality
2862          */
2863         if (revs->reverse && revs->graph)
2864                 die("cannot combine --reverse with --graph");
2865
2866         if (revs->reflog_info && revs->graph)
2867                 die("cannot combine --walk-reflogs with --graph");
2868         if (revs->no_walk && revs->graph)
2869                 die("cannot combine --no-walk with --graph");
2870         if (!revs->reflog_info && revs->grep_filter.use_reflog_filter)
2871                 die("cannot use --grep-reflog without --walk-reflogs");
2872
2873         if (revs->first_parent_only && revs->bisect)
2874                 die(_("--first-parent is incompatible with --bisect"));
2875
2876         if (revs->line_level_traverse &&
2877             (revs->diffopt.output_format & ~(DIFF_FORMAT_PATCH | DIFF_FORMAT_NO_OUTPUT)))
2878                 die(_("-L does not yet support diff formats besides -p and -s"));
2879
2880         if (revs->expand_tabs_in_log < 0)
2881                 revs->expand_tabs_in_log = revs->expand_tabs_in_log_default;
2882
2883         return left;
2884 }
2885
2886 static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
2887 {
2888         struct commit_list *l = xcalloc(1, sizeof(*l));
2889
2890         l->item = child;
2891         l->next = add_decoration(&revs->children, &parent->object, l);
2892 }
2893
2894 static int remove_duplicate_parents(struct rev_info *revs, struct commit *commit)
2895 {
2896         struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
2897         struct commit_list **pp, *p;
2898         int surviving_parents;
2899
2900         /* Examine existing parents while marking ones we have seen... */
2901         pp = &commit->parents;
2902         surviving_parents = 0;
2903         while ((p = *pp) != NULL) {
2904                 struct commit *parent = p->item;
2905                 if (parent->object.flags & TMP_MARK) {
2906                         *pp = p->next;
2907                         if (ts)
2908                                 compact_treesame(revs, commit, surviving_parents);
2909                         continue;
2910                 }
2911                 parent->object.flags |= TMP_MARK;
2912                 surviving_parents++;
2913                 pp = &p->next;
2914         }
2915         /* clear the temporary mark */
2916         for (p = commit->parents; p; p = p->next) {
2917                 p->item->object.flags &= ~TMP_MARK;
2918         }
2919         /* no update_treesame() - removing duplicates can't affect TREESAME */
2920         return surviving_parents;
2921 }
2922
2923 struct merge_simplify_state {
2924         struct commit *simplified;
2925 };
2926
2927 static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
2928 {
2929         struct merge_simplify_state *st;
2930
2931         st = lookup_decoration(&revs->merge_simplification, &commit->object);
2932         if (!st) {
2933                 st = xcalloc(1, sizeof(*st));
2934                 add_decoration(&revs->merge_simplification, &commit->object, st);
2935         }
2936         return st;
2937 }
2938
2939 static int mark_redundant_parents(struct commit *commit)
2940 {
2941         struct commit_list *h = reduce_heads(commit->parents);
2942         int i = 0, marked = 0;
2943         struct commit_list *po, *pn;
2944
2945         /* Want these for sanity-checking only */
2946         int orig_cnt = commit_list_count(commit->parents);
2947         int cnt = commit_list_count(h);
2948
2949         /*
2950          * Not ready to remove items yet, just mark them for now, based
2951          * on the output of reduce_heads(). reduce_heads outputs the reduced
2952          * set in its original order, so this isn't too hard.
2953          */
2954         po = commit->parents;
2955         pn = h;
2956         while (po) {
2957                 if (pn && po->item == pn->item) {
2958                         pn = pn->next;
2959                         i++;
2960                 } else {
2961                         po->item->object.flags |= TMP_MARK;
2962                         marked++;
2963                 }
2964                 po=po->next;
2965         }
2966
2967         if (i != cnt || cnt+marked != orig_cnt)
2968                 die("mark_redundant_parents %d %d %d %d", orig_cnt, cnt, i, marked);
2969
2970         free_commit_list(h);
2971
2972         return marked;
2973 }
2974
2975 static int mark_treesame_root_parents(struct commit *commit)
2976 {
2977         struct commit_list *p;
2978         int marked = 0;
2979
2980         for (p = commit->parents; p; p = p->next) {
2981                 struct commit *parent = p->item;
2982                 if (!parent->parents && (parent->object.flags & TREESAME)) {
2983                         parent->object.flags |= TMP_MARK;
2984                         marked++;
2985                 }
2986         }
2987
2988         return marked;
2989 }
2990
2991 /*
2992  * Awkward naming - this means one parent we are TREESAME to.
2993  * cf mark_treesame_root_parents: root parents that are TREESAME (to an
2994  * empty tree). Better name suggestions?
2995  */
2996 static int leave_one_treesame_to_parent(struct rev_info *revs, struct commit *commit)
2997 {
2998         struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
2999         struct commit *unmarked = NULL, *marked = NULL;
3000         struct commit_list *p;
3001         unsigned n;
3002
3003         for (p = commit->parents, n = 0; p; p = p->next, n++) {
3004                 if (ts->treesame[n]) {
3005                         if (p->item->object.flags & TMP_MARK) {
3006                                 if (!marked)
3007                                         marked = p->item;
3008                         } else {
3009                                 if (!unmarked) {
3010                                         unmarked = p->item;
3011                                         break;
3012                                 }
3013                         }
3014                 }
3015         }
3016
3017         /*
3018          * If we are TREESAME to a marked-for-deletion parent, but not to any
3019          * unmarked parents, unmark the first TREESAME parent. This is the
3020          * parent that the default simplify_history==1 scan would have followed,
3021          * and it doesn't make sense to omit that path when asking for a
3022          * simplified full history. Retaining it improves the chances of
3023          * understanding odd missed merges that took an old version of a file.
3024          *
3025          * Example:
3026          *
3027          *   I--------*X       A modified the file, but mainline merge X used
3028          *    \       /        "-s ours", so took the version from I. X is
3029          *     `-*A--'         TREESAME to I and !TREESAME to A.
3030          *
3031          * Default log from X would produce "I". Without this check,
3032          * --full-history --simplify-merges would produce "I-A-X", showing
3033          * the merge commit X and that it changed A, but not making clear that
3034          * it had just taken the I version. With this check, the topology above
3035          * is retained.
3036          *
3037          * Note that it is possible that the simplification chooses a different
3038          * TREESAME parent from the default, in which case this test doesn't
3039          * activate, and we _do_ drop the default parent. Example:
3040          *
3041          *   I------X         A modified the file, but it was reverted in B,
3042          *    \    /          meaning mainline merge X is TREESAME to both
3043          *    *A-*B           parents.
3044          *
3045          * Default log would produce "I" by following the first parent;
3046          * --full-history --simplify-merges will produce "I-A-B". But this is a
3047          * reasonable result - it presents a logical full history leading from
3048          * I to X, and X is not an important merge.
3049          */
3050         if (!unmarked && marked) {
3051                 marked->object.flags &= ~TMP_MARK;
3052                 return 1;
3053         }
3054
3055         return 0;
3056 }
3057
3058 static int remove_marked_parents(struct rev_info *revs, struct commit *commit)
3059 {
3060         struct commit_list **pp, *p;
3061         int nth_parent, removed = 0;
3062
3063         pp = &commit->parents;
3064         nth_parent = 0;
3065         while ((p = *pp) != NULL) {
3066                 struct commit *parent = p->item;
3067                 if (parent->object.flags & TMP_MARK) {
3068                         parent->object.flags &= ~TMP_MARK;
3069                         *pp = p->next;
3070                         free(p);
3071                         removed++;
3072                         compact_treesame(revs, commit, nth_parent);
3073                         continue;
3074                 }
3075                 pp = &p->next;
3076                 nth_parent++;
3077         }
3078
3079         /* Removing parents can only increase TREESAMEness */
3080         if (removed && !(commit->object.flags & TREESAME))
3081                 update_treesame(revs, commit);
3082
3083         return nth_parent;
3084 }
3085
3086 static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
3087 {
3088         struct commit_list *p;
3089         struct commit *parent;
3090         struct merge_simplify_state *st, *pst;
3091         int cnt;
3092
3093         st = locate_simplify_state(revs, commit);
3094
3095         /*
3096          * Have we handled this one?
3097          */
3098         if (st->simplified)
3099                 return tail;
3100
3101         /*
3102          * An UNINTERESTING commit simplifies to itself, so does a
3103          * root commit.  We do not rewrite parents of such commit
3104          * anyway.
3105          */
3106         if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
3107                 st->simplified = commit;
3108                 return tail;
3109         }
3110
3111         /*
3112          * Do we know what commit all of our parents that matter
3113          * should be rewritten to?  Otherwise we are not ready to
3114          * rewrite this one yet.
3115          */
3116         for (cnt = 0, p = commit->parents; p; p = p->next) {
3117                 pst = locate_simplify_state(revs, p->item);
3118                 if (!pst->simplified) {
3119                         tail = &commit_list_insert(p->item, tail)->next;
3120                         cnt++;
3121                 }
3122                 if (revs->first_parent_only)
3123                         break;
3124         }
3125         if (cnt) {
3126                 tail = &commit_list_insert(commit, tail)->next;
3127                 return tail;
3128         }
3129
3130         /*
3131          * Rewrite our list of parents. Note that this cannot
3132          * affect our TREESAME flags in any way - a commit is
3133          * always TREESAME to its simplification.
3134          */
3135         for (p = commit->parents; p; p = p->next) {
3136                 pst = locate_simplify_state(revs, p->item);
3137                 p->item = pst->simplified;
3138                 if (revs->first_parent_only)
3139                         break;
3140         }
3141
3142         if (revs->first_parent_only)
3143                 cnt = 1;
3144         else
3145                 cnt = remove_duplicate_parents(revs, commit);
3146
3147         /*
3148          * It is possible that we are a merge and one side branch
3149          * does not have any commit that touches the given paths;
3150          * in such a case, the immediate parent from that branch
3151          * will be rewritten to be the merge base.
3152          *
3153          *      o----X          X: the commit we are looking at;
3154          *     /    /           o: a commit that touches the paths;
3155          * ---o----'
3156          *
3157          * Further, a merge of an independent branch that doesn't
3158          * touch the path will reduce to a treesame root parent:
3159          *
3160          *  ----o----X          X: the commit we are looking at;
3161          *          /           o: a commit that touches the paths;
3162          *         r            r: a root commit not touching the paths
3163          *
3164          * Detect and simplify both cases.
3165          */
3166         if (1 < cnt) {
3167                 int marked = mark_redundant_parents(commit);
3168                 marked += mark_treesame_root_parents(commit);
3169                 if (marked)
3170                         marked -= leave_one_treesame_to_parent(revs, commit);
3171                 if (marked)
3172                         cnt = remove_marked_parents(revs, commit);
3173         }
3174
3175         /*
3176          * A commit simplifies to itself if it is a root, if it is
3177          * UNINTERESTING, if it touches the given paths, or if it is a
3178          * merge and its parents don't simplify to one relevant commit
3179          * (the first two cases are already handled at the beginning of
3180          * this function).
3181          *
3182          * Otherwise, it simplifies to what its sole relevant parent
3183          * simplifies to.
3184          */
3185         if (!cnt ||
3186             (commit->object.flags & UNINTERESTING) ||
3187             !(commit->object.flags & TREESAME) ||
3188             (parent = one_relevant_parent(revs, commit->parents)) == NULL ||
3189             (revs->show_pulls && (commit->object.flags & PULL_MERGE)))
3190                 st->simplified = commit;
3191         else {
3192                 pst = locate_simplify_state(revs, parent);
3193                 st->simplified = pst->simplified;
3194         }
3195         return tail;
3196 }
3197
3198 static void simplify_merges(struct rev_info *revs)
3199 {
3200         struct commit_list *list, *next;
3201         struct commit_list *yet_to_do, **tail;
3202         struct commit *commit;
3203
3204         if (!revs->prune)
3205                 return;
3206
3207         /* feed the list reversed */
3208         yet_to_do = NULL;
3209         for (list = revs->commits; list; list = next) {
3210                 commit = list->item;
3211                 next = list->next;
3212                 /*
3213                  * Do not free(list) here yet; the original list
3214                  * is used later in this function.
3215                  */
3216                 commit_list_insert(commit, &yet_to_do);
3217         }
3218         while (yet_to_do) {
3219                 list = yet_to_do;
3220                 yet_to_do = NULL;
3221                 tail = &yet_to_do;
3222                 while (list) {
3223                         commit = pop_commit(&list);
3224                         tail = simplify_one(revs, commit, tail);
3225                 }
3226         }
3227
3228         /* clean up the result, removing the simplified ones */
3229         list = revs->commits;
3230         revs->commits = NULL;
3231         tail = &revs->commits;
3232         while (list) {
3233                 struct merge_simplify_state *st;
3234
3235                 commit = pop_commit(&list);
3236                 st = locate_simplify_state(revs, commit);
3237                 if (st->simplified == commit)
3238                         tail = &commit_list_insert(commit, tail)->next;
3239         }
3240 }
3241
3242 static void set_children(struct rev_info *revs)
3243 {
3244         struct commit_list *l;
3245         for (l = revs->commits; l; l = l->next) {
3246                 struct commit *commit = l->item;
3247                 struct commit_list *p;
3248
3249                 for (p = commit->parents; p; p = p->next)
3250                         add_child(revs, p->item, commit);
3251         }
3252 }
3253
3254 void reset_revision_walk(void)
3255 {
3256         clear_object_flags(SEEN | ADDED | SHOWN | TOPO_WALK_EXPLORED | TOPO_WALK_INDEGREE);
3257 }
3258
3259 static int mark_uninteresting(const struct object_id *oid,
3260                               struct packed_git *pack,
3261                               uint32_t pos,
3262                               void *cb)
3263 {
3264         struct rev_info *revs = cb;
3265         struct object *o = parse_object(revs->repo, oid);
3266         o->flags |= UNINTERESTING | SEEN;
3267         return 0;
3268 }
3269
3270 define_commit_slab(indegree_slab, int);
3271 define_commit_slab(author_date_slab, timestamp_t);
3272
3273 struct topo_walk_info {
3274         uint32_t min_generation;
3275         struct prio_queue explore_queue;
3276         struct prio_queue indegree_queue;
3277         struct prio_queue topo_queue;
3278         struct indegree_slab indegree;
3279         struct author_date_slab author_date;
3280 };
3281
3282 static inline void test_flag_and_insert(struct prio_queue *q, struct commit *c, int flag)
3283 {
3284         if (c->object.flags & flag)
3285                 return;
3286
3287         c->object.flags |= flag;
3288         prio_queue_put(q, c);
3289 }
3290
3291 static void explore_walk_step(struct rev_info *revs)
3292 {
3293         struct topo_walk_info *info = revs->topo_walk_info;
3294         struct commit_list *p;
3295         struct commit *c = prio_queue_get(&info->explore_queue);
3296
3297         if (!c)
3298                 return;
3299
3300         if (parse_commit_gently(c, 1) < 0)
3301                 return;
3302
3303         if (revs->sort_order == REV_SORT_BY_AUTHOR_DATE)
3304                 record_author_date(&info->author_date, c);
3305
3306         if (revs->max_age != -1 && (c->date < revs->max_age))
3307                 c->object.flags |= UNINTERESTING;
3308
3309         if (process_parents(revs, c, NULL, NULL) < 0)
3310                 return;
3311
3312         if (c->object.flags & UNINTERESTING)
3313                 mark_parents_uninteresting(c);
3314
3315         for (p = c->parents; p; p = p->next)
3316                 test_flag_and_insert(&info->explore_queue, p->item, TOPO_WALK_EXPLORED);
3317 }
3318
3319 static void explore_to_depth(struct rev_info *revs,
3320                              uint32_t gen_cutoff)
3321 {
3322         struct topo_walk_info *info = revs->topo_walk_info;
3323         struct commit *c;
3324         while ((c = prio_queue_peek(&info->explore_queue)) &&
3325                commit_graph_generation(c) >= gen_cutoff)
3326                 explore_walk_step(revs);
3327 }
3328
3329 static void indegree_walk_step(struct rev_info *revs)
3330 {
3331         struct commit_list *p;
3332         struct topo_walk_info *info = revs->topo_walk_info;
3333         struct commit *c = prio_queue_get(&info->indegree_queue);
3334
3335         if (!c)
3336                 return;
3337
3338         if (parse_commit_gently(c, 1) < 0)
3339                 return;
3340
3341         explore_to_depth(revs, commit_graph_generation(c));
3342
3343         for (p = c->parents; p; p = p->next) {
3344                 struct commit *parent = p->item;
3345                 int *pi = indegree_slab_at(&info->indegree, parent);
3346
3347                 if (*pi)
3348                         (*pi)++;
3349                 else
3350                         *pi = 2;
3351
3352                 test_flag_and_insert(&info->indegree_queue, parent, TOPO_WALK_INDEGREE);
3353
3354                 if (revs->first_parent_only)
3355                         return;
3356         }
3357 }
3358
3359 static void compute_indegrees_to_depth(struct rev_info *revs,
3360                                        uint32_t gen_cutoff)
3361 {
3362         struct topo_walk_info *info = revs->topo_walk_info;
3363         struct commit *c;
3364         while ((c = prio_queue_peek(&info->indegree_queue)) &&
3365                commit_graph_generation(c) >= gen_cutoff)
3366                 indegree_walk_step(revs);
3367 }
3368
3369 static void reset_topo_walk(struct rev_info *revs)
3370 {
3371         struct topo_walk_info *info = revs->topo_walk_info;
3372
3373         clear_prio_queue(&info->explore_queue);
3374         clear_prio_queue(&info->indegree_queue);
3375         clear_prio_queue(&info->topo_queue);
3376         clear_indegree_slab(&info->indegree);
3377         clear_author_date_slab(&info->author_date);
3378
3379         FREE_AND_NULL(revs->topo_walk_info);
3380 }
3381
3382 static void init_topo_walk(struct rev_info *revs)
3383 {
3384         struct topo_walk_info *info;
3385         struct commit_list *list;
3386         if (revs->topo_walk_info)
3387                 reset_topo_walk(revs);
3388
3389         revs->topo_walk_info = xmalloc(sizeof(struct topo_walk_info));
3390         info = revs->topo_walk_info;
3391         memset(info, 0, sizeof(struct topo_walk_info));
3392
3393         init_indegree_slab(&info->indegree);
3394         memset(&info->explore_queue, 0, sizeof(info->explore_queue));
3395         memset(&info->indegree_queue, 0, sizeof(info->indegree_queue));
3396         memset(&info->topo_queue, 0, sizeof(info->topo_queue));
3397
3398         switch (revs->sort_order) {
3399         default: /* REV_SORT_IN_GRAPH_ORDER */
3400                 info->topo_queue.compare = NULL;
3401                 break;
3402         case REV_SORT_BY_COMMIT_DATE:
3403                 info->topo_queue.compare = compare_commits_by_commit_date;
3404                 break;
3405         case REV_SORT_BY_AUTHOR_DATE:
3406                 init_author_date_slab(&info->author_date);
3407                 info->topo_queue.compare = compare_commits_by_author_date;
3408                 info->topo_queue.cb_data = &info->author_date;
3409                 break;
3410         }
3411
3412         info->explore_queue.compare = compare_commits_by_gen_then_commit_date;
3413         info->indegree_queue.compare = compare_commits_by_gen_then_commit_date;
3414
3415         info->min_generation = GENERATION_NUMBER_INFINITY;
3416         for (list = revs->commits; list; list = list->next) {
3417                 struct commit *c = list->item;
3418                 uint32_t generation;
3419
3420                 if (parse_commit_gently(c, 1))
3421                         continue;
3422
3423                 test_flag_and_insert(&info->explore_queue, c, TOPO_WALK_EXPLORED);
3424                 test_flag_and_insert(&info->indegree_queue, c, TOPO_WALK_INDEGREE);
3425
3426                 generation = commit_graph_generation(c);
3427                 if (generation < info->min_generation)
3428                         info->min_generation = generation;
3429
3430                 *(indegree_slab_at(&info->indegree, c)) = 1;
3431
3432                 if (revs->sort_order == REV_SORT_BY_AUTHOR_DATE)
3433                         record_author_date(&info->author_date, c);
3434         }
3435         compute_indegrees_to_depth(revs, info->min_generation);
3436
3437         for (list = revs->commits; list; list = list->next) {
3438                 struct commit *c = list->item;
3439
3440                 if (*(indegree_slab_at(&info->indegree, c)) == 1)
3441                         prio_queue_put(&info->topo_queue, c);
3442         }
3443
3444         /*
3445          * This is unfortunate; the initial tips need to be shown
3446          * in the order given from the revision traversal machinery.
3447          */
3448         if (revs->sort_order == REV_SORT_IN_GRAPH_ORDER)
3449                 prio_queue_reverse(&info->topo_queue);
3450 }
3451
3452 static struct commit *next_topo_commit(struct rev_info *revs)
3453 {
3454         struct commit *c;
3455         struct topo_walk_info *info = revs->topo_walk_info;
3456
3457         /* pop next off of topo_queue */
3458         c = prio_queue_get(&info->topo_queue);
3459
3460         if (c)
3461                 *(indegree_slab_at(&info->indegree, c)) = 0;
3462
3463         return c;
3464 }
3465
3466 static void expand_topo_walk(struct rev_info *revs, struct commit *commit)
3467 {
3468         struct commit_list *p;
3469         struct topo_walk_info *info = revs->topo_walk_info;
3470         if (process_parents(revs, commit, NULL, NULL) < 0) {
3471                 if (!revs->ignore_missing_links)
3472                         die("Failed to traverse parents of commit %s",
3473                             oid_to_hex(&commit->object.oid));
3474         }
3475
3476         for (p = commit->parents; p; p = p->next) {
3477                 struct commit *parent = p->item;
3478                 int *pi;
3479                 uint32_t generation;
3480
3481                 if (parent->object.flags & UNINTERESTING)
3482                         continue;
3483
3484                 if (parse_commit_gently(parent, 1) < 0)
3485                         continue;
3486
3487                 generation = commit_graph_generation(parent);
3488                 if (generation < info->min_generation) {
3489                         info->min_generation = generation;
3490                         compute_indegrees_to_depth(revs, info->min_generation);
3491                 }
3492
3493                 pi = indegree_slab_at(&info->indegree, parent);
3494
3495                 (*pi)--;
3496                 if (*pi == 1)
3497                         prio_queue_put(&info->topo_queue, parent);
3498
3499                 if (revs->first_parent_only)
3500                         return;
3501         }
3502 }
3503
3504 int prepare_revision_walk(struct rev_info *revs)
3505 {
3506         int i;
3507         struct object_array old_pending;
3508         struct commit_list **next = &revs->commits;
3509
3510         memcpy(&old_pending, &revs->pending, sizeof(old_pending));
3511         revs->pending.nr = 0;
3512         revs->pending.alloc = 0;
3513         revs->pending.objects = NULL;
3514         for (i = 0; i < old_pending.nr; i++) {
3515                 struct object_array_entry *e = old_pending.objects + i;
3516                 struct commit *commit = handle_commit(revs, e);
3517                 if (commit) {
3518                         if (!(commit->object.flags & SEEN)) {
3519                                 commit->object.flags |= SEEN;
3520                                 next = commit_list_append(commit, next);
3521                         }
3522                 }
3523         }
3524         object_array_clear(&old_pending);
3525
3526         /* Signal whether we need per-parent treesame decoration */
3527         if (revs->simplify_merges ||
3528             (revs->limited && limiting_can_increase_treesame(revs)))
3529                 revs->treesame.name = "treesame";
3530
3531         if (revs->exclude_promisor_objects) {
3532                 for_each_packed_object(mark_uninteresting, revs,
3533                                        FOR_EACH_OBJECT_PROMISOR_ONLY);
3534         }
3535
3536         if (!revs->reflog_info)
3537                 prepare_to_use_bloom_filter(revs);
3538         if (revs->no_walk != REVISION_WALK_NO_WALK_UNSORTED)
3539                 commit_list_sort_by_date(&revs->commits);
3540         if (revs->no_walk)
3541                 return 0;
3542         if (revs->limited) {
3543                 if (limit_list(revs) < 0)
3544                         return -1;
3545                 if (revs->topo_order)
3546                         sort_in_topological_order(&revs->commits, revs->sort_order);
3547         } else if (revs->topo_order)
3548                 init_topo_walk(revs);
3549         if (revs->line_level_traverse && want_ancestry(revs))
3550                 /*
3551                  * At the moment we can only do line-level log with parent
3552                  * rewriting by performing this expensive pre-filtering step.
3553                  * If parent rewriting is not requested, then we rather
3554                  * perform the line-level log filtering during the regular
3555                  * history traversal.
3556                  */
3557                 line_log_filter(revs);
3558         if (revs->simplify_merges)
3559                 simplify_merges(revs);
3560         if (revs->children.name)
3561                 set_children(revs);
3562
3563         return 0;
3564 }
3565
3566 static enum rewrite_result rewrite_one_1(struct rev_info *revs,
3567                                          struct commit **pp,
3568                                          struct prio_queue *queue)
3569 {
3570         for (;;) {
3571                 struct commit *p = *pp;
3572                 if (!revs->limited)
3573                         if (process_parents(revs, p, NULL, queue) < 0)
3574                                 return rewrite_one_error;
3575                 if (p->object.flags & UNINTERESTING)
3576                         return rewrite_one_ok;
3577                 if (!(p->object.flags & TREESAME))
3578                         return rewrite_one_ok;
3579                 if (!p->parents)
3580                         return rewrite_one_noparents;
3581                 if ((p = one_relevant_parent(revs, p->parents)) == NULL)
3582                         return rewrite_one_ok;
3583                 *pp = p;
3584         }
3585 }
3586
3587 static void merge_queue_into_list(struct prio_queue *q, struct commit_list **list)
3588 {
3589         while (q->nr) {
3590                 struct commit *item = prio_queue_peek(q);
3591                 struct commit_list *p = *list;
3592
3593                 if (p && p->item->date >= item->date)
3594                         list = &p->next;
3595                 else {
3596                         p = commit_list_insert(item, list);
3597                         list = &p->next; /* skip newly added item */
3598                         prio_queue_get(q); /* pop item */
3599                 }
3600         }
3601 }
3602
3603 static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
3604 {
3605         struct prio_queue queue = { compare_commits_by_commit_date };
3606         enum rewrite_result ret = rewrite_one_1(revs, pp, &queue);
3607         merge_queue_into_list(&queue, &revs->commits);
3608         clear_prio_queue(&queue);
3609         return ret;
3610 }
3611
3612 int rewrite_parents(struct rev_info *revs, struct commit *commit,
3613         rewrite_parent_fn_t rewrite_parent)
3614 {
3615         struct commit_list **pp = &commit->parents;
3616         while (*pp) {
3617                 struct commit_list *parent = *pp;
3618                 switch (rewrite_parent(revs, &parent->item)) {
3619                 case rewrite_one_ok:
3620                         break;
3621                 case rewrite_one_noparents:
3622                         *pp = parent->next;
3623                         continue;
3624                 case rewrite_one_error:
3625                         return -1;
3626                 }
3627                 pp = &parent->next;
3628         }
3629         remove_duplicate_parents(revs, commit);
3630         return 0;
3631 }
3632
3633 static int commit_rewrite_person(struct strbuf *buf, const char *what, struct string_list *mailmap)
3634 {
3635         char *person, *endp;
3636         size_t len, namelen, maillen;
3637         const char *name;
3638         const char *mail;
3639         struct ident_split ident;
3640
3641         person = strstr(buf->buf, what);
3642         if (!person)
3643                 return 0;
3644
3645         person += strlen(what);
3646         endp = strchr(person, '\n');
3647         if (!endp)
3648                 return 0;
3649
3650         len = endp - person;
3651
3652         if (split_ident_line(&ident, person, len))
3653                 return 0;
3654
3655         mail = ident.mail_begin;
3656         maillen = ident.mail_end - ident.mail_begin;
3657         name = ident.name_begin;
3658         namelen = ident.name_end - ident.name_begin;
3659
3660         if (map_user(mailmap, &mail, &maillen, &name, &namelen)) {
3661                 struct strbuf namemail = STRBUF_INIT;
3662
3663                 strbuf_addf(&namemail, "%.*s <%.*s>",
3664                             (int)namelen, name, (int)maillen, mail);
3665
3666                 strbuf_splice(buf, ident.name_begin - buf->buf,
3667                               ident.mail_end - ident.name_begin + 1,
3668                               namemail.buf, namemail.len);
3669
3670                 strbuf_release(&namemail);
3671
3672                 return 1;
3673         }
3674
3675         return 0;
3676 }
3677
3678 static int commit_match(struct commit *commit, struct rev_info *opt)
3679 {
3680         int retval;
3681         const char *encoding;
3682         const char *message;
3683         struct strbuf buf = STRBUF_INIT;
3684
3685         if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
3686                 return 1;
3687
3688         /* Prepend "fake" headers as needed */
3689         if (opt->grep_filter.use_reflog_filter) {
3690                 strbuf_addstr(&buf, "reflog ");
3691                 get_reflog_message(&buf, opt->reflog_info);
3692                 strbuf_addch(&buf, '\n');
3693         }
3694
3695         /*
3696          * We grep in the user's output encoding, under the assumption that it
3697          * is the encoding they are most likely to write their grep pattern
3698          * for. In addition, it means we will match the "notes" encoding below,
3699          * so we will not end up with a buffer that has two different encodings
3700          * in it.
3701          */
3702         encoding = get_log_output_encoding();
3703         message = logmsg_reencode(commit, NULL, encoding);
3704
3705         /* Copy the commit to temporary if we are using "fake" headers */
3706         if (buf.len)
3707                 strbuf_addstr(&buf, message);
3708
3709         if (opt->grep_filter.header_list && opt->mailmap) {
3710                 if (!buf.len)
3711                         strbuf_addstr(&buf, message);
3712
3713                 commit_rewrite_person(&buf, "\nauthor ", opt->mailmap);
3714                 commit_rewrite_person(&buf, "\ncommitter ", opt->mailmap);
3715         }
3716
3717         /* Append "fake" message parts as needed */
3718         if (opt->show_notes) {
3719                 if (!buf.len)
3720                         strbuf_addstr(&buf, message);
3721                 format_display_notes(&commit->object.oid, &buf, encoding, 1);
3722         }
3723
3724         /*
3725          * Find either in the original commit message, or in the temporary.
3726          * Note that we cast away the constness of "message" here. It is
3727          * const because it may come from the cached commit buffer. That's OK,
3728          * because we know that it is modifiable heap memory, and that while
3729          * grep_buffer may modify it for speed, it will restore any
3730          * changes before returning.
3731          */
3732         if (buf.len)
3733                 retval = grep_buffer(&opt->grep_filter, buf.buf, buf.len);
3734         else
3735                 retval = grep_buffer(&opt->grep_filter,
3736                                      (char *)message, strlen(message));
3737         strbuf_release(&buf);
3738         unuse_commit_buffer(commit, message);
3739         return opt->invert_grep ? !retval : retval;
3740 }
3741
3742 static inline int want_ancestry(const struct rev_info *revs)
3743 {
3744         return (revs->rewrite_parents || revs->children.name);
3745 }
3746
3747 /*
3748  * Return a timestamp to be used for --since/--until comparisons for this
3749  * commit, based on the revision options.
3750  */
3751 static timestamp_t comparison_date(const struct rev_info *revs,
3752                                    struct commit *commit)
3753 {
3754         return revs->reflog_info ?
3755                 get_reflog_timestamp(revs->reflog_info) :
3756                 commit->date;
3757 }
3758
3759 enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
3760 {
3761         if (commit->object.flags & SHOWN)
3762                 return commit_ignore;
3763         if (revs->unpacked && has_object_pack(&commit->object.oid))
3764                 return commit_ignore;
3765         if (commit->object.flags & UNINTERESTING)
3766                 return commit_ignore;
3767         if (revs->line_level_traverse && !want_ancestry(revs)) {
3768                 /*
3769                  * In case of line-level log with parent rewriting
3770                  * prepare_revision_walk() already took care of all line-level
3771                  * log filtering, and there is nothing left to do here.
3772                  *
3773                  * If parent rewriting was not requested, then this is the
3774                  * place to perform the line-level log filtering.  Notably,
3775                  * this check, though expensive, must come before the other,
3776                  * cheaper filtering conditions, because the tracked line
3777                  * ranges must be adjusted even when the commit will end up
3778                  * being ignored based on other conditions.
3779                  */
3780                 if (!line_log_process_ranges_arbitrary_commit(revs, commit))
3781                         return commit_ignore;
3782         }
3783         if (revs->min_age != -1 &&
3784             comparison_date(revs, commit) > revs->min_age)
3785                         return commit_ignore;
3786         if (revs->min_parents || (revs->max_parents >= 0)) {
3787                 int n = commit_list_count(commit->parents);
3788                 if ((n < revs->min_parents) ||
3789                     ((revs->max_parents >= 0) && (n > revs->max_parents)))
3790                         return commit_ignore;
3791         }
3792         if (!commit_match(commit, revs))
3793                 return commit_ignore;
3794         if (revs->prune && revs->dense) {
3795                 /* Commit without changes? */
3796                 if (commit->object.flags & TREESAME) {
3797                         int n;
3798                         struct commit_list *p;
3799                         /* drop merges unless we want parenthood */
3800                         if (!want_ancestry(revs))
3801                                 return commit_ignore;
3802
3803                         if (revs->show_pulls && (commit->object.flags & PULL_MERGE))
3804                                 return commit_show;
3805
3806                         /*
3807                          * If we want ancestry, then need to keep any merges
3808                          * between relevant commits to tie together topology.
3809                          * For consistency with TREESAME and simplification
3810                          * use "relevant" here rather than just INTERESTING,
3811                          * to treat bottom commit(s) as part of the topology.
3812                          */
3813                         for (n = 0, p = commit->parents; p; p = p->next)
3814                                 if (relevant_commit(p->item))
3815                                         if (++n >= 2)
3816                                                 return commit_show;
3817                         return commit_ignore;
3818                 }
3819         }
3820         return commit_show;
3821 }
3822
3823 define_commit_slab(saved_parents, struct commit_list *);
3824
3825 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
3826
3827 /*
3828  * You may only call save_parents() once per commit (this is checked
3829  * for non-root commits).
3830  */
3831 static void save_parents(struct rev_info *revs, struct commit *commit)
3832 {
3833         struct commit_list **pp;
3834
3835         if (!revs->saved_parents_slab) {
3836                 revs->saved_parents_slab = xmalloc(sizeof(struct saved_parents));
3837                 init_saved_parents(revs->saved_parents_slab);
3838         }
3839
3840         pp = saved_parents_at(revs->saved_parents_slab, commit);
3841
3842         /*
3843          * When walking with reflogs, we may visit the same commit
3844          * several times: once for each appearance in the reflog.
3845          *
3846          * In this case, save_parents() will be called multiple times.
3847          * We want to keep only the first set of parents.  We need to
3848          * store a sentinel value for an empty (i.e., NULL) parent
3849          * list to distinguish it from a not-yet-saved list, however.
3850          */
3851         if (*pp)
3852                 return;
3853         if (commit->parents)
3854                 *pp = copy_commit_list(commit->parents);
3855         else
3856                 *pp = EMPTY_PARENT_LIST;
3857 }
3858
3859 static void free_saved_parents(struct rev_info *revs)
3860 {
3861         if (revs->saved_parents_slab)
3862                 clear_saved_parents(revs->saved_parents_slab);
3863 }
3864
3865 struct commit_list *get_saved_parents(struct rev_info *revs, const struct commit *commit)
3866 {
3867         struct commit_list *parents;
3868
3869         if (!revs->saved_parents_slab)
3870                 return commit->parents;
3871
3872         parents = *saved_parents_at(revs->saved_parents_slab, commit);
3873         if (parents == EMPTY_PARENT_LIST)
3874                 return NULL;
3875         return parents;
3876 }
3877
3878 enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
3879 {
3880         enum commit_action action = get_commit_action(revs, commit);
3881
3882         if (action == commit_show &&
3883             revs->prune && revs->dense && want_ancestry(revs)) {
3884                 /*
3885                  * --full-diff on simplified parents is no good: it
3886                  * will show spurious changes from the commits that
3887                  * were elided.  So we save the parents on the side
3888                  * when --full-diff is in effect.
3889                  */
3890                 if (revs->full_diff)
3891                         save_parents(revs, commit);
3892                 if (rewrite_parents(revs, commit, rewrite_one) < 0)
3893                         return commit_error;
3894         }
3895         return action;
3896 }
3897
3898 static void track_linear(struct rev_info *revs, struct commit *commit)
3899 {
3900         if (revs->track_first_time) {
3901                 revs->linear = 1;
3902                 revs->track_first_time = 0;
3903         } else {
3904                 struct commit_list *p;
3905                 for (p = revs->previous_parents; p; p = p->next)
3906                         if (p->item == NULL || /* first commit */
3907                             oideq(&p->item->object.oid, &commit->object.oid))
3908                                 break;
3909                 revs->linear = p != NULL;
3910         }
3911         if (revs->reverse) {
3912                 if (revs->linear)
3913                         commit->object.flags |= TRACK_LINEAR;
3914         }
3915         free_commit_list(revs->previous_parents);
3916         revs->previous_parents = copy_commit_list(commit->parents);
3917 }
3918
3919 static struct commit *get_revision_1(struct rev_info *revs)
3920 {
3921         while (1) {
3922                 struct commit *commit;
3923
3924                 if (revs->reflog_info)
3925                         commit = next_reflog_entry(revs->reflog_info);
3926                 else if (revs->topo_walk_info)
3927                         commit = next_topo_commit(revs);
3928                 else
3929                         commit = pop_commit(&revs->commits);
3930
3931                 if (!commit)
3932                         return NULL;
3933
3934                 if (revs->reflog_info)
3935                         commit->object.flags &= ~(ADDED | SEEN | SHOWN);
3936
3937                 /*
3938                  * If we haven't done the list limiting, we need to look at
3939                  * the parents here. We also need to do the date-based limiting
3940                  * that we'd otherwise have done in limit_list().
3941                  */
3942                 if (!revs->limited) {
3943                         if (revs->max_age != -1 &&
3944                             comparison_date(revs, commit) < revs->max_age)
3945                                 continue;
3946
3947                         if (revs->reflog_info)
3948                                 try_to_simplify_commit(revs, commit);
3949                         else if (revs->topo_walk_info)
3950                                 expand_topo_walk(revs, commit);
3951                         else if (process_parents(revs, commit, &revs->commits, NULL) < 0) {
3952                                 if (!revs->ignore_missing_links)
3953                                         die("Failed to traverse parents of commit %s",
3954                                                 oid_to_hex(&commit->object.oid));
3955                         }
3956                 }
3957
3958                 switch (simplify_commit(revs, commit)) {
3959                 case commit_ignore:
3960                         continue;
3961                 case commit_error:
3962                         die("Failed to simplify parents of commit %s",
3963                             oid_to_hex(&commit->object.oid));
3964                 default:
3965                         if (revs->track_linear)
3966                                 track_linear(revs, commit);
3967                         return commit;
3968                 }
3969         }
3970 }
3971
3972 /*
3973  * Return true for entries that have not yet been shown.  (This is an
3974  * object_array_each_func_t.)
3975  */
3976 static int entry_unshown(struct object_array_entry *entry, void *cb_data_unused)
3977 {
3978         return !(entry->item->flags & SHOWN);
3979 }
3980
3981 /*
3982  * If array is on the verge of a realloc, garbage-collect any entries
3983  * that have already been shown to try to free up some space.
3984  */
3985 static void gc_boundary(struct object_array *array)
3986 {
3987         if (array->nr == array->alloc)
3988                 object_array_filter(array, entry_unshown, NULL);
3989 }
3990
3991 static void create_boundary_commit_list(struct rev_info *revs)
3992 {
3993         unsigned i;
3994         struct commit *c;
3995         struct object_array *array = &revs->boundary_commits;
3996         struct object_array_entry *objects = array->objects;
3997
3998         /*
3999          * If revs->commits is non-NULL at this point, an error occurred in
4000          * get_revision_1().  Ignore the error and continue printing the
4001          * boundary commits anyway.  (This is what the code has always
4002          * done.)
4003          */
4004         if (revs->commits) {
4005                 free_commit_list(revs->commits);
4006                 revs->commits = NULL;
4007         }
4008
4009         /*
4010          * Put all of the actual boundary commits from revs->boundary_commits
4011          * into revs->commits
4012          */
4013         for (i = 0; i < array->nr; i++) {
4014                 c = (struct commit *)(objects[i].item);
4015                 if (!c)
4016                         continue;
4017                 if (!(c->object.flags & CHILD_SHOWN))
4018                         continue;
4019                 if (c->object.flags & (SHOWN | BOUNDARY))
4020                         continue;
4021                 c->object.flags |= BOUNDARY;
4022                 commit_list_insert(c, &revs->commits);
4023         }
4024
4025         /*
4026          * If revs->topo_order is set, sort the boundary commits
4027          * in topological order
4028          */
4029         sort_in_topological_order(&revs->commits, revs->sort_order);
4030 }
4031
4032 static struct commit *get_revision_internal(struct rev_info *revs)
4033 {
4034         struct commit *c = NULL;
4035         struct commit_list *l;
4036
4037         if (revs->boundary == 2) {
4038                 /*
4039                  * All of the normal commits have already been returned,
4040                  * and we are now returning boundary commits.
4041                  * create_boundary_commit_list() has populated
4042                  * revs->commits with the remaining commits to return.
4043                  */
4044                 c = pop_commit(&revs->commits);
4045                 if (c)
4046                         c->object.flags |= SHOWN;
4047                 return c;
4048         }
4049
4050         /*
4051          * If our max_count counter has reached zero, then we are done. We
4052          * don't simply return NULL because we still might need to show
4053          * boundary commits. But we want to avoid calling get_revision_1, which
4054          * might do a considerable amount of work finding the next commit only
4055          * for us to throw it away.
4056          *
4057          * If it is non-zero, then either we don't have a max_count at all
4058          * (-1), or it is still counting, in which case we decrement.
4059          */
4060         if (revs->max_count) {
4061                 c = get_revision_1(revs);
4062                 if (c) {
4063                         while (revs->skip_count > 0) {
4064                                 revs->skip_count--;
4065                                 c = get_revision_1(revs);
4066                                 if (!c)
4067                                         break;
4068                         }
4069                 }
4070
4071                 if (revs->max_count > 0)
4072                         revs->max_count--;
4073         }
4074
4075         if (c)
4076                 c->object.flags |= SHOWN;
4077
4078         if (!revs->boundary)
4079                 return c;
4080
4081         if (!c) {
4082                 /*
4083                  * get_revision_1() runs out the commits, and
4084                  * we are done computing the boundaries.
4085                  * switch to boundary commits output mode.
4086                  */
4087                 revs->boundary = 2;
4088
4089                 /*
4090                  * Update revs->commits to contain the list of
4091                  * boundary commits.
4092                  */
4093                 create_boundary_commit_list(revs);
4094
4095                 return get_revision_internal(revs);
4096         }
4097
4098         /*
4099          * boundary commits are the commits that are parents of the
4100          * ones we got from get_revision_1() but they themselves are
4101          * not returned from get_revision_1().  Before returning
4102          * 'c', we need to mark its parents that they could be boundaries.
4103          */
4104
4105         for (l = c->parents; l; l = l->next) {
4106                 struct object *p;
4107                 p = &(l->item->object);
4108                 if (p->flags & (CHILD_SHOWN | SHOWN))
4109                         continue;
4110                 p->flags |= CHILD_SHOWN;
4111                 gc_boundary(&revs->boundary_commits);
4112                 add_object_array(p, NULL, &revs->boundary_commits);
4113         }
4114
4115         return c;
4116 }
4117
4118 struct commit *get_revision(struct rev_info *revs)
4119 {
4120         struct commit *c;
4121         struct commit_list *reversed;
4122
4123         if (revs->reverse) {
4124                 reversed = NULL;
4125                 while ((c = get_revision_internal(revs)))
4126                         commit_list_insert(c, &reversed);
4127                 revs->commits = reversed;
4128                 revs->reverse = 0;
4129                 revs->reverse_output_stage = 1;
4130         }
4131
4132         if (revs->reverse_output_stage) {
4133                 c = pop_commit(&revs->commits);
4134                 if (revs->track_linear)
4135                         revs->linear = !!(c && c->object.flags & TRACK_LINEAR);
4136                 return c;
4137         }
4138
4139         c = get_revision_internal(revs);
4140         if (c && revs->graph)
4141                 graph_update(revs->graph, c);
4142         if (!c) {
4143                 free_saved_parents(revs);
4144                 if (revs->previous_parents) {
4145                         free_commit_list(revs->previous_parents);
4146                         revs->previous_parents = NULL;
4147                 }
4148         }
4149         return c;
4150 }
4151
4152 const char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
4153 {
4154         if (commit->object.flags & BOUNDARY)
4155                 return "-";
4156         else if (commit->object.flags & UNINTERESTING)
4157                 return "^";
4158         else if (commit->object.flags & PATCHSAME)
4159                 return "=";
4160         else if (!revs || revs->left_right) {
4161                 if (commit->object.flags & SYMMETRIC_LEFT)
4162                         return "<";
4163                 else
4164                         return ">";
4165         } else if (revs->graph)
4166                 return "*";
4167         else if (revs->cherry_mark)
4168                 return "+";
4169         return "";
4170 }
4171
4172 void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
4173 {
4174         const char *mark = get_revision_mark(revs, commit);
4175         if (!strlen(mark))
4176                 return;
4177         fputs(mark, stdout);
4178         putchar(' ');
4179 }