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