]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/perf/builtin-report.c
perf top: Move display agnostic routines to util/top.[ch]
[mirror_ubuntu-focal-kernel.git] / tools / perf / builtin-report.c
CommitLineData
bf9e1876
IM
1/*
2 * builtin-report.c
3 *
4 * Builtin report command: Analyze the perf.data input file,
5 * look up and read DSOs and symbol information and display
6 * a histogram of results, along various sorting keys.
7 */
16f762a2 8#include "builtin.h"
53cb8bc2 9
bf9e1876
IM
10#include "util/util.h"
11
8fc0321f 12#include "util/color.h"
5da50258 13#include <linux/list.h>
a930d2c0 14#include "util/cache.h"
43cbcd8a 15#include <linux/rbtree.h>
a2928c42 16#include "util/symbol.h"
f55c5552 17#include "util/callchain.h"
25903407 18#include "util/strlist.h"
8d513270 19#include "util/values.h"
8fa66bdc 20
53cb8bc2 21#include "perf.h"
8f28827a 22#include "util/debug.h"
7c6a1c65 23#include "util/header.h"
94c744b6 24#include "util/session.h"
53cb8bc2
IM
25
26#include "util/parse-options.h"
27#include "util/parse-events.h"
28
6baa0a5a 29#include "util/thread.h"
dd68ada2 30#include "util/sort.h"
3d1d07ec 31#include "util/hist.h"
6baa0a5a 32
23ac9cbe 33static char const *input_name = "perf.data";
bd74137e 34
8b9e74eb 35static bool force, use_tui, use_stdio;
71289be7 36static bool hide_unresolved;
b9a63b9b 37static bool dont_use_callchains;
97b07b69 38
c0555642 39static bool show_threads;
8d513270
BG
40static struct perf_read_values show_threads_values;
41
edb7c60e
ACM
42static const char default_pretty_printing_style[] = "normal";
43static const char *pretty_printing_style = default_pretty_printing_style;
9f866697 44
805d127d
FW
45static char callchain_default_opt[] = "fractal,0.5";
46
1c02c4d2
ACM
47static struct hists *perf_session__hists_findnew(struct perf_session *self,
48 u64 event_stream, u32 type,
49 u64 config)
cbbc79a5 50{
1c02c4d2 51 struct rb_node **p = &self->hists_tree.rb_node;
cbbc79a5 52 struct rb_node *parent = NULL;
1c02c4d2 53 struct hists *iter, *new;
cbbc79a5
EM
54
55 while (*p != NULL) {
56 parent = *p;
1c02c4d2 57 iter = rb_entry(parent, struct hists, rb_node);
cbbc79a5
EM
58 if (iter->config == config)
59 return iter;
60
61
62 if (config > iter->config)
63 p = &(*p)->rb_right;
64 else
65 p = &(*p)->rb_left;
66 }
67
1c02c4d2 68 new = malloc(sizeof(struct hists));
cbbc79a5
EM
69 if (new == NULL)
70 return NULL;
1c02c4d2 71 memset(new, 0, sizeof(struct hists));
cbbc79a5
EM
72 new->event_stream = event_stream;
73 new->config = config;
74 new->type = type;
75 rb_link_node(&new->rb_node, parent, p);
1c02c4d2 76 rb_insert_color(&new->rb_node, &self->hists_tree);
cbbc79a5
EM
77 return new;
78}
79
8d50e5b4 80static int perf_session__add_hist_entry(struct perf_session *session,
4e4f06e4 81 struct addr_location *al,
8d50e5b4 82 struct perf_sample *sample)
8fa66bdc 83{
b3c9ac08 84 struct symbol *parent = NULL;
1b3a0e95 85 int err = 0;
e7fb08b1 86 struct hist_entry *he;
1c02c4d2 87 struct hists *hists;
cbbc79a5 88 struct perf_event_attr *attr;
e7fb08b1 89
8d50e5b4
ACM
90 if ((sort__has_parent || symbol_conf.use_callchain) && sample->callchain) {
91 err = perf_session__resolve_callchain(session, al->thread,
92 sample->callchain, &parent);
1b3a0e95
FW
93 if (err)
94 return err;
ad5b217b 95 }
cbbc79a5 96
8d50e5b4 97 attr = perf_header__find_attr(sample->id, &session->header);
cbbc79a5 98 if (attr)
8d50e5b4 99 hists = perf_session__hists_findnew(session, sample->id, attr->type, attr->config);
cbbc79a5 100 else
8d50e5b4 101 hists = perf_session__hists_findnew(session, sample->id, 0, 0);
1c02c4d2 102 if (hists == NULL)
1b3a0e95
FW
103 return -ENOMEM;
104
8d50e5b4 105 he = __hists__add_entry(hists, al, parent, sample->period);
9735abf1 106 if (he == NULL)
1b3a0e95
FW
107 return -ENOMEM;
108
ef7b93a1 109 if (symbol_conf.use_callchain) {
8d50e5b4
ACM
110 err = callchain_append(he->callchain, &session->callchain_cursor,
111 sample->period);
ef7b93a1 112 if (err)
1b3a0e95 113 return err;
ef7b93a1
ACM
114 }
115 /*
116 * Only in the newt browser we are doing integrated annotation,
117 * so we don't allocated the extra space needed because the stdio
118 * code will not use it.
119 */
5d06e691 120 if (use_browser > 0)
ef7b93a1 121 err = hist_entry__inc_addr_samples(he, al->addr);
1b3a0e95 122
39d1e1b1 123 return err;
8fa66bdc
ACM
124}
125
cbbc79a5 126static int add_event_total(struct perf_session *session,
8d50e5b4 127 struct perf_sample *sample,
cbbc79a5
EM
128 struct perf_event_attr *attr)
129{
1c02c4d2 130 struct hists *hists;
cbbc79a5
EM
131
132 if (attr)
8d50e5b4 133 hists = perf_session__hists_findnew(session, sample->id,
1c02c4d2 134 attr->type, attr->config);
cbbc79a5 135 else
8d50e5b4 136 hists = perf_session__hists_findnew(session, sample->id, 0, 0);
cbbc79a5 137
1c02c4d2 138 if (!hists)
cbbc79a5
EM
139 return -ENOMEM;
140
8d50e5b4 141 hists->stats.total_period += sample->period;
c8446b9b
ACM
142 /*
143 * FIXME: add_event_total should be moved from here to
144 * perf_session__process_event so that the proper hist is passed to
145 * the event_op methods.
146 */
147 hists__inc_nr_events(hists, PERF_RECORD_SAMPLE);
8d50e5b4 148 session->hists.stats.total_period += sample->period;
cbbc79a5
EM
149 return 0;
150}
151
8115d60c
ACM
152static int process_sample_event(union perf_event *event,
153 struct perf_sample *sample,
640c03ce 154 struct perf_session *session)
75051724 155{
1ed091c4 156 struct addr_location al;
cbbc79a5 157 struct perf_event_attr *attr;
180f95e2 158
8115d60c 159 if (perf_event__preprocess_sample(event, session, &al, sample, NULL) < 0) {
c410a338 160 fprintf(stderr, "problem processing %d event, skipping it.\n",
75051724
IM
161 event->header.type);
162 return -1;
163 }
e7fb08b1 164
71289be7 165 if (al.filtered || (hide_unresolved && al.sym == NULL))
ec218fc4 166 return 0;
7bec7a91 167
640c03ce 168 if (perf_session__add_hist_entry(session, &al, sample)) {
c82ee828 169 pr_debug("problem incrementing symbol period, skipping event\n");
ec218fc4 170 return -1;
8fa66bdc 171 }
ec218fc4 172
640c03ce 173 attr = perf_header__find_attr(sample->id, &session->header);
cbbc79a5 174
640c03ce 175 if (add_event_total(session, sample, attr)) {
c82ee828 176 pr_debug("problem adding event period\n");
cbbc79a5
EM
177 return -1;
178 }
179
75051724
IM
180 return 0;
181}
3502973d 182
8115d60c
ACM
183static int process_read_event(union perf_event *event,
184 struct perf_sample *sample __used,
640c03ce 185 struct perf_session *session __used)
e9ea2fde 186{
cdd6c482 187 struct perf_event_attr *attr;
0d3a5c88 188
94c744b6 189 attr = perf_header__find_attr(event->read.id, &session->header);
8f18aec5 190
8d513270 191 if (show_threads) {
83a0944f 192 const char *name = attr ? __event_name(attr->type, attr->config)
8d513270
BG
193 : "unknown";
194 perf_read_values_add_value(&show_threads_values,
195 event->read.pid, event->read.tid,
196 event->read.id,
197 name,
198 event->read.value);
199 }
200
9486aa38 201 dump_printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid,
62daacb5
ACM
202 attr ? __event_name(attr->type, attr->config) : "FAIL",
203 event->read.value);
e9ea2fde
PZ
204
205 return 0;
206}
207
d549c769 208static int perf_session__setup_sample_type(struct perf_session *self)
d80d338d 209{
d549c769 210 if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
91b4eaea
FW
211 if (sort__has_parent) {
212 fprintf(stderr, "selected --sort parent, but no"
213 " callchain data. Did you call"
214 " perf record without -g?\n");
d549c769 215 return -EINVAL;
91b4eaea 216 }
d599db3f 217 if (symbol_conf.use_callchain) {
6ede59c4 218 fprintf(stderr, "selected -g but no callchain data."
91b4eaea
FW
219 " Did you call perf record without"
220 " -g?\n");
016e92fb 221 return -1;
91b4eaea 222 }
b9a63b9b
ACM
223 } else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
224 !symbol_conf.use_callchain) {
d599db3f 225 symbol_conf.use_callchain = true;
16537f13 226 if (callchain_register_param(&callchain_param) < 0) {
b1a88349
FW
227 fprintf(stderr, "Can't register callchain"
228 " params\n");
d549c769 229 return -EINVAL;
b1a88349 230 }
f5970550
PZ
231 }
232
016e92fb
FW
233 return 0;
234}
6142f9ec 235
301a0b02 236static struct perf_event_ops event_ops = {
8115d60c
ACM
237 .sample = process_sample_event,
238 .mmap = perf_event__process_mmap,
239 .comm = perf_event__process_comm,
240 .exit = perf_event__process_task,
241 .fork = perf_event__process_task,
242 .lost = perf_event__process_lost,
243 .read = process_read_event,
244 .attr = perf_event__process_attr,
245 .event_type = perf_event__process_event_type,
246 .tracing_data = perf_event__process_tracing_data,
247 .build_id = perf_event__process_build_id,
eac23d1c
IM
248 .ordered_samples = true,
249 .ordering_requires_timestamps = true,
016e92fb 250};
6142f9ec 251
46656ac7
TZ
252extern volatile int session_done;
253
c82ee828 254static void sig_handler(int sig __used)
46656ac7
TZ
255{
256 session_done = 1;
257}
258
c82ee828
ACM
259static size_t hists__fprintf_nr_sample_events(struct hists *self,
260 const char *evname, FILE *fp)
261{
262 size_t ret;
263 char unit;
264 unsigned long nr_events = self->stats.nr_events[PERF_RECORD_SAMPLE];
265
266 nr_events = convert_unit(nr_events, &unit);
267 ret = fprintf(fp, "# Events: %lu%c", nr_events, unit);
268 if (evname != NULL)
269 ret += fprintf(fp, " %s", evname);
270 return ret + fprintf(fp, "\n#\n");
271}
272
d67f088e
ACM
273static int hists__tty_browse_tree(struct rb_root *tree, const char *help)
274{
275 struct rb_node *next = rb_first(tree);
276
277 while (next) {
278 struct hists *hists = rb_entry(next, struct hists, rb_node);
279 const char *evname = NULL;
280
281 if (rb_first(&hists->entries) != rb_last(&hists->entries))
282 evname = __event_name(hists->type, hists->config);
283
284 hists__fprintf_nr_sample_events(hists, evname, stdout);
285 hists__fprintf(hists, NULL, false, stdout);
286 fprintf(stdout, "\n\n");
287 next = rb_next(&hists->rb_node);
288 }
289
290 if (sort_order == default_sort_order &&
291 parent_pattern == default_parent_pattern) {
292 fprintf(stdout, "#\n# (%s)\n#\n", help);
293
294 if (show_threads) {
295 bool style = !strcmp(pretty_printing_style, "raw");
296 perf_read_values_display(stdout, &show_threads_values,
297 style);
298 perf_read_values_destroy(&show_threads_values);
299 }
300 }
301
302 return 0;
303}
304
016e92fb
FW
305static int __cmd_report(void)
306{
d549c769 307 int ret = -EINVAL;
d8f66248 308 struct perf_session *session;
cbbc79a5 309 struct rb_node *next;
f9224c5c 310 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
8fa66bdc 311
46656ac7
TZ
312 signal(SIGINT, sig_handler);
313
21ef97f0 314 session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops);
94c744b6
ACM
315 if (session == NULL)
316 return -ENOMEM;
317
016e92fb
FW
318 if (show_threads)
319 perf_read_values_init(&show_threads_values);
f5970550 320
d549c769
ACM
321 ret = perf_session__setup_sample_type(session);
322 if (ret)
323 goto out_delete;
324
ec913369 325 ret = perf_session__process_events(session, &event_ops);
016e92fb 326 if (ret)
94c744b6 327 goto out_delete;
97b07b69 328
62daacb5 329 if (dump_trace) {
c8446b9b 330 perf_session__fprintf_nr_events(session, stdout);
94c744b6 331 goto out_delete;
62daacb5 332 }
97b07b69 333
da21d1b5 334 if (verbose > 3)
b3165f41 335 perf_session__fprintf(session, stdout);
9ac99545 336
da21d1b5 337 if (verbose > 2)
cbf69680 338 perf_session__fprintf_dsos(session, stdout);
16f762a2 339
1c02c4d2 340 next = rb_first(&session->hists_tree);
cbbc79a5 341 while (next) {
1c02c4d2 342 struct hists *hists;
cbbc79a5 343
1c02c4d2
ACM
344 hists = rb_entry(next, struct hists, rb_node);
345 hists__collapse_resort(hists);
fefb0b94 346 hists__output_resort(hists);
1c02c4d2 347 next = rb_next(&hists->rb_node);
cbbc79a5
EM
348 }
349
d67f088e
ACM
350 if (use_browser > 0)
351 hists__tui_browse_tree(&session->hists_tree, help);
352 else
353 hists__tty_browse_tree(&session->hists_tree, help);
3e6055ab 354
94c744b6 355out_delete:
71e7cf3a
ACM
356 /*
357 * Speed up the exit process, for large files this can
358 * take quite a while.
359 *
360 * XXX Enable this when using valgrind or if we ever
361 * librarize this command.
362 *
363 * Also experiment with obstacks to see how much speed
364 * up we'll get here.
365 *
366 * perf_session__delete(session);
367 */
016e92fb 368 return ret;
8fa66bdc
ACM
369}
370
4eb3e478
FW
371static int
372parse_callchain_opt(const struct option *opt __used, const char *arg,
b9a63b9b 373 int unset)
4eb3e478 374{
232a5c94 375 char *tok, *tok2;
c20ab37e
FW
376 char *endptr;
377
b9a63b9b
ACM
378 /*
379 * --no-call-graph
380 */
381 if (unset) {
382 dont_use_callchains = true;
383 return 0;
384 }
385
d599db3f 386 symbol_conf.use_callchain = true;
4eb3e478
FW
387
388 if (!arg)
389 return 0;
390
c20ab37e
FW
391 tok = strtok((char *)arg, ",");
392 if (!tok)
393 return -1;
394
395 /* get the output mode */
396 if (!strncmp(tok, "graph", strlen(arg)))
805d127d 397 callchain_param.mode = CHAIN_GRAPH_ABS;
4eb3e478 398
c20ab37e 399 else if (!strncmp(tok, "flat", strlen(arg)))
805d127d
FW
400 callchain_param.mode = CHAIN_FLAT;
401
402 else if (!strncmp(tok, "fractal", strlen(arg)))
403 callchain_param.mode = CHAIN_GRAPH_REL;
404
b1a88349
FW
405 else if (!strncmp(tok, "none", strlen(arg))) {
406 callchain_param.mode = CHAIN_NONE;
b7ae11b3 407 symbol_conf.use_callchain = false;
b1a88349
FW
408
409 return 0;
410 }
411
4eb3e478
FW
412 else
413 return -1;
414
c20ab37e
FW
415 /* get the min percentage */
416 tok = strtok(NULL, ",");
417 if (!tok)
805d127d 418 goto setup;
c20ab37e 419
232a5c94 420 tok2 = strtok(NULL, ",");
805d127d 421 callchain_param.min_percent = strtod(tok, &endptr);
c20ab37e
FW
422 if (tok == endptr)
423 return -1;
424
232a5c94
ACM
425 if (tok2)
426 callchain_param.print_limit = strtod(tok2, &endptr);
805d127d 427setup:
16537f13 428 if (callchain_register_param(&callchain_param) < 0) {
805d127d
FW
429 fprintf(stderr, "Can't register callchain params\n");
430 return -1;
431 }
4eb3e478
FW
432 return 0;
433}
434
0422a4fc 435static const char * const report_usage[] = {
53cb8bc2
IM
436 "perf report [<options>] <command>",
437 NULL
438};
439
440static const struct option options[] = {
441 OPT_STRING('i', "input", &input_name, "file",
442 "input file name"),
c0555642 443 OPT_INCR('v', "verbose", &verbose,
815e777f 444 "be more verbose (show symbol address, etc)"),
97b07b69
IM
445 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
446 "dump raw trace in ASCII"),
b32d133a
ACM
447 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
448 "file", "vmlinux pathname"),
b226a5a7
DA
449 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
450 "file", "kallsyms pathname"),
fa6963b2 451 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
b32d133a 452 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
42976487 453 "load module symbols - WARNING: use only with -k and LIVE kernel"),
d599db3f 454 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
e3d7e183 455 "Show a column with the number of samples"),
8d513270
BG
456 OPT_BOOLEAN('T', "threads", &show_threads,
457 "Show per-thread event counters"),
9f866697
BG
458 OPT_STRING(0, "pretty", &pretty_printing_style, "key",
459 "pretty printing style key: normal raw"),
8b9e74eb
ACM
460 OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"),
461 OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"),
63299f05 462 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b25bcf2f 463 "sort by key(s): pid, comm, dso, symbol, parent"),
a1645ce1
ZY
464 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
465 "Show sample percentage for different cpu modes"),
b25bcf2f
IM
466 OPT_STRING('p', "parent", &parent_pattern, "regex",
467 "regex filter to identify parent, see: '--sort parent'"),
d599db3f 468 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
b8e6d829 469 "Only display entries with parent-match"),
1483b19f 470 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
e157eb83 471 "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
1483b19f 472 "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
655000e7 473 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
25903407 474 "only consider symbols in these dsos"),
655000e7 475 OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
cc8b88b1 476 "only consider symbols in these comms"),
655000e7 477 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
7bec7a91 478 "only consider these symbols"),
655000e7 479 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
52d422de
ACM
480 "width[,width...]",
481 "don't try to adjust column width, use these fixed values"),
c410a338 482 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
52d422de
ACM
483 "separator for columns, no spaces will be added between "
484 "columns '.' is reserved."),
71289be7
ACM
485 OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved,
486 "Only display entries resolved to a symbol"),
ec5761ea
DA
487 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
488 "Look for files with symbols relative to this directory"),
53cb8bc2
IM
489 OPT_END()
490};
491
f37a291c 492int cmd_report(int argc, const char **argv, const char *prefix __used)
53cb8bc2 493{
655000e7
ACM
494 argc = parse_options(argc, argv, options, report_usage, 0);
495
8b9e74eb
ACM
496 if (use_stdio)
497 use_browser = 0;
498 else if (use_tui)
499 use_browser = 1;
500
46656ac7
TZ
501 if (strcmp(input_name, "-") != 0)
502 setup_browser();
8b9e74eb
ACM
503 else
504 use_browser = 0;
ef7b93a1
ACM
505 /*
506 * Only in the newt browser we are doing integrated annotation,
507 * so don't allocate extra space that won't be used in the stdio
508 * implementation.
509 */
80d50cae 510 if (use_browser > 0) {
ef7b93a1 511 symbol_conf.priv_size = sizeof(struct sym_priv);
80d50cae
ACM
512 /*
513 * For searching by name on the "Browse map details".
514 * providing it only in verbose mode not to bloat too
515 * much struct symbol.
516 */
517 if (verbose) {
518 /*
519 * XXX: Need to provide a less kludgy way to ask for
520 * more space per symbol, the u32 is for the index on
521 * the ui browser.
522 * See symbol__browser_index.
523 */
524 symbol_conf.priv_size += sizeof(u32);
525 symbol_conf.sort_by_name = true;
526 }
527 }
655000e7 528
75be6cf4 529 if (symbol__init() < 0)
b32d133a 530 return -1;
53cb8bc2 531
c8829c7a 532 setup_sorting(report_usage, options);
1aa16738 533
021191b3 534 if (parent_pattern != default_parent_pattern) {
2aefa4f7
ACM
535 if (sort_dimension__add("parent") < 0)
536 return -1;
021191b3
ACM
537 sort_parent.elide = 1;
538 } else
d599db3f 539 symbol_conf.exclude_other = false;
b8e6d829 540
edc52dea
IM
541 /*
542 * Any (unrecognized) arguments left?
543 */
544 if (argc)
545 usage_with_options(report_usage, options);
546
655000e7
ACM
547 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
548 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
549 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
25903407 550
53cb8bc2
IM
551 return __cmd_report();
552}