blob: f2fbf69ad984902666afdad8ca6aab21cbd7b004 [file] [log] [blame]
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -02001/*
2 * builtin-diff.c
3 *
4 * Builtin diff command: Analyze two perf.data input files, look up and read
5 * DSOs and symbol information, sort them and produce a diff.
6 */
7#include "builtin.h"
8
9#include "util/debug.h"
10#include "util/event.h"
11#include "util/hist.h"
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020012#include "util/evsel.h"
Jiri Olsa863e4512012-09-06 17:46:55 +020013#include "util/evlist.h"
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -020014#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020015#include "util/tool.h"
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -020016#include "util/sort.h"
17#include "util/symbol.h"
18#include "util/util.h"
19
20#include <stdlib.h>
Jiri Olsa345dc0b2013-02-03 20:08:34 +010021#include <math.h>
22
23/* Diff command specific HPP columns. */
24enum {
25 PERF_HPP_DIFF__BASELINE,
26 PERF_HPP_DIFF__PERIOD,
27 PERF_HPP_DIFF__PERIOD_BASELINE,
28 PERF_HPP_DIFF__DELTA,
29 PERF_HPP_DIFF__RATIO,
30 PERF_HPP_DIFF__WEIGHTED_DIFF,
31 PERF_HPP_DIFF__FORMULA,
32
33 PERF_HPP_DIFF__MAX_INDEX
34};
35
36struct diff_hpp_fmt {
37 struct perf_hpp_fmt fmt;
38 int idx;
39 char *header;
40 int header_width;
41};
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -020042
Jiri Olsaec308422013-03-25 00:02:01 +010043struct data__file {
44 struct perf_session *session;
45 const char *file;
46 int idx;
Jiri Olsa22aeb7f2012-12-01 22:00:00 +010047 struct hists *hists;
Jiri Olsac818b492012-12-01 21:57:04 +010048 struct diff_hpp_fmt fmt[PERF_HPP_DIFF__MAX_INDEX];
Jiri Olsaec308422013-03-25 00:02:01 +010049};
50
51static struct data__file *data__files;
52static int data__files_cnt;
53
54#define data__for_each_file_start(i, d, s) \
55 for (i = s, d = &data__files[s]; \
56 i < data__files_cnt; \
57 i++, d = &data__files[i])
58
59#define data__for_each_file(i, d) data__for_each_file_start(i, d, 0)
Jiri Olsa22aeb7f2012-12-01 22:00:00 +010060#define data__for_each_file_new(i, d) data__for_each_file_start(i, d, 1)
Jiri Olsaec308422013-03-25 00:02:01 +010061
62static char diff__default_sort_order[] = "dso,symbol";
63static bool force;
Jiri Olsa61949b22012-10-05 16:44:44 +020064static bool show_period;
Jiri Olsaed279da2012-10-05 16:44:45 +020065static bool show_formula;
Jiri Olsaa06d1432012-10-05 16:44:40 +020066static bool show_baseline_only;
Jiri Olsa96c47f12012-10-05 16:44:42 +020067static bool sort_compute;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -020068
Jiri Olsa81d5f952012-10-05 16:44:43 +020069static s64 compute_wdiff_w1;
70static s64 compute_wdiff_w2;
71
Jiri Olsa7aaf6b32012-10-05 16:44:41 +020072enum {
73 COMPUTE_DELTA,
74 COMPUTE_RATIO,
Jiri Olsa81d5f952012-10-05 16:44:43 +020075 COMPUTE_WEIGHTED_DIFF,
Jiri Olsa7aaf6b32012-10-05 16:44:41 +020076 COMPUTE_MAX,
77};
78
79const char *compute_names[COMPUTE_MAX] = {
80 [COMPUTE_DELTA] = "delta",
81 [COMPUTE_RATIO] = "ratio",
Jiri Olsa81d5f952012-10-05 16:44:43 +020082 [COMPUTE_WEIGHTED_DIFF] = "wdiff",
Jiri Olsa7aaf6b32012-10-05 16:44:41 +020083};
84
85static int compute;
86
Jiri Olsa345dc0b2013-02-03 20:08:34 +010087static int compute_2_hpp[COMPUTE_MAX] = {
88 [COMPUTE_DELTA] = PERF_HPP_DIFF__DELTA,
89 [COMPUTE_RATIO] = PERF_HPP_DIFF__RATIO,
90 [COMPUTE_WEIGHTED_DIFF] = PERF_HPP_DIFF__WEIGHTED_DIFF,
91};
92
93#define MAX_COL_WIDTH 70
94
95static struct header_column {
96 const char *name;
97 int width;
98} columns[PERF_HPP_DIFF__MAX_INDEX] = {
99 [PERF_HPP_DIFF__BASELINE] = {
100 .name = "Baseline",
101 },
102 [PERF_HPP_DIFF__PERIOD] = {
103 .name = "Period",
104 .width = 14,
105 },
106 [PERF_HPP_DIFF__PERIOD_BASELINE] = {
107 .name = "Base period",
108 .width = 14,
109 },
110 [PERF_HPP_DIFF__DELTA] = {
111 .name = "Delta",
112 .width = 7,
113 },
114 [PERF_HPP_DIFF__RATIO] = {
115 .name = "Ratio",
116 .width = 14,
117 },
118 [PERF_HPP_DIFF__WEIGHTED_DIFF] = {
119 .name = "Weighted diff",
120 .width = 14,
121 },
122 [PERF_HPP_DIFF__FORMULA] = {
123 .name = "Formula",
124 .width = MAX_COL_WIDTH,
125 }
126};
127
Jiri Olsa81d5f952012-10-05 16:44:43 +0200128static int setup_compute_opt_wdiff(char *opt)
129{
130 char *w1_str = opt;
131 char *w2_str;
132
133 int ret = -EINVAL;
134
135 if (!opt)
136 goto out;
137
138 w2_str = strchr(opt, ',');
139 if (!w2_str)
140 goto out;
141
142 *w2_str++ = 0x0;
143 if (!*w2_str)
144 goto out;
145
146 compute_wdiff_w1 = strtol(w1_str, NULL, 10);
147 compute_wdiff_w2 = strtol(w2_str, NULL, 10);
148
149 if (!compute_wdiff_w1 || !compute_wdiff_w2)
150 goto out;
151
152 pr_debug("compute wdiff w1(%" PRId64 ") w2(%" PRId64 ")\n",
153 compute_wdiff_w1, compute_wdiff_w2);
154
155 ret = 0;
156
157 out:
158 if (ret)
159 pr_err("Failed: wrong weight data, use 'wdiff:w1,w2'\n");
160
161 return ret;
162}
163
164static int setup_compute_opt(char *opt)
165{
166 if (compute == COMPUTE_WEIGHTED_DIFF)
167 return setup_compute_opt_wdiff(opt);
168
169 if (opt) {
170 pr_err("Failed: extra option specified '%s'", opt);
171 return -EINVAL;
172 }
173
174 return 0;
175}
176
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200177static int setup_compute(const struct option *opt, const char *str,
178 int unset __maybe_unused)
179{
180 int *cp = (int *) opt->value;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200181 char *cstr = (char *) str;
182 char buf[50];
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200183 unsigned i;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200184 char *option;
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200185
186 if (!str) {
187 *cp = COMPUTE_DELTA;
188 return 0;
189 }
190
Jiri Olsa96c47f12012-10-05 16:44:42 +0200191 if (*str == '+') {
192 sort_compute = true;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200193 cstr = (char *) ++str;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200194 if (!*str)
195 return 0;
196 }
197
Jiri Olsa81d5f952012-10-05 16:44:43 +0200198 option = strchr(str, ':');
199 if (option) {
200 unsigned len = option++ - str;
201
202 /*
203 * The str data are not writeable, so we need
204 * to use another buffer.
205 */
206
207 /* No option value is longer. */
208 if (len >= sizeof(buf))
209 return -EINVAL;
210
211 strncpy(buf, str, len);
212 buf[len] = 0x0;
213 cstr = buf;
214 }
215
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200216 for (i = 0; i < COMPUTE_MAX; i++)
Jiri Olsa81d5f952012-10-05 16:44:43 +0200217 if (!strcmp(cstr, compute_names[i])) {
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200218 *cp = i;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200219 return setup_compute_opt(option);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200220 }
221
222 pr_err("Failed: '%s' is not computation method "
Jiri Olsa81d5f952012-10-05 16:44:43 +0200223 "(use 'delta','ratio' or 'wdiff')\n", str);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200224 return -EINVAL;
225}
226
Jiri Olsaef358e62012-10-21 23:31:51 +0200227static double period_percent(struct hist_entry *he, u64 period)
Jiri Olsa96c47f12012-10-05 16:44:42 +0200228{
229 u64 total = he->hists->stats.total_period;
230 return (period * 100.0) / total;
231}
232
Jiri Olsaef358e62012-10-21 23:31:51 +0200233static double compute_delta(struct hist_entry *he, struct hist_entry *pair)
Jiri Olsa96c47f12012-10-05 16:44:42 +0200234{
Jiri Olsaef358e62012-10-21 23:31:51 +0200235 double old_percent = period_percent(he, he->stat.period);
236 double new_percent = period_percent(pair, pair->stat.period);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200237
Jiri Olsa9af303e2012-12-01 21:15:40 +0100238 pair->diff.period_ratio_delta = new_percent - old_percent;
239 pair->diff.computed = true;
240 return pair->diff.period_ratio_delta;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200241}
242
Jiri Olsaef358e62012-10-21 23:31:51 +0200243static double compute_ratio(struct hist_entry *he, struct hist_entry *pair)
Jiri Olsa96c47f12012-10-05 16:44:42 +0200244{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100245 double old_period = he->stat.period ?: 1;
246 double new_period = pair->stat.period;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200247
Jiri Olsa9af303e2012-12-01 21:15:40 +0100248 pair->diff.computed = true;
249 pair->diff.period_ratio = new_period / old_period;
250 return pair->diff.period_ratio;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200251}
252
Jiri Olsaef358e62012-10-21 23:31:51 +0200253static s64 compute_wdiff(struct hist_entry *he, struct hist_entry *pair)
Jiri Olsa81d5f952012-10-05 16:44:43 +0200254{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100255 u64 old_period = he->stat.period;
256 u64 new_period = pair->stat.period;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200257
Jiri Olsa9af303e2012-12-01 21:15:40 +0100258 pair->diff.computed = true;
259 pair->diff.wdiff = new_period * compute_wdiff_w2 -
260 old_period * compute_wdiff_w1;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200261
Jiri Olsa9af303e2012-12-01 21:15:40 +0100262 return pair->diff.wdiff;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200263}
264
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100265static int formula_delta(struct hist_entry *he, struct hist_entry *pair,
266 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200267{
Jiri Olsaed279da2012-10-05 16:44:45 +0200268 return scnprintf(buf, size,
269 "(%" PRIu64 " * 100 / %" PRIu64 ") - "
270 "(%" PRIu64 " * 100 / %" PRIu64 ")",
Jiri Olsa9af303e2012-12-01 21:15:40 +0100271 pair->stat.period, pair->hists->stats.total_period,
272 he->stat.period, he->hists->stats.total_period);
Jiri Olsaed279da2012-10-05 16:44:45 +0200273}
274
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100275static int formula_ratio(struct hist_entry *he, struct hist_entry *pair,
276 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200277{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100278 double old_period = he->stat.period;
279 double new_period = pair->stat.period;
Jiri Olsaed279da2012-10-05 16:44:45 +0200280
281 return scnprintf(buf, size, "%.0F / %.0F", new_period, old_period);
282}
283
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100284static int formula_wdiff(struct hist_entry *he, struct hist_entry *pair,
285 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200286{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100287 u64 old_period = he->stat.period;
288 u64 new_period = pair->stat.period;
Jiri Olsaed279da2012-10-05 16:44:45 +0200289
290 return scnprintf(buf, size,
291 "(%" PRIu64 " * " "%" PRId64 ") - (%" PRIu64 " * " "%" PRId64 ")",
292 new_period, compute_wdiff_w2, old_period, compute_wdiff_w1);
293}
294
Jiri Olsaef358e62012-10-21 23:31:51 +0200295static int formula_fprintf(struct hist_entry *he, struct hist_entry *pair,
296 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200297{
298 switch (compute) {
299 case COMPUTE_DELTA:
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100300 return formula_delta(he, pair, buf, size);
Jiri Olsaed279da2012-10-05 16:44:45 +0200301 case COMPUTE_RATIO:
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100302 return formula_ratio(he, pair, buf, size);
Jiri Olsaed279da2012-10-05 16:44:45 +0200303 case COMPUTE_WEIGHTED_DIFF:
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100304 return formula_wdiff(he, pair, buf, size);
Jiri Olsaed279da2012-10-05 16:44:45 +0200305 default:
306 BUG_ON(1);
307 }
308
309 return -1;
310}
311
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300312static int hists__add_entry(struct hists *self,
Andi Kleen05484292013-01-24 16:10:29 +0100313 struct addr_location *al, u64 period,
314 u64 weight)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200315{
Andi Kleen05484292013-01-24 16:10:29 +0100316 if (__hists__add_entry(self, al, NULL, period, weight) != NULL)
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300317 return 0;
318 return -ENOMEM;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200319}
320
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300321static int diff__process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200322 union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200323 struct perf_sample *sample,
Jiri Olsa863e4512012-09-06 17:46:55 +0200324 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200325 struct machine *machine)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200326{
327 struct addr_location al;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200328
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200329 if (perf_event__preprocess_sample(event, machine, &al, sample, NULL) < 0) {
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200330 pr_warning("problem processing %d event, skipping it.\n",
331 event->header.type);
332 return -1;
333 }
334
Jiri Olsad88c48f2012-10-05 16:44:46 +0200335 if (al.filtered)
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200336 return 0;
337
Andi Kleen05484292013-01-24 16:10:29 +0100338 if (hists__add_entry(&evsel->hists, &al, sample->period, sample->weight)) {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300339 pr_warning("problem incrementing symbol period, skipping event\n");
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200340 return -1;
341 }
342
Jiri Olsa863e4512012-09-06 17:46:55 +0200343 evsel->hists.stats.total_period += sample->period;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200344 return 0;
345}
346
Jiri Olsa863e4512012-09-06 17:46:55 +0200347static struct perf_tool tool = {
348 .sample = diff__process_sample_event,
349 .mmap = perf_event__process_mmap,
350 .comm = perf_event__process_comm,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300351 .exit = perf_event__process_exit,
352 .fork = perf_event__process_fork,
Jiri Olsa863e4512012-09-06 17:46:55 +0200353 .lost = perf_event__process_lost,
354 .ordered_samples = true,
355 .ordering_requires_timestamps = true,
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200356};
357
Jiri Olsa863e4512012-09-06 17:46:55 +0200358static struct perf_evsel *evsel_match(struct perf_evsel *evsel,
359 struct perf_evlist *evlist)
360{
361 struct perf_evsel *e;
362
363 list_for_each_entry(e, &evlist->entries, node)
364 if (perf_evsel__match2(evsel, e))
365 return e;
366
367 return NULL;
368}
369
Namhyung Kimce74f602012-12-10 17:29:55 +0900370static void perf_evlist__collapse_resort(struct perf_evlist *evlist)
Jiri Olsadd464342012-10-04 21:49:36 +0900371{
372 struct perf_evsel *evsel;
373
374 list_for_each_entry(evsel, &evlist->entries, node) {
375 struct hists *hists = &evsel->hists;
376
Namhyung Kimce74f602012-12-10 17:29:55 +0900377 hists__collapse_resort(hists);
Jiri Olsadd464342012-10-04 21:49:36 +0900378 }
379}
380
Jiri Olsaa06d1432012-10-05 16:44:40 +0200381static void hists__baseline_only(struct hists *hists)
382{
Namhyung Kimce74f602012-12-10 17:29:55 +0900383 struct rb_root *root;
384 struct rb_node *next;
Jiri Olsaa06d1432012-10-05 16:44:40 +0200385
Namhyung Kimce74f602012-12-10 17:29:55 +0900386 if (sort__need_collapse)
387 root = &hists->entries_collapsed;
388 else
389 root = hists->entries_in;
390
391 next = rb_first(root);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200392 while (next != NULL) {
Namhyung Kimce74f602012-12-10 17:29:55 +0900393 struct hist_entry *he = rb_entry(next, struct hist_entry, rb_node_in);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200394
Namhyung Kimce74f602012-12-10 17:29:55 +0900395 next = rb_next(&he->rb_node_in);
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200396 if (!hist_entry__next_pair(he)) {
Namhyung Kimce74f602012-12-10 17:29:55 +0900397 rb_erase(&he->rb_node_in, root);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200398 hist_entry__free(he);
399 }
400 }
401}
402
Jiri Olsa96c47f12012-10-05 16:44:42 +0200403static void hists__precompute(struct hists *hists)
404{
Jiri Olsa367c53c2012-12-13 14:08:59 +0100405 struct rb_root *root;
406 struct rb_node *next;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200407
Jiri Olsa367c53c2012-12-13 14:08:59 +0100408 if (sort__need_collapse)
409 root = &hists->entries_collapsed;
410 else
411 root = hists->entries_in;
412
413 next = rb_first(root);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200414 while (next != NULL) {
Jiri Olsa367c53c2012-12-13 14:08:59 +0100415 struct hist_entry *he = rb_entry(next, struct hist_entry, rb_node_in);
Jiri Olsa05472da2012-11-28 14:52:40 +0100416 struct hist_entry *pair = hist_entry__next_pair(he);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200417
Jiri Olsa367c53c2012-12-13 14:08:59 +0100418 next = rb_next(&he->rb_node_in);
Jiri Olsa05472da2012-11-28 14:52:40 +0100419 if (!pair)
420 continue;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200421
422 switch (compute) {
423 case COMPUTE_DELTA:
Jiri Olsaef358e62012-10-21 23:31:51 +0200424 compute_delta(he, pair);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200425 break;
426 case COMPUTE_RATIO:
Jiri Olsaef358e62012-10-21 23:31:51 +0200427 compute_ratio(he, pair);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200428 break;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200429 case COMPUTE_WEIGHTED_DIFF:
Jiri Olsaef358e62012-10-21 23:31:51 +0200430 compute_wdiff(he, pair);
Jiri Olsa81d5f952012-10-05 16:44:43 +0200431 break;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200432 default:
433 BUG_ON(1);
434 }
435 }
436}
437
438static int64_t cmp_doubles(double l, double r)
439{
440 if (l > r)
441 return -1;
442 else if (l < r)
443 return 1;
444 else
445 return 0;
446}
447
448static int64_t
449hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right,
450 int c)
451{
452 switch (c) {
453 case COMPUTE_DELTA:
454 {
455 double l = left->diff.period_ratio_delta;
456 double r = right->diff.period_ratio_delta;
457
458 return cmp_doubles(l, r);
459 }
460 case COMPUTE_RATIO:
461 {
462 double l = left->diff.period_ratio;
463 double r = right->diff.period_ratio;
464
465 return cmp_doubles(l, r);
466 }
Jiri Olsa81d5f952012-10-05 16:44:43 +0200467 case COMPUTE_WEIGHTED_DIFF:
468 {
469 s64 l = left->diff.wdiff;
470 s64 r = right->diff.wdiff;
471
472 return r - l;
473 }
Jiri Olsa96c47f12012-10-05 16:44:42 +0200474 default:
475 BUG_ON(1);
476 }
477
478 return 0;
479}
480
481static void insert_hist_entry_by_compute(struct rb_root *root,
482 struct hist_entry *he,
483 int c)
484{
485 struct rb_node **p = &root->rb_node;
486 struct rb_node *parent = NULL;
487 struct hist_entry *iter;
488
489 while (*p != NULL) {
490 parent = *p;
491 iter = rb_entry(parent, struct hist_entry, rb_node);
492 if (hist_entry__cmp_compute(he, iter, c) < 0)
493 p = &(*p)->rb_left;
494 else
495 p = &(*p)->rb_right;
496 }
497
498 rb_link_node(&he->rb_node, parent, p);
499 rb_insert_color(&he->rb_node, root);
500}
501
502static void hists__compute_resort(struct hists *hists)
503{
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900504 struct rb_root *root;
505 struct rb_node *next;
506
507 if (sort__need_collapse)
508 root = &hists->entries_collapsed;
509 else
510 root = hists->entries_in;
511
512 hists->entries = RB_ROOT;
513 next = rb_first(root);
514
515 hists->nr_entries = 0;
516 hists->stats.total_period = 0;
517 hists__reset_col_len(hists);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200518
519 while (next != NULL) {
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900520 struct hist_entry *he;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200521
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900522 he = rb_entry(next, struct hist_entry, rb_node_in);
523 next = rb_next(&he->rb_node_in);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200524
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900525 insert_hist_entry_by_compute(&hists->entries, he, compute);
526 hists__inc_nr_entries(hists, he);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200527 }
Jiri Olsa96c47f12012-10-05 16:44:42 +0200528}
529
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100530static void hists__process(struct hists *hists)
Jiri Olsaa06d1432012-10-05 16:44:40 +0200531{
Jiri Olsaa06d1432012-10-05 16:44:40 +0200532 if (show_baseline_only)
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100533 hists__baseline_only(hists);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200534
Jiri Olsa96c47f12012-10-05 16:44:42 +0200535 if (sort_compute) {
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100536 hists__precompute(hists);
537 hists__compute_resort(hists);
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900538 } else {
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100539 hists__output_resort(hists);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200540 }
541
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100542 hists__fprintf(hists, true, 0, 0, 0, stdout);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200543}
544
Jiri Olsa1d81c7f2012-12-01 21:56:03 +0100545static void data__fprintf(void)
546{
547 struct data__file *d;
548 int i;
549
550 fprintf(stdout, "# Data files:\n");
551
552 data__for_each_file(i, d)
553 fprintf(stdout, "# [%d] %s %s\n",
554 d->idx, d->file,
555 !d->idx ? "(Baseline)" : "");
556
557 fprintf(stdout, "#\n");
558}
559
Jiri Olsaec308422013-03-25 00:02:01 +0100560static void data_process(void)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200561{
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100562 struct perf_evlist *evlist_base = data__files[0].session->evlist;
563 struct perf_evsel *evsel_base;
Jiri Olsa863e4512012-09-06 17:46:55 +0200564 bool first = true;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200565
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100566 list_for_each_entry(evsel_base, &evlist_base->entries, node) {
567 struct data__file *d;
568 int i;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200569
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100570 data__for_each_file_new(i, d) {
571 struct perf_evlist *evlist = d->session->evlist;
572 struct perf_evsel *evsel;
573
574 evsel = evsel_match(evsel_base, evlist);
575 if (!evsel)
576 continue;
577
578 d->hists = &evsel->hists;
579
580 hists__match(&evsel_base->hists, &evsel->hists);
581
582 if (!show_baseline_only)
583 hists__link(&evsel_base->hists,
584 &evsel->hists);
585 }
Jiri Olsa863e4512012-09-06 17:46:55 +0200586
587 fprintf(stdout, "%s# Event '%s'\n#\n", first ? "" : "\n",
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100588 perf_evsel__name(evsel_base));
Jiri Olsa863e4512012-09-06 17:46:55 +0200589
590 first = false;
591
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100592 if (verbose || data__files_cnt > 2)
Jiri Olsa1d81c7f2012-12-01 21:56:03 +0100593 data__fprintf();
594
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100595 hists__process(&evsel_base->hists);
Jiri Olsaec308422013-03-25 00:02:01 +0100596 }
597}
598
Jiri Olsac818b492012-12-01 21:57:04 +0100599static void data__free(struct data__file *d)
600{
601 int col;
602
603 for (col = 0; col < PERF_HPP_DIFF__MAX_INDEX; col++) {
604 struct diff_hpp_fmt *fmt = &d->fmt[col];
605
606 free(fmt->header);
607 }
608}
609
Jiri Olsaec308422013-03-25 00:02:01 +0100610static int __cmd_diff(void)
611{
612 struct data__file *d;
613 int ret = -EINVAL, i;
614
615 data__for_each_file(i, d) {
616 d->session = perf_session__new(d->file, O_RDONLY, force,
617 false, &tool);
618 if (!d->session) {
619 pr_err("Failed to open %s\n", d->file);
620 ret = -ENOMEM;
621 goto out_delete;
622 }
623
624 ret = perf_session__process_events(d->session, &tool);
625 if (ret) {
626 pr_err("Failed to process %s\n", d->file);
627 goto out_delete;
628 }
629
630 perf_evlist__collapse_resort(d->session->evlist);
Jiri Olsa863e4512012-09-06 17:46:55 +0200631 }
632
Jiri Olsaec308422013-03-25 00:02:01 +0100633 data_process();
634
635 out_delete:
636 data__for_each_file(i, d) {
637 if (d->session)
638 perf_session__delete(d->session);
Jiri Olsac818b492012-12-01 21:57:04 +0100639
640 data__free(d);
Jiri Olsaec308422013-03-25 00:02:01 +0100641 }
642
643 free(data__files);
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200644 return ret;
645}
646
Arnaldo Carvalho de Melo0422a4f2009-12-18 16:35:58 -0200647static const char * const diff_usage[] = {
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200648 "perf diff [<options>] [old_file] [new_file]",
Arnaldo Carvalho de Melo0422a4f2009-12-18 16:35:58 -0200649 NULL,
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200650};
651
652static const struct option options[] = {
Ian Munsiec0555642010-04-13 18:37:33 +1000653 OPT_INCR('v', "verbose", &verbose,
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200654 "be more verbose (show symbol address, etc)"),
Jiri Olsaa06d1432012-10-05 16:44:40 +0200655 OPT_BOOLEAN('b', "baseline-only", &show_baseline_only,
656 "Show only items with match in baseline"),
Jiri Olsa81d5f952012-10-05 16:44:43 +0200657 OPT_CALLBACK('c', "compute", &compute,
658 "delta,ratio,wdiff:w1,w2 (default delta)",
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200659 "Entries differential computation selection",
660 setup_compute),
Jiri Olsa61949b22012-10-05 16:44:44 +0200661 OPT_BOOLEAN('p', "period", &show_period,
662 "Show period values."),
Jiri Olsaed279da2012-10-05 16:44:45 +0200663 OPT_BOOLEAN('F', "formula", &show_formula,
664 "Show formula."),
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200665 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
666 "dump raw trace in ASCII"),
667 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
668 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
669 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200670 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
671 "only consider symbols in these dsos"),
672 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
673 "only consider symbols in these comms"),
674 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
675 "only consider these symbols"),
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200676 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
677 "sort by key(s): pid, comm, dso, symbol, parent"),
678 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
679 "separator for columns, no spaces will be added between "
680 "columns '.' is reserved."),
David Ahernec5761e2010-12-09 13:27:07 -0700681 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
682 "Look for files with symbols relative to this directory"),
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200683 OPT_END()
684};
685
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100686static double baseline_percent(struct hist_entry *he)
Jiri Olsa1d778222012-10-04 21:49:39 +0900687{
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100688 struct hists *hists = he->hists;
689 return 100.0 * he->stat.period / hists->stats.total_period;
690}
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200691
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100692static int hpp__color_baseline(struct perf_hpp_fmt *fmt,
693 struct perf_hpp *hpp, struct hist_entry *he)
694{
695 struct diff_hpp_fmt *dfmt =
696 container_of(fmt, struct diff_hpp_fmt, fmt);
697 double percent = baseline_percent(he);
698 char pfmt[20] = " ";
699
700 if (!he->dummy) {
701 scnprintf(pfmt, 20, "%%%d.2f%%%%", dfmt->header_width - 1);
702 return percent_color_snprintf(hpp->buf, hpp->size,
703 pfmt, percent);
704 } else
705 return scnprintf(hpp->buf, hpp->size, "%*s",
706 dfmt->header_width, pfmt);
707}
708
709static int hpp__entry_baseline(struct hist_entry *he, char *buf, size_t size)
710{
711 double percent = baseline_percent(he);
712 const char *fmt = symbol_conf.field_sep ? "%.2f" : "%6.2f%%";
713 int ret = 0;
714
715 if (!he->dummy)
716 ret = scnprintf(buf, size, fmt, percent);
717
718 return ret;
719}
720
721static void
722hpp__entry_unpair(struct hist_entry *he, int idx, char *buf, size_t size)
723{
724 switch (idx) {
725 case PERF_HPP_DIFF__PERIOD_BASELINE:
726 scnprintf(buf, size, "%" PRIu64, he->stat.period);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200727 break;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100728
729 default:
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200730 break;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100731 }
732}
733
734static void
735hpp__entry_pair(struct hist_entry *he, struct hist_entry *pair,
736 int idx, char *buf, size_t size)
737{
738 double diff;
739 double ratio;
740 s64 wdiff;
741
742 switch (idx) {
743 case PERF_HPP_DIFF__DELTA:
744 if (pair->diff.computed)
745 diff = pair->diff.period_ratio_delta;
746 else
Jiri Olsaef358e62012-10-21 23:31:51 +0200747 diff = compute_delta(he, pair);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100748
749 if (fabs(diff) >= 0.01)
750 scnprintf(buf, size, "%+4.2F%%", diff);
Jiri Olsa81d5f952012-10-05 16:44:43 +0200751 break;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100752
753 case PERF_HPP_DIFF__RATIO:
754 /* No point for ratio number if we are dummy.. */
755 if (he->dummy)
756 break;
757
758 if (pair->diff.computed)
759 ratio = pair->diff.period_ratio;
760 else
Jiri Olsaef358e62012-10-21 23:31:51 +0200761 ratio = compute_ratio(he, pair);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100762
763 if (ratio > 0.0)
764 scnprintf(buf, size, "%14.6F", ratio);
765 break;
766
767 case PERF_HPP_DIFF__WEIGHTED_DIFF:
768 /* No point for wdiff number if we are dummy.. */
769 if (he->dummy)
770 break;
771
772 if (pair->diff.computed)
773 wdiff = pair->diff.wdiff;
774 else
Jiri Olsaef358e62012-10-21 23:31:51 +0200775 wdiff = compute_wdiff(he, pair);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100776
777 if (wdiff != 0)
778 scnprintf(buf, size, "%14ld", wdiff);
779 break;
780
781 case PERF_HPP_DIFF__FORMULA:
Jiri Olsaef358e62012-10-21 23:31:51 +0200782 formula_fprintf(he, pair, buf, size);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100783 break;
784
785 case PERF_HPP_DIFF__PERIOD:
786 scnprintf(buf, size, "%" PRIu64, pair->stat.period);
787 break;
788
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200789 default:
790 BUG_ON(1);
791 };
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100792}
793
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100794static struct hist_entry *get_pair(struct hist_entry *he,
795 struct diff_hpp_fmt *dfmt)
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100796{
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100797 void *ptr = dfmt - dfmt->idx;
798 struct data__file *d = container_of(ptr, struct data__file, fmt);
799
800 if (hist_entry__has_pairs(he)) {
801 struct hist_entry *pair;
802
803 list_for_each_entry(pair, &he->pairs.head, pairs.node)
804 if (pair->hists == d->hists)
805 return pair;
806 }
807
808 return NULL;
809}
810
811static void
812__hpp__entry_global(struct hist_entry *he, struct diff_hpp_fmt *dfmt,
813 char *buf, size_t size)
814{
815 struct hist_entry *pair = get_pair(he, dfmt);
816 int idx = dfmt->idx;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100817
818 /* baseline is special */
819 if (idx == PERF_HPP_DIFF__BASELINE)
820 hpp__entry_baseline(he, buf, size);
821 else {
822 if (pair)
823 hpp__entry_pair(he, pair, idx, buf, size);
824 else
825 hpp__entry_unpair(he, idx, buf, size);
826 }
827}
828
829static int hpp__entry_global(struct perf_hpp_fmt *_fmt, struct perf_hpp *hpp,
830 struct hist_entry *he)
831{
832 struct diff_hpp_fmt *dfmt =
833 container_of(_fmt, struct diff_hpp_fmt, fmt);
834 char buf[MAX_COL_WIDTH] = " ";
835
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100836 __hpp__entry_global(he, dfmt, buf, MAX_COL_WIDTH);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100837
838 if (symbol_conf.field_sep)
839 return scnprintf(hpp->buf, hpp->size, "%s", buf);
840 else
841 return scnprintf(hpp->buf, hpp->size, "%*s",
842 dfmt->header_width, buf);
843}
844
845static int hpp__header(struct perf_hpp_fmt *fmt,
846 struct perf_hpp *hpp)
847{
848 struct diff_hpp_fmt *dfmt =
849 container_of(fmt, struct diff_hpp_fmt, fmt);
850
851 BUG_ON(!dfmt->header);
852 return scnprintf(hpp->buf, hpp->size, dfmt->header);
853}
854
855static int hpp__width(struct perf_hpp_fmt *fmt,
856 struct perf_hpp *hpp __maybe_unused)
857{
858 struct diff_hpp_fmt *dfmt =
859 container_of(fmt, struct diff_hpp_fmt, fmt);
860
861 BUG_ON(dfmt->header_width <= 0);
862 return dfmt->header_width;
863}
864
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100865static void init_header(struct data__file *d, struct diff_hpp_fmt *dfmt)
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100866{
867#define MAX_HEADER_NAME 100
868 char buf_indent[MAX_HEADER_NAME];
869 char buf[MAX_HEADER_NAME];
870 const char *header = NULL;
871 int width = 0;
872
873 BUG_ON(dfmt->idx >= PERF_HPP_DIFF__MAX_INDEX);
874 header = columns[dfmt->idx].name;
875 width = columns[dfmt->idx].width;
876
877 /* Only our defined HPP fmts should appear here. */
878 BUG_ON(!header);
879
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100880 if (data__files_cnt > 2)
881 scnprintf(buf, MAX_HEADER_NAME, "%s/%d", header, d->idx);
882
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100883#define NAME (data__files_cnt > 2 ? buf : header)
884 dfmt->header_width = width;
885 width = (int) strlen(NAME);
886 if (dfmt->header_width < width)
887 dfmt->header_width = width;
888
889 scnprintf(buf_indent, MAX_HEADER_NAME, "%*s",
890 dfmt->header_width, NAME);
891
892 dfmt->header = strdup(buf_indent);
893#undef MAX_HEADER_NAME
894#undef NAME
895}
896
Jiri Olsac818b492012-12-01 21:57:04 +0100897static void data__hpp_register(struct data__file *d, int idx)
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100898{
Jiri Olsac818b492012-12-01 21:57:04 +0100899 struct diff_hpp_fmt *dfmt = &d->fmt[idx];
900 struct perf_hpp_fmt *fmt = &dfmt->fmt;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100901
Jiri Olsac818b492012-12-01 21:57:04 +0100902 dfmt->idx = idx;
903
904 fmt->header = hpp__header;
905 fmt->width = hpp__width;
906 fmt->entry = hpp__entry_global;
907
908 /* TODO more colors */
909 if (idx == PERF_HPP_DIFF__BASELINE)
910 fmt->color = hpp__color_baseline;
911
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100912 init_header(d, dfmt);
Jiri Olsac818b492012-12-01 21:57:04 +0100913 perf_hpp__column_register(fmt);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100914}
915
916static void ui_init(void)
917{
Jiri Olsac818b492012-12-01 21:57:04 +0100918 struct data__file *d;
919 int i;
Jiri Olsa1d778222012-10-04 21:49:39 +0900920
Jiri Olsac818b492012-12-01 21:57:04 +0100921 data__for_each_file(i, d) {
Jiri Olsaed279da2012-10-05 16:44:45 +0200922
Jiri Olsac818b492012-12-01 21:57:04 +0100923 /*
924 * Baseline or compute realted columns:
925 *
926 * PERF_HPP_DIFF__BASELINE
927 * PERF_HPP_DIFF__DELTA
928 * PERF_HPP_DIFF__RATIO
929 * PERF_HPP_DIFF__WEIGHTED_DIFF
930 */
931 data__hpp_register(d, i ? compute_2_hpp[compute] :
932 PERF_HPP_DIFF__BASELINE);
933
934 /*
935 * And the rest:
936 *
937 * PERF_HPP_DIFF__FORMULA
938 * PERF_HPP_DIFF__PERIOD
939 * PERF_HPP_DIFF__PERIOD_BASELINE
940 */
941 if (show_formula && i)
942 data__hpp_register(d, PERF_HPP_DIFF__FORMULA);
943
944 if (show_period)
945 data__hpp_register(d, i ? PERF_HPP_DIFF__PERIOD :
946 PERF_HPP_DIFF__PERIOD_BASELINE);
Jiri Olsa61949b22012-10-05 16:44:44 +0200947 }
Jiri Olsa1d778222012-10-04 21:49:39 +0900948}
949
Jiri Olsaec308422013-03-25 00:02:01 +0100950static int data_init(int argc, const char **argv)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200951{
Jiri Olsaec308422013-03-25 00:02:01 +0100952 struct data__file *d;
953 static const char *defaults[] = {
954 "perf.data.old",
955 "perf.data",
956 };
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100957 bool use_default = true;
Jiri Olsaec308422013-03-25 00:02:01 +0100958 int i;
959
960 data__files_cnt = 2;
961
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200962 if (argc) {
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100963 if (argc == 1)
Jiri Olsaec308422013-03-25 00:02:01 +0100964 defaults[1] = argv[0];
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100965 else {
966 data__files_cnt = argc;
967 use_default = false;
968 }
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800969 } else if (symbol_conf.default_guest_vmlinux_name ||
970 symbol_conf.default_guest_kallsyms) {
Jiri Olsaec308422013-03-25 00:02:01 +0100971 defaults[0] = "perf.data.host";
972 defaults[1] = "perf.data.guest";
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200973 }
974
Jiri Olsaec308422013-03-25 00:02:01 +0100975 data__files = zalloc(sizeof(*data__files) * data__files_cnt);
976 if (!data__files)
977 return -ENOMEM;
978
979 data__for_each_file(i, d) {
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100980 d->file = use_default ? defaults[i] : argv[i];
Jiri Olsaec308422013-03-25 00:02:01 +0100981 d->idx = i;
982 }
983
984 return 0;
985}
986
987int cmd_diff(int argc, const char **argv, const char *prefix __maybe_unused)
988{
989 sort_order = diff__default_sort_order;
990 argc = parse_options(argc, argv, options, diff_usage, 0);
991
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200992 if (symbol__init() < 0)
993 return -1;
994
Jiri Olsaec308422013-03-25 00:02:01 +0100995 if (data_init(argc, argv) < 0)
996 return -1;
997
Jiri Olsa1d778222012-10-04 21:49:39 +0900998 ui_init();
999
Namhyung Kim55309982013-02-06 14:57:16 +09001000 if (setup_sorting() < 0)
1001 usage_with_options(diff_usage, options);
1002
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -02001003 setup_pager();
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -02001004
Namhyung Kim08e71542013-04-03 21:26:19 +09001005 sort__setup_elide(NULL);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -02001006
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -02001007 return __cmd_diff();
1008}