builtin-report.c 12.4 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/color.h"
13
#include <linux/list.h>
14
#include "util/cache.h"
15
#include <linux/rbtree.h>
16
#include "util/symbol.h"
17
#include "util/string.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
#include "util/header.h"
25
#include "util/session.h"
26 27 28 29

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

30
#include "util/thread.h"
31
#include "util/sort.h"
32
#include "util/hist.h"
33

34
static char		const *input_name = "perf.data";
35

36
static int		force;
37
static bool		hide_unresolved;
38
static bool		dont_use_callchains;
39

40 41 42
static int		show_threads;
static struct perf_read_values	show_threads_values;

43 44 45
static char		default_pretty_printing_style[] = "normal";
static char		*pretty_printing_style = default_pretty_printing_style;

46 47
static char		callchain_default_opt[] = "fractal,0.5";

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
static struct event_stat_id *get_stats(struct perf_session *self,
				       u64 event_stream, u32 type, u64 config)
{
	struct rb_node **p = &self->stats_by_id.rb_node;
	struct rb_node *parent = NULL;
	struct event_stat_id *iter, *new;

	while (*p != NULL) {
		parent = *p;
		iter = rb_entry(parent, struct event_stat_id, rb_node);
		if (iter->config == config)
			return iter;


		if (config > iter->config)
			p = &(*p)->rb_right;
		else
			p = &(*p)->rb_left;
	}

	new = malloc(sizeof(struct event_stat_id));
	if (new == NULL)
		return NULL;
	memset(new, 0, sizeof(struct event_stat_id));
	new->event_stream = event_stream;
	new->config = config;
	new->type = type;
	rb_link_node(&new->rb_node, parent, p);
	rb_insert_color(&new->rb_node, &self->stats_by_id);
	return new;
}

80 81
static int perf_session__add_hist_entry(struct perf_session *self,
					struct addr_location *al,
82
					struct sample_data *data)
83
{
84 85
	struct symbol **syms = NULL, *parent = NULL;
	bool hit;
86
	struct hist_entry *he;
87 88
	struct event_stat_id *stats;
	struct perf_event_attr *attr;
89

90
	if ((sort__has_parent || symbol_conf.use_callchain) && data->callchain)
91
		syms = perf_session__resolve_callchain(self, al->thread,
92 93 94 95 96 97 98 99 100 101 102
						       data->callchain, &parent);

	attr = perf_header__find_attr(data->id, &self->header);
	if (attr)
		stats = get_stats(self, data->id, attr->type, attr->config);
	else
		stats = get_stats(self, data->id, 0, 0);
	if (stats == NULL)
		return -ENOMEM;
	he = __perf_session__add_hist_entry(&stats->hists, al, parent,
					    data->period, &hit);
103 104
	if (he == NULL)
		return -ENOMEM;
105

106
	if (hit)
107
		he->count += data->period;
108

109
	if (symbol_conf.use_callchain) {
110 111
		if (!hit)
			callchain_init(&he->callchain);
112
		append_chain(&he->callchain, data->callchain, syms);
113
		free(syms);
114
	}
115 116

	return 0;
117 118
}

119
static int validate_chain(struct ip_callchain *chain, event_t *event)
120 121 122 123 124 125
{
	unsigned int chain_size;

	chain_size = event->header.size;
	chain_size -= (unsigned long)&event->ip.__more_data - (unsigned long)event;

126
	if (chain->nr*sizeof(u64) > chain_size)
127 128 129 130 131
		return -1;

	return 0;
}

132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
static int add_event_total(struct perf_session *session,
			   struct sample_data *data,
			   struct perf_event_attr *attr)
{
	struct event_stat_id *stats;

	if (attr)
		stats = get_stats(session, data->id, attr->type, attr->config);
	else
		stats = get_stats(session, data->id, 0, 0);

	if (!stats)
		return -ENOMEM;

	stats->stats.total += data->period;
	session->events_stats.total += data->period;
	return 0;
}

