builtin-report.c 22.5 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

42
static int		show_nr_samples;
43

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

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

50
static int		exclude_other = 1;
51

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

54 55
static u64		sample_type;

56 57
struct symbol_conf	symbol_conf;

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

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)
75 76 77 78
{
	int i;
	size_t ret = 0;

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

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

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

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

99
	ret += callchain__fprintf_left_margin(fp, left_margin);
100 101 102 103 104 105 106 107 108
	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;
109
			ret += percent_color_fprintf(fp, "--%2.2f%%-- ", percent);
110 111 112 113 114 115 116 117 118 119 120
		} 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;
}

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

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

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

155 156
	remaining = new_total;

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

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

		/*
		 * The depth mask manages the output of pipes that show
		 * the depth. We don't want to keep the pipes of the current
168 169 170
		 * level for the last child of this depth.
		 * Except if we have remaining filtered hits. They will
		 * supersede the last child
171 172
		 */
		next = rb_next(node);
173
		if (!next && (callchain_param.mode != CHAIN_GRAPH_REL || !remaining))
174 175 176 177 178 179
			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
		 */
180 181
		ret += ipchain__fprintf_graph_line(fp, depth, depth_mask,
						   left_margin);
182 183 184 185 186 187
		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++,
188
						      new_total,
189 190
						      cumul,
						      left_margin);
191
		}
192 193
		ret += __callchain__fprintf_graph(fp, child, new_total,
						  depth + 1,
194 195
						  new_depth_mask | (1 << depth),
						  left_margin);
196 197 198
		node = next;
	}

199 200 201 202 203 204 205 206 207 208
	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,
209
					      remaining, left_margin);
210 211
	}

212 213 214
	return ret;
}

215

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

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

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

232 233 234 235 236 237 238 239 240 241 242
		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);

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

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

	return ret;
}

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

	if (!self)
		return 0;

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


267 268 269 270 271 272 273
	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",
274
					(void *)(long)chain->ip);
275
	}
276 277 278 279 280 281

	return ret;
}

static size_t
hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
282
			      u64 total_samples, int left_margin)
283 284 285 286 287 288 289 290 291 292 293
{
	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;
294 295
		switch (callchain_param.mode) {
		case CHAIN_FLAT:
296 297
			ret += percent_color_fprintf(fp, "           %6.2f%%\n",
						     percent);
298
			ret += callchain__fprintf_flat(fp, chain, total_samples);
299 300 301
			break;
		case CHAIN_GRAPH_ABS: /* Falldown */
		case CHAIN_GRAPH_REL:
302 303
			ret += callchain__fprintf_graph(fp, chain, total_samples,
							left_margin);
304
		case CHAIN_NONE:
305 306
		default:
			break;
307
		}
308 309 310 311 312 313 314
		ret += fprintf(fp, "\n");
		rb_node = rb_next(rb_node);
	}

	return ret;
}

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

321 322 323
	if (exclude_other && !self->parent)
		return 0;

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

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

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

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

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

348 349 350 351 352 353 354 355 356 357 358 359 360
	if (callchain) {
		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);
	}
361

362 363 364
	return ret;
}

365 366 367 368
/*
 *
 */

369 370 371 372 373 374 375 376 377 378 379 380
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;
}

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

	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;
		}
	}
394 395 396 397 398 399 400 401 402 403
}

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);
404 405 406 407

	return 0;
}

408
static int call__match(struct symbol *sym)
409
{
410
	if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
411
		return 1;
412

413
	return 0;
414 415
}

416
static struct symbol **resolve_callchain(struct thread *thread,
417 418
					 struct ip_callchain *chain,
					 struct symbol **parent)
419
{
420
	u8 cpumode = PERF_RECORD_MISC_USER;
421
	struct symbol **syms = NULL;
422
	unsigned int i;
423 424 425 426 427 428 429 430 431 432 433

	if (callchain) {
		syms = calloc(chain->nr, sizeof(*syms));
		if (!syms) {
			fprintf(stderr, "Can't allocate memory for symbols\n");
			exit(-1);
		}
	}

	for (i = 0; i < chain->nr; i++) {
		u64 ip = chain->ips[i];
434
		struct addr_location al;
435 436

		if (ip >= PERF_CONTEXT_MAX) {
437 438 439 440 441 442 443 444 445 446
			switch (ip) {
			case PERF_CONTEXT_HV:
				cpumode = PERF_RECORD_MISC_HYPERVISOR;	break;
			case PERF_CONTEXT_KERNEL:
				cpumode = PERF_RECORD_MISC_KERNEL;	break;
			case PERF_CONTEXT_USER:
				cpumode = PERF_RECORD_MISC_USER;	break;
			default:
				break;
			}
447 448 449
			continue;
		}

450 451 452 453 454 455
		thread__find_addr_location(thread, cpumode, MAP__FUNCTION,
					   ip, &al, NULL);
		if (al.sym != NULL) {
			if (sort__has_parent && !*parent &&
			    call__match(al.sym))
				*parent = al.sym;
456 457
			if (!callchain)
				break;
458
			syms[i] = al.sym;
459 460 461 462 463 464
		}
	}

	return syms;
}

