hist.c 24.9 KB
Newer Older
1
#include "util.h"
2
#include "build-id.h"
3
#include "hist.h"
4 5
#include "session.h"
#include "sort.h"
6
#include <math.h>
7

8 9 10 11 12 13
enum hist_filter {
	HIST_FILTER__DSO,
	HIST_FILTER__THREAD,
	HIST_FILTER__PARENT,
};

14 15 16 17 18
struct callchain_param	callchain_param = {
	.mode	= CHAIN_GRAPH_REL,
	.min_percent = 0.5
};

19 20
static void hist_entry__add_cpumode_period(struct hist_entry *self,
					   unsigned int cpumode, u64 period)
21
{
22
	switch (cpumode) {
23
	case PERF_RECORD_MISC_KERNEL:
24
		self->period_sys += period;
25 26
		break;
	case PERF_RECORD_MISC_USER:
27
		self->period_us += period;
28 29
		break;
	case PERF_RECORD_MISC_GUEST_KERNEL:
30
		self->period_guest_sys += period;
31 32
		break;
	case PERF_RECORD_MISC_GUEST_USER:
33
		self->period_guest_us += period;
34 35 36 37 38 39
		break;
	default:
		break;
	}
}

40
/*
41
 * histogram, sorted on item, collects periods
42 43
 */

44 45 46 47 48 49 50
static struct hist_entry *hist_entry__new(struct hist_entry *template)
{
	size_t callchain_size = symbol_conf.use_callchain ? sizeof(struct callchain_node) : 0;
	struct hist_entry *self = malloc(sizeof(*self) + callchain_size);

	if (self != NULL) {
		*self = *template;
51
		self->nr_events = 1;
52 53 54 55 56 57 58
		if (symbol_conf.use_callchain)
			callchain_init(self->callchain);
	}

	return self;
}

59 60
static void hists__inc_nr_entries(struct hists *self, struct hist_entry *entry)
{
61 62
	if (entry->filtered)
		return;
63 64 65 66 67
	if (entry->ms.sym && self->max_sym_namelen < entry->ms.sym->namelen)
		self->max_sym_namelen = entry->ms.sym->namelen;
	++self->nr_entries;
}

68 69 70 71 72 73 74
static u8 symbol__parent_filter(const struct symbol *parent)
{
	if (symbol_conf.exclude_other && parent == NULL)
		return 1 << HIST_FILTER__PARENT;
	return 0;
}

75 76
struct hist_entry *__hists__add_entry(struct hists *self,
				      struct addr_location *al,
77
				      struct symbol *sym_parent, u64 period)
78
{
79
	struct rb_node **p = &self->entries.rb_node;
80 81 82
	struct rb_node *parent = NULL;
	struct hist_entry *he;
	struct hist_entry entry = {
83
		.thread	= al->thread,
84 85 86 87
		.ms = {
			.map	= al->map,
			.sym	= al->sym,
		},
A
Arun Sharma 已提交
88
		.cpu	= al->cpu,
89 90
		.ip	= al->addr,
		.level	= al->level,
91
		.period	= period,
92
		.parent = sym_parent,
93
		.filtered = symbol__parent_filter(sym_parent),
94 95 96 97 98 99 100 101 102 103
	};
	int cmp;

	while (*p != NULL) {
		parent = *p;
		he = rb_entry(parent, struct hist_entry, rb_node);

		cmp = hist_entry__cmp(&entry, he);

		if (!cmp) {
104 105
			he->period += period;
			++he->nr_events;
106
			goto out;
107 108 109 110 111 112 113 114
		}

		if (cmp < 0)
			p = &(*p)->rb_left;
		else
			p = &(*p)->rb_right;
	}

115
	he = hist_entry__new(&entry);
116 117 118
	if (!he)
		return NULL;
	rb_link_node(&he->rb_node, parent, p);
119
	rb_insert_color(&he->rb_node, &self->entries);
120
	hists__inc_nr_entries(self, he);
121
out:
122
	hist_entry__add_cpumode_period(he, al->cpumode, period);
123 124 125
	return he;
}

