builtin-report.c 14.3 KB
Newer Older
1 2 3 4 5 6 7
/*
 * builtin-report.c
 *
 * Builtin report command: Analyze the perf.data input file,
 * look up and read DSOs and symbol information and display
 * a histogram of results, along various sorting keys.
 */
8
#include "builtin.h"
9

10 11
#include "util/util.h"

12
#include "util/annotate.h"
13
#include "util/color.h"
14
#include <linux/list.h>
15
#include "util/cache.h"
16
#include <linux/rbtree.h>
17
#include "util/symbol.h"
18
#include "util/callchain.h"
19
#include "util/strlist.h"
20
#include "util/values.h"
21

22
#include "perf.h"
23
#include "util/debug.h"
24 25
#include "util/evlist.h"
#include "util/evsel.h"
26
#include "util/header.h"
27
#include "util/session.h"
28 29 30 31

#include "util/parse-options.h"
#include "util/parse-events.h"

32
#include "util/thread.h"
33
#include "util/sort.h"
34
#include "util/hist.h"
35

36
static char		const *input_name = "perf.data";
37

38
static bool		force, use_tui, use_stdio;
39
static bool		hide_unresolved;
40
static bool		dont_use_callchains;
41

42
static bool		show_threads;
43 44
static struct perf_read_values	show_threads_values;

45 46
static const char	default_pretty_printing_style[] = "normal";
static const char	*pretty_printing_style = default_pretty_printing_style;
47

48
static char		callchain_default_opt[] = "fractal,0.5";
49
static symbol_filter_t	annotate_init;
50

51
static int perf_session__add_hist_entry(struct perf_session *session,
52
					struct addr_location *al,
53 54
					struct perf_sample *sample,
					struct perf_evsel *evsel)
55
{
56
	struct symbol *parent = NULL;
57
	int err = 0;
58 59
	struct hist_entry *he;

60 61 62
	if ((sort__has_parent || symbol_conf.use_callchain) && sample->callchain) {
		err = perf_session__resolve_callchain(session, al->thread,
						      sample->callchain, &parent);
63 64
		if (err)
			return err;
65
	}
66

67
	he = __hists__add_entry(&evsel->hists, al, parent, sample->period);
68
	if (he == NULL)
69 70
		return -ENOMEM;

71
	if (symbol_conf.use_callchain) {
72 73
		err = callchain_append(he->callchain, &session->callchain_cursor,
				       sample->period);
74
		if (err)
75
			return err;
76 77 78 79 80 81
	}
	/*
	 * Only in the newt browser we are doing integrated annotation,
	 * so we don't allocated the extra space needed because the stdio
	 * code will not use it.
	 */
82 83
	if (al->sym != NULL && use_browser > 0) {
		struct annotation *notes = symbol__annotation(he->ms.sym);
84 85 86 87

		assert(evsel != NULL);

		err = -ENOMEM;
88
		if (notes->src == NULL &&
89 90 91 92
		    symbol__alloc_hist(he->ms.sym, session->evlist->nr_entries) < 0)
			goto out;

		err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
93
	}
94

95 96 97
	evsel->hists.stats.total_period += sample->period;
	hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
out:
98
	return err;
99 100
}

101

102 103
static int process_sample_event(union perf_event *event,
				struct perf_sample *sample,
104
				struct perf_evsel *evsel,
105
				struct perf_session *session)
106
{
107
	struct addr_location al;
108

109
	if (perf_event__preprocess_sample(event, session, &al, sample,
110
					  annotate_init) < 0) {
111
		fprintf(stderr, "problem processing %d event, skipping it.\n",
112 113 114
			event->header.type);
		return -1;
	}
115

116
	if (al.filtered || (hide_unresolved && al.sym == NULL))
117
		return 0;
118

119 120 121
	if (al.map != NULL)
		al.map->dso->hit = 1;

122
	if (perf_session__add_hist_entry(session, &al, sample, evsel)) {
123
		pr_debug("problem incrementing symbol period, skipping event\n");
124
		return -1;
125
	}
126

127 128
	return 0;
}
I
Ingo Molnar 已提交
129

130 131
static int process_read_event(union perf_event *event,
			      struct perf_sample *sample __used,
132
			      struct perf_session *session)
133
{
134 135
	struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist,
							 event->read.id);
