builtin-report.c 13.2 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
static struct hists *perf_session__hists_findnew(struct perf_session *self,
						 u64 event_stream, u32 type,
						 u64 config)
50
{
51
	struct rb_node **p = &self->hists_tree.rb_node;
52
	struct rb_node *parent = NULL;
53
	struct hists *iter, *new;
54 55 56

	while (*p != NULL) {
		parent = *p;
57
		iter = rb_entry(parent, struct hists, rb_node);
58 59 60 61 62 63 64 65 66 67
		if (iter->config == config)
			return iter;


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

68
	new = malloc(sizeof(struct hists));
69 70
	if (new == NULL)
		return NULL;
71
	memset(new, 0, sizeof(struct hists));
72 73 74 75
	new->event_stream = event_stream;
	new->config = config;
	new->type = type;
	rb_link_node(&new->rb_node, parent, p);
76
	rb_insert_color(&new->rb_node, &self->hists_tree);
77 78 79
	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 map_symbol *syms = NULL;
	struct symbol *parent = NULL;
86
	int err = -ENOMEM;
87
	struct hist_entry *he;
88
	struct hists *hists;
89
	struct perf_event_attr *attr;
90

91
	if ((sort__has_parent || symbol_conf.use_callchain) && data->callchain) {
92
		syms = perf_session__resolve_callchain(self, al->thread,
93
						       data->callchain, &parent);
94 95 96
		if (syms == NULL)
			return -ENOMEM;
	}
97 98 99

	attr = perf_header__find_attr(data->id, &self->header);
	if (attr)
100
		hists = perf_session__hists_findnew(self, data->id, attr->type, attr->config);
101
	else
102 103
		hists = perf_session__hists_findnew(self, data->id, 0, 0);
	if (hists == NULL)
104
		goto out_free_syms;
105
	he = __hists__add_entry(hists, al, parent, 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 114 115 116 117 118 119 120
		if (err)
			goto out_free_syms;
	}
	/*
	 * 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.
	 */
	if (use_browser)
		err = hist_entry__inc_addr_samples(he, al->addr);
121 122 123
out_free_syms:
	free(syms);
	return err;
124 125
}

126 127 128 129
static int add_event_total(struct perf_session *session,
			   struct sample_data *data,
			   struct perf_event_attr *attr)
{
130
	struct hists *hists;
131 132

	if (attr)
133 134
		hists = perf_session__hists_findnew(session, data->id,
						    attr->type, attr->config);
135
	else
136
		hists = perf_session__hists_findnew(session, data->id, 0, 0);
137

138
	if (!hists)
139 140
		return -ENOMEM;

141 142
	hists->stats.total += data->period;
	session->hists.stats.total += data->period;
143 144 145
	return 0;
}

146
static int process_sample_event(event_t *event, struct perf_session *session)
147
{
148
	struct sample_data data = { .period = 1, };
149
	struct addr_location al;
150
	struct perf_event_attr *attr;
151

152
	event__parse_sample(event, session->sample_type, &data);
153

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

157
	if (session->sample_type & PERF_SAMPLE_CALLCHAIN) {
158
		unsigned int i;
159

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

162
		if (!ip_callchain__valid(data.callchain, event)) {
163 164
			pr_debug("call-chain problem with event, "
				 "skipping it.\n");
165 166 167 168
			return 0;
		}

		if (dump_trace) {
169 170 171
			for (i = 0; i < data.callchain->nr; i++)
				dump_printf("..... %2d: %016Lx\n",
					    i, data.callchain->ips[i]);
172 173 174
		}
	}

175 176
	if (event__preprocess_sample(event, session, &al, NULL) < 0) {
		fprintf(stderr, "problem processing %d event, skipping it.\n",
177 178 179
			event->header.type);
		return -1;
	}
180

181
	if (al.filtered || (hide_unresolved && al.sym == NULL))
182
		return 0;
183

184
	if (perf_session__add_hist_entry(session, &al, &data)) {
185
		pr_debug("problem incrementing symbol count, skipping event\n");
186
		return -1;
187
	}
188

189 190 191 192 193 194 195
	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;
	}

196 197
	return 0;
}
I
Ingo Molnar 已提交
198

199
static int process_read_event(event_t *event, struct perf_session *session __used)
200
{
201
	struct perf_event_attr *attr;
202

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

205
	if (show_threads) {
206
		const char *name = attr ? __event_name(attr->type, attr->config)
207 208 209 210 211 212 213 214
				   : "unknown";
		perf_read_values_add_value(&show_threads_values,
					   event->read.pid, event->read.tid,
					   event->read.id,
					   name,
					   event->read.value);
	}

215 216 217
	dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
		    attr ? __event_name(attr->type, attr->config) : "FAIL",
		    event->read.value);
218 219 220 221

	return 0;
}

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

247 248
	return 0;
}
249

250
static struct perf_event_ops event_ops = {
251 252 253 254 255 256 257
	.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,
258
	.attr	= event__process_attr,
259
	.event_type = event__process_event_type,
260
	.tracing_data = event__process_tracing_data,
261
	.build_id = event__process_build_id,
262
};
263