126 127 128 129 130 131 132
int64_t
hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
{
	struct sort_entry *se;
	int64_t cmp = 0;

	list_for_each_entry(se, &hist_entry__sort_list, list) {
133
		cmp = se->se_cmp(left, right);
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
		if (cmp)
			break;
	}

	return cmp;
}

int64_t
hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
{
	struct sort_entry *se;
	int64_t cmp = 0;

	list_for_each_entry(se, &hist_entry__sort_list, list) {
		int64_t (*f)(struct hist_entry *, struct hist_entry *);

150
		f = se->se_collapse ?: se->se_cmp;
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168

		cmp = f(left, right);
		if (cmp)
			break;
	}

	return cmp;
}

void hist_entry__free(struct hist_entry *he)
{
	free(he);
}

/*
 * collapse the histogram
 */

169
static bool collapse__insert_entry(struct rb_root *root, struct hist_entry *he)
170
{
171
	struct rb_node **p = &root->rb_node;
172 173 174 175 176 177 178 179 180 181 182
	struct rb_node *parent = NULL;
	struct hist_entry *iter;
	int64_t cmp;

	while (*p != NULL) {
		parent = *p;
		iter = rb_entry(parent, struct hist_entry, rb_node);

		cmp = hist_entry__collapse(iter, he);

		if (!cmp) {
183
			iter->period += he->period;
184
			hist_entry__free(he);
185
			return false;
186 187 188 189 190 191 192 193 194
		}

		if (cmp < 0)
			p = &(*p)->rb_left;
		else
			p = &(*p)->rb_right;
	}

	rb_link_node(&he->rb_node, parent, p);
195
	rb_insert_color(&he->rb_node, root);
196
	return true;
197 198
}

199
void hists__collapse_resort(struct hists *self)
200
{
201
	struct rb_root tmp;
202 203 204 205 206 207
	struct rb_node *next;
	struct hist_entry *n;

	if (!sort__need_collapse)
		return;

208
	tmp = RB_ROOT;
209
	next = rb_first(&self->entries);
210 211
	self->nr_entries = 0;
	self->max_sym_namelen = 0;
212

213 214 215 216
	while (next) {
		n = rb_entry(next, struct hist_entry, rb_node);
		next = rb_next(&n->rb_node);

217
		rb_erase(&n->rb_node, &self->entries);
218 219
		if (collapse__insert_entry(&tmp, n))
			hists__inc_nr_entries(self, n);
220
	}
221

222
	self->entries = tmp;
223 224 225
}

/*
226
 * reverse the map, sort on period.
227 228
 */

229 230 231
static void __hists__insert_output_entry(struct rb_root *entries,
					 struct hist_entry *he,
					 u64 min_callchain_hits)
232
{
233
	struct rb_node **p = &entries->rb_node;
234 235 236
	struct rb_node *parent = NULL;
	struct hist_entry *iter;

237
	if (symbol_conf.use_callchain)
238
		callchain_param.sort(&he->sorted_chain, he->callchain,
239 240 241 242 243 244
				      min_callchain_hits, &callchain_param);

	while (*p != NULL) {
		parent = *p;
		iter = rb_entry(parent, struct hist_entry, rb_node);

245
		if (he->period > iter->period)
246 247 248 249 250 251
			p = &(*p)->rb_left;
		else
			p = &(*p)->rb_right;
	}

	rb_link_node(&he->rb_node, parent, p);
252
	rb_insert_color(&he->rb_node, entries);
253 254
}

255
void hists__output_resort(struct hists *self)
256
{
257
	struct rb_root tmp;
258 259 260 261
	struct rb_node *next;
	struct hist_entry *n;
	u64 min_callchain_hits;

262
	min_callchain_hits = self->stats.total_period * (callchain_param.min_percent / 100);
263

264
	tmp = RB_ROOT;
265
	next = rb_first(&self->entries);
266

267 268 269
	self->nr_entries = 0;
	self->max_sym_namelen = 0;

270 271 272 273
	while (next) {
		n = rb_entry(next, struct hist_entry, rb_node);
		next = rb_next(&n->rb_node);

274 275
		rb_erase(&n->rb_node, &self->entries);
		__hists__insert_output_entry(&tmp, n, min_callchain_hits);
276
		hists__inc_nr_entries(self, n);
277
	}
278

279
	self->entries = tmp;
280
}
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310

