builtin-report.c 21.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/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 37
static char		*dso_list_str, *comm_list_str, *sym_list_str,
			*col_width_list_str;
38
static struct strlist	*dso_list, *comm_list, *sym_list;
39

40
static int		force;
41
static bool		use_callchain;
42

43
static int		show_nr_samples;
44

45 46 47
static int		show_threads;
static struct perf_read_values	show_threads_values;

48 49 50
static char		default_pretty_printing_style[] = "normal";
static char		*pretty_printing_style = default_pretty_printing_style;

51
static int		exclude_other = 1;
52

53 54
static char		callchain_default_opt[] = "fractal,0.5";

55 56
static u64		sample_type;

57 58
struct symbol_conf	symbol_conf;

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

static size_t
callchain__fprintf_left_margin(FILE *fp, int left_margin)
{
	int i;
	int ret;

	ret = fprintf(fp, "            ");

	for (i = 0; i < left_margin; i++)
		ret += fprintf(fp, " ");

	return ret;
}

static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask,
					  int left_margin)
76 77 78 79
{
	int i;
	size_t ret = 0;

80
	ret += callchain__fprintf_left_margin(fp, left_margin);
81 82 83 84 85 86 87 88 89 90 91

	for (i = 0; i < depth; i++)
		if (depth_mask & (1 << i))
			ret += fprintf(fp, "|          ");
		else
			ret += fprintf(fp, "           ");

	ret += fprintf(fp, "\n");

	return ret;
}
92
static size_t
93 94
ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain, int depth,
		       int depth_mask, int count, u64 total_samples,
95
		       int hits, int left_margin)
96 97 98 99
{
	int i;
	size_t ret = 0;

100
	ret += callchain__fprintf_left_margin(fp, left_margin);
101 102 103 104 105 106 107 108 109
	for (i = 0; i < depth; i++) {
		if (depth_mask & (1 << i))
			ret += fprintf(fp, "|");
		else
			ret += fprintf(fp, " ");
		if (!count && i == depth - 1) {
			double percent;

			percent = hits * 100.0 / total_samples;
110
			ret += percent_color_fprintf(fp, "--%2.2f%%-- ", percent);
111 112 113 114 115 116 117 118 119 120 121
		} else
			ret += fprintf(fp, "%s", "          ");
	}
	if (chain->sym)
		ret += fprintf(fp, "%s\n", chain->sym->name);
	else
		ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);

	return ret;
}

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
static struct symbol *rem_sq_bracket;
static struct callchain_list rem_hits;

static void init_rem_hits(void)
{
	rem_sq_bracket = malloc(sizeof(*rem_sq_bracket) + 6);
	if (!rem_sq_bracket) {
		fprintf(stderr, "Not enough memory to display remaining hits\n");
		return;
	}

	strcpy(rem_sq_bracket->name, "[...]");
	rem_hits.sym = rem_sq_bracket;
}

137
static size_t
138
__callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
139 140
			   u64 total_samples, int depth, int depth_mask,
			   int left_margin)
