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