static size_t callchain__fprintf_left_margin(FILE *fp, int left_margin)
{
	int i;
	int 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)
{
	int i;
	size_t ret = callchain__fprintf_left_margin(fp, left_margin);

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

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

	return ret;
}

static size_t ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain,
311
				     int depth, int depth_mask, int period,
312 313 314 315 316 317 318 319 320 321 322 323
				     u64 total_samples, int hits,
				     int left_margin)
{
	int i;
	size_t ret = 0;

	ret += callchain__fprintf_left_margin(fp, left_margin);
	for (i = 0; i < depth; i++) {
		if (depth_mask & (1 << i))
			ret += fprintf(fp, "|");
		else
			ret += fprintf(fp, " ");
324
		if (!period && i == depth - 1) {
325 326 327 328 329 330 331
			double percent;

			percent = hits * 100.0 / total_samples;
			ret += percent_color_fprintf(fp, "--%2.2f%%-- ", percent);
		} else
			ret += fprintf(fp, "%s", "          ");
	}
332 333
	if (chain->ms.sym)
		ret += fprintf(fp, "%s\n", chain->ms.sym->name);
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
	else
		ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);

	return ret;
}

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, "[...]");
352
	rem_hits.ms.sym = rem_sq_bracket;
353 354 355 356 357 358 359 360 361 362 363 364 365 366
}

static size_t __callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
					 u64 total_samples, int depth,
					 int depth_mask, int left_margin)
{
	struct rb_node *node, *next;
	struct callchain_node *child;
	struct callchain_list *chain;
	int new_depth_mask = depth_mask;
	u64 new_total;
	u64 remaining;
	size_t ret = 0;
	int i;
367
	uint entries_printed = 0;
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395

	if (callchain_param.mode == CHAIN_GRAPH_REL)
		new_total = self->children_hit;
	else
		new_total = total_samples;

	remaining = new_total;

	node = rb_first(&self->rb_root);
	while (node) {
		u64 cumul;

		child = rb_entry(node, struct callchain_node, rb_node);
		cumul = cumul_hits(child);
		remaining -= cumul;

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

		/*
D
Daniel Mack 已提交
396
		 * But we keep the older depth mask for the line separator
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
		 * to keep the level link until we reach the last child
		 */
		ret += ipchain__fprintf_graph_line(fp, depth, depth_mask,
						   left_margin);
		i = 0;
		list_for_each_entry(chain, &child->val, list) {
			ret += ipchain__fprintf_graph(fp, chain, depth,
						      new_depth_mask, i++,
						      new_total,
						      cumul,
						      left_margin);
		}
		ret += __callchain__fprintf_graph(fp, child, new_total,
						  depth + 1,
						  new_depth_mask | (1 << depth),
						  left_margin);
		node = next;
414 415
		if (++entries_printed == callchain_param.print_limit)
			break;
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
	}

	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,
					      remaining, left_margin);
	}

	return ret;
}

static size_t callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
				       u64 total_samples, int left_margin)
{
	struct callchain_list *chain;
	bool printed = false;
	int i = 0;
	int ret = 0;
441
	u32 entries_printed = 0;
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457

	list_for_each_entry(chain, &self->val, list) {
		if (!i++ && sort__first_dimension == SORT_SYM)
			continue;

		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);

458 459
		if (chain->ms.sym)
			ret += fprintf(fp, " %s\n", chain->ms.sym->name);
460 461
		else
			ret += fprintf(fp, " %p\n", (void *)(long)chain->ip);
462 463 464

		if (++entries_printed == callchain_param.print_limit)
			break;
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
	}

	ret += __callchain__fprintf_graph(fp, self, total_samples, 1, 1, left_margin);

	return ret;
}