141 142 143 144 145
{
	struct rb_node *node, *next;
	struct callchain_node *child;
	struct callchain_list *chain;
	int new_depth_mask = depth_mask;
146
	u64 new_total;
147
	u64 remaining;
148 149 150
	size_t ret = 0;
	int i;

151
	if (callchain_param.mode == CHAIN_GRAPH_REL)
152
		new_total = self->children_hit;
153 154 155
	else
		new_total = total_samples;

156 157
	remaining = new_total;

158 159
	node = rb_first(&self->rb_root);
	while (node) {
160 161
		u64 cumul;

162
		child = rb_entry(node, struct callchain_node, rb_node);
163 164
		cumul = cumul_hits(child);
		remaining -= cumul;
165 166 167 168

		/*
		 * The depth mask manages the output of pipes that show
		 * the depth. We don't want to keep the pipes of the current
169 170 171
		 * level for the last child of this depth.
		 * Except if we have remaining filtered hits. They will
		 * supersede the last child
172 173
		 */
		next = rb_next(node);
174
		if (!next && (callchain_param.mode != CHAIN_GRAPH_REL || !remaining))
175 176 177 178 179 180
			new_depth_mask &= ~(1 << (depth - 1));

		/*
		 * But we keep the older depth mask for the line seperator
		 * to keep the level link until we reach the last child
		 */
181 182
		ret += ipchain__fprintf_graph_line(fp, depth, depth_mask,
						   left_margin);
183 184 185 186 187 188
		i = 0;
		list_for_each_entry(chain, &child->val, list) {
			if (chain->ip >= PERF_CONTEXT_MAX)
				continue;
			ret += ipchain__fprintf_graph(fp, chain, depth,
						      new_depth_mask, i++,
189
						      new_total,
190 191
						      cumul,
						      left_margin);
192
		}
193 194
		ret += __callchain__fprintf_graph(fp, child, new_total,
						  depth + 1,
195 196
						  new_depth_mask | (1 << depth),
						  left_margin);
197 198 199
		node = next;
	}

200 201 202 203 204 205 206 207 208 209
	if (callchain_param.mode == CHAIN_GRAPH_REL &&
		remaining && remaining != new_total) {

		if (!rem_sq_bracket)
			return ret;

		new_depth_mask &= ~(1 << (depth - 1));

		ret += ipchain__fprintf_graph(fp, &rem_hits, depth,
					      new_depth_mask, 0, new_total,
210
					      remaining, left_margin);
211 212
	}

213 214 215
	return ret;
}

216

217 218
static size_t
callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
219
			 u64 total_samples, int left_margin)
220 221
{
	struct callchain_list *chain;
222
	bool printed = false;
223 224 225 226 227 228 229
	int i = 0;
	int ret = 0;

	list_for_each_entry(chain, &self->val, list) {
		if (chain->ip >= PERF_CONTEXT_MAX)
			continue;

230
		if (!i++ && sort__first_dimension == SORT_SYM)
231 232
			continue;

233 234 235 236 237 238 239 240 241 242 243
		if (!printed) {
			ret += callchain__fprintf_left_margin(fp, left_margin);
			ret += fprintf(fp, "|\n");
			ret += callchain__fprintf_left_margin(fp, left_margin);
			ret += fprintf(fp, "---");

			left_margin += 3;
			printed = true;
		} else
			ret += callchain__fprintf_left_margin(fp, left_margin);

244
		if (chain->sym)
245
			ret += fprintf(fp, " %s\n", chain->sym->name);
246
		else
247
			ret += fprintf(fp, " %p\n", (void *)(long)chain->ip);
248 249
	}

250
	ret += __callchain__fprintf_graph(fp, self, total_samples, 1, 1, left_margin);
251 252 253 254

	return ret;
}

255 256 257
static size_t
callchain__fprintf_flat(FILE *fp, struct callchain_node *self,
			u64 total_samples)
258 259 260 261 262 263 264
{
	struct callchain_list *chain;
	size_t ret = 0;

	if (!self)
		return 0;

265
	ret += callchain__fprintf_flat(fp, self->parent, total_samples);
266 267


268 269 270 271 272 273 274
	list_for_each_entry(chain, &self->val, list) {
		if (chain->ip >= PERF_CONTEXT_MAX)
			continue;
		if (chain->sym)
			ret += fprintf(fp, "                %s\n", chain->sym->name);
		else
			ret += fprintf(fp, "                %p\n",
275
					(void *)(long)chain->ip);
276
	}
277 278 279 280 281 282

	return ret;
}

static size_t
hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
283
			      u64 total_samples, int left_margin)
