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