static size_t callchain__fprintf_flat(FILE *fp, struct callchain_node *self,
				      u64 total_samples)
{
	struct callchain_list *chain;
	size_t ret = 0;

	if (!self)
		return 0;

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


	list_for_each_entry(chain, &self->val, list) {
		if (chain->ip >= PERF_CONTEXT_MAX)
			continue;
487 488
		if (chain->ms.sym)
			ret += fprintf(fp, "                %s\n", chain->ms.sym->name);
489 490 491 492 493 494 495 496 497 498 499 500 501 502
		else
			ret += fprintf(fp, "                %p\n",
					(void *)(long)chain->ip);
	}

	return ret;
}

static size_t hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
					    u64 total_samples, int left_margin)
{
	struct rb_node *rb_node;
	struct callchain_node *chain;
	size_t ret = 0;
503
	u32 entries_printed = 0;
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525

	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;
		switch (callchain_param.mode) {
		case CHAIN_FLAT:
			ret += percent_color_fprintf(fp, "           %6.2f%%\n",
						     percent);
			ret += callchain__fprintf_flat(fp, chain, total_samples);
			break;
		case CHAIN_GRAPH_ABS: /* Falldown */
		case CHAIN_GRAPH_REL:
			ret += callchain__fprintf_graph(fp, chain, total_samples,
							left_margin);
		case CHAIN_NONE:
		default:
			break;
		}
		ret += fprintf(fp, "\n");
526 527
		if (++entries_printed == callchain_param.print_limit)
			break;
528 529 530 531 532 533
		rb_node = rb_next(rb_node);
	}

	return ret;
}

534 535 536
int hist_entry__snprintf(struct hist_entry *self, char *s, size_t size,
			 struct hists *pair_hists, bool show_displacement,
			 long displacement, bool color, u64 session_total)
537 538
{
	struct sort_entry *se;
539
	u64 period, total, period_sys, period_us, period_guest_sys, period_guest_us;
540
	const char *sep = symbol_conf.field_sep;
541
	int ret;
542 543 544 545

	if (symbol_conf.exclude_other && !self->parent)
		return 0;

546
	if (pair_hists) {
547
		period = self->pair ? self->pair->period : 0;
548
		total = pair_hists->stats.total_period;
549 550 551 552
		period_sys = self->pair ? self->pair->period_sys : 0;
		period_us = self->pair ? self->pair->period_us : 0;
		period_guest_sys = self->pair ? self->pair->period_guest_sys : 0;
		period_guest_us = self->pair ? self->pair->period_guest_us : 0;
553
	} else {
554
		period = self->period;
555
		total = session_total;
556 557 558 559
		period_sys = self->period_sys;
		period_us = self->period_us;
		period_guest_sys = self->period_guest_sys;
		period_guest_us = self->period_guest_us;
560 561
	}

562 563 564 565
	if (total) {
		if (color)
			ret = percent_color_snprintf(s, size,
						     sep ? "%.2f" : "   %6.2f%%",
566
						     (period * 100.0) / total);
567 568
		else
			ret = snprintf(s, size, sep ? "%.2f" : "   %6.2f%%",
569
				       (period * 100.0) / total);
570 571 572
		if (symbol_conf.show_cpu_utilization) {
			ret += percent_color_snprintf(s + ret, size - ret,
					sep ? "%.2f" : "   %6.2f%%",
573
					(period_sys * 100.0) / total);
574 575
			ret += percent_color_snprintf(s + ret, size - ret,
					sep ? "%.2f" : "   %6.2f%%",
576
					(period_us * 100.0) / total);
577 578 579 580
			if (perf_guest) {
				ret += percent_color_snprintf(s + ret,
						size - ret,
						sep ? "%.2f" : "   %6.2f%%",
581
						(period_guest_sys * 100.0) /
582 583 584 585
								total);
				ret += percent_color_snprintf(s + ret,
						size - ret,
						sep ? "%.2f" : "   %6.2f%%",
586
						(period_guest_us * 100.0) /
587 588 589
								total);
			}
		}
590
	} else
591
		ret = snprintf(s, size, sep ? "%lld" : "%12lld ", period);
592 593

	if (symbol_conf.show_nr_samples) {
594
		if (sep)
595
			ret += snprintf(s + ret, size - ret, "%c%lld", *sep, period);
596
		else
597
			ret += snprintf(s + ret, size - ret, "%11lld", period);
598 599
	}

600
	if (pair_hists) {
601 602 603 604
		char bf[32];
		double old_percent = 0, new_percent = 0, diff;

		if (total > 0)
605
			old_percent = (period * 100.0) / total;
606
		if (session_total > 0)
607
			new_percent = (self->period * 100.0) / session_total;
608

609
		diff = new_percent - old_percent;
610

611
		if (fabs(diff) >= 0.01)
612 613 614 615 616
			snprintf(bf, sizeof(bf), "%+4.2F%%", diff);
		else
			snprintf(bf, sizeof(bf), " ");

		if (sep)
617
			ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
618
		else
619
			ret += snprintf(s + ret, size - ret, "%11.11s", bf);
620 621 622 623 624 625 626 627

		if (show_displacement) {
			if (displacement)
				snprintf(bf, sizeof(bf), "%+4ld", displacement);
			else
				snprintf(bf, sizeof(bf), " ");

			if (sep)
628
				ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
629
			else
630
				ret += snprintf(s + ret, size - ret, "%6.6s", bf);
631
		}
632 633 634 635 636 637
	}

	list_for_each_entry(se, &hist_entry__sort_list, list) {
		if (se->elide)
			continue;

638
		ret += snprintf(s + ret, size - ret, "%s", sep ?: "  ");
639 640
		ret += se->se_snprintf(self, s + ret, size - ret,
				       se->se_width ? *se->se_width : 0);
641 642
	}

643 644 645
	return ret;
}