284 285 286 287 288 289 290 291 292 293 294
{
	struct rb_node *rb_node;
	struct callchain_node *chain;
	size_t ret = 0;

	rb_node = rb_first(&self->sorted_chain);
	while (rb_node) {
		double percent;

		chain = rb_entry(rb_node, struct callchain_node, rb_node);
		percent = chain->hit * 100.0 / total_samples;
295 296
		switch (callchain_param.mode) {
		case CHAIN_FLAT:
297 298
			ret += percent_color_fprintf(fp, "           %6.2f%%\n",
						     percent);
299
			ret += callchain__fprintf_flat(fp, chain, total_samples);
300 301 302
			break;
		case CHAIN_GRAPH_ABS: /* Falldown */
		case CHAIN_GRAPH_REL:
303 304
			ret += callchain__fprintf_graph(fp, chain, total_samples,
							left_margin);
305
		case CHAIN_NONE:
306 307
		default:
			break;
308
		}
309 310 311 312 313 314 315
		ret += fprintf(fp, "\n");
		rb_node = rb_next(rb_node);
	}

	return ret;
}

316 317 318
static size_t hist_entry__fprintf(FILE *fp, struct hist_entry *self,
				  struct perf_session *session,
				  u64 total_samples)
319 320 321 322
{
	struct sort_entry *se;
	size_t ret;

323 324 325
	if (exclude_other && !self->parent)
		return 0;

326
	if (total_samples)
327 328 329
		ret = percent_color_fprintf(fp,
					    field_sep ? "%.2f" : "   %6.2f%%",
					(self->count * 100.0) / total_samples);
330
	else
331
		ret = fprintf(fp, field_sep ? "%lld" : "%12lld ", self->count);
332

333 334 335 336 337 338
	if (show_nr_samples) {
		if (field_sep)
			fprintf(fp, "%c%lld", *field_sep, self->count);
		else
			fprintf(fp, "%11lld", self->count);
	}
339

340
	list_for_each_entry(se, &hist_entry__sort_list, list) {
341
		if (se->elide)
342 343
			continue;

344 345
		fprintf(fp, "%s", field_sep ?: "  ");
		ret += se->print(fp, self, se->width ? *se->width : 0);
346
	}
347 348 349

	ret += fprintf(fp, "\n");

350
	if (session->use_callchain) {
351 352 353 354 355 356 357 358 359 360 361 362
		int left_margin = 0;

		if (sort__first_dimension == SORT_COMM) {
			se = list_first_entry(&hist_entry__sort_list, typeof(*se),
						list);
			left_margin = se->width ? *se->width : 0;
			left_margin -= thread__comm_len(self->thread);
		}

		hist_entry_callchain__fprintf(fp, self, total_samples,
					      left_margin);
	}
363

364 365 366
	return ret;
}

367 368 369 370
/*
 *
 */

371 372 373 374 375 376 377 378 379 380 381 382
static void dso__calc_col_width(struct dso *self)
{
	if (!col_width_list_str && !field_sep &&
	    (!dso_list || strlist__has_entry(dso_list, self->name))) {
		unsigned int slen = strlen(self->name);
		if (slen > dsos__col_width)
			dsos__col_width = slen;
	}

	self->slen_calculated = 1;
}

383
static void thread__comm_adjust(struct thread *self)
384
{
385
	char *comm = self->comm;
386 387 388 389 390 391 392 393 394 395

	if (!col_width_list_str && !field_sep &&
	    (!comm_list || strlist__has_entry(comm_list, comm))) {
		unsigned int slen = strlen(comm);

		if (slen > comms__col_width) {
			comms__col_width = slen;
			threads__col_width = slen + 6;
		}
	}
396 397 398 399 400 401 402 403 404 405
}

static int thread__set_comm_adjust(struct thread *self, const char *comm)
{
	int ret = thread__set_comm(self, comm);

	if (ret)
		return ret;

	thread__comm_adjust(self);
406 407 408 409

	return 0;
}

410 411 412 413
/*
 * collect histogram counts
 */

414 415 416
static int perf_session__add_hist_entry(struct perf_session *self,
					struct addr_location *al,
					struct ip_callchain *chain, u64 count)
