blob: 0cfe99ea905642703cb13d6848ace4ed3bca17c6 [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>
21
Jiri Olsaec308422013-03-25 00:02:01 +010022struct data__file {
23 struct perf_session *session;
24 const char *file;
25 int idx;
26};
27
28static struct data__file *data__files;
29static int data__files_cnt;
30
31#define data__for_each_file_start(i, d, s) \
32 for (i = s, d = &data__files[s]; \
33 i < data__files_cnt; \
34 i++, d = &data__files[i])
35
36#define data__for_each_file(i, d) data__for_each_file_start(i, d, 0)
37
38static char diff__default_sort_order[] = "dso,symbol";
39static bool force;
Jiri Olsa61949b22012-10-05 16:44:44 +020040static bool show_period;
Jiri Olsaed279da2012-10-05 16:44:45 +020041static bool show_formula;
Jiri Olsaa06d1432012-10-05 16:44:40 +020042static bool show_baseline_only;
Jiri Olsa96c47f12012-10-05 16:44:42 +020043static bool sort_compute;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -020044
Jiri Olsa81d5f952012-10-05 16:44:43 +020045static s64 compute_wdiff_w1;
46static s64 compute_wdiff_w2;
47
Jiri Olsa7aaf6b32012-10-05 16:44:41 +020048enum {
49 COMPUTE_DELTA,
50 COMPUTE_RATIO,
Jiri Olsa81d5f952012-10-05 16:44:43 +020051 COMPUTE_WEIGHTED_DIFF,
Jiri Olsa7aaf6b32012-10-05 16:44:41 +020052 COMPUTE_MAX,
53};
54
55const char *compute_names[COMPUTE_MAX] = {
56 [COMPUTE_DELTA] = "delta",
57 [COMPUTE_RATIO] = "ratio",
Jiri Olsa81d5f952012-10-05 16:44:43 +020058 [COMPUTE_WEIGHTED_DIFF] = "wdiff",
Jiri Olsa7aaf6b32012-10-05 16:44:41 +020059};
60
61static int compute;
62
Jiri Olsa81d5f952012-10-05 16:44:43 +020063static int setup_compute_opt_wdiff(char *opt)
64{
65 char *w1_str = opt;
66 char *w2_str;
67
68 int ret = -EINVAL;
69
70 if (!opt)
71 goto out;
72
73 w2_str = strchr(opt, ',');
74 if (!w2_str)
75 goto out;
76
77 *w2_str++ = 0x0;
78 if (!*w2_str)
79 goto out;
80
81 compute_wdiff_w1 = strtol(w1_str, NULL, 10);
82 compute_wdiff_w2 = strtol(w2_str, NULL, 10);
83
84 if (!compute_wdiff_w1 || !compute_wdiff_w2)
85 goto out;
86
87 pr_debug("compute wdiff w1(%" PRId64 ") w2(%" PRId64 ")\n",
88 compute_wdiff_w1, compute_wdiff_w2);
89
90 ret = 0;
91
92 out:
93 if (ret)
94 pr_err("Failed: wrong weight data, use 'wdiff:w1,w2'\n");
95
96 return ret;
97}
98
99static int setup_compute_opt(char *opt)
100{
101 if (compute == COMPUTE_WEIGHTED_DIFF)
102 return setup_compute_opt_wdiff(opt);
103
104 if (opt) {
105 pr_err("Failed: extra option specified '%s'", opt);
106 return -EINVAL;
107 }
108
109 return 0;
110}
111
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200112static int setup_compute(const struct option *opt, const char *str,
113 int unset __maybe_unused)
114{
115 int *cp = (int *) opt->value;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200116 char *cstr = (char *) str;
117 char buf[50];
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200118 unsigned i;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200119 char *option;
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200120
121 if (!str) {
122 *cp = COMPUTE_DELTA;
123 return 0;
124 }
125
Jiri Olsa96c47f12012-10-05 16:44:42 +0200126 if (*str == '+') {
127 sort_compute = true;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200128 cstr = (char *) ++str;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200129 if (!*str)
130 return 0;
131 }
132
Jiri Olsa81d5f952012-10-05 16:44:43 +0200133 option = strchr(str, ':');
134 if (option) {
135 unsigned len = option++ - str;
136
137 /*
138 * The str data are not writeable, so we need
139 * to use another buffer.
140 */
141
142 /* No option value is longer. */
143 if (len >= sizeof(buf))
144 return -EINVAL;
145
146 strncpy(buf, str, len);
147 buf[len] = 0x0;
148 cstr = buf;
149 }
150
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200151 for (i = 0; i < COMPUTE_MAX; i++)
Jiri Olsa81d5f952012-10-05 16:44:43 +0200152 if (!strcmp(cstr, compute_names[i])) {
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200153 *cp = i;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200154 return setup_compute_opt(option);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200155 }
156
157 pr_err("Failed: '%s' is not computation method "
Jiri Olsa81d5f952012-10-05 16:44:43 +0200158 "(use 'delta','ratio' or 'wdiff')\n", str);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200159 return -EINVAL;
160}
161
Jiri Olsa05472da2012-11-28 14:52:40 +0100162double perf_diff__period_percent(struct hist_entry *he, u64 period)
Jiri Olsa96c47f12012-10-05 16:44:42 +0200163{
164 u64 total = he->hists->stats.total_period;
165 return (period * 100.0) / total;
166}
167
Jiri Olsa05472da2012-11-28 14:52:40 +0100168double perf_diff__compute_delta(struct hist_entry *he, struct hist_entry *pair)
Jiri Olsa96c47f12012-10-05 16:44:42 +0200169{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100170 double old_percent = perf_diff__period_percent(he, he->stat.period);
171 double new_percent = perf_diff__period_percent(pair, pair->stat.period);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200172
Jiri Olsa9af303e2012-12-01 21:15:40 +0100173 pair->diff.period_ratio_delta = new_percent - old_percent;
174 pair->diff.computed = true;
175 return pair->diff.period_ratio_delta;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200176}
177
Jiri Olsa05472da2012-11-28 14:52:40 +0100178double perf_diff__compute_ratio(struct hist_entry *he, struct hist_entry *pair)
Jiri Olsa96c47f12012-10-05 16:44:42 +0200179{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100180 double old_period = he->stat.period ?: 1;
181 double new_period = pair->stat.period;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200182
Jiri Olsa9af303e2012-12-01 21:15:40 +0100183 pair->diff.computed = true;
184 pair->diff.period_ratio = new_period / old_period;
185 return pair->diff.period_ratio;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200186}
187
Jiri Olsa05472da2012-11-28 14:52:40 +0100188s64 perf_diff__compute_wdiff(struct hist_entry *he, struct hist_entry *pair)
Jiri Olsa81d5f952012-10-05 16:44:43 +0200189{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100190 u64 old_period = he->stat.period;
191 u64 new_period = pair->stat.period;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200192
Jiri Olsa9af303e2012-12-01 21:15:40 +0100193 pair->diff.computed = true;
194 pair->diff.wdiff = new_period * compute_wdiff_w2 -
195 old_period * compute_wdiff_w1;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200196
Jiri Olsa9af303e2012-12-01 21:15:40 +0100197 return pair->diff.wdiff;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200198}
199
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100200static int formula_delta(struct hist_entry *he, struct hist_entry *pair,
201 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200202{
Jiri Olsaed279da2012-10-05 16:44:45 +0200203 return scnprintf(buf, size,
204 "(%" PRIu64 " * 100 / %" PRIu64 ") - "
205 "(%" PRIu64 " * 100 / %" PRIu64 ")",
Jiri Olsa9af303e2012-12-01 21:15:40 +0100206 pair->stat.period, pair->hists->stats.total_period,
207 he->stat.period, he->hists->stats.total_period);
Jiri Olsaed279da2012-10-05 16:44:45 +0200208}
209
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100210static int formula_ratio(struct hist_entry *he, struct hist_entry *pair,
211 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200212{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100213 double old_period = he->stat.period;
214 double new_period = pair->stat.period;
Jiri Olsaed279da2012-10-05 16:44:45 +0200215
216 return scnprintf(buf, size, "%.0F / %.0F", new_period, old_period);
217}
218
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100219static int formula_wdiff(struct hist_entry *he, struct hist_entry *pair,
220 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200221{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100222 u64 old_period = he->stat.period;
223 u64 new_period = pair->stat.period;
Jiri Olsaed279da2012-10-05 16:44:45 +0200224
225 return scnprintf(buf, size,
226 "(%" PRIu64 " * " "%" PRId64 ") - (%" PRIu64 " * " "%" PRId64 ")",
227 new_period, compute_wdiff_w2, old_period, compute_wdiff_w1);
228}
229
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100230int perf_diff__formula(struct hist_entry *he, struct hist_entry *pair,
231 char *buf, size_t size)
Jiri Olsaed279da2012-10-05 16:44:45 +0200232{
233 switch (compute) {
234 case COMPUTE_DELTA:
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100235 return formula_delta(he, pair, buf, size);
Jiri Olsaed279da2012-10-05 16:44:45 +0200236 case COMPUTE_RATIO:
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100237 return formula_ratio(he, pair, buf, size);
Jiri Olsaed279da2012-10-05 16:44:45 +0200238 case COMPUTE_WEIGHTED_DIFF:
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100239 return formula_wdiff(he, pair, buf, size);
Jiri Olsaed279da2012-10-05 16:44:45 +0200240 default:
241 BUG_ON(1);
242 }
243
244 return -1;
245}
246
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300247static int hists__add_entry(struct hists *self,
Andi Kleen05484292013-01-24 16:10:29 +0100248 struct addr_location *al, u64 period,
249 u64 weight)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200250{
Andi Kleen05484292013-01-24 16:10:29 +0100251 if (__hists__add_entry(self, al, NULL, period, weight) != NULL)
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300252 return 0;
253 return -ENOMEM;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200254}
255
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300256static int diff__process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200257 union perf_event *event,
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200258 struct perf_sample *sample,
Jiri Olsa863e4512012-09-06 17:46:55 +0200259 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200260 struct machine *machine)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200261{
262 struct addr_location al;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200263
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200264 if (perf_event__preprocess_sample(event, machine, &al, sample, NULL) < 0) {
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200265 pr_warning("problem processing %d event, skipping it.\n",
266 event->header.type);
267 return -1;
268 }
269
Jiri Olsad88c48f2012-10-05 16:44:46 +0200270 if (al.filtered)
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200271 return 0;
272
Andi Kleen05484292013-01-24 16:10:29 +0100273 if (hists__add_entry(&evsel->hists, &al, sample->period, sample->weight)) {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300274 pr_warning("problem incrementing symbol period, skipping event\n");
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200275 return -1;
276 }
277
Jiri Olsa863e4512012-09-06 17:46:55 +0200278 evsel->hists.stats.total_period += sample->period;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200279 return 0;
280}
281
Jiri Olsa863e4512012-09-06 17:46:55 +0200282static struct perf_tool tool = {
283 .sample = diff__process_sample_event,
284 .mmap = perf_event__process_mmap,
285 .comm = perf_event__process_comm,
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300286 .exit = perf_event__process_exit,
287 .fork = perf_event__process_fork,
Jiri Olsa863e4512012-09-06 17:46:55 +0200288 .lost = perf_event__process_lost,
289 .ordered_samples = true,
290 .ordering_requires_timestamps = true,
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200291};
292
Jiri Olsa863e4512012-09-06 17:46:55 +0200293static struct perf_evsel *evsel_match(struct perf_evsel *evsel,
294 struct perf_evlist *evlist)
295{
296 struct perf_evsel *e;
297
298 list_for_each_entry(e, &evlist->entries, node)
299 if (perf_evsel__match2(evsel, e))
300 return e;
301
302 return NULL;
303}
304
Namhyung Kimce74f602012-12-10 17:29:55 +0900305static void perf_evlist__collapse_resort(struct perf_evlist *evlist)
Jiri Olsadd464342012-10-04 21:49:36 +0900306{
307 struct perf_evsel *evsel;
308
309 list_for_each_entry(evsel, &evlist->entries, node) {
310 struct hists *hists = &evsel->hists;
311
Namhyung Kimce74f602012-12-10 17:29:55 +0900312 hists__collapse_resort(hists);
Jiri Olsadd464342012-10-04 21:49:36 +0900313 }
314}
315
Jiri Olsaa06d1432012-10-05 16:44:40 +0200316static void hists__baseline_only(struct hists *hists)
317{
Namhyung Kimce74f602012-12-10 17:29:55 +0900318 struct rb_root *root;
319 struct rb_node *next;
Jiri Olsaa06d1432012-10-05 16:44:40 +0200320
Namhyung Kimce74f602012-12-10 17:29:55 +0900321 if (sort__need_collapse)
322 root = &hists->entries_collapsed;
323 else
324 root = hists->entries_in;
325
326 next = rb_first(root);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200327 while (next != NULL) {
Namhyung Kimce74f602012-12-10 17:29:55 +0900328 struct hist_entry *he = rb_entry(next, struct hist_entry, rb_node_in);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200329
Namhyung Kimce74f602012-12-10 17:29:55 +0900330 next = rb_next(&he->rb_node_in);
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200331 if (!hist_entry__next_pair(he)) {
Namhyung Kimce74f602012-12-10 17:29:55 +0900332 rb_erase(&he->rb_node_in, root);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200333 hist_entry__free(he);
334 }
335 }
336}
337
Jiri Olsa96c47f12012-10-05 16:44:42 +0200338static void hists__precompute(struct hists *hists)
339{
Jiri Olsa367c53c2012-12-13 14:08:59 +0100340 struct rb_root *root;
341 struct rb_node *next;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200342
Jiri Olsa367c53c2012-12-13 14:08:59 +0100343 if (sort__need_collapse)
344 root = &hists->entries_collapsed;
345 else
346 root = hists->entries_in;
347
348 next = rb_first(root);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200349 while (next != NULL) {
Jiri Olsa367c53c2012-12-13 14:08:59 +0100350 struct hist_entry *he = rb_entry(next, struct hist_entry, rb_node_in);
Jiri Olsa05472da2012-11-28 14:52:40 +0100351 struct hist_entry *pair = hist_entry__next_pair(he);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200352
Jiri Olsa367c53c2012-12-13 14:08:59 +0100353 next = rb_next(&he->rb_node_in);
Jiri Olsa05472da2012-11-28 14:52:40 +0100354 if (!pair)
355 continue;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200356
357 switch (compute) {
358 case COMPUTE_DELTA:
Jiri Olsa05472da2012-11-28 14:52:40 +0100359 perf_diff__compute_delta(he, pair);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200360 break;
361 case COMPUTE_RATIO:
Jiri Olsa05472da2012-11-28 14:52:40 +0100362 perf_diff__compute_ratio(he, pair);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200363 break;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200364 case COMPUTE_WEIGHTED_DIFF:
Jiri Olsa05472da2012-11-28 14:52:40 +0100365 perf_diff__compute_wdiff(he, pair);
Jiri Olsa81d5f952012-10-05 16:44:43 +0200366 break;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200367 default:
368 BUG_ON(1);
369 }
370 }
371}
372
373static int64_t cmp_doubles(double l, double r)
374{
375 if (l > r)
376 return -1;
377 else if (l < r)
378 return 1;
379 else
380 return 0;
381}
382
383static int64_t
384hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right,
385 int c)
386{
387 switch (c) {
388 case COMPUTE_DELTA:
389 {
390 double l = left->diff.period_ratio_delta;
391 double r = right->diff.period_ratio_delta;
392
393 return cmp_doubles(l, r);
394 }
395 case COMPUTE_RATIO:
396 {
397 double l = left->diff.period_ratio;
398 double r = right->diff.period_ratio;
399
400 return cmp_doubles(l, r);
401 }
Jiri Olsa81d5f952012-10-05 16:44:43 +0200402 case COMPUTE_WEIGHTED_DIFF:
403 {
404 s64 l = left->diff.wdiff;
405 s64 r = right->diff.wdiff;
406
407 return r - l;
408 }
Jiri Olsa96c47f12012-10-05 16:44:42 +0200409 default:
410 BUG_ON(1);
411 }
412
413 return 0;
414}
415
416static void insert_hist_entry_by_compute(struct rb_root *root,
417 struct hist_entry *he,
418 int c)
419{
420 struct rb_node **p = &root->rb_node;
421 struct rb_node *parent = NULL;
422 struct hist_entry *iter;
423
424 while (*p != NULL) {
425 parent = *p;
426 iter = rb_entry(parent, struct hist_entry, rb_node);
427 if (hist_entry__cmp_compute(he, iter, c) < 0)
428 p = &(*p)->rb_left;
429 else
430 p = &(*p)->rb_right;
431 }
432
433 rb_link_node(&he->rb_node, parent, p);
434 rb_insert_color(&he->rb_node, root);
435}
436
437static void hists__compute_resort(struct hists *hists)
438{
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900439 struct rb_root *root;
440 struct rb_node *next;
441
442 if (sort__need_collapse)
443 root = &hists->entries_collapsed;
444 else
445 root = hists->entries_in;
446
447 hists->entries = RB_ROOT;
448 next = rb_first(root);
449
450 hists->nr_entries = 0;
451 hists->stats.total_period = 0;
452 hists__reset_col_len(hists);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200453
454 while (next != NULL) {
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900455 struct hist_entry *he;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200456
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900457 he = rb_entry(next, struct hist_entry, rb_node_in);
458 next = rb_next(&he->rb_node_in);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200459
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900460 insert_hist_entry_by_compute(&hists->entries, he, compute);
461 hists__inc_nr_entries(hists, he);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200462 }
Jiri Olsa96c47f12012-10-05 16:44:42 +0200463}
464
Jiri Olsa9af303e2012-12-01 21:15:40 +0100465static void hists__process(struct hists *base, struct hists *new)
Jiri Olsaa06d1432012-10-05 16:44:40 +0200466{
Jiri Olsa9af303e2012-12-01 21:15:40 +0100467 hists__match(base, new);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200468
469 if (show_baseline_only)
Jiri Olsa9af303e2012-12-01 21:15:40 +0100470 hists__baseline_only(base);
Arnaldo Carvalho de Melobfaef4b2012-11-08 18:08:26 -0300471 else
Jiri Olsa9af303e2012-12-01 21:15:40 +0100472 hists__link(base, new);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200473
Jiri Olsa96c47f12012-10-05 16:44:42 +0200474 if (sort_compute) {
Jiri Olsa9af303e2012-12-01 21:15:40 +0100475 hists__precompute(base);
476 hists__compute_resort(base);
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900477 } else {
Jiri Olsa9af303e2012-12-01 21:15:40 +0100478 hists__output_resort(base);
Jiri Olsa96c47f12012-10-05 16:44:42 +0200479 }
480
Jiri Olsa9af303e2012-12-01 21:15:40 +0100481 hists__fprintf(base, true, 0, 0, 0, stdout);
Jiri Olsaa06d1432012-10-05 16:44:40 +0200482}
483
Jiri Olsaec308422013-03-25 00:02:01 +0100484static void data_process(void)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200485{
Jiri Olsaec308422013-03-25 00:02:01 +0100486 struct perf_evlist *evlist_old = data__files[0].session->evlist;
487 struct perf_evlist *evlist_new = data__files[1].session->evlist;
488 struct perf_evsel *evsel_old;
Jiri Olsa863e4512012-09-06 17:46:55 +0200489 bool first = true;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200490
Jiri Olsaec308422013-03-25 00:02:01 +0100491 list_for_each_entry(evsel_old, &evlist_old->entries, node) {
492 struct perf_evsel *evsel_new;
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200493
Jiri Olsaec308422013-03-25 00:02:01 +0100494 evsel_new = evsel_match(evsel_old, evlist_new);
495 if (!evsel_new)
Jiri Olsa863e4512012-09-06 17:46:55 +0200496 continue;
497
498 fprintf(stdout, "%s# Event '%s'\n#\n", first ? "" : "\n",
Jiri Olsaec308422013-03-25 00:02:01 +0100499 perf_evsel__name(evsel_old));
Jiri Olsa863e4512012-09-06 17:46:55 +0200500
501 first = false;
502
Jiri Olsaec308422013-03-25 00:02:01 +0100503 hists__process(&evsel_old->hists, &evsel_new->hists);
504 }
505}
506
507static int __cmd_diff(void)
508{
509 struct data__file *d;
510 int ret = -EINVAL, i;
511
512 data__for_each_file(i, d) {
513 d->session = perf_session__new(d->file, O_RDONLY, force,
514 false, &tool);
515 if (!d->session) {
516 pr_err("Failed to open %s\n", d->file);
517 ret = -ENOMEM;
518 goto out_delete;
519 }
520
521 ret = perf_session__process_events(d->session, &tool);
522 if (ret) {
523 pr_err("Failed to process %s\n", d->file);
524 goto out_delete;
525 }
526
527 perf_evlist__collapse_resort(d->session->evlist);
Jiri Olsa863e4512012-09-06 17:46:55 +0200528 }
529
Jiri Olsaec308422013-03-25 00:02:01 +0100530 data_process();
531
532 out_delete:
533 data__for_each_file(i, d) {
534 if (d->session)
535 perf_session__delete(d->session);
536 }
537
538 free(data__files);
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200539 return ret;
540}
541
Arnaldo Carvalho de Melo0422a4f2009-12-18 16:35:58 -0200542static const char * const diff_usage[] = {
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200543 "perf diff [<options>] [old_file] [new_file]",
Arnaldo Carvalho de Melo0422a4f2009-12-18 16:35:58 -0200544 NULL,
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200545};
546
547static const struct option options[] = {
Ian Munsiec0555642010-04-13 18:37:33 +1000548 OPT_INCR('v', "verbose", &verbose,
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200549 "be more verbose (show symbol address, etc)"),
Jiri Olsaa06d1432012-10-05 16:44:40 +0200550 OPT_BOOLEAN('b', "baseline-only", &show_baseline_only,
551 "Show only items with match in baseline"),
Jiri Olsa81d5f952012-10-05 16:44:43 +0200552 OPT_CALLBACK('c', "compute", &compute,
553 "delta,ratio,wdiff:w1,w2 (default delta)",
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200554 "Entries differential computation selection",
555 setup_compute),
Jiri Olsa61949b22012-10-05 16:44:44 +0200556 OPT_BOOLEAN('p', "period", &show_period,
557 "Show period values."),
Jiri Olsaed279da2012-10-05 16:44:45 +0200558 OPT_BOOLEAN('F', "formula", &show_formula,
559 "Show formula."),
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200560 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
561 "dump raw trace in ASCII"),
562 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
563 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
564 "load module symbols - WARNING: use only with -k and LIVE kernel"),
Arnaldo Carvalho de Meloc410a332009-12-15 20:04:41 -0200565 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
566 "only consider symbols in these dsos"),
567 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
568 "only consider symbols in these comms"),
569 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
570 "only consider these symbols"),
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200571 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
572 "sort by key(s): pid, comm, dso, symbol, parent"),
573 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
574 "separator for columns, no spaces will be added between "
575 "columns '.' is reserved."),
David Ahernec5761e2010-12-09 13:27:07 -0700576 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
577 "Look for files with symbols relative to this directory"),
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200578 OPT_END()
579};
580
Jiri Olsa1d778222012-10-04 21:49:39 +0900581static void ui_init(void)
582{
Jiri Olsaed279da2012-10-05 16:44:45 +0200583 /*
Jiri Olsadb6d0bb2012-12-06 14:22:28 +0100584 * Display baseline/delta/ratio
Jiri Olsaed279da2012-10-05 16:44:45 +0200585 * formula/periods columns.
586 */
Jiri Olsa12400052012-10-13 00:06:16 +0200587 perf_hpp__column_enable(PERF_HPP__BASELINE);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200588
589 switch (compute) {
590 case COMPUTE_DELTA:
Jiri Olsa12400052012-10-13 00:06:16 +0200591 perf_hpp__column_enable(PERF_HPP__DELTA);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200592 break;
593 case COMPUTE_RATIO:
Jiri Olsa12400052012-10-13 00:06:16 +0200594 perf_hpp__column_enable(PERF_HPP__RATIO);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200595 break;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200596 case COMPUTE_WEIGHTED_DIFF:
Jiri Olsa12400052012-10-13 00:06:16 +0200597 perf_hpp__column_enable(PERF_HPP__WEIGHTED_DIFF);
Jiri Olsa81d5f952012-10-05 16:44:43 +0200598 break;
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200599 default:
600 BUG_ON(1);
601 };
Jiri Olsa1d778222012-10-04 21:49:39 +0900602
Jiri Olsaed279da2012-10-05 16:44:45 +0200603 if (show_formula)
Jiri Olsa12400052012-10-13 00:06:16 +0200604 perf_hpp__column_enable(PERF_HPP__FORMULA);
Jiri Olsaed279da2012-10-05 16:44:45 +0200605
Jiri Olsa61949b22012-10-05 16:44:44 +0200606 if (show_period) {
Jiri Olsa12400052012-10-13 00:06:16 +0200607 perf_hpp__column_enable(PERF_HPP__PERIOD);
608 perf_hpp__column_enable(PERF_HPP__PERIOD_BASELINE);
Jiri Olsa61949b22012-10-05 16:44:44 +0200609 }
Jiri Olsa1d778222012-10-04 21:49:39 +0900610}
611
Jiri Olsaec308422013-03-25 00:02:01 +0100612static int data_init(int argc, const char **argv)
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200613{
Jiri Olsaec308422013-03-25 00:02:01 +0100614 struct data__file *d;
615 static const char *defaults[] = {
616 "perf.data.old",
617 "perf.data",
618 };
619 int i;
620
621 data__files_cnt = 2;
622
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200623 if (argc) {
624 if (argc > 2)
625 usage_with_options(diff_usage, options);
626 if (argc == 2) {
Jiri Olsaec308422013-03-25 00:02:01 +0100627 defaults[0] = argv[0];
628 defaults[1] = argv[1];
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200629 } else
Jiri Olsaec308422013-03-25 00:02:01 +0100630 defaults[1] = argv[0];
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800631 } else if (symbol_conf.default_guest_vmlinux_name ||
632 symbol_conf.default_guest_kallsyms) {
Jiri Olsaec308422013-03-25 00:02:01 +0100633 defaults[0] = "perf.data.host";
634 defaults[1] = "perf.data.guest";
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200635 }
636
Jiri Olsaec308422013-03-25 00:02:01 +0100637 data__files = zalloc(sizeof(*data__files) * data__files_cnt);
638 if (!data__files)
639 return -ENOMEM;
640
641 data__for_each_file(i, d) {
642 d->file = defaults[i];
643 d->idx = i;
644 }
645
646 return 0;
647}
648
649int cmd_diff(int argc, const char **argv, const char *prefix __maybe_unused)
650{
651 sort_order = diff__default_sort_order;
652 argc = parse_options(argc, argv, options, diff_usage, 0);
653
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200654 if (symbol__init() < 0)
655 return -1;
656
Jiri Olsaec308422013-03-25 00:02:01 +0100657 if (data_init(argc, argv) < 0)
658 return -1;
659
Jiri Olsa1d778222012-10-04 21:49:39 +0900660 ui_init();
661
Namhyung Kim55309982013-02-06 14:57:16 +0900662 if (setup_sorting() < 0)
663 usage_with_options(diff_usage, options);
664
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200665 setup_pager();
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200666
Namhyung Kim08e71542013-04-03 21:26:19 +0900667 sort__setup_elide(NULL);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200668
Arnaldo Carvalho de Melo86a9eee2009-12-14 20:09:31 -0200669 return __cmd_diff();
670}