264 265 266 267 268 269 270
extern volatile int session_done;

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

271 272
static int __cmd_report(void)
{
273
	int ret = -EINVAL;
274
	struct perf_session *session;
275
	struct rb_node *next;
276
	const char *help = "For a higher level overview, try: perf report --sort comm,dso";
277

278 279
	signal(SIGINT, sig_handler);

T
Tom Zanussi 已提交
280
	session = perf_session__new(input_name, O_RDONLY, force, false);
281 282 283
	if (session == NULL)
		return -ENOMEM;

284 285
	if (show_threads)
		perf_read_values_init(&show_threads_values);
286

287 288 289 290
	ret = perf_session__setup_sample_type(session);
	if (ret)
		goto out_delete;

291
	ret = perf_session__process_events(session, &event_ops);
292
	if (ret)
293
		goto out_delete;
294

295 296
	if (dump_trace) {
		event__print_totals();
297
		goto out_delete;
298
	}
299

300
	if (verbose > 3)
301
		perf_session__fprintf(session, stdout);
302

303
	if (verbose > 2)
304
		perf_session__fprintf_dsos(session, stdout);
305

306
	next = rb_first(&session->hists_tree);
307
	while (next) {
308
		struct hists *hists;
309

310 311
		hists = rb_entry(next, struct hists, rb_node);
		hists__collapse_resort(hists);
312
		hists__output_resort(hists);
313
		if (use_browser)
314
			hists__browse(hists, help, input_name);
315
		else {
316 317
			if (rb_first(&session->hists.entries) ==
			    rb_last(&session->hists.entries))
318
				fprintf(stdout, "# Samples: %Ld\n#\n",
319
					hists->stats.total);
320 321
			else
				fprintf(stdout, "# Samples: %Ld %s\n#\n",
322 323
					hists->stats.total,
					__event_name(hists->type, hists->config));
324

325
			hists__fprintf(hists, NULL, false, stdout);
326 327 328
			fprintf(stdout, "\n\n");
		}

329
		next = rb_next(&hists->rb_node);
330 331
	}

332 333 334
	if (!use_browser && sort_order == default_sort_order &&
	    parent_pattern == default_parent_pattern) {
		fprintf(stdout, "#\n# (%s)\n#\n", help);
335

336 337 338 339 340 341
		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);
		}
342
	}
343 344
out_delete:
	perf_session__delete(session);
345
	return ret;
346 347
}

348 349
static int
parse_callchain_opt(const struct option *opt __used, const char *arg,
350
		    int unset)
351
{
352
	char *tok, *tok2;
353 354
	char *endptr;

355 356 357 358 359 360 361 362
	/*
	 * --no-call-graph
	 */
	if (unset) {
		dont_use_callchains = true;
		return 0;
	}

363
	symbol_conf.use_callchain = true;
364 365 366 367

	if (!arg)
		return 0;

368 369 370 371 372 373
	tok = strtok((char *)arg, ",");
	if (!tok)
		return -1;

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

376
	else if (!strncmp(tok, "flat", strlen(arg)))
377 378 379 380 381
		callchain_param.mode = CHAIN_FLAT;

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

382 383
	else if (!strncmp(tok, "none", strlen(arg))) {
		callchain_param.mode = CHAIN_NONE;
384
		symbol_conf.use_callchain = false;
385 386 387 388

		return 0;
	}

389 390 391
	else
		return -1;

392 393 394
	/* get the min percentage */
	tok = strtok(NULL, ",");
	if (!tok)
395
		goto setup;
396

397
	tok2 = strtok(NULL, ",");
398
	callchain_param.min_percent = strtod(tok, &endptr);
399 400 401
	if (tok == endptr)
		return -1;

402 403
	if (tok2)
		callchain_param.print_limit = strtod(tok2, &endptr);
404 405 406 407 408
setup:
	if (register_callchain_param(&callchain_param) < 0) {
		fprintf(stderr, "Can't register callchain params\n");
		return -1;
	}
409 410 411
	return 0;
}

412
static const char * const report_usage[] = {
413 414 415 416 417 418 419
	"perf report [<options>] <command>",
	NULL
};

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

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

469 470
	if (strcmp(input_name, "-") != 0)
		setup_browser();
471 472 473 474 475 476 477
	/*
	 * 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.
	 */
	if (use_browser)
		symbol_conf.priv_size = sizeof(struct sym_priv);
478

479
	if (symbol__init() < 0)
480
		return -1;
481

482
	setup_sorting(report_usage, options);
483

484
	if (parent_pattern != default_parent_pattern) {
485 486
		if (sort_dimension__add("parent") < 0)
			return -1;
487 488
		sort_parent.elide = 1;
	} else
489
		symbol_conf.exclude_other = false;
490

491 492 493 494 495 496
	/*
	 * Any (unrecognized) arguments left?
	 */
	if (argc)
		usage_with_options(report_usage, options);

497 498 499
	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);
500

501 502
	return __cmd_report();
}