417
{
418 419
	struct symbol **syms = NULL, *parent = NULL;
	bool hit;
420 421
	struct hist_entry *he;

422
	if ((sort__has_parent || self->use_callchain) && chain)
423 424
		syms = perf_session__resolve_callchain(self, al->thread,
						       chain, &parent);
425
	he = __perf_session__add_hist_entry(self, al, parent, count, &hit);
426 427
	if (he == NULL)
		return -ENOMEM;
428

429 430
	if (hit)
		he->count += count;
431

432
	if (self->use_callchain) {
433 434
		if (!hit)
			callchain_init(&he->callchain);
435 436
		append_chain(&he->callchain, chain, syms);
		free(syms);
437
	}
438 439

	return 0;
440 441
}

442 443
static size_t perf_session__fprintf_hist_entries(struct perf_session *self,
						 u64 total_samples, FILE *fp)
444
{
445
	struct hist_entry *pos;
446
	struct sort_entry *se;
447 448
	struct rb_node *nd;
	size_t ret = 0;
449 450
	unsigned int width;
	char *col_width = col_width_list_str;
451 452 453
	int raw_printing_style;

	raw_printing_style = !strcmp(pretty_printing_style, "raw");
454

455 456
	init_rem_hits();

457
	fprintf(fp, "# Samples: %Ld\n", (u64)total_samples);
458 459 460
	fprintf(fp, "#\n");

	fprintf(fp, "# Overhead");
461 462 463 464 465 466
	if (show_nr_samples) {
		if (field_sep)
			fprintf(fp, "%cSamples", *field_sep);
		else
			fputs("  Samples  ", fp);
	}
467
	list_for_each_entry(se, &hist_entry__sort_list, list) {
468
		if (se->elide)
469
			continue;
470 471
		if (field_sep) {
			fprintf(fp, "%c%s", *field_sep, se->header);
472
			continue;
473 474 475 476 477 478 479 480 481 482 483 484 485 486
		}
		width = strlen(se->header);
		if (se->width) {
			if (col_width_list_str) {
				if (col_width) {
					*se->width = atoi(col_width);
					col_width = strchr(col_width, ',');
					if (col_width)
						++col_width;
				}
			}
			width = *se->width = max(*se->width, width);
		}
		fprintf(fp, "  %*s", width, se->header);
487
	}
488 489
	fprintf(fp, "\n");

490 491 492
	if (field_sep)
		goto print_entries;

493
	fprintf(fp, "# ........");
494 495
	if (show_nr_samples)
		fprintf(fp, " ..........");
496
	list_for_each_entry(se, &hist_entry__sort_list, list) {
497
		unsigned int i;
498

499
		if (se->elide)
500 501
			continue;

502
		fprintf(fp, "  ");
503 504 505 506 507
		if (se->width)
			width = *se->width;
		else
			width = strlen(se->header);
		for (i = 0; i < width; i++)
508
			fprintf(fp, ".");
509
	}
510 511 512
	fprintf(fp, "\n");

	fprintf(fp, "#\n");
513

514
print_entries:
515
	for (nd = rb_first(&self->hists); nd; nd = rb_next(nd)) {
516
		pos = rb_entry(nd, struct hist_entry, rb_node);
517
		ret += hist_entry__fprintf(fp, pos, self, total_samples);
518 519
	}

520 521
	if (sort_order == default_sort_order &&
			parent_pattern == default_parent_pattern) {
522
		fprintf(fp, "#\n");
523
		fprintf(fp, "# (For a higher level overview, try: perf report --sort comm,dso)\n");
524 525
		fprintf(fp, "#\n");
	}
526
	fprintf(fp, "\n");
527

528 529
	free(rem_sq_bracket);

530
	if (show_threads)
531 532
		perf_read_values_display(fp, &show_threads_values,
					 raw_printing_style);
533

534 535 536
	return ret;
}

537
static int validate_chain(struct ip_callchain *chain, event_t *event)
538 539 540 541 542 543
{
	unsigned int chain_size;

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

544
	if (chain->nr*sizeof(u64) > chain_size)
545 546 547 548 549
		return -1;

	return 0;
}