646 647
int hist_entry__fprintf(struct hist_entry *self, struct hists *pair_hists,
			bool show_displacement, long displacement, FILE *fp,
648 649 650
			u64 session_total)
{
	char bf[512];
651
	hist_entry__snprintf(self, bf, sizeof(bf), pair_hists,
652 653 654
			     show_displacement, displacement,
			     true, session_total);
	return fprintf(fp, "%s\n", bf);
655
}
656

657 658 659 660
static size_t hist_entry__fprintf_callchain(struct hist_entry *self, FILE *fp,
					    u64 session_total)
{
	int left_margin = 0;
661

662 663 664
	if (sort__first_dimension == SORT_COMM) {
		struct sort_entry *se = list_first_entry(&hist_entry__sort_list,
							 typeof(*se), list);
665
		left_margin = se->se_width ? *se->se_width : 0;
666
		left_margin -= thread__comm_len(self->thread);
667 668
	}

669 670
	return hist_entry_callchain__fprintf(fp, self, session_total,
					     left_margin);
671 672
}

673 674
size_t hists__fprintf(struct hists *self, struct hists *pair,
		      bool show_displacement, FILE *fp)
675 676 677 678
{
	struct sort_entry *se;
	struct rb_node *nd;
	size_t ret = 0;
679 680
	unsigned long position = 1;
	long displacement = 0;
681
	unsigned int width;
682
	const char *sep = symbol_conf.field_sep;
683
	const char *col_width = symbol_conf.col_width_list_str;
684 685 686

	init_rem_hits();

687 688
	fprintf(fp, "# %s", pair ? "Baseline" : "Overhead");

689
	if (symbol_conf.show_nr_samples) {
690 691
		if (sep)
			fprintf(fp, "%cSamples", *sep);
692 693 694
		else
			fputs("  Samples  ", fp);
	}
695

696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
	if (symbol_conf.show_cpu_utilization) {
		if (sep) {
			ret += fprintf(fp, "%csys", *sep);
			ret += fprintf(fp, "%cus", *sep);
			if (perf_guest) {
				ret += fprintf(fp, "%cguest sys", *sep);
				ret += fprintf(fp, "%cguest us", *sep);
			}
		} else {
			ret += fprintf(fp, "  sys  ");
			ret += fprintf(fp, "  us  ");
			if (perf_guest) {
				ret += fprintf(fp, "  guest sys  ");
				ret += fprintf(fp, "  guest us  ");
			}
		}
	}

714 715 716 717 718 719 720 721 722 723 724 725 726 727
	if (pair) {
		if (sep)
			ret += fprintf(fp, "%cDelta", *sep);
		else
			ret += fprintf(fp, "  Delta    ");

		if (show_displacement) {
			if (sep)
				ret += fprintf(fp, "%cDisplacement", *sep);
			else
				ret += fprintf(fp, " Displ");
		}
	}

728 729 730
	list_for_each_entry(se, &hist_entry__sort_list, list) {
		if (se->elide)
			continue;
731
		if (sep) {
732
			fprintf(fp, "%c%s", *sep, se->se_header);
733 734
			continue;
		}
735 736
		width = strlen(se->se_header);
		if (se->se_width) {
737 738
			if (symbol_conf.col_width_list_str) {
				if (col_width) {
739
					*se->se_width = atoi(col_width);
740 741 742 743 744
					col_width = strchr(col_width, ',');
					if (col_width)
						++col_width;
				}
			}
745
			width = *se->se_width = max(*se->se_width, width);
746
		}
747
		fprintf(fp, "  %*s", width, se->se_header);
748 749 750
	}
	fprintf(fp, "\n");

751
	if (sep)
752 753 754 755 756
		goto print_entries;

	fprintf(fp, "# ........");
	if (symbol_conf.show_nr_samples)
		fprintf(fp, " ..........");
757 758 759 760 761
	if (pair) {
		fprintf(fp, " ..........");
		if (show_displacement)
			fprintf(fp, " .....");
	}
762 763 764 765 766 767 768
	list_for_each_entry(se, &hist_entry__sort_list, list) {
		unsigned int i;

		if (se->elide)
			continue;

		fprintf(fp, "  ");
769 770
		if (se->se_width)
			width = *se->se_width;
771
		else
772
			width = strlen(se->se_header);
773 774 775 776
		for (i = 0; i < width; i++)
			fprintf(fp, ".");
	}

777
	fprintf(fp, "\n#\n");
778 779

print_entries:
780
	for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
781 782 783 784 785 786 787 788 789 790
		struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);

		if (show_displacement) {
			if (h->pair != NULL)
				displacement = ((long)h->pair->position -
					        (long)position);
			else
				displacement = 0;
			++position;
		}
