]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/builtin-report.c
perf tools: Move dso_* related functions into dso object
[mirror_ubuntu-bionic-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
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"
45694aa7 28#include "util/tool.h"
53cb8bc2
IM
29
30#include "util/parse-options.h"
31#include "util/parse-events.h"
32
6baa0a5a 33#include "util/thread.h"
dd68ada2 34#include "util/sort.h"
3d1d07ec 35#include "util/hist.h"
68e94f4e 36#include "arch/common.h"
6baa0a5a 37
5d67be97
AB
38#include <linux/bitmap.h>
39
d20deb64 40struct perf_report {
45694aa7 41 struct perf_tool tool;
d20deb64 42 struct perf_session *session;
fa372aae 43 char const *input_name;
c31a9457 44 bool force, use_tui, use_gtk, use_stdio;
fa372aae
ACM
45 bool hide_unresolved;
46 bool dont_use_callchains;
47 bool show_full_info;
48 bool show_threads;
49 bool inverted_callchain;
50 struct perf_read_values show_threads_values;
51 const char *pretty_printing_style;
52 symbol_filter_t annotate_init;
53 const char *cpu_list;
b14ffaca 54 const char *symbol_filter_str;
fa372aae 55 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
d20deb64 56};
5d67be97 57
b50311dc
RAV
58static int perf_report__add_branch_hist_entry(struct perf_tool *tool,
59 struct addr_location *al,
60 struct perf_sample *sample,
61 struct perf_evsel *evsel,
62 struct machine *machine)
63{
64 struct perf_report *rep = container_of(tool, struct perf_report, tool);
65 struct symbol *parent = NULL;
66 int err = 0;
67 unsigned i;
68 struct hist_entry *he;
a68c2c58 69 struct branch_info *bi, *bx;
b50311dc
RAV
70
71 if ((sort__has_parent || symbol_conf.use_callchain)
72 && sample->callchain) {
71ad0f5e
JO
73 err = machine__resolve_callchain(machine, evsel, al->thread,
74 sample, &parent);
b50311dc
RAV
75 if (err)
76 return err;
77 }
78
79 bi = machine__resolve_bstack(machine, al->thread,
80 sample->branch_stack);
81 if (!bi)
82 return -ENOMEM;
83
84 for (i = 0; i < sample->branch_stack->nr; i++) {
85 if (rep->hide_unresolved && !(bi[i].from.sym && bi[i].to.sym))
86 continue;
87 /*
88 * The report shows the percentage of total branches captured
89 * and not events sampled. Thus we use a pseudo period of 1.
90 */
91 he = __hists__add_branch_entry(&evsel->hists, al, parent,
a68c2c58 92 &bi[i], 1);
b50311dc 93 if (he) {
a68c2c58
SE
94 struct annotation *notes;
95 err = -ENOMEM;
96 bx = he->branch_info;
034a9265 97 if (bx->from.sym && use_browser == 1 && sort__has_sym) {
a68c2c58
SE
98 notes = symbol__annotation(bx->from.sym);
99 if (!notes->src
100 && symbol__alloc_hist(bx->from.sym) < 0)
101 goto out;
102
103 err = symbol__inc_addr_samples(bx->from.sym,
104 bx->from.map,
105 evsel->idx,
106 bx->from.al_addr);
107 if (err)
108 goto out;
109 }
110
034a9265 111 if (bx->to.sym && use_browser == 1 && sort__has_sym) {
a68c2c58
SE
112 notes = symbol__annotation(bx->to.sym);
113 if (!notes->src
114 && symbol__alloc_hist(bx->to.sym) < 0)
115 goto out;
116
117 err = symbol__inc_addr_samples(bx->to.sym,
118 bx->to.map,
119 evsel->idx,
120 bx->to.al_addr);
121 if (err)
122 goto out;
123 }
b50311dc
RAV
124 evsel->hists.stats.total_period += 1;
125 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
a68c2c58 126 err = 0;
b50311dc
RAV
127 } else
128 return -ENOMEM;
129 }
a68c2c58 130out:
b50311dc
RAV
131 return err;
132}
133
743eb868
ACM
134static int perf_evsel__add_hist_entry(struct perf_evsel *evsel,
135 struct addr_location *al,
136 struct perf_sample *sample,
137 struct machine *machine)
8fa66bdc 138{
b3c9ac08 139 struct symbol *parent = NULL;
1b3a0e95 140 int err = 0;
e7fb08b1 141 struct hist_entry *he;
e7fb08b1 142
8d50e5b4 143 if ((sort__has_parent || symbol_conf.use_callchain) && sample->callchain) {
71ad0f5e
JO
144 err = machine__resolve_callchain(machine, evsel, al->thread,
145 sample, &parent);
1b3a0e95
FW
146 if (err)
147 return err;
ad5b217b 148 }
cbbc79a5 149
e248de33 150 he = __hists__add_entry(&evsel->hists, al, parent, sample->period);
9735abf1 151 if (he == NULL)
1b3a0e95
FW
152 return -ENOMEM;
153
ef7b93a1 154 if (symbol_conf.use_callchain) {
246d4ce8 155 err = callchain_append(he->callchain,
47260645 156 &callchain_cursor,
8d50e5b4 157 sample->period);
ef7b93a1 158 if (err)
1b3a0e95 159 return err;
ef7b93a1
ACM
160 }
161 /*
162 * Only in the newt browser we are doing integrated annotation,
163 * so we don't allocated the extra space needed because the stdio
164 * code will not use it.
165 */
034a9265 166 if (he->ms.sym != NULL && use_browser == 1 && sort__has_sym) {
2f525d01 167 struct annotation *notes = symbol__annotation(he->ms.sym);
e248de33
ACM
168
169 assert(evsel != NULL);
170
171 err = -ENOMEM;
d04b35f8 172 if (notes->src == NULL && symbol__alloc_hist(he->ms.sym) < 0)
e248de33
ACM
173 goto out;
174
175 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
2f525d01 176 }
1b3a0e95 177
e248de33
ACM
178 evsel->hists.stats.total_period += sample->period;
179 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
180out:
39d1e1b1 181 return err;
8fa66bdc
ACM
182}
183
cbbc79a5 184
45694aa7 185static int process_sample_event(struct perf_tool *tool,
d20deb64 186 union perf_event *event,
8115d60c 187 struct perf_sample *sample,
9e69c210 188 struct perf_evsel *evsel,
743eb868 189 struct machine *machine)
75051724 190{
45694aa7 191 struct perf_report *rep = container_of(tool, struct perf_report, tool);
1ed091c4 192 struct addr_location al;
180f95e2 193
743eb868 194 if (perf_event__preprocess_sample(event, machine, &al, sample,
fa372aae 195 rep->annotate_init) < 0) {
c410a338 196 fprintf(stderr, "problem processing %d event, skipping it.\n",
75051724
IM
197 event->header.type);
198 return -1;
199 }
e7fb08b1 200
fa372aae 201 if (al.filtered || (rep->hide_unresolved && al.sym == NULL))
ec218fc4 202 return 0;
7bec7a91 203
fa372aae 204 if (rep->cpu_list && !test_bit(sample->cpu, rep->cpu_bitmap))
5d67be97
AB
205 return 0;
206
993ac88d 207 if (sort__branch_mode == 1) {
b50311dc
RAV
208 if (perf_report__add_branch_hist_entry(tool, &al, sample,
209 evsel, machine)) {
210 pr_debug("problem adding lbr entry, skipping event\n");
211 return -1;
212 }
213 } else {
214 if (al.map != NULL)
215 al.map->dso->hit = 1;
ec80fde7 216
b50311dc
RAV
217 if (perf_evsel__add_hist_entry(evsel, &al, sample, machine)) {
218 pr_debug("problem incrementing symbol period, skipping event\n");
219 return -1;
220 }
8fa66bdc 221 }
75051724
IM
222 return 0;
223}
3502973d 224
45694aa7 225static int process_read_event(struct perf_tool *tool,
d20deb64 226 union perf_event *event,
1d037ca1 227 struct perf_sample *sample __maybe_unused,
743eb868 228 struct perf_evsel *evsel,
1d037ca1 229 struct machine *machine __maybe_unused)
e9ea2fde 230{
45694aa7 231 struct perf_report *rep = container_of(tool, struct perf_report, tool);
743eb868 232
fa372aae 233 if (rep->show_threads) {
7289f83c 234 const char *name = evsel ? perf_evsel__name(evsel) : "unknown";
fa372aae 235 perf_read_values_add_value(&rep->show_threads_values,
8d513270
BG
236 event->read.pid, event->read.tid,
237 event->read.id,
238 name,
239 event->read.value);
240 }
241
9486aa38 242 dump_printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid,
7289f83c 243 evsel ? perf_evsel__name(evsel) : "FAIL",
62daacb5 244 event->read.value);
e9ea2fde
PZ
245
246 return 0;
247}
248
300aa941 249/* For pipe mode, sample_type is not currently set */
d20deb64 250static int perf_report__setup_sample_type(struct perf_report *rep)
d80d338d 251{
d20deb64 252 struct perf_session *self = rep->session;
7f3be652 253 u64 sample_type = perf_evlist__sample_type(self->evlist);
d20deb64 254
7f3be652 255 if (!self->fd_pipe && !(sample_type & PERF_SAMPLE_CALLCHAIN)) {
91b4eaea 256 if (sort__has_parent) {
3780f488 257 ui__error("Selected --sort parent, but no "
00894ce9
ACM
258 "callchain data. Did you call "
259 "'perf record' without -g?\n");
d549c769 260 return -EINVAL;
91b4eaea 261 }
d599db3f 262 if (symbol_conf.use_callchain) {
3780f488 263 ui__error("Selected -g but no callchain data. Did "
00894ce9 264 "you call 'perf record' without -g?\n");
016e92fb 265 return -1;
91b4eaea 266 }
fa372aae
ACM
267 } else if (!rep->dont_use_callchains &&
268 callchain_param.mode != CHAIN_NONE &&
b9a63b9b 269 !symbol_conf.use_callchain) {
d599db3f 270 symbol_conf.use_callchain = true;
16537f13 271 if (callchain_register_param(&callchain_param) < 0) {
3780f488 272 ui__error("Can't register callchain params.\n");
d549c769 273 return -EINVAL;
b1a88349 274 }
f5970550
PZ
275 }
276
993ac88d 277 if (sort__branch_mode == 1) {
300aa941 278 if (!self->fd_pipe &&
7f3be652 279 !(sample_type & PERF_SAMPLE_BRANCH_STACK)) {
3780f488
NK
280 ui__error("Selected -b but no branch data. "
281 "Did you call perf record without -b?\n");
b50311dc
RAV
282 return -1;
283 }
284 }
285
016e92fb
FW
286 return 0;
287}
6142f9ec 288
46656ac7
TZ
289extern volatile int session_done;
290
1d037ca1 291static void sig_handler(int sig __maybe_unused)
46656ac7
TZ
292{
293 session_done = 1;
294}
295
c82ee828
ACM
296static size_t hists__fprintf_nr_sample_events(struct hists *self,
297 const char *evname, FILE *fp)
298{
299 size_t ret;
300 char unit;
cc686280
AR
301 unsigned long nr_samples = self->stats.nr_events[PERF_RECORD_SAMPLE];
302 u64 nr_events = self->stats.total_period;
c82ee828 303
cc686280
AR
304 nr_samples = convert_unit(nr_samples, &unit);
305 ret = fprintf(fp, "# Samples: %lu%c", nr_samples, unit);
c82ee828 306 if (evname != NULL)
cc686280
AR
307 ret += fprintf(fp, " of event '%s'", evname);
308
04480d01 309 ret += fprintf(fp, "\n# Event count (approx.): %" PRIu64, nr_events);
c82ee828
ACM
310 return ret + fprintf(fp, "\n#\n");
311}
312
7f0030b2 313static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
d20deb64 314 struct perf_report *rep,
7f0030b2 315 const char *help)
d67f088e 316{
e248de33 317 struct perf_evsel *pos;
d67f088e 318
e248de33
ACM
319 list_for_each_entry(pos, &evlist->entries, node) {
320 struct hists *hists = &pos->hists;
7289f83c 321 const char *evname = perf_evsel__name(pos);
d67f088e
ACM
322
323 hists__fprintf_nr_sample_events(hists, evname, stdout);
41724e4c 324 hists__fprintf(hists, true, 0, 0, stdout);
d67f088e 325 fprintf(stdout, "\n\n");
d67f088e
ACM
326 }
327
328 if (sort_order == default_sort_order &&
329 parent_pattern == default_parent_pattern) {
330 fprintf(stdout, "#\n# (%s)\n#\n", help);
331
fa372aae
ACM
332 if (rep->show_threads) {
333 bool style = !strcmp(rep->pretty_printing_style, "raw");
334 perf_read_values_display(stdout, &rep->show_threads_values,
d67f088e 335 style);
fa372aae 336 perf_read_values_destroy(&rep->show_threads_values);
d67f088e
ACM
337 }
338 }
339
340 return 0;
341}
342
d20deb64 343static int __cmd_report(struct perf_report *rep)
016e92fb 344{
d549c769 345 int ret = -EINVAL;
e248de33 346 u64 nr_samples;
993ac88d 347 struct perf_session *session = rep->session;
e248de33 348 struct perf_evsel *pos;
ec80fde7
ACM
349 struct map *kernel_map;
350 struct kmap *kernel_kmap;
f9224c5c 351 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
8fa66bdc 352
46656ac7
TZ
353 signal(SIGINT, sig_handler);
354
fa372aae
ACM
355 if (rep->cpu_list) {
356 ret = perf_session__cpu_bitmap(session, rep->cpu_list,
357 rep->cpu_bitmap);
5d67be97
AB
358 if (ret)
359 goto out_delete;
360 }
361
fbe96f29 362 if (use_browser <= 0)
fa372aae 363 perf_session__fprintf_info(session, stdout, rep->show_full_info);
fbe96f29 364
fa372aae
ACM
365 if (rep->show_threads)
366 perf_read_values_init(&rep->show_threads_values);
f5970550 367
d20deb64 368 ret = perf_report__setup_sample_type(rep);
d549c769
ACM
369 if (ret)
370 goto out_delete;
371
45694aa7 372 ret = perf_session__process_events(session, &rep->tool);
016e92fb 373 if (ret)
94c744b6 374 goto out_delete;
97b07b69 375
ec80fde7
ACM
376 kernel_map = session->host_machine.vmlinux_maps[MAP__FUNCTION];
377 kernel_kmap = map__kmap(kernel_map);
378 if (kernel_map == NULL ||
379 (kernel_map->dso->hit &&
380 (kernel_kmap->ref_reloc_sym == NULL ||
381 kernel_kmap->ref_reloc_sym->addr == 0))) {
9e755756
DA
382 const char *desc =
383 "As no suitable kallsyms nor vmlinux was found, kernel samples\n"
384 "can't be resolved.";
385
386 if (kernel_map) {
387 const struct dso *kdso = kernel_map->dso;
388 if (!RB_EMPTY_ROOT(&kdso->symbols[MAP__FUNCTION])) {
389 desc = "If some relocation was applied (e.g. "
390 "kexec) symbols may be misresolved.";
391 }
392 }
ec80fde7 393
646aaea6
ACM
394 ui__warning(
395"Kernel address maps (/proc/{kallsyms,modules}) were restricted.\n\n"
396"Check /proc/sys/kernel/kptr_restrict before running 'perf record'.\n\n%s\n\n"
397"Samples in kernel modules can't be resolved as well.\n\n",
9e755756 398 desc);
ec80fde7
ACM
399 }
400
da21d1b5 401 if (verbose > 3)
b3165f41 402 perf_session__fprintf(session, stdout);
9ac99545 403
da21d1b5 404 if (verbose > 2)
cbf69680 405 perf_session__fprintf_dsos(session, stdout);
16f762a2 406
71ad0f5e
JO
407 if (dump_trace) {
408 perf_session__fprintf_nr_events(session, stdout);
409 goto out_delete;
410 }
411
e248de33
ACM
412 nr_samples = 0;
413 list_for_each_entry(pos, &session->evlist->entries, node) {
414 struct hists *hists = &pos->hists;
cbbc79a5 415
b14ffaca
NK
416 if (pos->idx == 0)
417 hists->symbol_filter_str = rep->symbol_filter_str;
418
1c02c4d2 419 hists__collapse_resort(hists);
fefb0b94 420 hists__output_resort(hists);
e248de33
ACM
421 nr_samples += hists->stats.nr_events[PERF_RECORD_SAMPLE];
422 }
423
424 if (nr_samples == 0) {
3780f488 425 ui__error("The %s file has no samples!\n", session->filename);
e248de33 426 goto out_delete;
cbbc79a5
EM
427 }
428
81cce8de 429 if (use_browser > 0) {
c31a9457
PE
430 if (use_browser == 1) {
431 perf_evlist__tui_browse_hists(session->evlist, help,
432 NULL, NULL, 0);
433 } else if (use_browser == 2) {
434 perf_evlist__gtk_browse_hists(session->evlist, help,
435 NULL, NULL, 0);
436 }
81cce8de 437 } else
d20deb64 438 perf_evlist__tty_browse_hists(session->evlist, rep, help);
3e6055ab 439
94c744b6 440out_delete:
71e7cf3a
ACM
441 /*
442 * Speed up the exit process, for large files this can
443 * take quite a while.
444 *
445 * XXX Enable this when using valgrind or if we ever
446 * librarize this command.
447 *
448 * Also experiment with obstacks to see how much speed
449 * up we'll get here.
450 *
451 * perf_session__delete(session);
452 */
016e92fb 453 return ret;
8fa66bdc
ACM
454}
455
4eb3e478 456static int
d20deb64 457parse_callchain_opt(const struct option *opt, const char *arg, int unset)
4eb3e478 458{
d20deb64 459 struct perf_report *rep = (struct perf_report *)opt->value;
232a5c94 460 char *tok, *tok2;
c20ab37e
FW
461 char *endptr;
462
b9a63b9b
ACM
463 /*
464 * --no-call-graph
465 */
466 if (unset) {
fa372aae 467 rep->dont_use_callchains = true;
b9a63b9b
ACM
468 return 0;
469 }
470
d599db3f 471 symbol_conf.use_callchain = true;
4eb3e478
FW
472
473 if (!arg)
474 return 0;
475
c20ab37e
FW
476 tok = strtok((char *)arg, ",");
477 if (!tok)
478 return -1;
479
480 /* get the output mode */
481 if (!strncmp(tok, "graph", strlen(arg)))
805d127d 482 callchain_param.mode = CHAIN_GRAPH_ABS;
4eb3e478 483
c20ab37e 484 else if (!strncmp(tok, "flat", strlen(arg)))
805d127d
FW
485 callchain_param.mode = CHAIN_FLAT;
486
487 else if (!strncmp(tok, "fractal", strlen(arg)))
488 callchain_param.mode = CHAIN_GRAPH_REL;
489
b1a88349
FW
490 else if (!strncmp(tok, "none", strlen(arg))) {
491 callchain_param.mode = CHAIN_NONE;
b7ae11b3 492 symbol_conf.use_callchain = false;
b1a88349
FW
493
494 return 0;
495 }
496
4eb3e478
FW
497 else
498 return -1;
499
c20ab37e
FW
500 /* get the min percentage */
501 tok = strtok(NULL, ",");
502 if (!tok)
805d127d 503 goto setup;
c20ab37e 504
805d127d 505 callchain_param.min_percent = strtod(tok, &endptr);
c20ab37e
FW
506 if (tok == endptr)
507 return -1;
508
d797fdc5
SL
509 /* get the print limit */
510 tok2 = strtok(NULL, ",");
511 if (!tok2)
512 goto setup;
513
514 if (tok2[0] != 'c') {
6581f6e3 515 callchain_param.print_limit = strtoul(tok2, &endptr, 0);
d797fdc5
SL
516 tok2 = strtok(NULL, ",");
517 if (!tok2)
518 goto setup;
519 }
520
521 /* get the call chain order */
522 if (!strcmp(tok2, "caller"))
523 callchain_param.order = ORDER_CALLER;
524 else if (!strcmp(tok2, "callee"))
525 callchain_param.order = ORDER_CALLEE;
526 else
527 return -1;
805d127d 528setup:
16537f13 529 if (callchain_register_param(&callchain_param) < 0) {
805d127d
FW
530 fprintf(stderr, "Can't register callchain params\n");
531 return -1;
532 }
4eb3e478
FW
533 return 0;
534}
535
993ac88d 536static int
1d037ca1
IT
537parse_branch_mode(const struct option *opt __maybe_unused,
538 const char *str __maybe_unused, int unset)
993ac88d
SE
539{
540 sort__branch_mode = !unset;
541 return 0;
542}
543
1d037ca1 544int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused)
d20deb64 545{
993ac88d 546 struct perf_session *session;
efad1415 547 struct stat st;
993ac88d
SE
548 bool has_br_stack = false;
549 int ret = -1;
d20deb64
ACM
550 char callchain_default_opt[] = "fractal,0.5,callee";
551 const char * const report_usage[] = {
fb2baceb 552 "perf report [<options>]",
d20deb64
ACM
553 NULL
554 };
555 struct perf_report report = {
45694aa7 556 .tool = {
d20deb64
ACM
557 .sample = process_sample_event,
558 .mmap = perf_event__process_mmap,
559 .comm = perf_event__process_comm,
f62d3f0f
ACM
560 .exit = perf_event__process_exit,
561 .fork = perf_event__process_fork,
d20deb64
ACM
562 .lost = perf_event__process_lost,
563 .read = process_read_event,
564 .attr = perf_event__process_attr,
565 .event_type = perf_event__process_event_type,
566 .tracing_data = perf_event__process_tracing_data,
567 .build_id = perf_event__process_build_id,
568 .ordered_samples = true,
569 .ordering_requires_timestamps = true,
570 },
d20deb64
ACM
571 .pretty_printing_style = "normal",
572 };
573 const struct option options[] = {
fa372aae 574 OPT_STRING('i', "input", &report.input_name, "file",
53cb8bc2 575 "input file name"),
c0555642 576 OPT_INCR('v', "verbose", &verbose,
815e777f 577 "be more verbose (show symbol address, etc)"),
97b07b69
IM
578 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
579 "dump raw trace in ASCII"),
b32d133a
ACM
580 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
581 "file", "vmlinux pathname"),
b226a5a7
DA
582 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
583 "file", "kallsyms pathname"),
fa372aae 584 OPT_BOOLEAN('f', "force", &report.force, "don't complain, do it"),
b32d133a 585 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
42976487 586 "load module symbols - WARNING: use only with -k and LIVE kernel"),
d599db3f 587 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
e3d7e183 588 "Show a column with the number of samples"),
fa372aae 589 OPT_BOOLEAN('T', "threads", &report.show_threads,
8d513270 590 "Show per-thread event counters"),
fa372aae 591 OPT_STRING(0, "pretty", &report.pretty_printing_style, "key",
9f866697 592 "pretty printing style key: normal raw"),
fa372aae 593 OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"),
c31a9457 594 OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"),
fa372aae
ACM
595 OPT_BOOLEAN(0, "stdio", &report.use_stdio,
596 "Use the stdio interface"),
63299f05 597 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b50311dc
RAV
598 "sort by key(s): pid, comm, dso, symbol, parent, dso_to,"
599 " dso_from, symbol_to, symbol_from, mispredict"),
a1645ce1
ZY
600 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
601 "Show sample percentage for different cpu modes"),
b25bcf2f
IM
602 OPT_STRING('p', "parent", &parent_pattern, "regex",
603 "regex filter to identify parent, see: '--sort parent'"),
d599db3f 604 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
b8e6d829 605 "Only display entries with parent-match"),
6581f6e3
NK
606 OPT_CALLBACK_DEFAULT('g', "call-graph", &report, "output_type,min_percent[,print_limit],call_order",
607 "Display callchains using output_type (graph, flat, fractal, or none) , min percent threshold, optional print limit and callchain order. "
d797fdc5 608 "Default: fractal,0.5,callee", &parse_callchain_opt, callchain_default_opt),
fa372aae
ACM
609 OPT_BOOLEAN('G', "inverted", &report.inverted_callchain,
610 "alias for inverted call graph"),
655000e7 611 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
25903407 612 "only consider symbols in these dsos"),
c8e66720 613 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
cc8b88b1 614 "only consider symbols in these comms"),
655000e7 615 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
7bec7a91 616 "only consider these symbols"),
b14ffaca
NK
617 OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter",
618 "only show symbols that (partially) match with this filter"),
655000e7 619 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
52d422de
ACM
620 "width[,width...]",
621 "don't try to adjust column width, use these fixed values"),
c410a338 622 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
52d422de
ACM
623 "separator for columns, no spaces will be added between "
624 "columns '.' is reserved."),
fa372aae 625 OPT_BOOLEAN('U', "hide-unresolved", &report.hide_unresolved,
71289be7 626 "Only display entries resolved to a symbol"),
ec5761ea
DA
627 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
628 "Look for files with symbols relative to this directory"),
c8e66720 629 OPT_STRING('C', "cpu", &report.cpu_list, "cpu",
fa372aae
ACM
630 "list of cpus to profile"),
631 OPT_BOOLEAN('I', "show-info", &report.show_full_info,
fbe96f29 632 "Display extended information about perf.data file"),
64c6f0c7
ACM
633 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
634 "Interleave source code with assembly code (default)"),
635 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
636 "Display raw encoding of assembly instructions (default)"),
f69b64f7
AK
637 OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
638 "Specify disassembler style (e.g. -M intel for intel syntax)"),
3f2728bd
ACM
639 OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period,
640 "Show a column with the sum of periods"),
993ac88d
SE
641 OPT_CALLBACK_NOOPT('b', "branch-stack", &sort__branch_mode, "",
642 "use branch records for histogram filling", parse_branch_mode),
7a4ec938
MB
643 OPT_STRING(0, "objdump", &objdump_path, "path",
644 "objdump binary to use for disassembly and annotations"),
53cb8bc2 645 OPT_END()
d20deb64 646 };
53cb8bc2 647
655000e7
ACM
648 argc = parse_options(argc, argv, options, report_usage, 0);
649
fa372aae 650 if (report.use_stdio)
8b9e74eb 651 use_browser = 0;
fa372aae 652 else if (report.use_tui)
8b9e74eb 653 use_browser = 1;
c31a9457
PE
654 else if (report.use_gtk)
655 use_browser = 2;
8b9e74eb 656
fa372aae 657 if (report.inverted_callchain)
d797fdc5
SL
658 callchain_param.order = ORDER_CALLER;
659
efad1415
RR
660 if (!report.input_name || !strlen(report.input_name)) {
661 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
662 report.input_name = "-";
663 else
664 report.input_name = "perf.data";
665 }
993ac88d
SE
666 session = perf_session__new(report.input_name, O_RDONLY,
667 report.force, false, &report.tool);
668 if (session == NULL)
669 return -ENOMEM;
670
671 report.session = session;
672
673 has_br_stack = perf_header__has_feat(&session->header,
674 HEADER_BRANCH_STACK);
efad1415 675
68e94f4e
IT
676 if (!objdump_path) {
677 ret = perf_session_env__lookup_objdump(&session->header.env);
678 if (ret)
679 goto error;
680 }
681
993ac88d
SE
682 if (sort__branch_mode == -1 && has_br_stack)
683 sort__branch_mode = 1;
684
a68c2c58 685 /* sort__branch_mode could be 0 if --no-branch-stack */
993ac88d 686 if (sort__branch_mode == 1) {
b50311dc 687 /*
a68c2c58
SE
688 * if no sort_order is provided, then specify
689 * branch-mode specific order
b50311dc
RAV
690 */
691 if (sort_order == default_sort_order)
692 sort_order = "comm,dso_from,symbol_from,"
693 "dso_to,symbol_to";
694
a68c2c58
SE
695 }
696
281ef544
NK
697 if (strcmp(report.input_name, "-") != 0)
698 setup_browser(true);
60e5c706 699 else {
8b9e74eb 700 use_browser = 0;
1d77822e 701 perf_hpp__init();
60e5c706 702 }
efad1415 703
034a9265
NK
704 setup_sorting(report_usage, options);
705
ef7b93a1
ACM
706 /*
707 * Only in the newt browser we are doing integrated annotation,
708 * so don't allocate extra space that won't be used in the stdio
709 * implementation.
710 */
034a9265 711 if (use_browser == 1 && sort__has_sym) {
78f7defe 712 symbol_conf.priv_size = sizeof(struct annotation);
fa372aae 713 report.annotate_init = symbol__annotate_init;
80d50cae
ACM
714 /*
715 * For searching by name on the "Browse map details".
716 * providing it only in verbose mode not to bloat too
717 * much struct symbol.
718 */
719 if (verbose) {
720 /*
721 * XXX: Need to provide a less kludgy way to ask for
722 * more space per symbol, the u32 is for the index on
723 * the ui browser.
724 * See symbol__browser_index.
725 */
726 symbol_conf.priv_size += sizeof(u32);
727 symbol_conf.sort_by_name = true;
728 }
729 }
655000e7 730
75be6cf4 731 if (symbol__init() < 0)
993ac88d 732 goto error;
53cb8bc2 733
021191b3 734 if (parent_pattern != default_parent_pattern) {
2aefa4f7 735 if (sort_dimension__add("parent") < 0)
993ac88d 736 goto error;
cb1955b8
FW
737
738 /*
739 * Only show the parent fields if we explicitly
740 * sort that way. If we only use parent machinery
741 * for filtering, we don't want it.
742 */
743 if (!strstr(sort_order, "parent"))
744 sort_parent.elide = 1;
021191b3 745 } else
d599db3f 746 symbol_conf.exclude_other = false;
b8e6d829 747
6db6127c
NK
748 if (argc) {
749 /*
750 * Special case: if there's an argument left then assume that
751 * it's a symbol filter:
752 */
753 if (argc > 1)
754 usage_with_options(report_usage, options);
755
756 report.symbol_filter_str = argv[0];
757 }
edc52dea 758
655000e7 759 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
a68c2c58
SE
760
761 if (sort__branch_mode == 1) {
762 sort_entry__setup_elide(&sort_dso_from, symbol_conf.dso_from_list, "dso_from", stdout);
763 sort_entry__setup_elide(&sort_dso_to, symbol_conf.dso_to_list, "dso_to", stdout);
764 sort_entry__setup_elide(&sort_sym_from, symbol_conf.sym_from_list, "sym_from", stdout);
765 sort_entry__setup_elide(&sort_sym_to, symbol_conf.sym_to_list, "sym_to", stdout);
766 } else {
767 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
768 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
769 }
25903407 770
993ac88d
SE
771 ret = __cmd_report(&report);
772error:
773 perf_session__delete(session);
774 return ret;
53cb8bc2 775}