builtin-report.c 12.9 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/callchain.h"
18
#include "util/strlist.h"
19
#include "util/values.h"
20

21
#include "perf.h"
22
#include "util/debug.h"
23
#include "util/header.h"
24
#include "util/session.h"
25 26 27 28

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

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

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

35
static bool		force;
36
static bool		hide_unresolved;
37
static bool		dont_use_callchains;
38

39
static bool		show_threads;
40 41
static struct perf_read_values	show_threads_values;

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

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

47 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
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;
}

79 80
static int perf_session__add_hist_entry(struct perf_session *self,
					struct addr_location *al,
81
					struct sample_data *data)
82
{
83 84
	struct map_symbol *syms = NULL;
	struct symbol *parent = NULL;
85
	int err = -ENOMEM;
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
						       data->callchain, &parent);
93 94 95
		if (syms == NULL)
			return -ENOMEM;
	}
96 97 98 99 100 101 102

	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)
103
		goto out_free_syms;
104
	he = __perf_session__add_hist_entry(&stats->hists, al, parent,
105
					    data->period);
106
	if (he == NULL)
107 108
		goto out_free_syms;
	err = 0;
109
	if (symbol_conf.use_callchain)
110
		err = append_chain(he->callchain, data->callchain, syms);
111 112 113
out_free_syms:
	free(syms);
	return err;
114 115
}

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
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;
}

135
static int process_sample_event(event_t *event, struct perf_session *session)
136
{
137
	struct sample_data data = { .period = 1, };
138
	struct addr_location al;
139
	struct perf_event_attr *attr;
140

141
	event__parse_sample(event, session->sample_type, &data);
142

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

146
	if (session->sample_type & PERF_SAMPLE_CALLCHAIN) {
147
		unsigned int i;
148

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

151
		if (!ip_callchain__valid(data.callchain, event)) {
152 153
			pr_debug("call-chain problem with event, "
				 "skipping it.\n");
154 155 156 157
			return 0;
		}

		if (dump_trace) {
158 159 160
			for (i = 0; i < data.callchain->nr; i++)
				dump_printf("..... %2d: %016Lx\n",
					    i, data.callchain->ips[i]);
161 162 163
		}
	}

164 165
	if (event__preprocess_sample(event, session, &al, NULL) < 0) {
		fprintf(stderr, "problem processing %d event, skipping it.\n",
166 167 168
			event->header.type);
		return -1;
	}
169

170
	if (al.filtered || (hide_unresolved && al.sym == NULL))
171
		return 0;
172

173
	if (perf_session__add_hist_entry(session, &al, &data)) {
174
		pr_debug("problem incrementing symbol count, skipping event\n");
175
		return -1;
176
	}
177

178 179 180 181 182 183 184
	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;
	}

185 186
	return 0;
}
I
Ingo Molnar 已提交
187

188
static int process_read_event(event_t *event, struct perf_session *session __used)
189
{
190
	struct perf_event_attr *attr;
191

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

194
	if (show_threads) {
195
		const char *name = attr ? __event_name(attr->type, attr->config)
196 197 198 199 200 201 202 203
				   : "unknown";
		perf_read_values_add_value(&show_threads_values,
					   event->read.pid, event->read.tid,
					   event->read.id,
					   name,
					   event->read.value);
	}

204 205 206
	dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
		    attr ? __event_name(attr->type, attr->config) : "FAIL",
		    event->read.value);
207 208 209 210

	return 0;
}

211
static int perf_session__setup_sample_type(struct perf_session *self)
212
{
213
	if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) {
214 215 216 217
		if (sort__has_parent) {
			fprintf(stderr, "selected --sort parent, but no"
					" callchain data. Did you call"
					" perf record without -g?\n");
218
			return -EINVAL;
219
		}
220
		if (symbol_conf.use_callchain) {
221
			fprintf(stderr, "selected -g but no callchain data."
222 223
					" Did you call perf record without"
					" -g?\n");
224
			return -1;
225
		}
226 227
	} else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE &&
		   !symbol_conf.use_callchain) {
228
			symbol_conf.use_callchain = true;
229 230 231
			if (register_callchain_param(&callchain_param) < 0) {
				fprintf(stderr, "Can't register callchain"
						" params\n");
232
				return -EINVAL;
233
			}
234 235
	}