791
		ret += hist_entry__fprintf(h, pair, show_displacement,
792
					   displacement, fp, self->stats.total_period);
793 794

		if (symbol_conf.use_callchain)
795
			ret += hist_entry__fprintf_callchain(h, fp, self->stats.total_period);
796

797
		if (h->ms.map == NULL && verbose > 1) {
798
			__map_groups__fprintf_maps(&h->thread->mg,
799
						   MAP__FUNCTION, verbose, fp);
800 801
			fprintf(fp, "%.10s end\n", graph_dotted_line);
		}
802 803 804 805 806 807
	}

	free(rem_sq_bracket);

	return ret;
}
808

809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
static void hists__remove_entry_filter(struct hists *self, struct hist_entry *h,
				       enum hist_filter filter)
{
	h->filtered &= ~(1 << filter);
	if (h->filtered)
		return;

	++self->nr_entries;
	self->stats.total_period += h->period;
	self->stats.nr_events[PERF_RECORD_SAMPLE] += h->nr_events;

	if (h->ms.sym && self->max_sym_namelen < h->ms.sym->namelen)
		self->max_sym_namelen = h->ms.sym->namelen;
}

824 825 826 827
void hists__filter_by_dso(struct hists *self, const struct dso *dso)
{
	struct rb_node *nd;

828
	self->nr_entries = self->stats.total_period = 0;
829
	self->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
830 831 832 833 834 835 836 837 838 839 840 841 842
	self->max_sym_namelen = 0;

	for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
		struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);

		if (symbol_conf.exclude_other && !h->parent)
			continue;

		if (dso != NULL && (h->ms.map == NULL || h->ms.map->dso != dso)) {
			h->filtered |= (1 << HIST_FILTER__DSO);
			continue;
		}