465 466 467 468
/*
 * collect histogram counts
 */

469 470
static int hist_entry__add(struct addr_location *al,
			   struct ip_callchain *chain, u64 count)
471
{
472 473
	struct symbol **syms = NULL, *parent = NULL;
	bool hit;
474 475
	struct hist_entry *he;

476
	if ((sort__has_parent || callchain) && chain)
477
		syms = resolve_callchain(al->thread, chain, &parent);
478

479
	he = __hist_entry__add(al, parent, count, &hit);
480 481
	if (he == NULL)
		return -ENOMEM;
482

483 484
	if (hit)
		he->count += count;
485

486
	if (callchain) {
487 488
		if (!hit)
			callchain_init(&he->callchain);
489 490
		append_chain(&he->callchain, chain, syms);
		free(syms);
491
	}
492 493

	return 0;
494 495
}

496
static size_t output__fprintf(FILE *fp, u64 total_samples)
497
{
498
	struct hist_entry *pos;
499
	struct sort_entry *se;
500 501
	struct rb_node *nd;
	size_t ret = 0;
502 503
	unsigned int width;
	char *col_width = col_width_list_str;
504 505 506
	int raw_printing_style;

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

508 509
	init_rem_hits();

510
	fprintf(fp, "# Samples: %Ld\n", (u64)total_samples);
511 512 513
	fprintf(fp, "#\n");

	fprintf(fp, "# Overhead");
514 515 516 517 518 519
	if (show_nr_samples) {
		if (field_sep)
			fprintf(fp, "%cSamples", *field_sep);
		else
			fputs("  Samples  ", fp);
	}
520
	list_for_each_entry(se, &hist_entry__sort_list, list) {
521
		if (se->elide)
522
			continue;
523 524
		if (field_sep) {
			fprintf(fp, "%c%s", *field_sep, se->header);
525
			continue;
526 527 528 529 530 531 532 533 534 535 536 537 538 539
		}
		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);
540
	}
541 542
	fprintf(fp, "\n");

543 544 545
	if (field_sep)
		goto print_entries;

546
	fprintf(fp, "# ........");
547 548
	if (show_nr_samples)
		fprintf(fp, " ..........");
549
	list_for_each_entry(se, &hist_entry__sort_list, list) {
550
		unsigned int i;
551

552
		if (se->elide)
553 554
			continue;

555
		fprintf(fp, "  ");
556 557 558 559 560
		if (se->width)
			width = *se->width;
		else
			width = strlen(se->header);
		for (i = 0; i < width; i++)
561
			fprintf(fp, ".");
562
	}
563 564 565
	fprintf(fp, "\n");

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

567
print_entries:
568 569 570
	for (nd = rb_first(&output_hists); nd; nd = rb_next(nd)) {
		pos = rb_entry(nd, struct hist_entry, rb_node);
		ret += hist_entry__fprintf(fp, pos, total_samples);
571 572
	}

573 574
	if (sort_order == default_sort_order &&
			parent_pattern == default_parent_pattern) {
575
		fprintf(fp, "#\n");
576
		fprintf(fp, "# (For a higher level overview, try: perf report --sort comm,dso)\n");
577 578
		fprintf(fp, "#\n");
	}
579
	fprintf(fp, "\n");
580

581 582
	free(rem_sq_bracket);

583
	if (show_threads)
584 585
		perf_read_values_display(fp, &show_threads_values,
					 raw_printing_style);
586

587 588 589
	return ret;
}

590
static int validate_chain(struct ip_callchain *chain, event_t *event)
591 592 593 594 595 596
{
	unsigned int chain_size;

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

597
	if (chain->nr*sizeof(u64) > chain_size)
598 599 600 601 602
		return -1;

	return 0;
}