550
static int process_sample_event(event_t *event, struct perf_session *session)
551
{
552
	struct sample_data data;
553
	int cpumode;
554
	struct addr_location al;
555
	struct thread *thread;
556

557 558 559 560
	memset(&data, 0, sizeof(data));
	data.period = 1;

	event__parse_sample(event, sample_type, &data);
561

562
	dump_printf("(IP, %d): %d/%d: %p period: %Ld\n",
563
		event->header.misc,
564 565 566
		data.pid, data.tid,
		(void *)(long)data.ip,
		(long long)data.period);
567

568
	if (sample_type & PERF_SAMPLE_CALLCHAIN) {
569
		unsigned int i;
570

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

573
		if (validate_chain(data.callchain, event) < 0) {
574 575
			pr_debug("call-chain problem with event, "
				 "skipping it.\n");
576 577 578 579
			return 0;
		}

		if (dump_trace) {
580 581 582
			for (i = 0; i < data.callchain->nr; i++)
				dump_printf("..... %2d: %016Lx\n",
					    i, data.callchain->ips[i]);
583 584 585
		}
	}

586
	thread = perf_session__findnew(session, data.pid);
587
	if (thread == NULL) {
588
		pr_debug("problem processing %d event, skipping it.\n",
589 590 591
			event->header.type);
		return -1;
	}
592

593 594
	dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);

595 596 597
	if (comm_list && !strlist__has_entry(comm_list, thread->comm))
		return 0;

598
	cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
599

600
	thread__find_addr_location(thread, session, cpumode,
601
				   MAP__FUNCTION, data.ip, &al, NULL);
602 603 604 605 606 607
	/*
	 * We have to do this here as we may have a dso with no symbol hit that
	 * has a name longer than the ones with symbols sampled.
	 */
	if (al.map && !sort_dso.elide && !al.map->dso->slen_calculated)
		dso__calc_col_width(al.map->dso);
608

609
	if (dso_list &&
610 611 612 613
	    (!al.map || !al.map->dso ||
	     !(strlist__has_entry(dso_list, al.map->dso->short_name) ||
	       (al.map->dso->short_name != al.map->dso->long_name &&
		strlist__has_entry(dso_list, al.map->dso->long_name)))))
614
		return 0;
615

616
	if (sym_list && al.sym && !strlist__has_entry(sym_list, al.sym->name))
617
		return 0;
618

619
	if (perf_session__add_hist_entry(session, &al, data.callchain, data.period)) {
620
		pr_debug("problem incrementing symbol count, skipping event\n");
621
		return -1;
622
	}
623

624
	event__stats.total += data.period;
625

626 627
	return 0;
}
I
Ingo Molnar 已提交
628

629
static int process_comm_event(event_t *event, struct perf_session *session)
630
{
631
	struct thread *thread = perf_session__findnew(session, event->comm.pid);
632

633
	dump_printf(": %s:%d\n", event->comm.comm, event->comm.pid);
634 635

	if (thread == NULL ||
636
	    thread__set_comm_adjust(thread, event->comm.comm)) {
637
		dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
638
		return -1;
639
	}
640 641 642 643

	return 0;
}

644
static int process_read_event(event_t *event, struct perf_session *session __used)
645
{
646
	struct perf_event_attr *attr;
647

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

650
	if (show_threads) {
651
		const char *name = attr ? __event_name(attr->type, attr->config)
652 653 654 655 656 657 658 659
				   : "unknown";
		perf_read_values_add_value(&show_threads_values,
					   event->read.pid, event->read.tid,
					   event->read.id,
					   name,
					   event->read.value);
	}

660 661 662
	dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
		    attr ? __event_name(attr->type, attr->config) : "FAIL",
		    event->read.value);
663 664 665 666

	return 0;
}