136
	if (show_threads) {
137
		const char *name = evsel ? event_name(evsel) : "unknown";
138 139 140 141 142 143 144
		perf_read_values_add_value(&show_threads_values,
					   event->read.pid, event->read.tid,
					   event->read.id,
					   name,
					   event->read.value);
	}

145
	dump_printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid,
146
		    evsel ? event_name(evsel) : "FAIL",
147
		    event->read.value);
148 149 150 151

	return 0;
}

152
static int perf_session__setup_sample_type(struct perf_session *self)
153
{
154
	if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
155 156 157 158
		if (sort__has_parent) {
			fprintf(stderr, "selected --sort parent, but no"
					" callchain data. Did you call"
					" perf record without -g?\n");
159
			return -EINVAL;
160
		}
161
		if (symbol_conf.use_callchain) {
162
			fprintf(stderr, "selected -g but no callchain data."
163 164
					" Did you call perf record without"
					" -g?\n");
165
			return -1;
166
		}
167 168
	} else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
		   !symbol_conf.use_callchain) {
169
			symbol_conf.use_callchain = true;
170
			if (callchain_register_param(&callchain_param) < 0) {
171 172
				fprintf(stderr, "Can't register callchain"
						" params\n");
173
				return -EINVAL;
174
			}
175 176
	}

177 178
	return 0;
}
179

180
static struct perf_event_ops event_ops = {
181 182 183 184 185 186 187 188 189 190 191
	.sample		 = process_sample_event,
	.mmap		 = perf_event__process_mmap,
	.comm		 = perf_event__process_comm,
	.exit		 = perf_event__process_task,
	.fork		 = perf_event__process_task,
	.lost		 = perf_event__process_lost,
	.read		 = process_read_event,
	.attr		 = perf_event__process_attr,
	.event_type	 = perf_event__process_event_type,
	.tracing_data	 = perf_event__process_tracing_data,
	.build_id	 = perf_event__process_build_id,
192 193
	.ordered_samples = true,
	.ordering_requires_timestamps = true,
194
};
195

196 197
extern volatile int session_done;

198
static void sig_handler(int sig __used)
199 200 201 202
{
	session_done = 1;
}

203 204 205 206 207 208 209 210 211 212 213 214 215 216
static size_t hists__fprintf_nr_sample_events(struct hists *self,
					      const char *evname, FILE *fp)
{
	size_t ret;
	char unit;
	unsigned long nr_events = self->stats.nr_events[PERF_RECORD_SAMPLE];

	nr_events = convert_unit(nr_events, &unit);
	ret = fprintf(fp, "# Events: %lu%c", nr_events, unit);
	if (evname != NULL)
		ret += fprintf(fp, " %s", evname);
	return ret + fprintf(fp, "\n#\n");
}

217 218
static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
					 const char *help)
219
{
220
	struct perf_evsel *pos;
221

222 223
	list_for_each_entry(pos, &evlist->entries, node) {
		struct hists *hists = &pos->hists;
224 225 226
		const char *evname = NULL;

		if (rb_first(&hists->entries) != rb_last(&hists->entries))
227
			evname = event_name(pos);
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248

		hists__fprintf_nr_sample_events(hists, evname, stdout);
		hists__fprintf(hists, NULL, false, stdout);
		fprintf(stdout, "\n\n");
	}

	if (sort_order == default_sort_order &&
	    parent_pattern == default_parent_pattern) {
		fprintf(stdout, "#\n# (%s)\n#\n", help);

		if (show_threads) {
			bool style = !strcmp(pretty_printing_style, "raw");
			perf_read_values_display(stdout, &show_threads_values,
						 style);
			perf_read_values_destroy(&show_threads_values);
		}
	}

	return 0;
}

249 250
static int __cmd_report(void)
{
251
	int ret = -EINVAL;
252
	u64 nr_samples;
253
	struct perf_session *session;
254
	struct perf_evsel *pos;
255 256
	struct map *kernel_map;
	struct kmap *kernel_kmap;
257
	const char *help = "For a higher level overview, try: perf report --sort comm,dso";
258

259 260
	signal(SIGINT, sig_handler);

261
	session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops);
262 263 264
	if (session == NULL)
		return -ENOMEM;