151
static int process_sample_event(event_t *event, struct perf_session *session)
152
{
153
	struct sample_data data = { .period = 1, };
154
	struct addr_location al;
155
	struct perf_event_attr *attr;
156

157
	event__parse_sample(event, session->sample_type, &data);
158

159 160
	dump_printf("(IP, %d): %d/%d: %#Lx period: %Ld\n", event->header.misc,
		    data.pid, data.tid, data.ip, data.period);
161

162
	if (session->sample_type & PERF_SAMPLE_CALLCHAIN) {
163
		unsigned int i;
164

165
		dump_printf("... chain: nr:%Lu\n", data.callchain->nr);
166

167
		if (validate_chain(data.callchain, event) < 0) {
168 169
			pr_debug("call-chain problem with event, "
				 "skipping it.\n");
170 171 172 173
			return 0;
		}

		if (dump_trace) {
174 175 176
			for (i = 0; i < data.callchain->nr; i++)
				dump_printf("..... %2d: %016Lx\n",
					    i, data.callchain->ips[i]);
177 178 179
		}
	}

180 181
	if (event__preprocess_sample(event, session, &al, NULL) < 0) {
		fprintf(stderr, "problem processing %d event, skipping it.\n",
182 183 184
			event->header.type);
		return -1;
	}
185

186
	if (al.filtered || (hide_unresolved && al.sym == NULL))
187
		return 0;
188

189
	if (perf_session__add_hist_entry(session, &al, &data)) {
190
		pr_debug("problem incrementing symbol count, skipping event\n");
191
		return -1;
192
	}
193

194 195 196 197 198 199 200
	attr = perf_header__find_attr(data.id, &session->header);

	if (add_event_total(session, &data, attr)) {
		pr_debug("problem adding event count\n");
		return -1;
	}

201 202
	return 0;
}
I
Ingo Molnar 已提交
203

204
static int process_read_event(event_t *event, struct perf_session *session __used)
205
{
206
	struct perf_event_attr *attr;
207

208
	attr = perf_header__find_attr(event->read.id, &session->header);
209

210
	if (show_threads) {
211
		const char *name = attr ? __event_name(attr->type, attr->config)
212 213 214 215 216 217 218 219
				   : "unknown";
		perf_read_values_add_value(&show_threads_values,
					   event->read.pid, event->read.tid,
					   event->read.id,
					   name,
					   event->read.value);
	}

220 221 222
	dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
		    attr ? __event_name(attr->type, attr->config) : "FAIL",
		    event->read.value);
223 224 225 226

	return 0;
}

227
static int perf_session__setup_sample_type(struct perf_session *self)
228
{
229
	if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
230 231 232 233
		if (sort__has_parent) {
			fprintf(stderr, "selected --sort parent, but no"
					" callchain data. Did you call"
					" perf record without -g?\n");
234
			return -EINVAL;
235
		}
236
		if (symbol_conf.use_callchain) {
237
			fprintf(stderr, "selected -g but no callchain data."
238 239
					" Did you call perf record without"
					" -g?\n");
240
			return -1;
241
		}
242 243
	} else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
		   !symbol_conf.use_callchain) {
244
			symbol_conf.use_callchain = true;
245 246 247
			if (register_callchain_param(&callchain_param) < 0) {
				fprintf(stderr, "Can't register callchain"
						" params\n");
248
				return -EINVAL;
249
			}
250 251
	}

252 253
	return 0;
}
254

255
static struct perf_event_ops event_ops = {
256 257 258 259 260 261 262
	.sample	= process_sample_event,
	.mmap	= event__process_mmap,
	.comm	= event__process_comm,
	.exit	= event__process_task,
	.fork	= event__process_task,
	.lost	= event__process_lost,
	.read	= process_read_event,
263
};
264

265 266
static int __cmd_report(void)
{
267
	int ret = -EINVAL;
268
	struct perf_session *session;
269
	struct rb_node *next;
270

271
	session = perf_session__new(input_name, O_RDONLY, force);
272 273 274
	if (session == NULL)
		return -ENOMEM;

275 276
	if (show_threads)
		perf_read_values_init(&show_threads_values);
277

278 279 280 281
	ret = perf_session__setup_sample_type(session);
	if (ret)
		goto out_delete;

282
	ret = perf_session__process_events(session, &event_ops);
283
	if (ret)
284
		goto out_delete;
285

286 287
	if (dump_trace) {
		event__print_totals();
288
		goto out_delete;
289
	}
290

291
	if (verbose > 3)
292
		perf_session__fprintf(session, stdout);
293

294
	if (verbose > 2)
295 296
		dsos__fprintf(stdout);

297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
	next = rb_first(&session->stats_by_id);
	while (next) {
		struct event_stat_id *stats;

		stats = rb_entry(next, struct event_stat_id, rb_node);
		perf_session__collapse_resort(&stats->hists);
		perf_session__output_resort(&stats->hists, stats->stats.total);
		if (rb_first(&session->stats_by_id) ==
		    rb_last(&session->stats_by_id))
			fprintf(stdout, "# Samples: %Ld\n#\n",
				stats->stats.total);
		else
			fprintf(stdout, "# Samples: %Ld %s\n#\n",
				stats->stats.total,
				__event_name(stats->type, stats->config));

		perf_session__fprintf_hists(&stats->hists, NULL, false, stdout,
					    stats->stats.total);
		fprintf(stdout, "\n\n");
		next = rb_next(&stats->rb_node);
	}

319 320 321 322
	if (sort_order == default_sort_order &&
	    parent_pattern == default_parent_pattern)
		fprintf(stdout, "#\n# (For a higher level overview, try: perf report --sort comm,dso)\n#\n");

323 324 325 326
	if (show_threads) {
		bool raw_printing_style = !strcmp(pretty_printing_style, "raw");
		perf_read_values_display(stdout, &show_threads_values,
					 raw_printing_style);
327
		perf_read_values_destroy(&show_threads_values);
328
	}
329 330
out_delete:
	perf_session__delete(session);
331
	return ret;
332 333
}

