perf record: Add HEADER_BRANCH_STACK tag
[deliverable/linux.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
b50311dc
RAV
173 if (sort__branch_mode) {
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
b50311dc
RAV
242 if (sort__branch_mode) {
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;
d8f66248 309 struct perf_session *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 317 session = perf_session__new(rep->input_name, O_RDONLY,
45694aa7 318 rep->force, false, &rep->tool);
94c744b6
ACM
319 if (session == NULL)
320 return -ENOMEM;
321
d20deb64
ACM
322 rep->session = session;
323
fa372aae
ACM
324 if (rep->cpu_list) {
325 ret = perf_session__cpu_bitmap(session, rep->cpu_list,
326 rep->cpu_bitmap);
5d67be97
AB
327 if (ret)
328 goto out_delete;
329 }
330
fbe96f29 331 if (use_browser <= 0)
fa372aae 332 perf_session__fprintf_info(session, stdout, rep->show_full_info);
fbe96f29 333
fa372aae
ACM
334 if (rep->show_threads)
335 perf_read_values_init(&rep->show_threads_values);
f5970550 336
d20deb64 337 ret = perf_report__setup_sample_type(rep);
d549c769
ACM
338 if (ret)
339 goto out_delete;
340
45694aa7 341 ret = perf_session__process_events(session, &rep->tool);
016e92fb 342 if (ret)
94c744b6 343 goto out_delete;
97b07b69 344
ec80fde7
ACM
345 kernel_map = session->host_machine.vmlinux_maps[MAP__FUNCTION];
346 kernel_kmap = map__kmap(kernel_map);
347 if (kernel_map == NULL ||
348 (kernel_map->dso->hit &&
349 (kernel_kmap->ref_reloc_sym == NULL ||
350 kernel_kmap->ref_reloc_sym->addr == 0))) {
351 const struct dso *kdso = kernel_map->dso;
352
646aaea6
ACM
353 ui__warning(
354"Kernel address maps (/proc/{kallsyms,modules}) were restricted.\n\n"
355"Check /proc/sys/kernel/kptr_restrict before running 'perf record'.\n\n%s\n\n"
356"Samples in kernel modules can't be resolved as well.\n\n",
ec80fde7 357 RB_EMPTY_ROOT(&kdso->symbols[MAP__FUNCTION]) ?
646aaea6
ACM
358"As no suitable kallsyms nor vmlinux was found, kernel samples\n"
359"can't be resolved." :
360"If some relocation was applied (e.g. kexec) symbols may be misresolved.");
ec80fde7
ACM
361 }
362
62daacb5 363 if (dump_trace) {
c8446b9b 364 perf_session__fprintf_nr_events(session, stdout);
94c744b6 365 goto out_delete;
62daacb5 366 }
97b07b69 367
da21d1b5 368 if (verbose > 3)
b3165f41 369 perf_session__fprintf(session, stdout);
9ac99545 370
da21d1b5 371 if (verbose > 2)
cbf69680 372 perf_session__fprintf_dsos(session, stdout);
16f762a2 373
e248de33
ACM
374 nr_samples = 0;
375 list_for_each_entry(pos, &session->evlist->entries, node) {
376 struct hists *hists = &pos->hists;
cbbc79a5 377
1c02c4d2 378 hists__collapse_resort(hists);
fefb0b94 379 hists__output_resort(hists);
e248de33
ACM
380 nr_samples += hists->stats.nr_events[PERF_RECORD_SAMPLE];
381 }
382
383 if (nr_samples == 0) {
efad1415 384 ui__warning("The %s file has no samples!\n", session->filename);
e248de33 385 goto out_delete;
cbbc79a5
EM
386 }
387
81cce8de
ACM
388 if (use_browser > 0) {
389 perf_evlist__tui_browse_hists(session->evlist, help,
390 NULL, NULL, 0);
391 } else
d20deb64 392 perf_evlist__tty_browse_hists(session->evlist, rep, help);
3e6055ab 393
94c744b6 394out_delete:
71e7cf3a
ACM
395 /*
396 * Speed up the exit process, for large files this can
397 * take quite a while.
398 *
399 * XXX Enable this when using valgrind or if we ever
400 * librarize this command.
401 *
402 * Also experiment with obstacks to see how much speed
403 * up we'll get here.
404 *
405 * perf_session__delete(session);
406 */
016e92fb 407 return ret;
8fa66bdc
ACM
408}
409
4eb3e478 410static int
d20deb64 411parse_callchain_opt(const struct option *opt, const char *arg, int unset)
4eb3e478 412{
d20deb64 413 struct perf_report *rep = (struct perf_report *)opt->value;
232a5c94 414 char *tok, *tok2;
c20ab37e
FW
415 char *endptr;
416
b9a63b9b
ACM
417 /*
418 * --no-call-graph
419 */
420 if (unset) {
fa372aae 421 rep->dont_use_callchains = true;
b9a63b9b
ACM
422 return 0;
423 }
424
d599db3f 425 symbol_conf.use_callchain = true;
4eb3e478
FW
426
427 if (!arg)
428 return 0;
429
c20ab37e
FW
430 tok = strtok((char *)arg, ",");
431 if (!tok)
432 return -1;
433
434 /* get the output mode */
435 if (!strncmp(tok, "graph", strlen(arg)))
805d127d 436 callchain_param.mode = CHAIN_GRAPH_ABS;
4eb3e478 437
c20ab37e 438 else if (!strncmp(tok, "flat", strlen(arg)))
805d127d
FW
439 callchain_param.mode = CHAIN_FLAT;
440
441 else if (!strncmp(tok, "fractal", strlen(arg)))
442 callchain_param.mode = CHAIN_GRAPH_REL;
443
b1a88349
FW
444 else if (!strncmp(tok, "none", strlen(arg))) {
445 callchain_param.mode = CHAIN_NONE;
b7ae11b3 446 symbol_conf.use_callchain = false;
b1a88349
FW
447
448 return 0;
449 }
450
4eb3e478
FW
451 else
452 return -1;
453
c20ab37e
FW
454 /* get the min percentage */
455 tok = strtok(NULL, ",");
456 if (!tok)
805d127d 457 goto setup;
c20ab37e 458
805d127d 459 callchain_param.min_percent = strtod(tok, &endptr);
c20ab37e
FW
460 if (tok == endptr)
461 return -1;
462
d797fdc5
SL
463 /* get the print limit */
464 tok2 = strtok(NULL, ",");
465 if (!tok2)
466 goto setup;
467
468 if (tok2[0] != 'c') {
6581f6e3 469 callchain_param.print_limit = strtoul(tok2, &endptr, 0);
d797fdc5
SL
470 tok2 = strtok(NULL, ",");
471 if (!tok2)
472 goto setup;
473 }
474
475 /* get the call chain order */
476 if (!strcmp(tok2, "caller"))
477 callchain_param.order = ORDER_CALLER;
478 else if (!strcmp(tok2, "callee"))
479 callchain_param.order = ORDER_CALLEE;
480 else
481 return -1;
805d127d 482setup:
16537f13 483 if (callchain_register_param(&callchain_param) < 0) {
805d127d
FW
484 fprintf(stderr, "Can't register callchain params\n");
485 return -1;
486 }
4eb3e478
FW
487 return 0;
488}
489
d20deb64
ACM
490int cmd_report(int argc, const char **argv, const char *prefix __used)
491{
efad1415 492 struct stat st;
d20deb64
ACM
493 char callchain_default_opt[] = "fractal,0.5,callee";
494 const char * const report_usage[] = {
fb2baceb 495 "perf report [<options>]",
d20deb64
ACM
496 NULL
497 };
498 struct perf_report report = {
45694aa7 499 .tool = {
d20deb64
ACM
500 .sample = process_sample_event,
501 .mmap = perf_event__process_mmap,
502 .comm = perf_event__process_comm,
503 .exit = perf_event__process_task,
504 .fork = perf_event__process_task,
505 .lost = perf_event__process_lost,
506 .read = process_read_event,
507 .attr = perf_event__process_attr,
508 .event_type = perf_event__process_event_type,
509 .tracing_data = perf_event__process_tracing_data,
510 .build_id = perf_event__process_build_id,
511 .ordered_samples = true,
512 .ordering_requires_timestamps = true,
513 },
d20deb64
ACM
514 .pretty_printing_style = "normal",
515 };
516 const struct option options[] = {
fa372aae 517 OPT_STRING('i', "input", &report.input_name, "file",
53cb8bc2 518 "input file name"),
c0555642 519 OPT_INCR('v', "verbose", &verbose,
815e777f 520 "be more verbose (show symbol address, etc)"),
97b07b69
IM
521 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
522 "dump raw trace in ASCII"),
b32d133a
ACM
523 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
524 "file", "vmlinux pathname"),
b226a5a7
DA
525 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
526 "file", "kallsyms pathname"),
fa372aae 527 OPT_BOOLEAN('f', "force", &report.force, "don't complain, do it"),
b32d133a 528 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
42976487 529 "load module symbols - WARNING: use only with -k and LIVE kernel"),
d599db3f 530 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
e3d7e183 531 "Show a column with the number of samples"),
fa372aae 532 OPT_BOOLEAN('T', "threads", &report.show_threads,
8d513270 533 "Show per-thread event counters"),
fa372aae 534 OPT_STRING(0, "pretty", &report.pretty_printing_style, "key",
9f866697 535 "pretty printing style key: normal raw"),
fa372aae
ACM
536 OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"),
537 OPT_BOOLEAN(0, "stdio", &report.use_stdio,
538 "Use the stdio interface"),
63299f05 539 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b50311dc
RAV
540 "sort by key(s): pid, comm, dso, symbol, parent, dso_to,"
541 " dso_from, symbol_to, symbol_from, mispredict"),
a1645ce1
ZY
542 OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
543 "Show sample percentage for different cpu modes"),
b25bcf2f
IM
544 OPT_STRING('p', "parent", &parent_pattern, "regex",
545 "regex filter to identify parent, see: '--sort parent'"),
d599db3f 546 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
b8e6d829 547 "Only display entries with parent-match"),
6581f6e3
NK
548 OPT_CALLBACK_DEFAULT('g', "call-graph", &report, "output_type,min_percent[,print_limit],call_order",
549 "Display callchains using output_type (graph, flat, fractal, or none) , min percent threshold, optional print limit and callchain order. "
d797fdc5 550 "Default: fractal,0.5,callee", &parse_callchain_opt, callchain_default_opt),
fa372aae
ACM
551 OPT_BOOLEAN('G', "inverted", &report.inverted_callchain,
552 "alias for inverted call graph"),
655000e7 553 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
25903407 554 "only consider symbols in these dsos"),
c8e66720 555 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
cc8b88b1 556 "only consider symbols in these comms"),
655000e7 557 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
7bec7a91 558 "only consider these symbols"),
655000e7 559 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
52d422de
ACM
560 "width[,width...]",
561 "don't try to adjust column width, use these fixed values"),
c410a338 562 OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
52d422de
ACM
563 "separator for columns, no spaces will be added between "
564 "columns '.' is reserved."),
fa372aae 565 OPT_BOOLEAN('U', "hide-unresolved", &report.hide_unresolved,
71289be7 566 "Only display entries resolved to a symbol"),
ec5761ea
DA
567 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
568 "Look for files with symbols relative to this directory"),
c8e66720 569 OPT_STRING('C', "cpu", &report.cpu_list, "cpu",
fa372aae
ACM
570 "list of cpus to profile"),
571 OPT_BOOLEAN('I', "show-info", &report.show_full_info,
fbe96f29 572 "Display extended information about perf.data file"),
64c6f0c7
ACM
573 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
574 "Interleave source code with assembly code (default)"),
575 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
576 "Display raw encoding of assembly instructions (default)"),
f69b64f7
AK
577 OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
578 "Specify disassembler style (e.g. -M intel for intel syntax)"),
3f2728bd
ACM
579 OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period,
580 "Show a column with the sum of periods"),
b50311dc
RAV
581 OPT_BOOLEAN('b', "branch-stack", &sort__branch_mode,
582 "use branch records for histogram filling"),
53cb8bc2 583 OPT_END()
d20deb64 584 };
53cb8bc2 585
655000e7
ACM
586 argc = parse_options(argc, argv, options, report_usage, 0);
587
fa372aae 588 if (report.use_stdio)
8b9e74eb 589 use_browser = 0;
fa372aae 590 else if (report.use_tui)
8b9e74eb
ACM
591 use_browser = 1;
592
fa372aae 593 if (report.inverted_callchain)
d797fdc5
SL
594 callchain_param.order = ORDER_CALLER;
595
efad1415
RR
596 if (!report.input_name || !strlen(report.input_name)) {
597 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
598 report.input_name = "-";
599 else
600 report.input_name = "perf.data";
601 }
602
b50311dc
RAV
603 if (sort__branch_mode) {
604 if (use_browser)
605 fprintf(stderr, "Warning: TUI interface not supported"
606 " in branch mode\n");
607 if (symbol_conf.dso_list_str != NULL)
608 fprintf(stderr, "Warning: dso filtering not supported"
609 " in branch mode\n");
610 if (symbol_conf.sym_list_str != NULL)
611 fprintf(stderr, "Warning: symbol filtering not"
612 " supported in branch mode\n");
613
614 report.use_stdio = true;
615 use_browser = 0;
229ade9b 616 setup_browser(true);
b50311dc
RAV
617 symbol_conf.dso_list_str = NULL;
618 symbol_conf.sym_list_str = NULL;
619
620 /*
621 * if no sort_order is provided, then specify branch-mode
622 * specific order
623 */
624 if (sort_order == default_sort_order)
625 sort_order = "comm,dso_from,symbol_from,"
626 "dso_to,symbol_to";
627
628 } else if (strcmp(report.input_name, "-") != 0) {
629 setup_browser(true);
630 } else {
8b9e74eb 631 use_browser = 0;
b50311dc 632 }
efad1415 633
ef7b93a1
ACM
634 /*
635 * Only in the newt browser we are doing integrated annotation,
636 * so don't allocate extra space that won't be used in the stdio
637 * implementation.
638 */
80d50cae 639 if (use_browser > 0) {
78f7defe 640 symbol_conf.priv_size = sizeof(struct annotation);
fa372aae 641 report.annotate_init = symbol__annotate_init;
80d50cae
ACM
642 /*
643 * For searching by name on the "Browse map details".
644 * providing it only in verbose mode not to bloat too
645 * much struct symbol.
646 */
647 if (verbose) {
648 /*
649 * XXX: Need to provide a less kludgy way to ask for
650 * more space per symbol, the u32 is for the index on
651 * the ui browser.
652 * See symbol__browser_index.
653 */
654 symbol_conf.priv_size += sizeof(u32);
655 symbol_conf.sort_by_name = true;
656 }
657 }
655000e7 658
75be6cf4 659 if (symbol__init() < 0)
b32d133a 660 return -1;
53cb8bc2 661
c8829c7a 662 setup_sorting(report_usage, options);
1aa16738 663
021191b3 664 if (parent_pattern != default_parent_pattern) {
2aefa4f7
ACM
665 if (sort_dimension__add("parent") < 0)
666 return -1;
cb1955b8
FW
667
668 /*
669 * Only show the parent fields if we explicitly
670 * sort that way. If we only use parent machinery
671 * for filtering, we don't want it.
672 */
673 if (!strstr(sort_order, "parent"))
674 sort_parent.elide = 1;
021191b3 675 } else
d599db3f 676 symbol_conf.exclude_other = false;
b8e6d829 677
edc52dea
IM
678 /*
679 * Any (unrecognized) arguments left?
680 */
681 if (argc)
682 usage_with_options(report_usage, options);
683
655000e7
ACM
684 sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
685 sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
686 sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
25903407 687
d20deb64 688 return __cmd_report(&report);
53cb8bc2 689}
This page took 0.165796 seconds and 5 git commands to generate.