603
static int process_sample_event(event_t *event, struct perf_session *session)
604
{
605
	struct sample_data data;
606
	int cpumode;
607
	struct addr_location al;
608
	struct thread *thread;
609

610 611 612 613
	memset(&data, 0, sizeof(data));
	data.period = 1;

	event__parse_sample(event, sample_type, &data);
614

615
	dump_printf("(IP, %d): %d/%d: %p period: %Ld\n",
616
		event->header.misc,
617 618 619
		data.pid, data.tid,
		(void *)(long)data.ip,
		(long long)data.period);
620

621
	if (sample_type & PERF_SAMPLE_CALLCHAIN) {
622
		unsigned int i;
623

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

626
		if (validate_chain(data.callchain, event) < 0) {
627 628
			pr_debug("call-chain problem with event, "
				 "skipping it.\n");
629 630 631 632
			return 0;
		}

		if (dump_trace) {
633 634 635
			for (i = 0; i < data.callchain->nr; i++)
				dump_printf("..... %2d: %016Lx\n",
					    i, data.callchain->ips[i]);
636 637 638
		}
	}

639
	thread = perf_session__findnew(session, data.pid);
640
	if (thread == NULL) {
641
		pr_debug("problem processing %d event, skipping it.\n",
642 643 644
			event->header.type);
		return -1;
	}
645

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

648 649 650
	if (comm_list && !strlist__has_entry(comm_list, thread->comm))
		return 0;

651
	cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
652

653
	thread__find_addr_location(thread, cpumode,
654
				   MAP__FUNCTION, data.ip, &al, NULL);
655 656 657 658 659 660
	/*
	 * 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);
661

662
	if (dso_list &&
663 664 665 666
	    (!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)))))
667
		return 0;
668

669
	if (sym_list && al.sym && !strlist__has_entry(sym_list, al.sym->name))
670
		return 0;
671

672
	if (hist_entry__add(&al, data.callchain, data.period)) {
673
		pr_debug("problem incrementing symbol count, skipping event\n");
674
		return -1;
675
	}
676

677
	event__stats.total += data.period;
678

679 680
	return 0;
}
I
Ingo Molnar 已提交
681

682
static int process_comm_event(event_t *event, struct perf_session *session)
683
{
684
	struct thread *thread = perf_session__findnew(session, event->comm.pid);
685

686
	dump_printf(": %s:%d\n", event->comm.comm, event->comm.pid);
687 688

	if (thread == NULL ||
689
	    thread__set_comm_adjust(thread, event->comm.comm)) {
690
		dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
691
		return -1;
692
	}
693 694 695 696

	return 0;
}

697
static int process_read_event(event_t *event, struct perf_session *session __used)
698
{
699
	struct perf_event_attr *attr;
700

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

703
	if (show_threads) {
704
		const char *name = attr ? __event_name(attr->type, attr->config)
705 706 707 708 709 710 711 712
				   : "unknown";
		perf_read_values_add_value(&show_threads_values,
					   event->read.pid, event->read.tid,
					   event->read.id,
					   name,
					   event->read.value);
	}

713 714 715
	dump_printf(": %d %d %s %Lu\n", event->read.pid, event->read.tid,
		    attr ? __event_name(attr->type, attr->config) : "FAIL",
		    event->read.value);
716 717 718 719

	return 0;
}

720
static int sample_type_check(u64 type)
721
{
722
	sample_type = type;
723

724 725 726 727 728
	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");
729
			return -1;
730 731
		}
		if (callchain) {
732
			fprintf(stderr, "selected -g but no callchain data."
733 734
					" Did you call perf record without"
					" -g?\n");
735
			return -1;
736
		}
737 738 739 740 741
	} else if (callchain_param.mode != CHAIN_NONE && !callchain) {
			callchain = 1;
			if (register_callchain_param(&callchain_param) < 0) {
				fprintf(stderr, "Can't register callchain"
						" params\n");
742
				return -1;
743
			}
744 745
	}

746 747
	return 0;
}
748

749
static struct perf_event_ops event_ops = {
750
	.process_sample_event	= process_sample_event,
751
	.process_mmap_event	= event__process_mmap,
752
	.process_comm_event	= process_comm_event,
753 754 755
	.process_exit_event	= event__process_task,
	.process_fork_event	= event__process_task,
	.process_lost_event	= event__process_lost,
756 757 758
	.process_read_event	= process_read_event,
	.sample_type_check	= sample_type_check,
};
759 760


761 762 763
static int __cmd_report(void)
{
	int ret;
764
	struct perf_session *session;
765

766 767 768 769
	session = perf_session__new(input_name, O_RDONLY, force);
	if (session == NULL)
		return -ENOMEM;

770 771
	if (show_threads)
		perf_read_values_init(&show_threads_values);
772

773
	ret = perf_session__process_events(session, &event_ops);
774
	if (ret)
775
		goto out_delete;
776

777 778
	if (dump_trace) {
		event__print_totals();
779
		goto out_delete;
780
	}
781

782
	if (verbose > 3)
783
		perf_session__fprintf(session, stdout);
784

785
	if (verbose > 2)
786 787
		dsos__fprintf(stdout);

P
Peter Zijlstra 已提交
788
	collapse__resort();
789 790
	output__resort(event__stats.total);
	output__fprintf(stdout, event__stats.total);
791

792 793
	if (show_threads)
		perf_read_values_destroy(&show_threads_values);
794 795
out_delete:
	perf_session__delete(session);
796
	return ret;
797 798
}

799 800 801 802
static int
parse_callchain_opt(const struct option *opt __used, const char *arg,
		    int unset __used)
{
803 804 805
	char *tok;
	char *endptr;

806 807 808 809 810
	callchain = 1;

	if (!arg)
		return 0;

811 812 813 814 815 816
	tok = strtok((char *)arg, ",");
	if (!tok)
		return -1;

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

819
	else if (!strncmp(tok, "flat", strlen(arg)))
820 821 822 823 824
		callchain_param.mode = CHAIN_FLAT;

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

825 826 827 828 829 830 831
	else if (!strncmp(tok, "none", strlen(arg))) {
		callchain_param.mode = CHAIN_NONE;
		callchain = 0;

		return 0;
	}

832 833 834
	else
		return -1;

835 836 837
	/* get the min percentage */
	tok = strtok(NULL, ",");
	if (!tok)
838
		goto setup;
839

840
	callchain_param.min_percent = strtod(tok, &endptr);
841 842 843
	if (tok == endptr)
		return -1;

844 845 846 847 848
setup:
	if (register_callchain_param(&callchain_param) < 0) {
		fprintf(stderr, "Can't register callchain params\n");
		return -1;
	}
849 850 851
	return 0;
}