843
		hists__remove_entry_filter(self, h, HIST_FILTER__DSO);
844 845 846 847 848 849 850
	}
}

void hists__filter_by_thread(struct hists *self, const struct thread *thread)
{
	struct rb_node *nd;

851
	self->nr_entries = self->stats.total_period = 0;
852
	self->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
853 854 855 856 857 858 859 860 861
	self->max_sym_namelen = 0;

	for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
		struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);

		if (thread != NULL && h->thread != thread) {
			h->filtered |= (1 << HIST_FILTER__THREAD);
			continue;
		}
862 863

		hists__remove_entry_filter(self, h, HIST_FILTER__THREAD);
864 865
	}
}
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902

static int symbol__alloc_hist(struct symbol *self)
{
	struct sym_priv *priv = symbol__priv(self);
	const int size = (sizeof(*priv->hist) +
			  (self->end - self->start) * sizeof(u64));

	priv->hist = zalloc(size);
	return priv->hist == NULL ? -1 : 0;
}

int hist_entry__inc_addr_samples(struct hist_entry *self, u64 ip)
{
	unsigned int sym_size, offset;
	struct symbol *sym = self->ms.sym;
	struct sym_priv *priv;
	struct sym_hist *h;

	if (!sym || !self->ms.map)
		return 0;

	priv = symbol__priv(sym);
	if (priv->hist == NULL && symbol__alloc_hist(sym) < 0)
		return -ENOMEM;

	sym_size = sym->end - sym->start;
	offset = ip - sym->start;

	pr_debug3("%s: ip=%#Lx\n", __func__, self->ms.map->unmap_ip(self->ms.map, ip));

	if (offset >= sym_size)
		return 0;

	h = priv->hist;
	h->sum++;
	h->ip[offset]++;

903
	pr_debug3("%#Lx %s: period++ [ip: %#Lx, %#Lx] => %Ld\n", self->ms.sym->start,
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
		  self->ms.sym->name, ip, ip - self->ms.sym->start, h->ip[offset]);
	return 0;
}

static struct objdump_line *objdump_line__new(s64 offset, char *line)
{
	struct objdump_line *self = malloc(sizeof(*self));

	if (self != NULL) {
		self->offset = offset;
		self->line = line;
	}

	return self;
}

void objdump_line__free(struct objdump_line *self)
{
	free(self->line);
	free(self);
}

static void objdump__add_line(struct list_head *head, struct objdump_line *line)
{
	list_add_tail(&line->node, head);
}

struct objdump_line *objdump__get_next_ip_line(struct list_head *head,
					       struct objdump_line *pos)
{
	list_for_each_entry_continue(pos, head, node)
		if (pos->offset >= 0)
			return pos;

	return NULL;
}

static int hist_entry__parse_objdump_line(struct hist_entry *self, FILE *file,
					  struct list_head *head)
{
	struct symbol *sym = self->ms.sym;
	struct objdump_line *objdump_line;
	char *line = NULL, *tmp, *tmp2, *c;
	size_t line_len;
	s64 line_ip, offset = -1;

	if (getline(&line, &line_len, file) < 0)
		return -1;

	if (!line)
		return -1;

	while (line_len != 0 && isspace(line[line_len - 1]))
		line[--line_len] = '\0';

	c = strchr(line, '\n');
	if (c)
		*c = 0;

	line_ip = -1;

	/*
	 * Strip leading spaces:
	 */
	tmp = line;
	while (*tmp) {
		if (*tmp != ' ')
			break;
		tmp++;
	}