265 266
	if (show_threads)
		perf_read_values_init(&show_threads_values);
267

268 269 270 271
	ret = perf_session__setup_sample_type(session);
	if (ret)
		goto out_delete;

272
	ret = perf_session__process_events(session, &event_ops);
273
	if (ret)
274
		goto out_delete;
275

276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
	kernel_map = session->host_machine.vmlinux_maps[MAP__FUNCTION];
	kernel_kmap = map__kmap(kernel_map);
	if (kernel_map == NULL ||
	    (kernel_map->dso->hit &&
	     (kernel_kmap->ref_reloc_sym == NULL ||
	      kernel_kmap->ref_reloc_sym->addr == 0))) {
		const struct dso *kdso = kernel_map->dso;

		ui__warning("Kernel address maps "
			    "(/proc/{kallsyms,modules}) were restricted, "
			    "check /proc/sys/kernel/kptr_restrict before "
			    "running 'perf record'.\n\n%s\n\n"
			    "Samples in kernel modules can't be resolved "
			    "as well.\n\n",
			    RB_EMPTY_ROOT(&kdso->symbols[MAP__FUNCTION]) ?
			    "As no suitable kallsyms nor vmlinux was found, "
			    "kernel samples can't be resolved." :
			    "If some relocation was applied (e.g. kexec) "
			    "symbols may be misresolved.");
	}

297
	if (dump_trace) {
298
		perf_session__fprintf_nr_events(session, stdout);
299
		goto out_delete;
300
	}
301

302
	if (verbose > 3)
303
		perf_session__fprintf(session, stdout);
304

305
	if (verbose > 2)
306
		perf_session__fprintf_dsos(session, stdout);
307

308 309 310
	nr_samples = 0;
	list_for_each_entry(pos, &session->evlist->entries, node) {
		struct hists *hists = &pos->hists;
311

312
		hists__collapse_resort(hists);
313
		hists__output_resort(hists);
314 315 316 317 318 319
		nr_samples += hists->stats.nr_events[PERF_RECORD_SAMPLE];
	}

	if (nr_samples == 0) {
		ui__warning("The %s file has no samples!\n", input_name);
		goto out_delete;
320 321
	}

322
	if (use_browser > 0)
323
		perf_evlist__tui_browse_hists(session->evlist, help);
324
	else
325
		perf_evlist__tty_browse_hists(session->evlist, help);
326

327
out_delete:
328 329 330 331 332 333 334 335 336 337 338 339
	/*
	 * Speed up the exit process, for large files this can
	 * take quite a while.
	 *
	 * XXX Enable this when using valgrind or if we ever
	 * librarize this command.
	 *
	 * Also experiment with obstacks to see how much speed
	 * up we'll get here.
	 *
 	 * perf_session__delete(session);
 	 */
340
	return ret;
341 342
}

343 344
static int
parse_callchain_opt(const struct option *opt __used, const char *arg,
345
		    int unset)
346
{
347
	char *tok, *tok2;
348 349
	char *endptr;

350 351 352 353 354 355 356 357
	/*
	 * --no-call-graph
	 */
	if (unset) {
		dont_use_callchains = true;
		return 0;
	}

358
	symbol_conf.use_callchain = true;
359 360 361 362

	if (!arg)
		return 0;

363 364 365 366 367 368
	tok = strtok((char *)arg, ",");
	if (!tok)
		return -1;

	/* get the output mode */
	if (!strncmp(tok, "graph", strlen(arg)))
369
		callchain_param.mode = CHAIN_GRAPH_ABS;
370

371
	else if (!strncmp(tok, "flat", strlen(arg)))
372 373 374 375 376
		callchain_param.mode = CHAIN_FLAT;

	else if (!strncmp(tok, "fractal", strlen(arg)))
		callchain_param.mode = CHAIN_GRAPH_REL;

377 378
	else if (!strncmp(tok, "none", strlen(arg))) {
		callchain_param.mode = CHAIN_NONE;
379
		symbol_conf.use_callchain = false;
380 381 382 383

		return 0;
	}

384 385 386
	else
		return -1;

387 388 389
	/* get the min percentage */
	tok = strtok(NULL, ",");
	if (!tok)
390
		goto setup;
391

392
	tok2 = strtok(NULL, ",");
393
	callchain_param.min_percent = strtod(tok, &endptr);
394 395 396
	if (tok == endptr)
		return -1;

397 398
	if (tok2)
		callchain_param.print_limit = strtod(tok2, &endptr);
399
setup:
400
	if (callchain_register_param(&callchain_param) < 0) {
401 402 403
		fprintf(stderr, "Can't register callchain params\n");
		return -1;
	}
404 405 406
	return 0;
}