852 853
//static const char * const report_usage[] = {
const char * const report_usage[] = {
854 855 856 857 858 859 860
	"perf report [<options>] <command>",
	NULL
};

static const struct option options[] = {
	OPT_STRING('i', "input", &input_name, "file",
		    "input file name"),
861 862
	OPT_BOOLEAN('v', "verbose", &verbose,
		    "be more verbose (show symbol address, etc)"),
863 864
	OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
		    "dump raw trace in ASCII"),
865 866
	OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
		   "file", "vmlinux pathname"),
867
	OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
868
	OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
869
		    "load module symbols - WARNING: use only with -k and LIVE kernel"),
870 871
	OPT_BOOLEAN('n', "show-nr-samples", &show_nr_samples,
		    "Show a column with the number of samples"),
872 873
	OPT_BOOLEAN('T', "threads", &show_threads,
		    "Show per-thread event counters"),
874 875
	OPT_STRING(0, "pretty", &pretty_printing_style, "key",
		   "pretty printing style key: normal raw"),
876
	OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
877
		   "sort by key(s): pid, comm, dso, symbol, parent"),
878
	OPT_BOOLEAN('P', "full-paths", &event_ops.full_paths,
879
		    "Don't shorten the pathnames taking into account the cwd"),
880 881
	OPT_STRING('p', "parent", &parent_pattern, "regex",
		   "regex filter to identify parent, see: '--sort parent'"),
882 883
	OPT_BOOLEAN('x', "exclude-other", &exclude_other,
		    "Only display entries with parent-match"),
884
	OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
885
		     "Display callchains using output_type and min percent threshold. "
886
		     "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
887 888
	OPT_STRING('d', "dsos", &dso_list_str, "dso[,dso...]",
		   "only consider symbols in these dsos"),
889 890
	OPT_STRING('C', "comms", &comm_list_str, "comm[,comm...]",
		   "only consider symbols in these comms"),
891 892
	OPT_STRING('S', "symbols", &sym_list_str, "symbol[,symbol...]",
		   "only consider these symbols"),
893 894 895 896 897 898
	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."),
899 900 901
	OPT_END()
};

902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
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);
}

917
static void setup_list(struct strlist **list, const char *list_str,
918 919
		       struct sort_entry *se, const char *list_name,
		       FILE *fp)
920 921 922 923 924 925 926 927
{
	if (list_str) {
		*list = strlist__new(true, list_str);
		if (!*list) {
			fprintf(stderr, "problems parsing %s list\n",
				list_name);
			exit(129);
		}
928 929 930 931 932
		if (strlist__nr_entries(*list) == 1) {
			fprintf(fp, "# %s: %s\n", list_name,
				strlist__entry(*list, 0)->s);
			se->elide = true;
		}
933 934 935
	}
}

936
int cmd_report(int argc, const char **argv, const char *prefix __used)
937
{
938 939
	if (symbol__init(&symbol_conf) < 0)
		return -1;
940

941
	argc = parse_options(argc, argv, options, report_usage, 0);
942

943 944
	setup_sorting();

945
	if (parent_pattern != default_parent_pattern) {
946
		sort_dimension__add("parent");
947 948
		sort_parent.elide = 1;
	} else
949 950
		exclude_other = 0;

951 952 953 954 955 956
	/*
	 * Any (unrecognized) arguments left?
	 */
	if (argc)
		usage_with_options(report_usage, options);

957 958
	setup_pager();

959 960 961
	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);
962

963 964 965 966 967 968
	if (field_sep && *field_sep == '.') {
		fputs("'.' is the only non valid --field-separator argument\n",
		      stderr);
		exit(129);
	}

969 970
	return __cmd_report();
}