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