perf kvm: Remove invocation of setup/exit_browser()
[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 10#include "util/util.h"
00c7e1f1 11#include "util/cache.h"
bf9e1876 12
78f7defe 13#include "util/annotate.h"
8fc0321f 14#include "util/color.h"
5da50258 15#include <linux/list.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"
f5fc1412 36#include "util/data.h"
68e94f4e 37#include "arch/common.h"
6baa0a5a 38
520a2ebc
AH
39#include "util/auxtrace.h"
40
fc67297b 41#include <dlfcn.h>
5d67be97
AB
42#include <linux/bitmap.h>
43
28b21393 44struct report {
45694aa7 45 struct perf_tool tool;
d20deb64 46 struct perf_session *session;
2059fc7a 47 bool use_tui, use_gtk, use_stdio;
fa372aae
ACM
48 bool dont_use_callchains;
49 bool show_full_info;
50 bool show_threads;
51 bool inverted_callchain;
f4f7e28d 52 bool mem_mode;
5cfe2c82
JO
53 bool header;
54 bool header_only;
98df858e 55 bool nonany_branch_mode;
91e95617 56 int max_stack;
fa372aae
ACM
57 struct perf_read_values show_threads_values;
58 const char *pretty_printing_style;
fa372aae 59 const char *cpu_list;
b14ffaca 60 const char *symbol_filter_str;
064f1981 61 float min_percent;
58c311da 62 u64 nr_entries;
94786b67 63 u64 queue_size;
21394d94 64 int socket_filter;
fa372aae 65 DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
d20deb64 66};
5d67be97 67
28b21393 68static int report__config(const char *var, const char *value, void *cb)
00c7e1f1 69{
94786b67
JO
70 struct report *rep = cb;
71
00c7e1f1
NK
72 if (!strcmp(var, "report.group")) {
73 symbol_conf.event_group = perf_config_bool(var, value);
74 return 0;
75 }
eec574e6 76 if (!strcmp(var, "report.percent-limit")) {
eec574e6
NK
77 rep->min_percent = strtof(value, NULL);
78 return 0;
79 }
8d8e645c
NK
80 if (!strcmp(var, "report.children")) {
81 symbol_conf.cumulate_callchain = perf_config_bool(var, value);
82 return 0;
83 }
94786b67
JO
84 if (!strcmp(var, "report.queue-size")) {
85 rep->queue_size = perf_config_u64(var, value);
86 return 0;
87 }
00c7e1f1
NK
88
89 return perf_default_config(var, value, cb);
90}
91
9d3c02d7
NK
92static int hist_iter__report_callback(struct hist_entry_iter *iter,
93 struct addr_location *al, bool single,
94 void *arg)
95{
96 int err = 0;
97 struct report *rep = arg;
98 struct hist_entry *he = iter->he;
99 struct perf_evsel *evsel = iter->evsel;
100 struct mem_info *mi;
101 struct branch_info *bi;
102
9d3c02d7
NK
103 if (!ui__has_annotation())
104 return 0;
105
57849998
AK
106 hist__account_cycles(iter->sample->branch_stack, al, iter->sample,
107 rep->nonany_branch_mode);
108
9d3c02d7
NK
109 if (sort__mode == SORT_MODE__BRANCH) {
110 bi = he->branch_info;
111 err = addr_map_symbol__inc_samples(&bi->from, evsel->idx);
112 if (err)
113 goto out;
114
115 err = addr_map_symbol__inc_samples(&bi->to, evsel->idx);
116
117 } else if (rep->mem_mode) {
118 mi = he->mem_info;
119 err = addr_map_symbol__inc_samples(&mi->daddr, evsel->idx);
120 if (err)
121 goto out;
122
123 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
124
125 } else if (symbol_conf.cumulate_callchain) {
126 if (single)
127 err = hist_entry__inc_addr_samples(he, evsel->idx,
128 al->addr);
129 } else {
130 err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
131 }
132
133out:
134 return err;
f4f7e28d
SE
135}
136
45694aa7 137static int process_sample_event(struct perf_tool *tool,
d20deb64 138 union perf_event *event,
8115d60c 139 struct perf_sample *sample,
9e69c210 140 struct perf_evsel *evsel,
743eb868 141 struct machine *machine)
75051724 142{
28b21393 143 struct report *rep = container_of(tool, struct report, tool);
1ed091c4 144 struct addr_location al;
69bcb019 145 struct hist_entry_iter iter = {
063bd936
NK
146 .evsel = evsel,
147 .sample = sample,
b49a8fe5 148 .hide_unresolved = symbol_conf.hide_unresolved,
063bd936 149 .add_entry_cb = hist_iter__report_callback,
69bcb019 150 };
b91fc39f 151 int ret = 0;
180f95e2 152
e44baa3e 153 if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
a4210141
NK
154 pr_debug("problem processing %d event, skipping it.\n",
155 event->header.type);
75051724
IM
156 return -1;
157 }
e7fb08b1 158
b49a8fe5 159 if (symbol_conf.hide_unresolved && al.sym == NULL)
b91fc39f 160 goto out_put;
7bec7a91 161
fa372aae 162 if (rep->cpu_list && !test_bit(sample->cpu, rep->cpu_bitmap))
b91fc39f 163 goto out_put;
5d67be97 164
f86225db
AH
165 if (sort__mode == SORT_MODE__BRANCH) {
166 /*
167 * A non-synthesized event might not have a branch stack if
168 * branch stacks have been synthesized (using itrace options).
169 */
170 if (!sample->branch_stack)
171 goto out_put;
69bcb019 172 iter.ops = &hist_iter_branch;
f86225db 173 } else if (rep->mem_mode) {
69bcb019 174 iter.ops = &hist_iter_mem;
f86225db 175 } else if (symbol_conf.cumulate_callchain) {
7a13aa28 176 iter.ops = &hist_iter_cumulative;
f86225db 177 } else {
69bcb019 178 iter.ops = &hist_iter_normal;
f86225db 179 }
69bcb019
NK
180
181 if (al.map != NULL)
182 al.map->dso->hit = 1;
183
063bd936 184 ret = hist_entry_iter__add(&iter, &al, rep->max_stack, rep);
69bcb019
NK
185 if (ret < 0)
186 pr_debug("problem adding hist entry, skipping event\n");
b91fc39f
ACM
187out_put:
188 addr_location__put(&al);
27a0dcb7 189 return ret;
75051724 190}
3502973d 191
45694aa7 192static int process_read_event(struct perf_tool *tool,
d20deb64 193 union perf_event *event,
1d037ca1 194 struct perf_sample *sample __maybe_unused,
743eb868 195 struct perf_evsel *evsel,
1d037ca1 196 struct machine *machine __maybe_unused)
e9ea2fde 197{
28b21393 198 struct report *rep = container_of(tool, struct report, tool);
743eb868 199
fa372aae 200 if (rep->show_threads) {
7289f83c 201 const char *name = evsel ? perf_evsel__name(evsel) : "unknown";
fa372aae 202 perf_read_values_add_value(&rep->show_threads_values,
8d513270
BG
203 event->read.pid, event->read.tid,
204 event->read.id,
205 name,
206 event->read.value);
207 }
208
9486aa38 209 dump_printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid,
7289f83c 210 evsel ? perf_evsel__name(evsel) : "FAIL",
62daacb5 211 event->read.value);
e9ea2fde
PZ
212
213 return 0;
214}
215
300aa941 216/* For pipe mode, sample_type is not currently set */
28b21393 217static int report__setup_sample_type(struct report *rep)
d80d338d 218{
c824c433
ACM
219 struct perf_session *session = rep->session;
220 u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
221 bool is_pipe = perf_data_file__is_pipe(session->file);
d20deb64 222
d062ac16
AH
223 if (session->itrace_synth_opts->callchain ||
224 (!is_pipe &&
225 perf_header__has_feat(&session->header, HEADER_AUXTRACE) &&
226 !session->itrace_synth_opts->set))
227 sample_type |= PERF_SAMPLE_CALLCHAIN;
228
c7eced63
AH
229 if (session->itrace_synth_opts->last_branch)
230 sample_type |= PERF_SAMPLE_BRANCH_STACK;
231
cc9784bd 232 if (!is_pipe && !(sample_type & PERF_SAMPLE_CALLCHAIN)) {
91b4eaea 233 if (sort__has_parent) {
3780f488 234 ui__error("Selected --sort parent, but no "
00894ce9
ACM
235 "callchain data. Did you call "
236 "'perf record' without -g?\n");
d549c769 237 return -EINVAL;
91b4eaea 238 }
d599db3f 239 if (symbol_conf.use_callchain) {
fa94c36c
AK
240 ui__error("Selected -g or --branch-history but no "
241 "callchain data. Did\n"
242 "you call 'perf record' without -g?\n");
016e92fb 243 return -1;
91b4eaea 244 }
fa372aae
ACM
245 } else if (!rep->dont_use_callchains &&
246 callchain_param.mode != CHAIN_NONE &&
b9a63b9b 247 !symbol_conf.use_callchain) {
d599db3f 248 symbol_conf.use_callchain = true;
16537f13 249 if (callchain_register_param(&callchain_param) < 0) {
3780f488 250 ui__error("Can't register callchain params.\n");
d549c769 251 return -EINVAL;
b1a88349 252 }
f5970550
PZ
253 }
254
793aaaab
NK
255 if (symbol_conf.cumulate_callchain) {
256 /* Silently ignore if callchain is missing */
257 if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
258 symbol_conf.cumulate_callchain = false;
259 perf_hpp__cancel_cumulate();
260 }
261 }
262
55369fc1 263 if (sort__mode == SORT_MODE__BRANCH) {
cc9784bd 264 if (!is_pipe &&
7f3be652 265 !(sample_type & PERF_SAMPLE_BRANCH_STACK)) {
3780f488
NK
266 ui__error("Selected -b but no branch data. "
267 "Did you call perf record without -b?\n");
b50311dc
RAV
268 return -1;
269 }
270 }
271
0cdccac6
NK
272 if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
273 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
274 (sample_type & PERF_SAMPLE_STACK_USER))
275 callchain_param.record_mode = CALLCHAIN_DWARF;
aad2b21c
KL
276 else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
277 callchain_param.record_mode = CALLCHAIN_LBR;
0cdccac6
NK
278 else
279 callchain_param.record_mode = CALLCHAIN_FP;
280 }
98df858e
AK
281
282 /* ??? handle more cases than just ANY? */
283 if (!(perf_evlist__combined_branch_type(session->evlist) &
284 PERF_SAMPLE_BRANCH_ANY))
285 rep->nonany_branch_mode = true;
286
016e92fb
FW
287 return 0;
288}
6142f9ec 289
1d037ca1 290static void sig_handler(int sig __maybe_unused)
46656ac7
TZ
291{
292 session_done = 1;
293}
294
28b21393 295static size_t hists__fprintf_nr_sample_events(struct hists *hists, struct report *rep,
c82ee828
ACM
296 const char *evname, FILE *fp)
297{
298 size_t ret;
299 char unit;
c824c433
ACM
300 unsigned long nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
301 u64 nr_events = hists->stats.total_period;
302 struct perf_evsel *evsel = hists_to_evsel(hists);
717e263f
NK
303 char buf[512];
304 size_t size = sizeof(buf);
84734b06 305 int socked_id = hists->socket_filter;
717e263f 306
f2148330
NK
307 if (symbol_conf.filter_relative) {
308 nr_samples = hists->stats.nr_non_filtered_samples;
309 nr_events = hists->stats.total_non_filtered_period;
310 }
311
759ff497 312 if (perf_evsel__is_group_event(evsel)) {
717e263f
NK
313 struct perf_evsel *pos;
314
315 perf_evsel__group_desc(evsel, buf, size);
316 evname = buf;
317
318 for_each_group_member(pos, evsel) {
4ea062ed
ACM
319 const struct hists *pos_hists = evsel__hists(pos);
320
f2148330 321 if (symbol_conf.filter_relative) {
4ea062ed
ACM
322 nr_samples += pos_hists->stats.nr_non_filtered_samples;
323 nr_events += pos_hists->stats.total_non_filtered_period;
f2148330 324 } else {
4ea062ed
ACM
325 nr_samples += pos_hists->stats.nr_events[PERF_RECORD_SAMPLE];
326 nr_events += pos_hists->stats.total_period;
f2148330 327 }
717e263f
NK
328 }
329 }
c82ee828 330
cc686280
AR
331 nr_samples = convert_unit(nr_samples, &unit);
332 ret = fprintf(fp, "# Samples: %lu%c", nr_samples, unit);
c82ee828 333 if (evname != NULL)
cc686280
AR
334 ret += fprintf(fp, " of event '%s'", evname);
335
9e207ddf
KL
336 if (symbol_conf.show_ref_callgraph &&
337 strstr(evname, "call-graph=no")) {
338 ret += fprintf(fp, ", show reference callgraph");
339 }
340
f4f7e28d
SE
341 if (rep->mem_mode) {
342 ret += fprintf(fp, "\n# Total weight : %" PRIu64, nr_events);
228f14f2 343 ret += fprintf(fp, "\n# Sort order : %s", sort_order ? : default_mem_sort_order);
f4f7e28d
SE
344 } else
345 ret += fprintf(fp, "\n# Event count (approx.): %" PRIu64, nr_events);
21394d94 346
84734b06
KL
347 if (socked_id > -1)
348 ret += fprintf(fp, "\n# Processor Socket: %d", socked_id);
21394d94 349
c82ee828
ACM
350 return ret + fprintf(fp, "\n#\n");
351}
352
7f0030b2 353static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
28b21393 354 struct report *rep,
7f0030b2 355 const char *help)
d67f088e 356{
e248de33 357 struct perf_evsel *pos;
d67f088e 358
6ba29c2f 359 fprintf(stdout, "#\n# Total Lost Samples: %" PRIu64 "\n#\n", evlist->stats.total_lost_samples);
0050f7aa 360 evlist__for_each(evlist, pos) {
4ea062ed 361 struct hists *hists = evsel__hists(pos);
7289f83c 362 const char *evname = perf_evsel__name(pos);
d67f088e 363
fc24d7c2
NK
364 if (symbol_conf.event_group &&
365 !perf_evsel__is_group_leader(pos))
366 continue;
367
28b21393 368 hists__fprintf_nr_sample_events(hists, rep, evname, stdout);
064f1981 369 hists__fprintf(hists, true, 0, 0, rep->min_percent, stdout);
d67f088e 370 fprintf(stdout, "\n\n");
d67f088e
ACM
371 }
372
e944ec2c 373 if (sort_order == NULL &&
021162cf 374 parent_pattern == default_parent_pattern)
d67f088e
ACM
375 fprintf(stdout, "#\n# (%s)\n#\n", help);
376
021162cf
NK
377 if (rep->show_threads) {
378 bool style = !strcmp(rep->pretty_printing_style, "raw");
379 perf_read_values_display(stdout, &rep->show_threads_values,
380 style);
381 perf_read_values_destroy(&rep->show_threads_values);
d67f088e
ACM
382 }
383
384 return 0;
385}
386
fad2918e
ACM
387static void report__warn_kptr_restrict(const struct report *rep)
388{
a5e813c6 389 struct map *kernel_map = machine__kernel_map(&rep->session->machines.host);
f6fcc143 390 struct kmap *kernel_kmap = kernel_map ? map__kmap(kernel_map) : NULL;
fad2918e
ACM
391
392 if (kernel_map == NULL ||
393 (kernel_map->dso->hit &&
394 (kernel_kmap->ref_reloc_sym == NULL ||
395 kernel_kmap->ref_reloc_sym->addr == 0))) {
396 const char *desc =
397 "As no suitable kallsyms nor vmlinux was found, kernel samples\n"
398 "can't be resolved.";
399
400 if (kernel_map) {
401 const struct dso *kdso = kernel_map->dso;
402 if (!RB_EMPTY_ROOT(&kdso->symbols[MAP__FUNCTION])) {
403 desc = "If some relocation was applied (e.g. "
404 "kexec) symbols may be misresolved.";
405 }
406 }
407
408 ui__warning(
409"Kernel address maps (/proc/{kallsyms,modules}) were restricted.\n\n"
410"Check /proc/sys/kernel/kptr_restrict before running 'perf record'.\n\n%s\n\n"
411"Samples in kernel modules can't be resolved as well.\n\n",
412 desc);
413 }
414}
415
8362951b
ACM
416static int report__gtk_browse_hists(struct report *rep, const char *help)
417{
418 int (*hist_browser)(struct perf_evlist *evlist, const char *help,
419 struct hist_browser_timer *timer, float min_pcnt);
420
421 hist_browser = dlsym(perf_gtk_handle, "perf_evlist__gtk_browse_hists");
422
423 if (hist_browser == NULL) {
424 ui__error("GTK browser not found!\n");
425 return -1;
426 }
427
428 return hist_browser(rep->session->evlist, help, NULL, rep->min_percent);
429}
430
431static int report__browse_hists(struct report *rep)
432{
433 int ret;
434 struct perf_session *session = rep->session;
435 struct perf_evlist *evlist = session->evlist;
436 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
437
438 switch (use_browser) {
439 case 1:
440 ret = perf_evlist__tui_browse_hists(evlist, help, NULL,
441 rep->min_percent,
442 &session->header.env);
443 /*
444 * Usually "ret" is the last pressed key, and we only
445 * care if the key notifies us to switch data file.
446 */
447 if (ret != K_SWITCH_INPUT_DATA)
448 ret = 0;
449 break;
450 case 2:
451 ret = report__gtk_browse_hists(rep, help);
452 break;
453 default:
454 ret = perf_evlist__tty_browse_hists(evlist, rep, help);
455 break;
456 }
457
458 return ret;
459}
460
58c311da 461static void report__collapse_hists(struct report *rep)
f6d8b057
ACM
462{
463 struct ui_progress prog;
464 struct perf_evsel *pos;
f6d8b057 465
58c311da 466 ui_progress__init(&prog, rep->nr_entries, "Merging related events...");
f6d8b057 467
0050f7aa 468 evlist__for_each(rep->session->evlist, pos) {
4ea062ed 469 struct hists *hists = evsel__hists(pos);
f6d8b057
ACM
470
471 if (pos->idx == 0)
472 hists->symbol_filter_str = rep->symbol_filter_str;
473
21394d94
KL
474 hists->socket_filter = rep->socket_filter;
475
f6d8b057 476 hists__collapse_resort(hists, &prog);
f6d8b057
ACM
477
478 /* Non-group events are considered as leader */
479 if (symbol_conf.event_group &&
480 !perf_evsel__is_group_leader(pos)) {
4ea062ed 481 struct hists *leader_hists = evsel__hists(pos->leader);
f6d8b057
ACM
482
483 hists__match(leader_hists, hists);
484 hists__link(leader_hists, hists);
485 }
486 }
487
488 ui_progress__finish();
f6d8b057
ACM
489}
490
740b97f9
NK
491static void report__output_resort(struct report *rep)
492{
493 struct ui_progress prog;
494 struct perf_evsel *pos;
495
496 ui_progress__init(&prog, rep->nr_entries, "Sorting events for output...");
497
498 evlist__for_each(rep->session->evlist, pos)
499 hists__output_resort(evsel__hists(pos), &prog);
500
501 ui_progress__finish();
502}
503
28b21393 504static int __cmd_report(struct report *rep)
016e92fb 505{
f6d8b057 506 int ret;
993ac88d 507 struct perf_session *session = rep->session;
e248de33 508 struct perf_evsel *pos;
cc9784bd 509 struct perf_data_file *file = session->file;
8fa66bdc 510
46656ac7
TZ
511 signal(SIGINT, sig_handler);
512
fa372aae
ACM
513 if (rep->cpu_list) {
514 ret = perf_session__cpu_bitmap(session, rep->cpu_list,
515 rep->cpu_bitmap);
25b1606b
NK
516 if (ret) {
517 ui__error("failed to set cpu bitmap\n");
d4ae0a6f 518 return ret;
25b1606b 519 }
5d67be97
AB
520 }
521
fa372aae
ACM
522 if (rep->show_threads)
523 perf_read_values_init(&rep->show_threads_values);
f5970550 524
28b21393 525 ret = report__setup_sample_type(rep);
25b1606b
NK
526 if (ret) {
527 /* report__setup_sample_type() already showed error message */
d4ae0a6f 528 return ret;
25b1606b 529 }
d549c769 530
b7b61cbe 531 ret = perf_session__process_events(session);
25b1606b
NK
532 if (ret) {
533 ui__error("failed to process sample\n");
d4ae0a6f 534 return ret;
25b1606b 535 }
97b07b69 536
fad2918e 537 report__warn_kptr_restrict(rep);
ec80fde7 538
590cd344
NK
539 evlist__for_each(session->evlist, pos)
540 rep->nr_entries += evsel__hists(pos)->nr_entries;
541
150e465a
NK
542 if (use_browser == 0) {
543 if (verbose > 3)
544 perf_session__fprintf(session, stdout);
9ac99545 545
150e465a
NK
546 if (verbose > 2)
547 perf_session__fprintf_dsos(session, stdout);
16f762a2 548
150e465a
NK
549 if (dump_trace) {
550 perf_session__fprintf_nr_events(session, stdout);
2a1731fb 551 perf_evlist__fprintf_nr_events(session->evlist, stdout);
150e465a
NK
552 return 0;
553 }
71ad0f5e
JO
554 }
555
58c311da 556 report__collapse_hists(rep);
e248de33 557
33e940a2
ACM
558 if (session_done())
559 return 0;
560
740b97f9
NK
561 /*
562 * recalculate number of entries after collapsing since it
563 * might be changed during the collapse phase.
564 */
565 rep->nr_entries = 0;
566 evlist__for_each(session->evlist, pos)
567 rep->nr_entries += evsel__hists(pos)->nr_entries;
568
58c311da 569 if (rep->nr_entries == 0) {
cc9784bd 570 ui__error("The %s file has no samples!\n", file->path);
d4ae0a6f 571 return 0;
cbbc79a5
EM
572 }
573
740b97f9 574 report__output_resort(rep);
6e1f601a 575
8362951b 576 return report__browse_hists(rep);
8fa66bdc
ACM
577}
578
4eb3e478 579static int
cff6bb46 580report_parse_callchain_opt(const struct option *opt, const char *arg, int unset)
4eb3e478 581{
28b21393 582 struct report *rep = (struct report *)opt->value;
c20ab37e 583
b9a63b9b
ACM
584 /*
585 * --no-call-graph
586 */
587 if (unset) {
fa372aae 588 rep->dont_use_callchains = true;
b9a63b9b
ACM
589 return 0;
590 }
591
cff6bb46 592 return parse_callchain_report_opt(arg);
4eb3e478
FW
593}
594
b21484f1
GP
595int
596report_parse_ignore_callees_opt(const struct option *opt __maybe_unused,
597 const char *arg, int unset __maybe_unused)
598{
599 if (arg) {
600 int err = regcomp(&ignore_callees_regex, arg, REG_EXTENDED);
601 if (err) {
602 char buf[BUFSIZ];
603 regerror(err, &ignore_callees_regex, buf, sizeof(buf));
604 pr_err("Invalid --ignore-callees regex: %s\n%s", arg, buf);
605 return -1;
606 }
607 have_ignore_callees = 1;
608 }
609
610 return 0;
611}
612
993ac88d 613static int
1d037ca1
IT
614parse_branch_mode(const struct option *opt __maybe_unused,
615 const char *str __maybe_unused, int unset)
993ac88d 616{
55369fc1
NK
617 int *branch_mode = opt->value;
618
619 *branch_mode = !unset;
993ac88d
SE
620 return 0;
621}
622
064f1981
NK
623static int
624parse_percent_limit(const struct option *opt, const char *str,
625 int unset __maybe_unused)
626{
28b21393 627 struct report *rep = opt->value;
064f1981
NK
628
629 rep->min_percent = strtof(str, NULL);
630 return 0;
631}
632
f2af0086 633#define CALLCHAIN_DEFAULT_OPT "graph,0.5,caller,function,percent"
76a26549
NK
634
635const char report_callchain_help[] = "Display call graph (stack chain/backtrace):\n\n"
636 CALLCHAIN_REPORT_HELP
637 "\n\t\t\t\tDefault: " CALLCHAIN_DEFAULT_OPT;
21cf6284 638
1d037ca1 639int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused)
d20deb64 640{
993ac88d 641 struct perf_session *session;
520a2ebc 642 struct itrace_synth_opts itrace_synth_opts = { .set = 0, };
efad1415 643 struct stat st;
993ac88d 644 bool has_br_stack = false;
55369fc1 645 int branch_mode = -1;
fa94c36c 646 bool branch_call_mode = false;
76a26549 647 char callchain_default_opt[] = CALLCHAIN_DEFAULT_OPT;
d20deb64 648 const char * const report_usage[] = {
fb2baceb 649 "perf report [<options>]",
d20deb64
ACM
650 NULL
651 };
28b21393 652 struct report report = {
45694aa7 653 .tool = {
d20deb64
ACM
654 .sample = process_sample_event,
655 .mmap = perf_event__process_mmap,
5c5e854b 656 .mmap2 = perf_event__process_mmap2,
d20deb64 657 .comm = perf_event__process_comm,
f62d3f0f
ACM
658 .exit = perf_event__process_exit,
659 .fork = perf_event__process_fork,
d20deb64
ACM
660 .lost = perf_event__process_lost,
661 .read = process_read_event,
662 .attr = perf_event__process_attr,
d20deb64
ACM
663 .tracing_data = perf_event__process_tracing_data,
664 .build_id = perf_event__process_build_id,
520a2ebc
AH
665 .id_index = perf_event__process_id_index,
666 .auxtrace_info = perf_event__process_auxtrace_info,
667 .auxtrace = perf_event__process_auxtrace,
0a8cb85c 668 .ordered_events = true,
d20deb64
ACM
669 .ordering_requires_timestamps = true,
670 },
91e95617 671 .max_stack = PERF_MAX_STACK_DEPTH,
d20deb64 672 .pretty_printing_style = "normal",
21394d94 673 .socket_filter = -1,
d20deb64
ACM
674 };
675 const struct option options[] = {
70cb4e96 676 OPT_STRING('i', "input", &input_name, "file",
53cb8bc2 677 "input file name"),
c0555642 678 OPT_INCR('v', "verbose", &verbose,
815e777f 679 "be more verbose (show symbol address, etc)"),
97b07b69
IM
680 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
681 "dump raw trace in ASCII"),
b32d133a
ACM
682 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
683 "file", "vmlinux pathname"),
b226a5a7
DA
684 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
685 "file", "kallsyms pathname"),
2059fc7a 686 OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
b32d133a 687 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
42976487 688 "load module symbols - WARNING: use only with -k and LIVE kernel"),
d599db3f 689 OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
e3d7e183 690 "Show a column with the number of samples"),
fa372aae 691 OPT_BOOLEAN('T', "threads", &report.show_threads,
8d513270 692 "Show per-thread event counters"),
fa372aae 693 OPT_STRING(0, "pretty", &report.pretty_printing_style, "key",
9f866697 694 "pretty printing style key: normal raw"),
fa372aae 695 OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"),
c31a9457 696 OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"),
fa372aae
ACM
697 OPT_BOOLEAN(0, "stdio", &report.use_stdio,
698 "Use the stdio interface"),
5cfe2c82
JO
699 OPT_BOOLEAN(0, "header", &report.header, "Show data header."),
700 OPT_BOOLEAN(0, "header-only", &report.header_only,
701 "Show only data header."),
63299f05 702 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
a2ce067e
NK
703 "sort by key(s): pid, comm, dso, symbol, parent, cpu, srcline, ..."
704 " Please refer the man page for the complete list."),
a7d945bc
NK
705 OPT_STRING('F', "fields", &field_order, "key[,keys...]",
706 "output field(s): overhead, period, sample plus all of sort keys"),
b272a59d 707 OPT_BOOLEAN(0, "show-cpu-utilization", &symbol_conf.show_cpu_utilization,
a1645ce1 708 "Show sample percentage for different cpu modes"),
b272a59d
NK
709 OPT_BOOLEAN_FLAG(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
710 "Show sample percentage for different cpu modes", PARSE_OPT_HIDDEN),
b25bcf2f
IM
711 OPT_STRING('p', "parent", &parent_pattern, "regex",
712 "regex filter to identify parent, see: '--sort parent'"),
d599db3f 713 OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
b8e6d829 714 "Only display entries with parent-match"),
21cf6284 715 OPT_CALLBACK_DEFAULT('g', "call-graph", &report,
f2af0086 716 "print_type,threshold[,print_limit],order,sort_key[,branch],value",
21cf6284
NK
717 report_callchain_help, &report_parse_callchain_opt,
718 callchain_default_opt),
793aaaab
NK
719 OPT_BOOLEAN(0, "children", &symbol_conf.cumulate_callchain,
720 "Accumulate callchains of children and show total overhead as well"),
91e95617
WL
721 OPT_INTEGER(0, "max-stack", &report.max_stack,
722 "Set the maximum stack depth when parsing the callchain, "
723 "anything beyond the specified depth will be ignored. "
724 "Default: " __stringify(PERF_MAX_STACK_DEPTH)),
fa372aae
ACM
725 OPT_BOOLEAN('G', "inverted", &report.inverted_callchain,
726 "alias for inverted call graph"),
b21484f1
GP
727 OPT_CALLBACK(0, "ignore-callees", NULL, "regex",
728 "ignore callees of these functions in call graphs",
729 report_parse_ignore_callees_opt),
655000e7 730 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
25903407 731 "only consider symbols in these dsos"),
c8e66720 732 OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
cc8b88b1 733 "only consider symbols in these comms"),
e03eaa40
DA
734 OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
735 "only consider symbols in these pids"),
736 OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
737 "only consider symbols in these tids"),
655000e7 738 OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
7bec7a91 739 "only consider these symbols"),
b14ffaca
NK
740 OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter",
741 "only show symbols that (partially) match with this filter"),
655000e7 742 OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
52d422de
ACM
743 "width[,width...]",
744 "don't try to adjust column width, use these fixed values"),
0c8c2077 745 OPT_STRING_NOEMPTY('t', "field-separator", &symbol_conf.field_sep, "separator",
52d422de
ACM
746 "separator for columns, no spaces will be added between "
747 "columns '.' is reserved."),
b49a8fe5 748 OPT_BOOLEAN('U', "hide-unresolved", &symbol_conf.hide_unresolved,
71289be7 749 "Only display entries resolved to a symbol"),
ec5761ea
DA
750 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
751 "Look for files with symbols relative to this directory"),
c8e66720 752 OPT_STRING('C', "cpu", &report.cpu_list, "cpu",
fa372aae
ACM
753 "list of cpus to profile"),
754 OPT_BOOLEAN('I', "show-info", &report.show_full_info,
fbe96f29 755 "Display extended information about perf.data file"),
64c6f0c7
ACM
756 OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
757 "Interleave source code with assembly code (default)"),
758 OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
759 "Display raw encoding of assembly instructions (default)"),
f69b64f7
AK
760 OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
761 "Specify disassembler style (e.g. -M intel for intel syntax)"),
3f2728bd
ACM
762 OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period,
763 "Show a column with the sum of periods"),
01d14f16
NK
764 OPT_BOOLEAN(0, "group", &symbol_conf.event_group,
765 "Show event group information together"),
55369fc1 766 OPT_CALLBACK_NOOPT('b', "branch-stack", &branch_mode, "",
fa94c36c
AK
767 "use branch records for per branch histogram filling",
768 parse_branch_mode),
769 OPT_BOOLEAN(0, "branch-history", &branch_call_mode,
770 "add last branch records to call history"),
7a4ec938
MB
771 OPT_STRING(0, "objdump", &objdump_path, "path",
772 "objdump binary to use for disassembly and annotations"),
328ccdac
NK
773 OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
774 "Disable symbol demangling"),
763122ad
AK
775 OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
776 "Enable kernel symbol demangling"),
f4f7e28d 777 OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"),
064f1981
NK
778 OPT_CALLBACK(0, "percent-limit", &report, "percent",
779 "Don't show entries under that percent", parse_percent_limit),
f2148330 780 OPT_CALLBACK(0, "percentage", NULL, "relative|absolute",
33db4568 781 "how to display percentage of filtered entries", parse_filter_percentage),
520a2ebc
AH
782 OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
783 "Instruction Tracing options",
784 itrace_parse_synth_opts),
a9710ba0
AK
785 OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
786 "Show full source file name path for source lines"),
9e207ddf
KL
787 OPT_BOOLEAN(0, "show-ref-call-graph", &symbol_conf.show_ref_callgraph,
788 "Show callgraph from reference event"),
21394d94
KL
789 OPT_INTEGER(0, "socket-filter", &report.socket_filter,
790 "only show processor socket that match with this filter"),
53cb8bc2 791 OPT_END()
d20deb64 792 };
f5fc1412
JO
793 struct perf_data_file file = {
794 .mode = PERF_DATA_MODE_READ,
795 };
a635fc51
ACM
796 int ret = hists__init();
797
798 if (ret < 0)
799 return ret;
53cb8bc2 800
28b21393 801 perf_config(report__config, &report);
00c7e1f1 802
655000e7
ACM
803 argc = parse_options(argc, argv, options, report_usage, 0);
804
36c8bb56
LZ
805 if (symbol_conf.vmlinux_name &&
806 access(symbol_conf.vmlinux_name, R_OK)) {
807 pr_err("Invalid file: %s\n", symbol_conf.vmlinux_name);
808 return -EINVAL;
809 }
810 if (symbol_conf.kallsyms_name &&
811 access(symbol_conf.kallsyms_name, R_OK)) {
812 pr_err("Invalid file: %s\n", symbol_conf.kallsyms_name);
813 return -EINVAL;
814 }
815
fa372aae 816 if (report.use_stdio)
8b9e74eb 817 use_browser = 0;
fa372aae 818 else if (report.use_tui)
8b9e74eb 819 use_browser = 1;
c31a9457
PE
820 else if (report.use_gtk)
821 use_browser = 2;
8b9e74eb 822
fa372aae 823 if (report.inverted_callchain)
d797fdc5 824 callchain_param.order = ORDER_CALLER;
792aeafa
NK
825 if (symbol_conf.cumulate_callchain && !callchain_param.order_set)
826 callchain_param.order = ORDER_CALLER;
d797fdc5 827
188bb5e2
AH
828 if (itrace_synth_opts.callchain &&
829 (int)itrace_synth_opts.callchain_sz > report.max_stack)
830 report.max_stack = itrace_synth_opts.callchain_sz;
831
70cb4e96 832 if (!input_name || !strlen(input_name)) {
efad1415 833 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
70cb4e96 834 input_name = "-";
efad1415 835 else
70cb4e96 836 input_name = "perf.data";
efad1415 837 }
ad0de097 838
f5fc1412 839 file.path = input_name;
2059fc7a 840 file.force = symbol_conf.force;
f5fc1412 841
ad0de097 842repeat:
f5fc1412 843 session = perf_session__new(&file, false, &report.tool);
993ac88d 844 if (session == NULL)
52e02834 845 return -1;
993ac88d 846
94786b67
JO
847 if (report.queue_size) {
848 ordered_events__set_alloc_size(&session->ordered_events,
849 report.queue_size);
850 }
851
520a2ebc
AH
852 session->itrace_synth_opts = &itrace_synth_opts;
853
993ac88d
SE
854 report.session = session;
855
856 has_br_stack = perf_header__has_feat(&session->header,
857 HEADER_BRANCH_STACK);
efad1415 858
fb9fab66
AH
859 if (itrace_synth_opts.last_branch)
860 has_br_stack = true;
861
fa94c36c
AK
862 /*
863 * Branch mode is a tristate:
864 * -1 means default, so decide based on the file having branch data.
865 * 0/1 means the user chose a mode.
866 */
867 if (((branch_mode == -1 && has_br_stack) || branch_mode == 1) &&
fefd2d96 868 !branch_call_mode) {
55369fc1 869 sort__mode = SORT_MODE__BRANCH;
793aaaab
NK
870 symbol_conf.cumulate_callchain = false;
871 }
fa94c36c 872 if (branch_call_mode) {
09a6a1b0 873 callchain_param.key = CCKEY_ADDRESS;
fa94c36c
AK
874 callchain_param.branch_callstack = 1;
875 symbol_conf.use_callchain = true;
876 callchain_register_param(&callchain_param);
877 if (sort_order == NULL)
878 sort_order = "srcline,symbol,dso";
879 }
993ac88d 880
f4f7e28d 881 if (report.mem_mode) {
55369fc1 882 if (sort__mode == SORT_MODE__BRANCH) {
a4210141 883 pr_err("branch and mem mode incompatible\n");
f4f7e28d
SE
884 goto error;
885 }
afab87b9 886 sort__mode = SORT_MODE__MEMORY;
793aaaab 887 symbol_conf.cumulate_callchain = false;
f4f7e28d 888 }
a68c2c58 889
91aba0a6 890 if (setup_sorting() < 0) {
a7d945bc
NK
891 if (sort_order)
892 parse_options_usage(report_usage, options, "s", 1);
893 if (field_order)
894 parse_options_usage(sort_order ? NULL : report_usage,
895 options, "F", 1);
91aba0a6
NK
896 goto error;
897 }
034a9265 898
b138f42e
NK
899 /* Force tty output for header output and per-thread stat. */
900 if (report.header || report.header_only || report.show_threads)
5cfe2c82
JO
901 use_browser = 0;
902
4bceffbc
NK
903 if (strcmp(input_name, "-") != 0)
904 setup_browser(true);
22af969e 905 else
4bceffbc 906 use_browser = 0;
4bceffbc 907
5cfe2c82
JO
908 if (report.header || report.header_only) {
909 perf_session__fprintf_info(session, stdout,
910 report.show_full_info);
07a716ff
TS
911 if (report.header_only) {
912 ret = 0;
913 goto error;
914 }
5cfe2c82
JO
915 } else if (use_browser == 0) {
916 fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n",
917 stdout);
918 }
919
ef7b93a1 920 /*
6692c262 921 * Only in the TUI browser we are doing integrated annotation,
ef7b93a1
ACM
922 * so don't allocate extra space that won't be used in the stdio
923 * implementation.
924 */
b9ce0c99 925 if (ui__has_annotation()) {
78f7defe 926 symbol_conf.priv_size = sizeof(struct annotation);
b8681711
AH
927 machines__set_symbol_filter(&session->machines,
928 symbol__annotate_init);
80d50cae
ACM
929 /*
930 * For searching by name on the "Browse map details".
931 * providing it only in verbose mode not to bloat too
932 * much struct symbol.
933 */
934 if (verbose) {
935 /*
936 * XXX: Need to provide a less kludgy way to ask for
937 * more space per symbol, the u32 is for the index on
938 * the ui browser.
939 * See symbol__browser_index.
940 */
941 symbol_conf.priv_size += sizeof(u32);
942 symbol_conf.sort_by_name = true;
943 }
944 }
655000e7 945
0a7e6d1b 946 if (symbol__init(&session->header.env) < 0)
993ac88d 947 goto error;
53cb8bc2 948
6db6127c
NK
949 if (argc) {
950 /*
951 * Special case: if there's an argument left then assume that
952 * it's a symbol filter:
953 */
954 if (argc > 1)
955 usage_with_options(report_usage, options);
956
957 report.symbol_filter_str = argv[0];
958 }
edc52dea 959
08e71542 960 sort__setup_elide(stdout);
25903407 961
993ac88d 962 ret = __cmd_report(&report);
ad0de097
FT
963 if (ret == K_SWITCH_INPUT_DATA) {
964 perf_session__delete(session);
965 goto repeat;
966 } else
967 ret = 0;
968
993ac88d
SE
969error:
970 perf_session__delete(session);
971 return ret;
53cb8bc2 972}
This page took 0.263815 seconds and 5 git commands to generate.