	if (*tmp) {
		/*
		 * Parse hexa addresses followed by ':'
		 */
		line_ip = strtoull(tmp, &tmp2, 16);
980
		if (*tmp2 != ':' || tmp == tmp2)
981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
			line_ip = -1;
	}

	if (line_ip != -1) {
		u64 start = map__rip_2objdump(self->ms.map, sym->start);
		offset = line_ip - start;
	}

	objdump_line = objdump_line__new(offset, line);
	if (objdump_line == NULL) {
		free(line);
		return -1;
	}
	objdump__add_line(head, objdump_line);

	return 0;
}

int hist_entry__annotate(struct hist_entry *self, struct list_head *head)
{
	struct symbol *sym = self->ms.sym;
	struct map *map = self->ms.map;
	struct dso *dso = map->dso;
1004
	char *filename = dso__build_id_filename(dso, NULL, 0);
1005
	bool free_filename = true;
1006 1007
	char command[PATH_MAX * 2];
	FILE *file;
1008
	int err = 0;
1009 1010
	u64 len;

1011 1012 1013 1014
	if (filename == NULL) {
		if (dso->has_build_id) {
			pr_err("Can't annotate %s: not enough memory\n",
			       sym->name);
1015
			return -ENOMEM;
1016
		}
1017 1018 1019 1020 1021 1022
		goto fallback;
	} else if (readlink(filename, command, sizeof(command)) < 0 ||
		   strstr(command, "[kernel.kallsyms]") ||
		   access(filename, R_OK)) {
		free(filename);
fallback:
1023
		/*
1024 1025
		 * If we don't have build-ids or the build-id file isn't in the
		 * cache, or is just a kallsyms file, well, lets hope that this
1026 1027 1028
		 * DSO is the same as when 'perf record' ran.
		 */
		filename = dso->long_name;
1029
		free_filename = false;
1030
	}
1031 1032

	if (dso->origin == DSO__ORIG_KERNEL) {
1033
		if (dso->annotate_warned)
1034
			goto out_free_filename;
1035
		err = -ENOENT;
1036 1037
		dso->annotate_warned = 1;
		pr_err("Can't annotate %s: No vmlinux file was found in the "
1038
		       "path\n", sym->name);
1039
		goto out_free_filename;
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
	}

	pr_debug("%s: filename=%s, sym=%s, start=%#Lx, end=%#Lx\n", __func__,
		 filename, sym->name, map->unmap_ip(map, sym->start),
		 map->unmap_ip(map, sym->end));

	len = sym->end - sym->start;

	pr_debug("annotating [%p] %30s : [%p] %30s\n",
		 dso, dso->long_name, sym, sym->name);

	snprintf(command, sizeof(command),
1052
		 "objdump --start-address=0x%016Lx --stop-address=0x%016Lx -dS -C %s|grep -v %s|expand",
1053 1054 1055 1056 1057 1058 1059 1060
		 map__rip_2objdump(map, sym->start),
		 map__rip_2objdump(map, sym->end),
		 filename, filename);

	pr_debug("Executing: %s\n", command);

	file = popen(command, "r");
	if (!file)
1061
		goto out_free_filename;
1062 1063 1064 1065 1066 1067

	while (!feof(file))
		if (hist_entry__parse_objdump_line(self, file, head) < 0)
			break;

	pclose(file);
1068
out_free_filename:
1069
	if (free_filename)
1070 1071
		free(filename);
	return err;
1072
}
1073 1074 1075

void hists__inc_nr_events(struct hists *self, u32 type)
{
1076 1077
	++self->stats.nr_events[0];
	++self->stats.nr_events[type];
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
}

size_t hists__fprintf_nr_events(struct hists *self, FILE *fp)
{
	int i;
	size_t ret = 0;

	for (i = 0; i < PERF_RECORD_HEADER_MAX; ++i) {
		if (!event__name[i])
			continue;
		ret += fprintf(fp, "%10s events: %10d\n",
			       event__name[i], self->stats.nr_events[i]);
	}

	return ret;
}