667
static int sample_type_check(u64 type, struct perf_session *session)
668
{
669
	sample_type = type;
670

671 672 673 674 675
	if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
		if (sort__has_parent) {
			fprintf(stderr, "selected --sort parent, but no"
					" callchain data. Did you call"
					" perf record without -g?\n");
676
			return -1;
677
		}
678
		if (session->use_callchain) {
679
			fprintf(stderr, "selected -g but no callchain data."
680 681
					" Did you call perf record without"
					" -g?\n");
682
			return -1;
683
		}
684 685
	} else if (callchain_param.mode != CHAIN_NONE && !session->use_callchain) {
			session->use_callchain = true;
686 687 688
			if (register_callchain_param(&callchain_param) < 0) {
				fprintf(stderr, "Can't register callchain"
						" params\n");
689
				return -1;
690
			}
691 692
	}

693 694
	return 0;
}
695

696
static struct perf_event_ops event_ops = {
697
	.process_sample_event	= process_sample_event,
698
	.process_mmap_event	= event__process_mmap,
699
	.process_comm_event	= process_comm_event,
700 701 702
	.process_exit_event	= event__process_task,
	.process_fork_event	= event__process_task,
	.process_lost_event	= event__process_lost,
703 704 705
	.process_read_event	= process_read_event,
	.sample_type_check	= sample_type_check,
};
706 707


708 709 710
static int __cmd_report(void)
{
	int ret;
711
	struct perf_session *session;
712

713
	session = perf_session__new(input_name, O_RDONLY, force, &symbol_conf);
714 715 716
	if (session == NULL)
		return -ENOMEM;

717 718
	session->use_callchain = use_callchain;

719 720
	if (show_threads)
		perf_read_values_init(&show_threads_values);
721

722
	ret = perf_session__process_events(session, &event_ops);
723
	if (ret)
724
		goto out_delete;
725

726 727
	if (dump_trace) {
		event__print_totals();
728
		goto out_delete;
729
	}
730

731
	if (verbose > 3)
732
		perf_session__fprintf(session, stdout);
733

734
	if (verbose > 2)
735 736
		dsos__fprintf(stdout);

737 738 739
	perf_session__collapse_resort(session);
	perf_session__output_resort(session, event__stats.total);
	perf_session__fprintf_hist_entries(session, event__stats.total, stdout);
740

741 742
	if (show_threads)
		perf_read_values_destroy(&show_threads_values);
743 744
out_delete:
	perf_session__delete(session);
745
	return ret;
746 747
}

748 749 750 751
static int
parse_callchain_opt(const struct option *opt __used, const char *arg,
		    int unset __used)
{
752 753 754
	char *tok;
	char *endptr;

755
	use_callchain = true;
756 757 758 759

	if (!arg)
		return 0;

760 761 762 763 764 765
	tok = strtok((char *)arg, ",");
	if (!tok)
		return -1;

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

768
	else if (!strncmp(tok, "flat", strlen(arg)))
769 770 771 772 773
		callchain_param.mode = CHAIN_FLAT;

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

774 775
	else if (!strncmp(tok, "none", strlen(arg))) {
		callchain_param.mode = CHAIN_NONE;
776
		use_callchain = true;
777 778 779 780

		return 0;
	}

781 782 783
	else
		return -1;

784 785 786
	/* get the min percentage */
	tok = strtok(NULL, ",");
	if (!tok)
787
		goto setup;
788

789
	callchain_param.min_percent = strtod(tok, &endptr);
790 791 792
	if (tok == endptr)
		return -1;

793 794 795 796 797
setup:
	if (register_callchain_param(&callchain_param) < 0) {
		fprintf(stderr, "Can't register callchain params\n");
		return -1;
	}
798 799 800
	return 0;
}

801 802
//static const char * const report_usage[] = {
const char * const report_usage[] = {
803 804 805 806 807 808 809
	"perf report [<options>] <command>",
	NULL
};

static const struct option options[] = {
	OPT_STRING('i', "input", &input_name, "file",
		    "input file name"),
810 811
	OPT_BOOLEAN('v', "verbose", &verbose,
		    "be more verbose (show symbol address, etc)"),
812 813
	OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
		    "dump raw trace in ASCII"),
814 815
	OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
		   "file", "vmlinux pathname"),
816
	OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
817
	OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
818
		    "load module symbols - WARNING: use only with -k and LIVE kernel"),
