aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-diff.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/builtin-diff.c')
-rw-r--r--tools/perf/builtin-diff.c664
1 files changed, 543 insertions, 121 deletions
diff --git a/tools/perf/builtin-diff.c b/tools/perf/builtin-diff.c
index 0aac5f3e594d..f28799e94f2a 100644
--- a/tools/perf/builtin-diff.c
+++ b/tools/perf/builtin-diff.c
@@ -18,15 +18,53 @@
18#include "util/util.h" 18#include "util/util.h"
19 19
20#include <stdlib.h> 20#include <stdlib.h>
21#include <math.h>
21 22
22static char const *input_old = "perf.data.old", 23/* Diff command specific HPP columns. */
23 *input_new = "perf.data"; 24enum {
24static char diff__default_sort_order[] = "dso,symbol"; 25 PERF_HPP_DIFF__BASELINE,
25static bool force; 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};
42
43struct data__file {
44 struct perf_session *session;
45 const char *file;
46 int idx;
47 struct hists *hists;
48 struct diff_hpp_fmt fmt[PERF_HPP_DIFF__MAX_INDEX];
49};
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)
60#define data__for_each_file_new(i, d) data__for_each_file_start(i, d, 1)
61
62static char diff__default_sort_order[] = "dso,symbol";
63static bool force;
26static bool show_period; 64static bool show_period;
27static bool show_formula; 65static bool show_formula;
28static bool show_baseline_only; 66static bool show_baseline_only;
29static bool sort_compute; 67static unsigned int sort_compute;
30 68
31static s64 compute_wdiff_w1; 69static s64 compute_wdiff_w1;
32static s64 compute_wdiff_w2; 70static s64 compute_wdiff_w2;
@@ -46,6 +84,47 @@ const char *compute_names[COMPUTE_MAX] = {
46 84
47static int compute; 85static int compute;
48 86
87static 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
49static int setup_compute_opt_wdiff(char *opt) 128static int setup_compute_opt_wdiff(char *opt)
50{ 129{
51 char *w1_str = opt; 130 char *w1_str = opt;
@@ -109,13 +188,6 @@ static int setup_compute(const struct option *opt, const char *str,
109 return 0; 188 return 0;
110 } 189 }
111 190
112 if (*str == '+') {
113 sort_compute = true;
114 cstr = (char *) ++str;
115 if (!*str)
116 return 0;
117 }
118
119 option = strchr(str, ':'); 191 option = strchr(str, ':');
120 if (option) { 192 if (option) {
121 unsigned len = option++ - str; 193 unsigned len = option++ - str;
@@ -145,42 +217,42 @@ static int setup_compute(const struct option *opt, const char *str,
145 return -EINVAL; 217 return -EINVAL;
146} 218}
147 219
148double perf_diff__period_percent(struct hist_entry *he, u64 period) 220static double period_percent(struct hist_entry *he, u64 period)
149{ 221{
150 u64 total = he->hists->stats.total_period; 222 u64 total = he->hists->stats.total_period;
151 return (period * 100.0) / total; 223 return (period * 100.0) / total;
152} 224}
153 225
154double perf_diff__compute_delta(struct hist_entry *he, struct hist_entry *pair) 226static double compute_delta(struct hist_entry *he, struct hist_entry *pair)
155{ 227{
156 double new_percent = perf_diff__period_percent(he, he->stat.period); 228 double old_percent = period_percent(he, he->stat.period);
157 double old_percent = perf_diff__period_percent(pair, pair->stat.period); 229 double new_percent = period_percent(pair, pair->stat.period);
158 230
159 he->diff.period_ratio_delta = new_percent - old_percent; 231 pair->diff.period_ratio_delta = new_percent - old_percent;
160 he->diff.computed = true; 232 pair->diff.computed = true;
161 return he->diff.period_ratio_delta; 233 return pair->diff.period_ratio_delta;
162} 234}
163 235
164double perf_diff__compute_ratio(struct hist_entry *he, struct hist_entry *pair) 236static double compute_ratio(struct hist_entry *he, struct hist_entry *pair)
165{ 237{
166 double new_period = he->stat.period; 238 double old_period = he->stat.period ?: 1;
167 double old_period = pair->stat.period; 239 double new_period = pair->stat.period;
168 240
169 he->diff.computed = true; 241 pair->diff.computed = true;
170 he->diff.period_ratio = new_period / old_period; 242 pair->diff.period_ratio = new_period / old_period;
171 return he->diff.period_ratio; 243 return pair->diff.period_ratio;
172} 244}
173 245
174s64 perf_diff__compute_wdiff(struct hist_entry *he, struct hist_entry *pair) 246static s64 compute_wdiff(struct hist_entry *he, struct hist_entry *pair)
175{ 247{
176 u64 new_period = he->stat.period; 248 u64 old_period = he->stat.period;
177 u64 old_period = pair->stat.period; 249 u64 new_period = pair->stat.period;
178 250
179 he->diff.computed = true; 251 pair->diff.computed = true;
180 he->diff.wdiff = new_period * compute_wdiff_w2 - 252 pair->diff.wdiff = new_period * compute_wdiff_w2 -
181 old_period * compute_wdiff_w1; 253 old_period * compute_wdiff_w1;
182 254
183 return he->diff.wdiff; 255 return pair->diff.wdiff;
184} 256}
185 257
186static int formula_delta(struct hist_entry *he, struct hist_entry *pair, 258static int formula_delta(struct hist_entry *he, struct hist_entry *pair,
@@ -189,15 +261,15 @@ static int formula_delta(struct hist_entry *he, struct hist_entry *pair,
189 return scnprintf(buf, size, 261 return scnprintf(buf, size,
190 "(%" PRIu64 " * 100 / %" PRIu64 ") - " 262 "(%" PRIu64 " * 100 / %" PRIu64 ") - "
191 "(%" PRIu64 " * 100 / %" PRIu64 ")", 263 "(%" PRIu64 " * 100 / %" PRIu64 ")",
192 he->stat.period, he->hists->stats.total_period, 264 pair->stat.period, pair->hists->stats.total_period,
193 pair->stat.period, pair->hists->stats.total_period); 265 he->stat.period, he->hists->stats.total_period);
194} 266}
195 267
196static int formula_ratio(struct hist_entry *he, struct hist_entry *pair, 268static int formula_ratio(struct hist_entry *he, struct hist_entry *pair,
197 char *buf, size_t size) 269 char *buf, size_t size)
198{ 270{
199 double new_period = he->stat.period; 271 double old_period = he->stat.period;
200 double old_period = pair->stat.period; 272 double new_period = pair->stat.period;
201 273
202 return scnprintf(buf, size, "%.0F / %.0F", new_period, old_period); 274 return scnprintf(buf, size, "%.0F / %.0F", new_period, old_period);
203} 275}
@@ -205,16 +277,16 @@ static int formula_ratio(struct hist_entry *he, struct hist_entry *pair,
205static int formula_wdiff(struct hist_entry *he, struct hist_entry *pair, 277static int formula_wdiff(struct hist_entry *he, struct hist_entry *pair,
206 char *buf, size_t size) 278 char *buf, size_t size)
207{ 279{
208 u64 new_period = he->stat.period; 280 u64 old_period = he->stat.period;
209 u64 old_period = pair->stat.period; 281 u64 new_period = pair->stat.period;
210 282
211 return scnprintf(buf, size, 283 return scnprintf(buf, size,
212 "(%" PRIu64 " * " "%" PRId64 ") - (%" PRIu64 " * " "%" PRId64 ")", 284 "(%" PRIu64 " * " "%" PRId64 ") - (%" PRIu64 " * " "%" PRId64 ")",
213 new_period, compute_wdiff_w2, old_period, compute_wdiff_w1); 285 new_period, compute_wdiff_w2, old_period, compute_wdiff_w1);
214} 286}
215 287
216int perf_diff__formula(struct hist_entry *he, struct hist_entry *pair, 288static int formula_fprintf(struct hist_entry *he, struct hist_entry *pair,
217 char *buf, size_t size) 289 char *buf, size_t size)
218{ 290{
219 switch (compute) { 291 switch (compute) {
220 case COMPUTE_DELTA: 292 case COMPUTE_DELTA:
@@ -247,7 +319,7 @@ static int diff__process_sample_event(struct perf_tool *tool __maybe_unused,
247{ 319{
248 struct addr_location al; 320 struct addr_location al;
249 321
250 if (perf_event__preprocess_sample(event, machine, &al, sample, NULL) < 0) { 322 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
251 pr_warning("problem processing %d event, skipping it.\n", 323 pr_warning("problem processing %d event, skipping it.\n",
252 event->header.type); 324 event->header.type);
253 return -1; 325 return -1;
@@ -299,6 +371,29 @@ static void perf_evlist__collapse_resort(struct perf_evlist *evlist)
299 } 371 }
300} 372}
301 373
374static struct hist_entry*
375get_pair_data(struct hist_entry *he, struct data__file *d)
376{
377 if (hist_entry__has_pairs(he)) {
378 struct hist_entry *pair;
379
380 list_for_each_entry(pair, &he->pairs.head, pairs.node)
381 if (pair->hists == d->hists)
382 return pair;
383 }
384
385 return NULL;
386}
387
388static struct hist_entry*
389get_pair_fmt(struct hist_entry *he, struct diff_hpp_fmt *dfmt)
390{
391 void *ptr = dfmt - dfmt->idx;
392 struct data__file *d = container_of(ptr, struct data__file, fmt);
393
394 return get_pair_data(he, d);
395}
396
302static void hists__baseline_only(struct hists *hists) 397static void hists__baseline_only(struct hists *hists)
303{ 398{
304 struct rb_root *root; 399 struct rb_root *root;
@@ -333,22 +428,24 @@ static void hists__precompute(struct hists *hists)
333 428
334 next = rb_first(root); 429 next = rb_first(root);
335 while (next != NULL) { 430 while (next != NULL) {
336 struct hist_entry *he = rb_entry(next, struct hist_entry, rb_node_in); 431 struct hist_entry *he, *pair;
337 struct hist_entry *pair = hist_entry__next_pair(he);
338 432
433 he = rb_entry(next, struct hist_entry, rb_node_in);
339 next = rb_next(&he->rb_node_in); 434 next = rb_next(&he->rb_node_in);
435
436 pair = get_pair_data(he, &data__files[sort_compute]);
340 if (!pair) 437 if (!pair)
341 continue; 438 continue;
342 439
343 switch (compute) { 440 switch (compute) {
344 case COMPUTE_DELTA: 441 case COMPUTE_DELTA:
345 perf_diff__compute_delta(he, pair); 442 compute_delta(he, pair);
346 break; 443 break;
347 case COMPUTE_RATIO: 444 case COMPUTE_RATIO:
348 perf_diff__compute_ratio(he, pair); 445 compute_ratio(he, pair);
349 break; 446 break;
350 case COMPUTE_WEIGHTED_DIFF: 447 case COMPUTE_WEIGHTED_DIFF:
351 perf_diff__compute_wdiff(he, pair); 448 compute_wdiff(he, pair);
352 break; 449 break;
353 default: 450 default:
354 BUG_ON(1); 451 BUG_ON(1);
@@ -367,7 +464,7 @@ static int64_t cmp_doubles(double l, double r)
367} 464}
368 465
369static int64_t 466static int64_t
370hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right, 467__hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right,
371 int c) 468 int c)
372{ 469{
373 switch (c) { 470 switch (c) {
@@ -399,6 +496,36 @@ hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right,
399 return 0; 496 return 0;
400} 497}
401 498
499static int64_t
500hist_entry__cmp_compute(struct hist_entry *left, struct hist_entry *right,
501 int c)
502{
503 bool pairs_left = hist_entry__has_pairs(left);
504 bool pairs_right = hist_entry__has_pairs(right);
505 struct hist_entry *p_right, *p_left;
506
507 if (!pairs_left && !pairs_right)
508 return 0;
509
510 if (!pairs_left || !pairs_right)
511 return pairs_left ? -1 : 1;
512
513 p_left = get_pair_data(left, &data__files[sort_compute]);
514 p_right = get_pair_data(right, &data__files[sort_compute]);
515
516 if (!p_left && !p_right)
517 return 0;
518
519 if (!p_left || !p_right)
520 return p_left ? -1 : 1;
521
522 /*
523 * We have 2 entries of same kind, let's
524 * make the data comparison.
525 */
526 return __hist_entry__cmp_compute(p_left, p_right, c);
527}
528
402static void insert_hist_entry_by_compute(struct rb_root *root, 529static void insert_hist_entry_by_compute(struct rb_root *root,
403 struct hist_entry *he, 530 struct hist_entry *he,
404 int c) 531 int c)
@@ -448,75 +575,121 @@ static void hists__compute_resort(struct hists *hists)
448 } 575 }
449} 576}
450 577
451static void hists__process(struct hists *old, struct hists *new) 578static void hists__process(struct hists *hists)
452{ 579{
453 hists__match(new, old);
454
455 if (show_baseline_only) 580 if (show_baseline_only)
456 hists__baseline_only(new); 581 hists__baseline_only(hists);
457 else
458 hists__link(new, old);
459 582
460 if (sort_compute) { 583 if (sort_compute) {
461 hists__precompute(new); 584 hists__precompute(hists);
462 hists__compute_resort(new); 585 hists__compute_resort(hists);
463 } else { 586 } else {
464 hists__output_resort(new); 587 hists__output_resort(hists);
465 } 588 }
466 589
467 hists__fprintf(new, true, 0, 0, 0, stdout); 590 hists__fprintf(hists, true, 0, 0, 0, stdout);
468} 591}
469 592
470static int __cmd_diff(void) 593static void data__fprintf(void)
471{ 594{
472 int ret, i; 595 struct data__file *d;
473#define older (session[0]) 596 int i;
474#define newer (session[1]) 597
475 struct perf_session *session[2]; 598 fprintf(stdout, "# Data files:\n");
476 struct perf_evlist *evlist_new, *evlist_old; 599
477 struct perf_evsel *evsel; 600 data__for_each_file(i, d)
601 fprintf(stdout, "# [%d] %s %s\n",
602 d->idx, d->file,
603 !d->idx ? "(Baseline)" : "");
604
605 fprintf(stdout, "#\n");
606}
607
608static void data_process(void)
609{
610 struct perf_evlist *evlist_base = data__files[0].session->evlist;
611 struct perf_evsel *evsel_base;
478 bool first = true; 612 bool first = true;
479 613
480 older = perf_session__new(input_old, O_RDONLY, force, false, 614 list_for_each_entry(evsel_base, &evlist_base->entries, node) {
481 &tool); 615 struct data__file *d;
482 newer = perf_session__new(input_new, O_RDONLY, force, false, 616 int i;
483 &tool);
484 if (session[0] == NULL || session[1] == NULL)
485 return -ENOMEM;
486 617
487 for (i = 0; i < 2; ++i) { 618 data__for_each_file_new(i, d) {
488 ret = perf_session__process_events(session[i], &tool); 619 struct perf_evlist *evlist = d->session->evlist;
489 if (ret) 620 struct perf_evsel *evsel;
490 goto out_delete;
491 }
492 621
493 evlist_old = older->evlist; 622 evsel = evsel_match(evsel_base, evlist);
494 evlist_new = newer->evlist; 623 if (!evsel)
624 continue;
495 625
496 perf_evlist__collapse_resort(evlist_old); 626 d->hists = &evsel->hists;
497 perf_evlist__collapse_resort(evlist_new);
498 627
499 list_for_each_entry(evsel, &evlist_new->entries, node) { 628 hists__match(&evsel_base->hists, &evsel->hists);
500 struct perf_evsel *evsel_old;
501 629
502 evsel_old = evsel_match(evsel, evlist_old); 630 if (!show_baseline_only)
503 if (!evsel_old) 631 hists__link(&evsel_base->hists,
504 continue; 632 &evsel->hists);
633 }
505 634
506 fprintf(stdout, "%s# Event '%s'\n#\n", first ? "" : "\n", 635 fprintf(stdout, "%s# Event '%s'\n#\n", first ? "" : "\n",
507 perf_evsel__name(evsel)); 636 perf_evsel__name(evsel_base));
508 637
509 first = false; 638 first = false;
510 639
511 hists__process(&evsel_old->hists, &evsel->hists); 640 if (verbose || data__files_cnt > 2)
641 data__fprintf();
642
643 hists__process(&evsel_base->hists);
644 }
645}
646
647static void data__free(struct data__file *d)
648{
649 int col;
650
651 for (col = 0; col < PERF_HPP_DIFF__MAX_INDEX; col++) {
652 struct diff_hpp_fmt *fmt = &d->fmt[col];
653
654 free(fmt->header);
512 } 655 }
656}
513 657
514out_delete: 658static int __cmd_diff(void)
515 for (i = 0; i < 2; ++i) 659{
516 perf_session__delete(session[i]); 660 struct data__file *d;
661 int ret = -EINVAL, i;
662
663 data__for_each_file(i, d) {
664 d->session = perf_session__new(d->file, O_RDONLY, force,
665 false, &tool);
666 if (!d->session) {
667 pr_err("Failed to open %s\n", d->file);
668 ret = -ENOMEM;
669 goto out_delete;
670 }
671
672 ret = perf_session__process_events(d->session, &tool);
673 if (ret) {
674 pr_err("Failed to process %s\n", d->file);
675 goto out_delete;
676 }
677
678 perf_evlist__collapse_resort(d->session->evlist);
679 }
680
681 data_process();
682
683 out_delete:
684 data__for_each_file(i, d) {
685 if (d->session)
686 perf_session__delete(d->session);
687
688 data__free(d);
689 }
690
691 free(data__files);
517 return ret; 692 return ret;
518#undef older
519#undef newer
520} 693}
521 694
522static const char * const diff_usage[] = { 695static const char * const diff_usage[] = {
@@ -555,61 +728,310 @@ static const struct option options[] = {
555 "columns '.' is reserved."), 728 "columns '.' is reserved."),
556 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", 729 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
557 "Look for files with symbols relative to this directory"), 730 "Look for files with symbols relative to this directory"),
731 OPT_UINTEGER('o', "order", &sort_compute, "Specify compute sorting."),
558 OPT_END() 732 OPT_END()
559}; 733};
560 734
561static void ui_init(void) 735static double baseline_percent(struct hist_entry *he)
562{ 736{
563 /* 737 struct hists *hists = he->hists;
564 * Display baseline/delta/ratio 738 return 100.0 * he->stat.period / hists->stats.total_period;
565 * formula/periods columns. 739}
566 */
567 perf_hpp__column_enable(PERF_HPP__BASELINE);
568 740
569 switch (compute) { 741static int hpp__color_baseline(struct perf_hpp_fmt *fmt,
570 case COMPUTE_DELTA: 742 struct perf_hpp *hpp, struct hist_entry *he)
571 perf_hpp__column_enable(PERF_HPP__DELTA); 743{
744 struct diff_hpp_fmt *dfmt =
745 container_of(fmt, struct diff_hpp_fmt, fmt);
746 double percent = baseline_percent(he);
747 char pfmt[20] = " ";
748
749 if (!he->dummy) {
750 scnprintf(pfmt, 20, "%%%d.2f%%%%", dfmt->header_width - 1);
751 return percent_color_snprintf(hpp->buf, hpp->size,
752 pfmt, percent);
753 } else
754 return scnprintf(hpp->buf, hpp->size, "%*s",
755 dfmt->header_width, pfmt);
756}
757
758static int hpp__entry_baseline(struct hist_entry *he, char *buf, size_t size)
759{
760 double percent = baseline_percent(he);
761 const char *fmt = symbol_conf.field_sep ? "%.2f" : "%6.2f%%";
762 int ret = 0;
763
764 if (!he->dummy)
765 ret = scnprintf(buf, size, fmt, percent);
766
767 return ret;
768}
769
770static void
771hpp__entry_unpair(struct hist_entry *he, int idx, char *buf, size_t size)
772{
773 switch (idx) {
774 case PERF_HPP_DIFF__PERIOD_BASELINE:
775 scnprintf(buf, size, "%" PRIu64, he->stat.period);
572 break; 776 break;
573 case COMPUTE_RATIO: 777
574 perf_hpp__column_enable(PERF_HPP__RATIO); 778 default:
575 break; 779 break;
576 case COMPUTE_WEIGHTED_DIFF: 780 }
577 perf_hpp__column_enable(PERF_HPP__WEIGHTED_DIFF); 781}
782
783static void
784hpp__entry_pair(struct hist_entry *he, struct hist_entry *pair,
785 int idx, char *buf, size_t size)
786{
787 double diff;
788 double ratio;
789 s64 wdiff;
790
791 switch (idx) {
792 case PERF_HPP_DIFF__DELTA:
793 if (pair->diff.computed)
794 diff = pair->diff.period_ratio_delta;
795 else
796 diff = compute_delta(he, pair);
797
798 if (fabs(diff) >= 0.01)
799 scnprintf(buf, size, "%+4.2F%%", diff);
800 break;
801
802 case PERF_HPP_DIFF__RATIO:
803 /* No point for ratio number if we are dummy.. */
804 if (he->dummy)
805 break;
806
807 if (pair->diff.computed)
808 ratio = pair->diff.period_ratio;
809 else
810 ratio = compute_ratio(he, pair);
811
812 if (ratio > 0.0)
813 scnprintf(buf, size, "%14.6F", ratio);
814 break;
815
816 case PERF_HPP_DIFF__WEIGHTED_DIFF:
817 /* No point for wdiff number if we are dummy.. */
818 if (he->dummy)
819 break;
820
821 if (pair->diff.computed)
822 wdiff = pair->diff.wdiff;
823 else
824 wdiff = compute_wdiff(he, pair);
825
826 if (wdiff != 0)
827 scnprintf(buf, size, "%14ld", wdiff);
828 break;
829
830 case PERF_HPP_DIFF__FORMULA:
831 formula_fprintf(he, pair, buf, size);
832 break;
833
834 case PERF_HPP_DIFF__PERIOD:
835 scnprintf(buf, size, "%" PRIu64, pair->stat.period);
578 break; 836 break;
837
579 default: 838 default:
580 BUG_ON(1); 839 BUG_ON(1);
581 }; 840 };
841}
842
843static void
844__hpp__entry_global(struct hist_entry *he, struct diff_hpp_fmt *dfmt,
845 char *buf, size_t size)
846{
847 struct hist_entry *pair = get_pair_fmt(he, dfmt);
848 int idx = dfmt->idx;
849
850 /* baseline is special */
851 if (idx == PERF_HPP_DIFF__BASELINE)
852 hpp__entry_baseline(he, buf, size);
853 else {
854 if (pair)
855 hpp__entry_pair(he, pair, idx, buf, size);
856 else
857 hpp__entry_unpair(he, idx, buf, size);
858 }
859}
860
861static int hpp__entry_global(struct perf_hpp_fmt *_fmt, struct perf_hpp *hpp,
862 struct hist_entry *he)
863{
864 struct diff_hpp_fmt *dfmt =
865 container_of(_fmt, struct diff_hpp_fmt, fmt);
866 char buf[MAX_COL_WIDTH] = " ";
867
868 __hpp__entry_global(he, dfmt, buf, MAX_COL_WIDTH);
869
870 if (symbol_conf.field_sep)
871 return scnprintf(hpp->buf, hpp->size, "%s", buf);
872 else
873 return scnprintf(hpp->buf, hpp->size, "%*s",
874 dfmt->header_width, buf);
875}
876
877static int hpp__header(struct perf_hpp_fmt *fmt,
878 struct perf_hpp *hpp)
879{
880 struct diff_hpp_fmt *dfmt =
881 container_of(fmt, struct diff_hpp_fmt, fmt);
582 882
583 if (show_formula) 883 BUG_ON(!dfmt->header);
584 perf_hpp__column_enable(PERF_HPP__FORMULA); 884 return scnprintf(hpp->buf, hpp->size, dfmt->header);
885}
585 886
586 if (show_period) { 887static int hpp__width(struct perf_hpp_fmt *fmt,
587 perf_hpp__column_enable(PERF_HPP__PERIOD); 888 struct perf_hpp *hpp __maybe_unused)
588 perf_hpp__column_enable(PERF_HPP__PERIOD_BASELINE); 889{
890 struct diff_hpp_fmt *dfmt =
891 container_of(fmt, struct diff_hpp_fmt, fmt);
892
893 BUG_ON(dfmt->header_width <= 0);
894 return dfmt->header_width;
895}
896
897static void init_header(struct data__file *d, struct diff_hpp_fmt *dfmt)
898{
899#define MAX_HEADER_NAME 100
900 char buf_indent[MAX_HEADER_NAME];
901 char buf[MAX_HEADER_NAME];
902 const char *header = NULL;
903 int width = 0;
904
905 BUG_ON(dfmt->idx >= PERF_HPP_DIFF__MAX_INDEX);
906 header = columns[dfmt->idx].name;
907 width = columns[dfmt->idx].width;
908
909 /* Only our defined HPP fmts should appear here. */
910 BUG_ON(!header);
911
912 if (data__files_cnt > 2)
913 scnprintf(buf, MAX_HEADER_NAME, "%s/%d", header, d->idx);
914
915#define NAME (data__files_cnt > 2 ? buf : header)
916 dfmt->header_width = width;
917 width = (int) strlen(NAME);
918 if (dfmt->header_width < width)
919 dfmt->header_width = width;
920
921 scnprintf(buf_indent, MAX_HEADER_NAME, "%*s",
922 dfmt->header_width, NAME);
923
924 dfmt->header = strdup(buf_indent);
925#undef MAX_HEADER_NAME
926#undef NAME
927}
928
929static void data__hpp_register(struct data__file *d, int idx)
930{
931 struct diff_hpp_fmt *dfmt = &d->fmt[idx];
932 struct perf_hpp_fmt *fmt = &dfmt->fmt;
933
934 dfmt->idx = idx;
935
936 fmt->header = hpp__header;
937 fmt->width = hpp__width;
938 fmt->entry = hpp__entry_global;
939
940 /* TODO more colors */
941 if (idx == PERF_HPP_DIFF__BASELINE)
942 fmt->color = hpp__color_baseline;
943
944 init_header(d, dfmt);
945 perf_hpp__column_register(fmt);
946}
947
948static void ui_init(void)
949{
950 struct data__file *d;
951 int i;
952
953 data__for_each_file(i, d) {
954
955 /*
956 * Baseline or compute realted columns:
957 *
958 * PERF_HPP_DIFF__BASELINE
959 * PERF_HPP_DIFF__DELTA
960 * PERF_HPP_DIFF__RATIO
961 * PERF_HPP_DIFF__WEIGHTED_DIFF
962 */
963 data__hpp_register(d, i ? compute_2_hpp[compute] :
964 PERF_HPP_DIFF__BASELINE);
965
966 /*
967 * And the rest:
968 *
969 * PERF_HPP_DIFF__FORMULA
970 * PERF_HPP_DIFF__PERIOD
971 * PERF_HPP_DIFF__PERIOD_BASELINE
972 */
973 if (show_formula && i)
974 data__hpp_register(d, PERF_HPP_DIFF__FORMULA);
975
976 if (show_period)
977 data__hpp_register(d, i ? PERF_HPP_DIFF__PERIOD :
978 PERF_HPP_DIFF__PERIOD_BASELINE);
589 } 979 }
590} 980}
591 981
592int cmd_diff(int argc, const char **argv, const char *prefix __maybe_unused) 982static int data_init(int argc, const char **argv)
593{ 983{
594 sort_order = diff__default_sort_order; 984 struct data__file *d;
595 argc = parse_options(argc, argv, options, diff_usage, 0); 985 static const char *defaults[] = {
986 "perf.data.old",
987 "perf.data",
988 };
989 bool use_default = true;
990 int i;
991
992 data__files_cnt = 2;
993
596 if (argc) { 994 if (argc) {
597 if (argc > 2) 995 if (argc == 1)
598 usage_with_options(diff_usage, options); 996 defaults[1] = argv[0];
599 if (argc == 2) { 997 else {
600 input_old = argv[0]; 998 data__files_cnt = argc;
601 input_new = argv[1]; 999 use_default = false;
602 } else 1000 }
603 input_new = argv[0];
604 } else if (symbol_conf.default_guest_vmlinux_name || 1001 } else if (symbol_conf.default_guest_vmlinux_name ||
605 symbol_conf.default_guest_kallsyms) { 1002 symbol_conf.default_guest_kallsyms) {
606 input_old = "perf.data.host"; 1003 defaults[0] = "perf.data.host";
607 input_new = "perf.data.guest"; 1004 defaults[1] = "perf.data.guest";
608 } 1005 }
609 1006
1007 if (sort_compute >= (unsigned int) data__files_cnt) {
1008 pr_err("Order option out of limit.\n");
1009 return -EINVAL;
1010 }
1011
1012 data__files = zalloc(sizeof(*data__files) * data__files_cnt);
1013 if (!data__files)
1014 return -ENOMEM;
1015
1016 data__for_each_file(i, d) {
1017 d->file = use_default ? defaults[i] : argv[i];
1018 d->idx = i;
1019 }
1020
1021 return 0;
1022}
1023
1024int cmd_diff(int argc, const char **argv, const char *prefix __maybe_unused)
1025{
1026 sort_order = diff__default_sort_order;
1027 argc = parse_options(argc, argv, options, diff_usage, 0);
1028
610 if (symbol__init() < 0) 1029 if (symbol__init() < 0)
611 return -1; 1030 return -1;
612 1031
1032 if (data_init(argc, argv) < 0)
1033 return -1;
1034
613 ui_init(); 1035 ui_init();
614 1036
615 if (setup_sorting() < 0) 1037 if (setup_sorting() < 0)