407
static const char * const report_usage[] = {
408 409 410 411 412 413 414
	"perf report [<options>] <command>",
	NULL
};

static const struct option options[] = {
	OPT_STRING('i', "input", &input_name, "file",
		    "input file name"),
415
	OPT_INCR('v', "verbose", &verbose,
416
		    "be more verbose (show symbol address, etc)"),
417 418
	OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
		    "dump raw trace in ASCII"),
419 420
	OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
		   "file", "vmlinux pathname"),
421 422
	OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
		   "file", "kallsyms pathname"),
423
	OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
424
	OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
425
		    "load module symbols - WARNING: use only with -k and LIVE kernel"),
426
	OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
427
		    "Show a column with the number of samples"),
428 429
	OPT_BOOLEAN('T', "threads", &show_threads,
		    "Show per-thread event counters"),
430 431
	OPT_STRING(0, "pretty", &pretty_printing_style, "key",
		   "pretty printing style key: normal raw"),
432 433
	OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"),
	OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"),
434
	OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
435
		   "sort by key(s): pid, comm, dso, symbol, parent"),
436 437
	OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
		    "Show sample percentage for different cpu modes"),
438 439
	OPT_STRING('p', "parent", &parent_pattern, "regex",
		   "regex filter to identify parent, see: '--sort parent'"),
440
	OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
441
		    "Only display entries with parent-match"),
442
	OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
443
		     "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. "
444
		     "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
445
	OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
446
		   "only consider symbols in these dsos"),
447
	OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
448
		   "only consider symbols in these comms"),
449
	OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
450
		   "only consider these symbols"),
451
	OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
452 453
		   "width[,width...]",
		   "don't try to adjust column width, use these fixed values"),
454
	OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
455 456
		   "separator for columns, no spaces will be added between "
		   "columns '.' is reserved."),
457 458
	OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved,
		    "Only display entries resolved to a symbol"),
459 460
	OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
		    "Look for files with symbols relative to this directory"),
461 462 463
	OPT_END()
};

464
int cmd_report(int argc, const char **argv, const char *prefix __used)
465
{
466 467
	argc = parse_options(argc, argv, options, report_usage, 0);

468 469 470 471 472
	if (use_stdio)
		use_browser = 0;
	else if (use_tui)
		use_browser = 1;

473
	if (strcmp(input_name, "-") != 0)
474
		setup_browser(true);
475 476
	else
		use_browser = 0;
477 478 479 480 481
	/*
	 * Only in the newt browser we are doing integrated annotation,
	 * so don't allocate extra space that won't be used in the stdio
	 * implementation.
	 */
482
	if (use_browser > 0) {
483
		symbol_conf.priv_size = sizeof(struct annotation);
484
		annotate_init	      = symbol__annotate_init;
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
		/*
 		 * For searching by name on the "Browse map details".
 		 * providing it only in verbose mode not to bloat too
 		 * much struct symbol.
 		 */
		if (verbose) {
			/*
			 * XXX: Need to provide a less kludgy way to ask for
			 * more space per symbol, the u32 is for the index on
			 * the ui browser.
			 * See symbol__browser_index.
			 */
			symbol_conf.priv_size += sizeof(u32);
			symbol_conf.sort_by_name = true;
		}
	}
501

502
	if (symbol__init() < 0)
503
		return -1;
504

505
	setup_sorting(report_usage, options);
506

507
	if (parent_pattern != default_parent_pattern) {
508 509
		if (sort_dimension__add("parent") < 0)
			return -1;
510 511
		sort_parent.elide = 1;
	} else
512
		symbol_conf.exclude_other = false;
513

514 515 516 517 518 519
	/*
	 * Any (unrecognized) arguments left?
	 */
	if (argc)
		usage_with_options(report_usage, options);

520 521 522
	sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout);
	sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout);
	sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout);
523

524 525
	return __cmd_report();
}