819 820
	OPT_BOOLEAN('n', "show-nr-samples", &show_nr_samples,
		    "Show a column with the number of samples"),
821 822
	OPT_BOOLEAN('T', "threads", &show_threads,
		    "Show per-thread event counters"),
823 824
	OPT_STRING(0, "pretty", &pretty_printing_style, "key",
		   "pretty printing style key: normal raw"),
825
	OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
826
		   "sort by key(s): pid, comm, dso, symbol, parent"),
827
	OPT_BOOLEAN('P', "full-paths", &event_ops.full_paths,
828
		    "Don't shorten the pathnames taking into account the cwd"),
829 830
	OPT_STRING('p', "parent", &parent_pattern, "regex",
		   "regex filter to identify parent, see: '--sort parent'"),
831 832
	OPT_BOOLEAN('x', "exclude-other", &exclude_other,
		    "Only display entries with parent-match"),
833
	OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
834
		     "Display callchains using output_type and min percent threshold. "
835
		     "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
836 837
	OPT_STRING('d', "dsos", &dso_list_str, "dso[,dso...]",
		   "only consider symbols in these dsos"),
838 839
	OPT_STRING('C', "comms", &comm_list_str, "comm[,comm...]",
		   "only consider symbols in these comms"),
840 841
	OPT_STRING('S', "symbols", &sym_list_str, "symbol[,symbol...]",
		   "only consider these symbols"),
842 843 844 845 846 847
	OPT_STRING('w', "column-widths", &col_width_list_str,
		   "width[,width...]",
		   "don't try to adjust column width, use these fixed values"),
	OPT_STRING('t', "field-separator", &field_sep, "separator",
		   "separator for columns, no spaces will be added between "
		   "columns '.' is reserved."),
848 849 850
	OPT_END()
};

851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
static void setup_sorting(void)
{
	char *tmp, *tok, *str = strdup(sort_order);

	for (tok = strtok_r(str, ", ", &tmp);
			tok; tok = strtok_r(NULL, ", ", &tmp)) {
		if (sort_dimension__add(tok) < 0) {
			error("Unknown --sort key: `%s'", tok);
			usage_with_options(report_usage, options);
		}
	}

	free(str);
}

866
static void setup_list(struct strlist **list, const char *list_str,
867 868
		       struct sort_entry *se, const char *list_name,
		       FILE *fp)
869 870 871 872 873 874 875 876
{
	if (list_str) {
		*list = strlist__new(true, list_str);
		if (!*list) {
			fprintf(stderr, "problems parsing %s list\n",
				list_name);
			exit(129);
		}
877 878 879 880 881
		if (strlist__nr_entries(*list) == 1) {
			fprintf(fp, "# %s: %s\n", list_name,
				strlist__entry(*list, 0)->s);
			se->elide = true;
		}
882 883 884
	}
}

885
int cmd_report(int argc, const char **argv, const char *prefix __used)
886
{
887 888
	if (symbol__init(&symbol_conf) < 0)
		return -1;
889

890
	argc = parse_options(argc, argv, options, report_usage, 0);
891

892 893
	setup_sorting();

894
	if (parent_pattern != default_parent_pattern) {
895
		sort_dimension__add("parent");
896 897
		sort_parent.elide = 1;
	} else
898 899
		exclude_other = 0;

900 901 902 903 904 905
	/*
	 * Any (unrecognized) arguments left?
	 */
	if (argc)
		usage_with_options(report_usage, options);

906 907
	setup_pager();

908 909 910
	setup_list(&dso_list, dso_list_str, &sort_dso, "dso", stdout);
	setup_list(&comm_list, comm_list_str, &sort_comm, "comm", stdout);
	setup_list(&sym_list, sym_list_str, &sort_sym, "symbol", stdout);
911

912 913 914 915 916 917
	if (field_sep && *field_sep == '.') {
		fputs("'.' is the only non valid --field-separator argument\n",
		      stderr);
		exit(129);
	}

918 919
	return __cmd_report();
}