334 335
static int
parse_callchain_opt(const struct option *opt __used, const char *arg,
336
		    int unset)
337
{
338 339 340
	char *tok;
	char *endptr;

341 342 343 344 345 346 347 348
	/*
	 * --no-call-graph
	 */
	if (unset) {
		dont_use_callchains = true;
		return 0;
	}

349
	symbol_conf.use_callchain = true;
350 351 352 353

	if (!arg)
		return 0;

354 355 356 357 358 359
	tok = strtok((char *)arg, ",");
	if (!tok)
		return -1;

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

362
	else if (!strncmp(tok, "flat", strlen(arg)))
363 364 365 366 367
		callchain_param.mode = CHAIN_FLAT;

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

368 369
	else if (!strncmp(tok, "none", strlen(arg))) {
		callchain_param.mode = CHAIN_NONE;
370
		symbol_conf.use_callchain = false;
371 372 373 374

		return 0;
	}

375 376 377
	else
		return -1;

378 379 380
	/* get the min percentage */
	tok = strtok(NULL, ",");
	if (!tok)
381
		goto setup;
382

383
	callchain_param.min_percent = strtod(tok, &endptr);
384 385 386
	if (tok == endptr)
		return -1;

387 388 389 390 391
setup:
	if (register_callchain_param(&callchain_param) < 0) {
		fprintf(stderr, "Can't register callchain params\n");
		return -1;
	}
392 393 394
	return 0;
}

395
static const char * const report_usage[] = {
396 397 398 399 400 401 402
	"perf report [<options>] <command>",
	NULL
};

static const struct option options[] = {
	OPT_STRING('i', "input", &input_name, "file",
		    "input file name"),
403 404
	OPT_BOOLEAN('v', "verbose", &verbose,
		    "be more verbose (show symbol address, etc)"),
405 406
	OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
		    "dump raw trace in ASCII"),
407 408
	OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
		   "file", "vmlinux pathname"),
409
	OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
410
	OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
411
		    "load module symbols - WARNING: use only with -k and LIVE kernel"),
412
	OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
413
		    "Show a column with the number of samples"),
414 415
	OPT_BOOLEAN('T', "threads", &show_threads,
		    "Show per-thread event counters"),
416 417
	OPT_STRING(0, "pretty", &pretty_printing_style, "key",
		   "pretty printing style key: normal raw"),
418
	OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
419
		   "sort by key(s): pid, comm, dso, symbol, parent"),
420
	OPT_BOOLEAN('P', "full-paths", &symbol_conf.full_paths,
421
		    "Don't shorten the pathnames taking into account the cwd"),
422 423
	OPT_STRING('p', "parent", &parent_pattern, "regex",
		   "regex filter to identify parent, see: '--sort parent'"),
424
	OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
425
		    "Only display entries with parent-match"),
426
	OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
427
		     "Display callchains using output_type and min percent threshold. "
428
		     "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
429
	OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
430
		   "only consider symbols in these dsos"),
431
	OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
432
		   "only consider symbols in these comms"),
433
	OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
434
		   "only consider these symbols"),
435
	OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
436 437
		   "width[,width...]",
		   "don't try to adjust column width, use these fixed values"),
438
	OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
439 440
		   "separator for columns, no spaces will be added between "
		   "columns '.' is reserved."),
441 442
	OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved,
		    "Only display entries resolved to a symbol"),
443 444 445
	OPT_END()
};

446
int cmd_report(int argc, const char **argv, const char *prefix __used)
447
{
448 449 450 451
	argc = parse_options(argc, argv, options, report_usage, 0);

	setup_pager();

452
	if (symbol__init() < 0)
453
		return -1;
454

455
	setup_sorting(report_usage, options);
456

457
	if (parent_pattern != default_parent_pattern) {
458
		sort_dimension__add("parent");
459 460
		sort_parent.elide = 1;
	} else
461
		symbol_conf.exclude_other = false;
462

463 464 465 466 467 468
	/*
	 * Any (unrecognized) arguments left?
	 */
	if (argc)
		usage_with_options(report_usage, options);

469 470 471
	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);
472

473 474
	return __cmd_report();
}