blob: b605009e803f0bf5845f96d7bca6390fdefdfc2a [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"
Jiri Olsaf5fc14122013-10-15 16:27:32 +020019#include "util/data.h"
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -020020
21#include <stdlib.h>
Jiri Olsa345dc0b2013-02-03 20:08:34 +010022#include <math.h>
23
24/* Diff command specific HPP columns. */
25enum {
26 PERF_HPP_DIFF__BASELINE,
27 PERF_HPP_DIFF__PERIOD,
28 PERF_HPP_DIFF__PERIOD_BASELINE,
29 PERF_HPP_DIFF__DELTA,
30 PERF_HPP_DIFF__RATIO,
31 PERF_HPP_DIFF__WEIGHTED_DIFF,
32 PERF_HPP_DIFF__FORMULA,
33
34 PERF_HPP_DIFF__MAX_INDEX
35};
36
37struct diff_hpp_fmt {
38 struct perf_hpp_fmt fmt;
39 int idx;
40 char *header;
41 int header_width;
42};
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -020043
Jiri Olsaec308422013-03-25 00:02:01 +010044struct data__file {
45 struct perf_session *session;
Jiri Olsaf5fc14122013-10-15 16:27:32 +020046 struct perf_data_file file;
Jiri Olsaec308422013-03-25 00:02:01 +010047 int idx;
Jiri Olsa22aeb7f2012-12-01 22:00:00 +010048 struct hists *hists;
Jiri Olsac818b492012-12-01 21:57:04 +010049 struct diff_hpp_fmt fmt[PERF_HPP_DIFF__MAX_INDEX];
Jiri Olsaec308422013-03-25 00:02:01 +010050};
51
52static struct data__file *data__files;
53static int data__files_cnt;
54
55#define data__for_each_file_start(i, d, s) \
56 for (i = s, d = &data__files[s]; \
57 i < data__files_cnt; \
58 i++, d = &data__files[i])
59
60#define data__for_each_file(i, d) data__for_each_file_start(i, d, 0)
Jiri Olsa22aeb7f2012-12-01 22:00:00 +010061#define data__for_each_file_new(i, d) data__for_each_file_start(i, d, 1)
Jiri Olsaec308422013-03-25 00:02:01 +010062
63static char diff__default_sort_order[] = "dso,symbol";
64static bool force;
Jiri Olsa61949b22012-10-05 16:44:44 +020065static bool show_period;
Jiri Olsaed279da2012-10-05 16:44:45 +020066static bool show_formula;
Jiri Olsaa06d1432012-10-05 16:44:40 +020067static bool show_baseline_only;
Jiri Olsa5f3f8d32012-11-25 23:10:20 +010068static unsigned int sort_compute;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -020069
Jiri Olsa81d5f952012-10-05 16:44:43 +020070static s64 compute_wdiff_w1;
71static s64 compute_wdiff_w2;
72
Jiri Olsa7aaf6b32012-10-05 16:44:41 +020073enum {
74 COMPUTE_DELTA,
75 COMPUTE_RATIO,
Jiri Olsa81d5f952012-10-05 16:44:43 +020076 COMPUTE_WEIGHTED_DIFF,
Jiri Olsa7aaf6b32012-10-05 16:44:41 +020077 COMPUTE_MAX,
78};
79
80const char *compute_names[COMPUTE_MAX] = {
81 [COMPUTE_DELTA] = "delta",
82 [COMPUTE_RATIO] = "ratio",
Jiri Olsa81d5f952012-10-05 16:44:43 +020083 [COMPUTE_WEIGHTED_DIFF] = "wdiff",
Jiri Olsa7aaf6b32012-10-05 16:44:41 +020084};
85
86static int compute;
87
Jiri Olsa345dc0b2013-02-03 20:08:34 +010088static int compute_2_hpp[COMPUTE_MAX] = {
89 [COMPUTE_DELTA] = PERF_HPP_DIFF__DELTA,
90 [COMPUTE_RATIO] = PERF_HPP_DIFF__RATIO,
91 [COMPUTE_WEIGHTED_DIFF] = PERF_HPP_DIFF__WEIGHTED_DIFF,
92};
93
94#define MAX_COL_WIDTH 70
95
96static struct header_column {
97 const char *name;
98 int width;
99} columns[PERF_HPP_DIFF__MAX_INDEX] = {
100 [PERF_HPP_DIFF__BASELINE] = {
101 .name = "Baseline",
102 },
103 [PERF_HPP_DIFF__PERIOD] = {
104 .name = "Period",
105 .width = 14,
106 },
107 [PERF_HPP_DIFF__PERIOD_BASELINE] = {
108 .name = "Base period",
109 .width = 14,
110 },
111 [PERF_HPP_DIFF__DELTA] = {
112 .name = "Delta",
113 .width = 7,
114 },
115 [PERF_HPP_DIFF__RATIO] = {
116 .name = "Ratio",
117 .width = 14,
118 },
119 [PERF_HPP_DIFF__WEIGHTED_DIFF] = {
120 .name = "Weighted diff",
121 .width = 14,
122 },
123 [PERF_HPP_DIFF__FORMULA] = {
124 .name = "Formula",
125 .width = MAX_COL_WIDTH,
126 }
127};
128
Jiri Olsa81d5f952012-10-05 16:44:43 +0200129static int setup_compute_opt_wdiff(char *opt)
130{
131 char *w1_str = opt;
132 char *w2_str;
133
134 int ret = -EINVAL;
135
136 if (!opt)
137 goto out;
138
139 w2_str = strchr(opt, ',');
140 if (!w2_str)
141 goto out;
142
143 *w2_str++ = 0x0;
144 if (!*w2_str)
145 goto out;
146
147 compute_wdiff_w1 = strtol(w1_str, NULL, 10);
148 compute_wdiff_w2 = strtol(w2_str, NULL, 10);
149
150 if (!compute_wdiff_w1 || !compute_wdiff_w2)
151 goto out;
152
153 pr_debug("compute wdiff w1(%" PRId64 ") w2(%" PRId64 ")\n",
154 compute_wdiff_w1, compute_wdiff_w2);
155
156 ret = 0;
157
158 out:
159 if (ret)
160 pr_err("Failed: wrong weight data, use 'wdiff:w1,w2'\n");
161
162 return ret;
163}
164
165static int setup_compute_opt(char *opt)
166{
167 if (compute == COMPUTE_WEIGHTED_DIFF)
168 return setup_compute_opt_wdiff(opt);
169
170 if (opt) {
171 pr_err("Failed: extra option specified '%s'", opt);
172 return -EINVAL;
173 }
174
175 return 0;
176}
177
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200178static int setup_compute(const struct option *opt, const char *str,
179 int unset __maybe_unused)
180{
181 int *cp = (int *) opt->value;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200182 char *cstr = (char *) str;
183 char buf[50];
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200184 unsigned i;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200185 char *option;
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200186
187 if (!str) {
188 *cp = COMPUTE_DELTA;
189 return 0;
190 }
191
Jiri Olsa81d5f952012-10-05 16:44:43 +0200192 option = strchr(str, ':');
193 if (option) {
194 unsigned len = option++ - str;
195
196 /*
197 * The str data are not writeable, so we need
198 * to use another buffer.
199 */
200
201 /* No option value is longer. */
202 if (len >= sizeof(buf))
203 return -EINVAL;
204
205 strncpy(buf, str, len);
206 buf[len] = 0x0;
207 cstr = buf;
208 }
209
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200210 for (i = 0; i < COMPUTE_MAX; i++)
Jiri Olsa81d5f952012-10-05 16:44:43 +0200211 if (!strcmp(cstr, compute_names[i])) {
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200212 *cp = i;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200213 return setup_compute_opt(option);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200214 }
215
216 pr_err("Failed: '%s' is not computation method "
Jiri Olsa81d5f952012-10-05 16:44:43 +0200217 "(use 'delta','ratio' or 'wdiff')\n", str);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200218 return -EINVAL;
219}
220
Jiri Olsaef358e62012-10-21 23:31:51 +0200221static double period_percent(struct hist_entry *he, u64 period)
Jiri Olsa96c47f12012-10-05 16:44:42 +0200222{
223 u64 total = he->hists->stats.total_period;
224 return (period * 100.0) / total;
225}
226
Jiri Olsaef358e62012-10-21 23:31:51 +0200227static double compute_delta(struct hist_entry *he, struct hist_entry *pair)
Jiri Olsa96c47f12012-10-05 16:44:42 +0200228{
Jiri Olsaef358e62012-10-21 23:31:51 +0200229 double old_percent = period_percent(he, he->stat.period);
230 double new_percent = period_percent(pair, pair->stat.period);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200231
Jiri Olsa9af303e2012-12-01 21:15:40 +0100232 pair->diff.period_ratio_delta = new_percent - old_percent;
233 pair->diff.computed = true;
234 return pair->diff.period_ratio_delta;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200235}
236
Jiri Olsaef358e62012-10-21 23:31:51 +0200237static double compute_ratio(struct hist_entry *he, struct hist_entry *pair)
Jiri Olsa96c47f12012-10-05 16:44:42 +0200238{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100239 double old_period = he->stat.period ?: 1;
240 double new_period = pair->stat.period;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200241
Jiri Olsa9af303e2012-12-01 21:15:40 +0100242 pair->diff.computed = true;
243 pair->diff.period_ratio = new_period / old_period;
244 return pair->diff.period_ratio;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200245}
246
Jiri Olsaef358e62012-10-21 23:31:51 +0200247static s64 compute_wdiff(struct hist_entry *he, struct hist_entry *pair)
Jiri Olsa81d5f952012-10-05 16:44:43 +0200248{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100249 u64 old_period = he->stat.period;
250 u64 new_period = pair->stat.period;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200251
Jiri Olsa9af303e2012-12-01 21:15:40 +0100252 pair->diff.computed = true;
253 pair->diff.wdiff = new_period * compute_wdiff_w2 -
254 old_period * compute_wdiff_w1;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200255
Jiri Olsa9af303e2012-12-01 21:15:40 +0100256 return pair->diff.wdiff;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200257}
258
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100259static int formula_delta(struct hist_entry *he, struct hist_entry *pair,
260 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200261{
Jiri Olsaed279da2012-10-05 16:44:45 +0200262 return scnprintf(buf, size,
263 "(%" PRIu64 " * 100 / %" PRIu64 ") - "
264 "(%" PRIu64 " * 100 / %" PRIu64 ")",
Jiri Olsa9af303e2012-12-01 21:15:40 +0100265 pair->stat.period, pair->hists->stats.total_period,
266 he->stat.period, he->hists->stats.total_period);
Jiri Olsaed279da2012-10-05 16:44:45 +0200267}
268
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100269static int formula_ratio(struct hist_entry *he, struct hist_entry *pair,
270 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200271{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100272 double old_period = he->stat.period;
273 double new_period = pair->stat.period;
Jiri Olsaed279da2012-10-05 16:44:45 +0200274
275 return scnprintf(buf, size, "%.0F / %.0F", new_period, old_period);
276}
277
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100278static int formula_wdiff(struct hist_entry *he, struct hist_entry *pair,
279 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200280{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100281 u64 old_period = he->stat.period;
282 u64 new_period = pair->stat.period;
Jiri Olsaed279da2012-10-05 16:44:45 +0200283
284 return scnprintf(buf, size,
285 "(%" PRIu64 " * " "%" PRId64 ") - (%" PRIu64 " * " "%" PRId64 ")",
286 new_period, compute_wdiff_w2, old_period, compute_wdiff_w1);
287}
288
Jiri Olsaef358e62012-10-21 23:31:51 +0200289static int formula_fprintf(struct hist_entry *he, struct hist_entry *pair,
290 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200291{
292 switch (compute) {
293 case COMPUTE_DELTA:
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100294 return formula_delta(he, pair, buf, size);
Jiri Olsaed279da2012-10-05 16:44:45 +0200295 case COMPUTE_RATIO:
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100296 return formula_ratio(he, pair, buf, size);
Jiri Olsaed279da2012-10-05 16:44:45 +0200297 case COMPUTE_WEIGHTED_DIFF:
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100298 return formula_wdiff(he, pair, buf, size);
Jiri Olsaed279da2012-10-05 16:44:45 +0200299 default:
300 BUG_ON(1);
301 }
302
303 return -1;
304}
305
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300306static int hists__add_entry(struct hists *hists,
Andi Kleen05484292013-01-24 16:10:29 +0100307 struct addr_location *al, u64 period,
Andi Kleen475eeab2013-09-20 07:40:43 -0700308 u64 weight, u64 transaction)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200309{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300310 if (__hists__add_entry(hists, al, NULL, period, weight, transaction) != NULL)
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300311 return 0;
312 return -ENOMEM;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200313}
314
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300315static int diff__process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200316 union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200317 struct perf_sample *sample,
Jiri Olsa863e4512012-09-06 17:46:55 +0200318 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200319 struct machine *machine)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200320{
321 struct addr_location al;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200322
Adrian Huntere44baa32013-08-08 14:32:25 +0300323 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200324 pr_warning("problem processing %d event, skipping it.\n",
325 event->header.type);
326 return -1;
327 }
328
Jiri Olsad88c48f2012-10-05 16:44:46 +0200329 if (al.filtered)
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200330 return 0;
331
Andi Kleen475eeab2013-09-20 07:40:43 -0700332 if (hists__add_entry(&evsel->hists, &al, sample->period,
333 sample->weight, sample->transaction)) {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300334 pr_warning("problem incrementing symbol period, skipping event\n");
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200335 return -1;
336 }
337
Jiri Olsa863e4512012-09-06 17:46:55 +0200338 evsel->hists.stats.total_period += sample->period;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200339 return 0;
340}
341
Jiri Olsa863e4512012-09-06 17:46:55 +0200342static struct perf_tool tool = {
343 .sample = diff__process_sample_event,
344 .mmap = perf_event__process_mmap,
345 .comm = perf_event__process_comm,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300346 .exit = perf_event__process_exit,
347 .fork = perf_event__process_fork,
Jiri Olsa863e4512012-09-06 17:46:55 +0200348 .lost = perf_event__process_lost,
349 .ordered_samples = true,
350 .ordering_requires_timestamps = true,
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200351};
352
Jiri Olsa863e4512012-09-06 17:46:55 +0200353static struct perf_evsel *evsel_match(struct perf_evsel *evsel,
354 struct perf_evlist *evlist)
355{
356 struct perf_evsel *e;
357
358 list_for_each_entry(e, &evlist->entries, node)
359 if (perf_evsel__match2(evsel, e))
360 return e;
361
362 return NULL;
363}
364
Namhyung Kimce74f602012-12-10 17:29:55 +0900365static void perf_evlist__collapse_resort(struct perf_evlist *evlist)
Jiri Olsadd464342012-10-04 21:49:36 +0900366{
367 struct perf_evsel *evsel;
368
369 list_for_each_entry(evsel, &evlist->entries, node) {
370 struct hists *hists = &evsel->hists;
371
Namhyung Kimc1fb5652013-10-11 14:15:38 +0900372 hists__collapse_resort(hists, NULL);
Jiri Olsadd464342012-10-04 21:49:36 +0900373 }
374}
375
Jiri Olsa5f3f8d32012-11-25 23:10:20 +0100376static struct hist_entry*
377get_pair_data(struct hist_entry *he, struct data__file *d)
378{
379 if (hist_entry__has_pairs(he)) {
380 struct hist_entry *pair;
381
382 list_for_each_entry(pair, &he->pairs.head, pairs.node)
383 if (pair->hists == d->hists)
384 return pair;
385 }
386
387 return NULL;
388}
389
390static struct hist_entry*
391get_pair_fmt(struct hist_entry *he, struct diff_hpp_fmt *dfmt)
392{
393 void *ptr = dfmt - dfmt->idx;
394 struct data__file *d = container_of(ptr, struct data__file, fmt);
395
396 return get_pair_data(he, d);
397}
398
Jiri Olsaa06d1432012-10-05 16:44:40 +0200399static void hists__baseline_only(struct hists *hists)
400{
Namhyung Kimce74f602012-12-10 17:29:55 +0900401 struct rb_root *root;
402 struct rb_node *next;
Jiri Olsaa06d1432012-10-05 16:44:40 +0200403
Namhyung Kimce74f602012-12-10 17:29:55 +0900404 if (sort__need_collapse)
405 root = &hists->entries_collapsed;
406 else
407 root = hists->entries_in;
408
409 next = rb_first(root);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200410 while (next != NULL) {
Namhyung Kimce74f602012-12-10 17:29:55 +0900411 struct hist_entry *he = rb_entry(next, struct hist_entry, rb_node_in);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200412
Namhyung Kimce74f602012-12-10 17:29:55 +0900413 next = rb_next(&he->rb_node_in);
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200414 if (!hist_entry__next_pair(he)) {
Namhyung Kimce74f602012-12-10 17:29:55 +0900415 rb_erase(&he->rb_node_in, root);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200416 hist_entry__free(he);
417 }
418 }
419}
420
Jiri Olsa96c47f12012-10-05 16:44:42 +0200421static void hists__precompute(struct hists *hists)
422{
Jiri Olsa367c53c2012-12-13 14:08:59 +0100423 struct rb_root *root;
424 struct rb_node *next;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200425
Jiri Olsa367c53c2012-12-13 14:08:59 +0100426 if (sort__need_collapse)
427 root = &hists->entries_collapsed;
428 else
429 root = hists->entries_in;
430
431 next = rb_first(root);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200432 while (next != NULL) {
Jiri Olsa5f3f8d32012-11-25 23:10:20 +0100433 struct hist_entry *he, *pair;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200434
Jiri Olsa5f3f8d32012-11-25 23:10:20 +0100435 he = rb_entry(next, struct hist_entry, rb_node_in);
Jiri Olsa367c53c2012-12-13 14:08:59 +0100436 next = rb_next(&he->rb_node_in);
Jiri Olsa5f3f8d32012-11-25 23:10:20 +0100437
438 pair = get_pair_data(he, &data__files[sort_compute]);
Jiri Olsa05472da2012-11-28 14:52:40 +0100439 if (!pair)
440 continue;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200441
442 switch (compute) {
443 case COMPUTE_DELTA:
Jiri Olsaef358e62012-10-21 23:31:51 +0200444 compute_delta(he, pair);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200445 break;
446 case COMPUTE_RATIO:
Jiri Olsaef358e62012-10-21 23:31:51 +0200447 compute_ratio(he, pair);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200448 break;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200449 case COMPUTE_WEIGHTED_DIFF:
Jiri Olsaef358e62012-10-21 23:31:51 +0200450 compute_wdiff(he, pair);
Jiri Olsa81d5f952012-10-05 16:44:43 +0200451 break;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200452 default:
453 BUG_ON(1);
454 }
455 }
456}
457
458static int64_t cmp_doubles(double l, double r)
459{
460 if (l > r)
461 return -1;
462 else if (l < r)
463 return 1;
464 else
465 return 0;
466}
467
468static int64_t
Jiri Olsa5f3f8d32012-11-25 23:10:20 +0100469__hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right,
Jiri Olsa96c47f12012-10-05 16:44:42 +0200470 int c)
471{
472 switch (c) {
473 case COMPUTE_DELTA:
474 {
475 double l = left->diff.period_ratio_delta;
476 double r = right->diff.period_ratio_delta;
477
478 return cmp_doubles(l, r);
479 }
480 case COMPUTE_RATIO:
481 {
482 double l = left->diff.period_ratio;
483 double r = right->diff.period_ratio;
484
485 return cmp_doubles(l, r);
486 }
Jiri Olsa81d5f952012-10-05 16:44:43 +0200487 case COMPUTE_WEIGHTED_DIFF:
488 {
489 s64 l = left->diff.wdiff;
490 s64 r = right->diff.wdiff;
491
492 return r - l;
493 }
Jiri Olsa96c47f12012-10-05 16:44:42 +0200494 default:
495 BUG_ON(1);
496 }
497
498 return 0;
499}
500
Jiri Olsa5f3f8d32012-11-25 23:10:20 +0100501static int64_t
502hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right,
503 int c)
504{
505 bool pairs_left = hist_entry__has_pairs(left);
506 bool pairs_right = hist_entry__has_pairs(right);
507 struct hist_entry *p_right, *p_left;
508
509 if (!pairs_left && !pairs_right)
510 return 0;
511
512 if (!pairs_left || !pairs_right)
513 return pairs_left ? -1 : 1;
514
515 p_left = get_pair_data(left, &data__files[sort_compute]);
516 p_right = get_pair_data(right, &data__files[sort_compute]);
517
518 if (!p_left && !p_right)
519 return 0;
520
521 if (!p_left || !p_right)
522 return p_left ? -1 : 1;
523
524 /*
525 * We have 2 entries of same kind, let's
526 * make the data comparison.
527 */
528 return __hist_entry__cmp_compute(p_left, p_right, c);
529}
530
Jiri Olsa96c47f12012-10-05 16:44:42 +0200531static void insert_hist_entry_by_compute(struct rb_root *root,
532 struct hist_entry *he,
533 int c)
534{
535 struct rb_node **p = &root->rb_node;
536 struct rb_node *parent = NULL;
537 struct hist_entry *iter;
538
539 while (*p != NULL) {
540 parent = *p;
541 iter = rb_entry(parent, struct hist_entry, rb_node);
542 if (hist_entry__cmp_compute(he, iter, c) < 0)
543 p = &(*p)->rb_left;
544 else
545 p = &(*p)->rb_right;
546 }
547
548 rb_link_node(&he->rb_node, parent, p);
549 rb_insert_color(&he->rb_node, root);
550}
551
552static void hists__compute_resort(struct hists *hists)
553{
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900554 struct rb_root *root;
555 struct rb_node *next;
556
557 if (sort__need_collapse)
558 root = &hists->entries_collapsed;
559 else
560 root = hists->entries_in;
561
562 hists->entries = RB_ROOT;
563 next = rb_first(root);
564
565 hists->nr_entries = 0;
566 hists->stats.total_period = 0;
567 hists__reset_col_len(hists);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200568
569 while (next != NULL) {
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900570 struct hist_entry *he;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200571
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900572 he = rb_entry(next, struct hist_entry, rb_node_in);
573 next = rb_next(&he->rb_node_in);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200574
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900575 insert_hist_entry_by_compute(&hists->entries, he, compute);
576 hists__inc_nr_entries(hists, he);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200577 }
Jiri Olsa96c47f12012-10-05 16:44:42 +0200578}
579
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100580static void hists__process(struct hists *hists)
Jiri Olsaa06d1432012-10-05 16:44:40 +0200581{
Jiri Olsaa06d1432012-10-05 16:44:40 +0200582 if (show_baseline_only)
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100583 hists__baseline_only(hists);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200584
Jiri Olsa96c47f12012-10-05 16:44:42 +0200585 if (sort_compute) {
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100586 hists__precompute(hists);
587 hists__compute_resort(hists);
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900588 } else {
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100589 hists__output_resort(hists);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200590 }
591
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100592 hists__fprintf(hists, true, 0, 0, 0, stdout);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200593}
594
Jiri Olsa1d81c7f2012-12-01 21:56:03 +0100595static void data__fprintf(void)
596{
597 struct data__file *d;
598 int i;
599
600 fprintf(stdout, "# Data files:\n");
601
602 data__for_each_file(i, d)
603 fprintf(stdout, "# [%d] %s %s\n",
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200604 d->idx, d->file.path,
Jiri Olsa1d81c7f2012-12-01 21:56:03 +0100605 !d->idx ? "(Baseline)" : "");
606
607 fprintf(stdout, "#\n");
608}
609
Jiri Olsaec308422013-03-25 00:02:01 +0100610static void data_process(void)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200611{
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100612 struct perf_evlist *evlist_base = data__files[0].session->evlist;
613 struct perf_evsel *evsel_base;
Jiri Olsa863e4512012-09-06 17:46:55 +0200614 bool first = true;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200615
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100616 list_for_each_entry(evsel_base, &evlist_base->entries, node) {
617 struct data__file *d;
618 int i;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200619
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100620 data__for_each_file_new(i, d) {
621 struct perf_evlist *evlist = d->session->evlist;
622 struct perf_evsel *evsel;
623
624 evsel = evsel_match(evsel_base, evlist);
625 if (!evsel)
626 continue;
627
628 d->hists = &evsel->hists;
629
630 hists__match(&evsel_base->hists, &evsel->hists);
631
632 if (!show_baseline_only)
633 hists__link(&evsel_base->hists,
634 &evsel->hists);
635 }
Jiri Olsa863e4512012-09-06 17:46:55 +0200636
637 fprintf(stdout, "%s# Event '%s'\n#\n", first ? "" : "\n",
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100638 perf_evsel__name(evsel_base));
Jiri Olsa863e4512012-09-06 17:46:55 +0200639
640 first = false;
641
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100642 if (verbose || data__files_cnt > 2)
Jiri Olsa1d81c7f2012-12-01 21:56:03 +0100643 data__fprintf();
644
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100645 hists__process(&evsel_base->hists);
Jiri Olsaec308422013-03-25 00:02:01 +0100646 }
647}
648
Jiri Olsac818b492012-12-01 21:57:04 +0100649static void data__free(struct data__file *d)
650{
651 int col;
652
653 for (col = 0; col < PERF_HPP_DIFF__MAX_INDEX; col++) {
654 struct diff_hpp_fmt *fmt = &d->fmt[col];
655
656 free(fmt->header);
657 }
658}
659
Jiri Olsaec308422013-03-25 00:02:01 +0100660static int __cmd_diff(void)
661{
662 struct data__file *d;
663 int ret = -EINVAL, i;
664
665 data__for_each_file(i, d) {
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200666 d->session = perf_session__new(&d->file, false, &tool);
Jiri Olsaec308422013-03-25 00:02:01 +0100667 if (!d->session) {
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200668 pr_err("Failed to open %s\n", d->file.path);
Jiri Olsaec308422013-03-25 00:02:01 +0100669 ret = -ENOMEM;
670 goto out_delete;
671 }
672
673 ret = perf_session__process_events(d->session, &tool);
674 if (ret) {
Jiri Olsaf5fc14122013-10-15 16:27:32 +0200675 pr_err("Failed to process %s\n", d->file.path);
Jiri Olsaec308422013-03-25 00:02:01 +0100676 goto out_delete;
677 }
678
679 perf_evlist__collapse_resort(d->session->evlist);
Jiri Olsa863e4512012-09-06 17:46:55 +0200680 }
681
Jiri Olsaec308422013-03-25 00:02:01 +0100682 data_process();
683
684 out_delete:
685 data__for_each_file(i, d) {
686 if (d->session)
687 perf_session__delete(d->session);
Jiri Olsac818b492012-12-01 21:57:04 +0100688
689 data__free(d);
Jiri Olsaec308422013-03-25 00:02:01 +0100690 }
691
692 free(data__files);
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200693 return ret;
694}
695
Arnaldo Carvalho de Melo0422a4f2009-12-18 16:35:58 -0200696static const char * const diff_usage[] = {
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200697 "perf diff [<options>] [old_file] [new_file]",
Arnaldo Carvalho de Melo0422a4f2009-12-18 16:35:58 -0200698 NULL,
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200699};
700
701static const struct option options[] = {
Ian Munsiec0555642010-04-13 18:37:33 +1000702 OPT_INCR('v', "verbose", &verbose,
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200703 "be more verbose (show symbol address, etc)"),
Jiri Olsaa06d1432012-10-05 16:44:40 +0200704 OPT_BOOLEAN('b', "baseline-only", &show_baseline_only,
705 "Show only items with match in baseline"),
Jiri Olsa81d5f952012-10-05 16:44:43 +0200706 OPT_CALLBACK('c', "compute", &compute,
707 "delta,ratio,wdiff:w1,w2 (default delta)",
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200708 "Entries differential computation selection",
709 setup_compute),
Jiri Olsa61949b22012-10-05 16:44:44 +0200710 OPT_BOOLEAN('p', "period", &show_period,
711 "Show period values."),
Jiri Olsaed279da2012-10-05 16:44:45 +0200712 OPT_BOOLEAN('F', "formula", &show_formula,
713 "Show formula."),
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200714 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
715 "dump raw trace in ASCII"),
716 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
717 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
718 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200719 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
720 "only consider symbols in these dsos"),
721 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
722 "only consider symbols in these comms"),
723 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
724 "only consider these symbols"),
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200725 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
726 "sort by key(s): pid, comm, dso, symbol, parent"),
727 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
728 "separator for columns, no spaces will be added between "
729 "columns '.' is reserved."),
David Ahernec5761e2010-12-09 13:27:07 -0700730 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
731 "Look for files with symbols relative to this directory"),
Jiri Olsa5f3f8d32012-11-25 23:10:20 +0100732 OPT_UINTEGER('o', "order", &sort_compute, "Specify compute sorting."),
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200733 OPT_END()
734};
735
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100736static double baseline_percent(struct hist_entry *he)
Jiri Olsa1d778222012-10-04 21:49:39 +0900737{
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100738 struct hists *hists = he->hists;
739 return 100.0 * he->stat.period / hists->stats.total_period;
740}
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200741
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100742static int hpp__color_baseline(struct perf_hpp_fmt *fmt,
743 struct perf_hpp *hpp, struct hist_entry *he)
744{
745 struct diff_hpp_fmt *dfmt =
746 container_of(fmt, struct diff_hpp_fmt, fmt);
747 double percent = baseline_percent(he);
748 char pfmt[20] = " ";
749
750 if (!he->dummy) {
751 scnprintf(pfmt, 20, "%%%d.2f%%%%", dfmt->header_width - 1);
752 return percent_color_snprintf(hpp->buf, hpp->size,
753 pfmt, percent);
754 } else
755 return scnprintf(hpp->buf, hpp->size, "%*s",
756 dfmt->header_width, pfmt);
757}
758
759static int hpp__entry_baseline(struct hist_entry *he, char *buf, size_t size)
760{
761 double percent = baseline_percent(he);
762 const char *fmt = symbol_conf.field_sep ? "%.2f" : "%6.2f%%";
763 int ret = 0;
764
765 if (!he->dummy)
766 ret = scnprintf(buf, size, fmt, percent);
767
768 return ret;
769}
770
771static void
772hpp__entry_unpair(struct hist_entry *he, int idx, char *buf, size_t size)
773{
774 switch (idx) {
775 case PERF_HPP_DIFF__PERIOD_BASELINE:
776 scnprintf(buf, size, "%" PRIu64, he->stat.period);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200777 break;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100778
779 default:
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200780 break;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100781 }
782}
783
784static void
785hpp__entry_pair(struct hist_entry *he, struct hist_entry *pair,
786 int idx, char *buf, size_t size)
787{
788 double diff;
789 double ratio;
790 s64 wdiff;
791
792 switch (idx) {
793 case PERF_HPP_DIFF__DELTA:
794 if (pair->diff.computed)
795 diff = pair->diff.period_ratio_delta;
796 else
Jiri Olsaef358e62012-10-21 23:31:51 +0200797 diff = compute_delta(he, pair);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100798
799 if (fabs(diff) >= 0.01)
800 scnprintf(buf, size, "%+4.2F%%", diff);
Jiri Olsa81d5f952012-10-05 16:44:43 +0200801 break;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100802
803 case PERF_HPP_DIFF__RATIO:
804 /* No point for ratio number if we are dummy.. */
805 if (he->dummy)
806 break;
807
808 if (pair->diff.computed)
809 ratio = pair->diff.period_ratio;
810 else
Jiri Olsaef358e62012-10-21 23:31:51 +0200811 ratio = compute_ratio(he, pair);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100812
813 if (ratio > 0.0)
814 scnprintf(buf, size, "%14.6F", ratio);
815 break;
816
817 case PERF_HPP_DIFF__WEIGHTED_DIFF:
818 /* No point for wdiff number if we are dummy.. */
819 if (he->dummy)
820 break;
821
822 if (pair->diff.computed)
823 wdiff = pair->diff.wdiff;
824 else
Jiri Olsaef358e62012-10-21 23:31:51 +0200825 wdiff = compute_wdiff(he, pair);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100826
827 if (wdiff != 0)
828 scnprintf(buf, size, "%14ld", wdiff);
829 break;
830
831 case PERF_HPP_DIFF__FORMULA:
Jiri Olsaef358e62012-10-21 23:31:51 +0200832 formula_fprintf(he, pair, buf, size);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100833 break;
834
835 case PERF_HPP_DIFF__PERIOD:
836 scnprintf(buf, size, "%" PRIu64, pair->stat.period);
837 break;
838
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200839 default:
840 BUG_ON(1);
841 };
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100842}
843
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100844static void
845__hpp__entry_global(struct hist_entry *he, struct diff_hpp_fmt *dfmt,
846 char *buf, size_t size)
847{
Jiri Olsa5f3f8d32012-11-25 23:10:20 +0100848 struct hist_entry *pair = get_pair_fmt(he, dfmt);
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100849 int idx = dfmt->idx;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100850
851 /* baseline is special */
852 if (idx == PERF_HPP_DIFF__BASELINE)
853 hpp__entry_baseline(he, buf, size);
854 else {
855 if (pair)
856 hpp__entry_pair(he, pair, idx, buf, size);
857 else
858 hpp__entry_unpair(he, idx, buf, size);
859 }
860}
861
862static int hpp__entry_global(struct perf_hpp_fmt *_fmt, struct perf_hpp *hpp,
863 struct hist_entry *he)
864{
865 struct diff_hpp_fmt *dfmt =
866 container_of(_fmt, struct diff_hpp_fmt, fmt);
867 char buf[MAX_COL_WIDTH] = " ";
868
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100869 __hpp__entry_global(he, dfmt, buf, MAX_COL_WIDTH);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100870
871 if (symbol_conf.field_sep)
872 return scnprintf(hpp->buf, hpp->size, "%s", buf);
873 else
874 return scnprintf(hpp->buf, hpp->size, "%*s",
875 dfmt->header_width, buf);
876}
877
878static int hpp__header(struct perf_hpp_fmt *fmt,
879 struct perf_hpp *hpp)
880{
881 struct diff_hpp_fmt *dfmt =
882 container_of(fmt, struct diff_hpp_fmt, fmt);
883
884 BUG_ON(!dfmt->header);
885 return scnprintf(hpp->buf, hpp->size, dfmt->header);
886}
887
888static int hpp__width(struct perf_hpp_fmt *fmt,
889 struct perf_hpp *hpp __maybe_unused)
890{
891 struct diff_hpp_fmt *dfmt =
892 container_of(fmt, struct diff_hpp_fmt, fmt);
893
894 BUG_ON(dfmt->header_width <= 0);
895 return dfmt->header_width;
896}
897
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100898static void init_header(struct data__file *d, struct diff_hpp_fmt *dfmt)
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100899{
900#define MAX_HEADER_NAME 100
901 char buf_indent[MAX_HEADER_NAME];
902 char buf[MAX_HEADER_NAME];
903 const char *header = NULL;
904 int width = 0;
905
906 BUG_ON(dfmt->idx >= PERF_HPP_DIFF__MAX_INDEX);
907 header = columns[dfmt->idx].name;
908 width = columns[dfmt->idx].width;
909
910 /* Only our defined HPP fmts should appear here. */
911 BUG_ON(!header);
912
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100913 if (data__files_cnt > 2)
914 scnprintf(buf, MAX_HEADER_NAME, "%s/%d", header, d->idx);
915
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100916#define NAME (data__files_cnt > 2 ? buf : header)
917 dfmt->header_width = width;
918 width = (int) strlen(NAME);
919 if (dfmt->header_width < width)
920 dfmt->header_width = width;
921
922 scnprintf(buf_indent, MAX_HEADER_NAME, "%*s",
923 dfmt->header_width, NAME);
924
925 dfmt->header = strdup(buf_indent);
926#undef MAX_HEADER_NAME
927#undef NAME
928}
929
Jiri Olsac818b492012-12-01 21:57:04 +0100930static void data__hpp_register(struct data__file *d, int idx)
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100931{
Jiri Olsac818b492012-12-01 21:57:04 +0100932 struct diff_hpp_fmt *dfmt = &d->fmt[idx];
933 struct perf_hpp_fmt *fmt = &dfmt->fmt;
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100934
Jiri Olsac818b492012-12-01 21:57:04 +0100935 dfmt->idx = idx;
936
937 fmt->header = hpp__header;
938 fmt->width = hpp__width;
939 fmt->entry = hpp__entry_global;
940
941 /* TODO more colors */
942 if (idx == PERF_HPP_DIFF__BASELINE)
943 fmt->color = hpp__color_baseline;
944
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100945 init_header(d, dfmt);
Jiri Olsac818b492012-12-01 21:57:04 +0100946 perf_hpp__column_register(fmt);
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100947}
948
949static void ui_init(void)
950{
Jiri Olsac818b492012-12-01 21:57:04 +0100951 struct data__file *d;
952 int i;
Jiri Olsa1d778222012-10-04 21:49:39 +0900953
Jiri Olsac818b492012-12-01 21:57:04 +0100954 data__for_each_file(i, d) {
Jiri Olsaed279da2012-10-05 16:44:45 +0200955
Jiri Olsac818b492012-12-01 21:57:04 +0100956 /*
957 * Baseline or compute realted columns:
958 *
959 * PERF_HPP_DIFF__BASELINE
960 * PERF_HPP_DIFF__DELTA
961 * PERF_HPP_DIFF__RATIO
962 * PERF_HPP_DIFF__WEIGHTED_DIFF
963 */
964 data__hpp_register(d, i ? compute_2_hpp[compute] :
965 PERF_HPP_DIFF__BASELINE);
966
967 /*
968 * And the rest:
969 *
970 * PERF_HPP_DIFF__FORMULA
971 * PERF_HPP_DIFF__PERIOD
972 * PERF_HPP_DIFF__PERIOD_BASELINE
973 */
974 if (show_formula && i)
975 data__hpp_register(d, PERF_HPP_DIFF__FORMULA);
976
977 if (show_period)
978 data__hpp_register(d, i ? PERF_HPP_DIFF__PERIOD :
979 PERF_HPP_DIFF__PERIOD_BASELINE);
Jiri Olsa61949b22012-10-05 16:44:44 +0200980 }
Jiri Olsa1d778222012-10-04 21:49:39 +0900981}
982
Jiri Olsaec308422013-03-25 00:02:01 +0100983static int data_init(int argc, const char **argv)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200984{
Jiri Olsaec308422013-03-25 00:02:01 +0100985 struct data__file *d;
986 static const char *defaults[] = {
987 "perf.data.old",
988 "perf.data",
989 };
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100990 bool use_default = true;
Jiri Olsaec308422013-03-25 00:02:01 +0100991 int i;
992
993 data__files_cnt = 2;
994
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200995 if (argc) {
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100996 if (argc == 1)
Jiri Olsaec308422013-03-25 00:02:01 +0100997 defaults[1] = argv[0];
Jiri Olsa22aeb7f2012-12-01 22:00:00 +0100998 else {
999 data__files_cnt = argc;
1000 use_default = false;
1001 }
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001002 } else if (symbol_conf.default_guest_vmlinux_name ||
1003 symbol_conf.default_guest_kallsyms) {
Jiri Olsaec308422013-03-25 00:02:01 +01001004 defaults[0] = "perf.data.host";
1005 defaults[1] = "perf.data.guest";
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -02001006 }
1007
Jiri Olsa5f3f8d32012-11-25 23:10:20 +01001008 if (sort_compute >= (unsigned int) data__files_cnt) {
1009 pr_err("Order option out of limit.\n");
1010 return -EINVAL;
1011 }
1012
Jiri Olsaec308422013-03-25 00:02:01 +01001013 data__files = zalloc(sizeof(*data__files) * data__files_cnt);
1014 if (!data__files)
1015 return -ENOMEM;
1016
1017 data__for_each_file(i, d) {
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001018 struct perf_data_file *file = &d->file;
1019
1020 file->path = use_default ? defaults[i] : argv[i];
1021 file->mode = PERF_DATA_MODE_READ,
1022 file->force = force,
1023
Jiri Olsaec308422013-03-25 00:02:01 +01001024 d->idx = i;
1025 }
1026
1027 return 0;
1028}
1029
1030int cmd_diff(int argc, const char **argv, const char *prefix __maybe_unused)
1031{
1032 sort_order = diff__default_sort_order;
1033 argc = parse_options(argc, argv, options, diff_usage, 0);
1034
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -02001035 if (symbol__init() < 0)
1036 return -1;
1037
Jiri Olsaec308422013-03-25 00:02:01 +01001038 if (data_init(argc, argv) < 0)
1039 return -1;
1040
Jiri Olsa1d778222012-10-04 21:49:39 +09001041 ui_init();
1042
Namhyung Kim55309982013-02-06 14:57:16 +09001043 if (setup_sorting() < 0)
1044 usage_with_options(diff_usage, options);
1045
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -02001046 setup_pager();
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -02001047
Namhyung Kim08e71542013-04-03 21:26:19 +09001048 sort__setup_elide(NULL);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -02001049
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -02001050 return __cmd_diff();
1051}