236 237
	return 0;
}
238

239
static struct perf_event_ops event_ops = {
240 241 242 243 244 245 246
	.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,
247
	.attr	= event__process_attr,
248
	.event_type = event__process_event_type,
249
	.tracing_data = event__process_tracing_data,
250
	.build_id = event__process_build_id,
251
};
252

253 254 255 256 257 258 259
extern volatile int session_done;

static void sig_handler(int sig __attribute__((__unused__)))
{
	session_done = 1;
}

260 261
static int __cmd_report(void)
{
262
	int ret = -EINVAL;
263
	struct perf_session *session;
264
	struct rb_node *next;
265
	const char *help = "For a higher level overview, try: perf report --sort comm,dso";
266

267 268
	signal(SIGINT, sig_handler);

T
Tom Zanussi 已提交
269
	session = perf_session__new(input_name, O_RDONLY, force, false);
270 271 272
	if (session == NULL)
		return -ENOMEM;

273 274
	if (show_threads)
		perf_read_values_init(&show_threads_values);
275

276 277 278 279
	ret = perf_session__setup_sample_type(session);
	if (ret)
		goto out_delete;

280
	ret = perf_session__process_events(session, &event_ops);
281
	if (ret)
282
		goto out_delete;
283

284 285
	if (dump_trace) {
		event__print_totals();
286
		goto out_delete;
287
	}
288

289
	if (verbose > 3)
290
		perf_session__fprintf(session, stdout);
291

292
	if (verbose > 2)
293
		perf_session__fprintf_dsos(session, stdout);
294

295 296 297
	next = rb_first(&session->stats_by_id);
	while (next) {
		struct event_stat_id *stats;
298
		u64 nr_hists;
299 300 301

		stats = rb_entry(next, struct event_stat_id, rb_node);
		perf_session__collapse_resort(&stats->hists);
302 303
		nr_hists = perf_session__output_resort(&stats->hists,
						       stats->stats.total);
304
		if (use_browser)
305
			perf_session__browse_hists(&stats->hists, nr_hists,
306 307
						   stats->stats.total, help,
						   input_name);
308 309 310 311 312 313 314 315 316 317 318
		else {
			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,
319
					    stats->stats.total);
320 321 322
			fprintf(stdout, "\n\n");
		}

323 324 325
		next = rb_next(&stats->rb_node);
	}

326 327 328
	if (!use_browser && sort_order == default_sort_order &&
	    parent_pattern == default_parent_pattern) {
		fprintf(stdout, "#\n# (%s)\n#\n", help);
329

330 331 332 333 334 335
		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);
		}
336
	}
337 338
out_delete:
	perf_session__delete(session);
339
	return ret;
340 341
}

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

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

357
	symbol_conf.use_callchain = true;
358 359 360 361

	if (!arg)
		return 0;

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

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

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

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

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

		return 0;
	}

383 384 385
	else
		return -1;

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

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

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

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

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

459
int cmd_report(int argc, const char **argv, const char *prefix __used)
460
{
461 462
	argc = parse_options(argc, argv, options, report_usage, 0);

463 464
	if (strcmp(input_name, "-") != 0)
		setup_browser();
465

466
	if (symbol__init() < 0)
467
		return -1;
468

469
	setup_sorting(report_usage, options);
470

471
	if (parent_pattern != default_parent_pattern) {
472 473
		if (sort_dimension__add("parent") < 0)
			return -1;
474 475
		sort_parent.elide = 1;
	} else
476
		symbol_conf.exclude_other = false;
477

478 479 480 481 482 483
	/*
	 * Any (unrecognized) arguments left?
	 */
	if (argc)
		usage_with_options(report_usage, options);

484 485 486
	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);
487

488 489
	return __cmd_report();
}