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

9 10 11 12
static bool hists__filter_entry_by_dso(struct hists *hists,
				       struct hist_entry *he);
static bool hists__filter_entry_by_thread(struct hists *hists,
					  struct hist_entry *he);
13 14
static bool hists__filter_entry_by_symbol(struct hists *hists,
					  struct hist_entry *he);
15

16 17 18 19
enum hist_filter {
	HIST_FILTER__DSO,
	HIST_FILTER__THREAD,
	HIST_FILTER__PARENT,
20
	HIST_FILTER__SYMBOL,
21 22
};

23 24
struct callchain_param	callchain_param = {
	.mode	= CHAIN_GRAPH_REL,
25 26
	.min_percent = 0.5,
	.order  = ORDER_CALLEE
27 28
};

29
u16 hists__col_len(struct hists *hists, enum hist_column col)
30
{
31
	return hists->col_len[col];
32 33
}

34
void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len)
35
{
36
	hists->col_len[col] = len;
37 38
}

39
bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len)
40
{
41 42
	if (len > hists__col_len(hists, col)) {
		hists__set_col_len(hists, col, len);
43 44 45 46 47
		return true;
	}
	return false;
}

48
void hists__reset_col_len(struct hists *hists)
49 50 51 52
{
	enum hist_column col;

	for (col = 0; col < HISTC_NR_COLS; ++col)
53
		hists__set_col_len(hists, col, 0);
54 55
}

56 57 58 59 60 61 62 63 64 65
static void hists__set_unres_dso_col_len(struct hists *hists, int dso)
{
	const unsigned int unresolved_col_width = BITS_PER_LONG / 4;

	if (hists__col_len(hists, dso) < unresolved_col_width &&
	    !symbol_conf.col_width_list_str && !symbol_conf.field_sep &&
	    !symbol_conf.dso_list)
		hists__set_col_len(hists, dso, unresolved_col_width);
}

66
void hists__calc_col_len(struct hists *hists, struct hist_entry *h)
67
{
68
	const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
69 70 71
	u16 len;

	if (h->ms.sym)
72 73 74
		hists__new_col_len(hists, HISTC_SYMBOL, h->ms.sym->namelen + 4);
	else
		hists__set_unres_dso_col_len(hists, HISTC_DSO);
75 76

	len = thread__comm_len(h->thread);
77 78
	if (hists__new_col_len(hists, HISTC_COMM, len))
		hists__set_col_len(hists, HISTC_THREAD, len + 6);
79 80 81

	if (h->ms.map) {
		len = dso__name_len(h->ms.map->dso);
82
		hists__new_col_len(hists, HISTC_DSO, len);
83
	}
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114

	if (h->branch_info) {
		int symlen;
		/*
		 * +4 accounts for '[x] ' priv level info
		 * +2 account of 0x prefix on raw addresses
		 */
		if (h->branch_info->from.sym) {
			symlen = (int)h->branch_info->from.sym->namelen + 4;
			hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);

			symlen = dso__name_len(h->branch_info->from.map->dso);
			hists__new_col_len(hists, HISTC_DSO_FROM, symlen);
		} else {
			symlen = unresolved_col_width + 4 + 2;
			hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
			hists__set_unres_dso_col_len(hists, HISTC_DSO_FROM);
		}

		if (h->branch_info->to.sym) {
			symlen = (int)h->branch_info->to.sym->namelen + 4;
			hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);

			symlen = dso__name_len(h->branch_info->to.map->dso);
			hists__new_col_len(hists, HISTC_DSO_TO, symlen);
		} else {
			symlen = unresolved_col_width + 4 + 2;
			hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
			hists__set_unres_dso_col_len(hists, HISTC_DSO_TO);
		}
	}
115 116
}

117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
void hists__output_recalc_col_len(struct hists *hists, int max_rows)
{
	struct rb_node *next = rb_first(&hists->entries);
	struct hist_entry *n;
	int row = 0;

	hists__reset_col_len(hists);

	while (next && row++ < max_rows) {
		n = rb_entry(next, struct hist_entry, rb_node);
		if (!n->filtered)
			hists__calc_col_len(hists, n);
		next = rb_next(&n->rb_node);
	}
}

133
static void hist_entry__add_cpumode_period(struct hist_entry *he,
134
					   unsigned int cpumode, u64 period)
135
{
136
	switch (cpumode) {
137
	case PERF_RECORD_MISC_KERNEL:
138
		he->period_sys += period;
139 140
		break;
	case PERF_RECORD_MISC_USER:
141
		he->period_us += period;
142 143
		break;
	case PERF_RECORD_MISC_GUEST_KERNEL:
144
		he->period_guest_sys += period;
145 146
		break;
	case PERF_RECORD_MISC_GUEST_USER:
147
		he->period_guest_us += period;
148 149 150 151 152 153
		break;
	default:
		break;
	}
}

154 155 156 157 158 159 160 161
static void hist_entry__decay(struct hist_entry *he)
{
	he->period = (he->period * 7) / 8;
	he->nr_events = (he->nr_events * 7) / 8;
}

static bool hists__decay_entry(struct hists *hists, struct hist_entry *he)
{
162 163 164
	u64 prev_period = he->period;

	if (prev_period == 0)
165
		return true;
166

167
	hist_entry__decay(he);
168 169 170 171

	if (!he->filtered)
		hists->stats.total_period -= prev_period - he->period;

172 173 174
	return he->period == 0;
}

175 176
static void __hists__decay_entries(struct hists *hists, bool zap_user,
				   bool zap_kernel, bool threaded)
177 178 179 180 181 182 183
{
	struct rb_node *next = rb_first(&hists->entries);
	struct hist_entry *n;

	while (next) {
		n = rb_entry(next, struct hist_entry, rb_node);
		next = rb_next(&n->rb_node);
184 185 186 187 188
		/*
		 * We may be annotating this, for instance, so keep it here in
		 * case some it gets new samples, we'll eventually free it when
		 * the user stops browsing and it agains gets fully decayed.
		 */
189 190 191 192
		if (((zap_user && n->level == '.') ||
		     (zap_kernel && n->level != '.') ||
		     hists__decay_entry(hists, n)) &&
		    !n->used) {
193 194
			rb_erase(&n->rb_node, &hists->entries);

195
			if (sort__need_collapse || threaded)
196 197 198 199 200 201 202 203
				rb_erase(&n->rb_node_in, &hists->entries_collapsed);

			hist_entry__free(n);
			--hists->nr_entries;
		}
	}
}

204
void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel)
205
{
206
	return __hists__decay_entries(hists, zap_user, zap_kernel, false);
207 208
}

209 210
void hists__decay_entries_threaded(struct hists *hists,
				   bool zap_user, bool zap_kernel)
211
{
212
	return __hists__decay_entries(hists, zap_user, zap_kernel, true);
213 214
}

215
/*
216
 * histogram, sorted on item, collects periods
217 218
 */

219 220
static struct hist_entry *hist_entry__new(struct hist_entry *template)
{
221
	size_t callchain_size = symbol_conf.use_callchain ? sizeof(struct callchain_root) : 0;
222
	struct hist_entry *he = malloc(sizeof(*he) + callchain_size);
223

224 225 226 227 228
	if (he != NULL) {
		*he = *template;
		he->nr_events = 1;
		if (he->ms.map)
			he->ms.map->referenced = true;
229
		if (symbol_conf.use_callchain)
230
			callchain_init(he->callchain);
231 232
	}

233
	return he;
234 235
}

236
static void hists__inc_nr_entries(struct hists *hists, struct hist_entry *h)
237
{
238
	if (!h->filtered) {
239 240
		hists__calc_col_len(hists, h);
		++hists->nr_entries;
241
		hists->stats.total_period += h->period;
242
	}
243 244
}

245 246 247 248 249 250 251
static u8 symbol__parent_filter(const struct symbol *parent)
{
	if (symbol_conf.exclude_other && parent == NULL)
		return 1 << HIST_FILTER__PARENT;
	return 0;
}

252 253
static struct hist_entry *add_hist_entry(struct hists *hists,
				      struct hist_entry *entry,
254
				      struct addr_location *al,
255
				      u64 period)
256
{
257
	struct rb_node **p;
258 259 260 261
	struct rb_node *parent = NULL;
	struct hist_entry *he;
	int cmp;

262 263 264 265
	pthread_mutex_lock(&hists->lock);

	p = &hists->entries_in->rb_node;

266 267
	while (*p != NULL) {
		parent = *p;
268
		he = rb_entry(parent, struct hist_entry, rb_node_in);
269

270
		cmp = hist_entry__cmp(entry, he);
271 272

		if (!cmp) {
273 274
			he->period += period;
			++he->nr_events;
275 276 277 278 279 280 281 282 283 284 285 286

			/* If the map of an existing hist_entry has
			 * become out-of-date due to an exec() or
			 * similar, update it.  Otherwise we will
			 * mis-adjust symbol addresses when computing
			 * the history counter to increment.
			 */
			if (he->ms.map != entry->ms.map) {
				he->ms.map = entry->ms.map;
				if (he->ms.map)
					he->ms.map->referenced = true;
			}
287
			goto out;
288 289 290 291 292 293 294 295
		}

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

296
	he = hist_entry__new(entry);
297
	if (!he)
298 299 300 301
		goto out_unlock;

	rb_link_node(&he->rb_node_in, parent, p);
	rb_insert_color(&he->rb_node_in, hists->entries_in);
302
out:
303
	hist_entry__add_cpumode_period(he, al->cpumode, period);
304 305
out_unlock:
	pthread_mutex_unlock(&hists->lock);
306 307 308
	return he;
}

309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
struct hist_entry *__hists__add_branch_entry(struct hists *self,
					     struct addr_location *al,
					     struct symbol *sym_parent,
					     struct branch_info *bi,
					     u64 period)
{
	struct hist_entry entry = {
		.thread	= al->thread,
		.ms = {
			.map	= bi->to.map,
			.sym	= bi->to.sym,
		},
		.cpu	= al->cpu,
		.ip	= bi->to.addr,
		.level	= al->level,
		.period	= period,
		.parent = sym_parent,
		.filtered = symbol__parent_filter(sym_parent),
		.branch_info = bi,
	};

	return add_hist_entry(self, &entry, al, period);
}

struct hist_entry *__hists__add_entry(struct hists *self,
				      struct addr_location *al,
				      struct symbol *sym_parent, u64 period)
{
	struct hist_entry entry = {
		.thread	= al->thread,
		.ms = {
			.map	= al->map,
			.sym	= al->sym,
		},
		.cpu	= al->cpu,
		.ip	= al->addr,
		.level	= al->level,
		.period	= period,
		.parent = sym_parent,
		.filtered = symbol__parent_filter(sym_parent),
	};

	return add_hist_entry(self, &entry, al, period);
}

354 355 356 357 358 359 360
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) {
361
		cmp = se->se_cmp(left, right);
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
		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 *);

378
		f = se->se_collapse ?: se->se_cmp;
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396

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

	return cmp;
}

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

/*
 * collapse the histogram
 */

397
static bool hists__collapse_insert_entry(struct hists *hists __maybe_unused,
398 399
					 struct rb_root *root,
					 struct hist_entry *he)
400
{
401
	struct rb_node **p = &root->rb_node;
402 403 404 405 406 407
	struct rb_node *parent = NULL;
	struct hist_entry *iter;
	int64_t cmp;

	while (*p != NULL) {
		parent = *p;
408
		iter = rb_entry(parent, struct hist_entry, rb_node_in);
409 410 411 412

		cmp = hist_entry__collapse(iter, he);

		if (!cmp) {
413 414 415 416 417 418 419
			iter->period		+= he->period;
			iter->period_sys	+= he->period_sys;
			iter->period_us		+= he->period_us;
			iter->period_guest_sys	+= he->period_guest_sys;
			iter->period_guest_us	+= he->period_guest_us;
			iter->nr_events		+= he->nr_events;

420
			if (symbol_conf.use_callchain) {
421 422 423
				callchain_cursor_reset(&callchain_cursor);
				callchain_merge(&callchain_cursor,
						iter->callchain,
424 425
						he->callchain);
			}
426
			hist_entry__free(he);
427
			return false;
428 429 430 431 432 433 434 435
		}

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

436 437
	rb_link_node(&he->rb_node_in, parent, p);
	rb_insert_color(&he->rb_node_in, root);
438
	return true;
439 440
}

441
static struct rb_root *hists__get_rotate_entries_in(struct hists *hists)
442
{
443 444 445 446 447 448 449 450 451 452 453 454 455
	struct rb_root *root;

	pthread_mutex_lock(&hists->lock);

	root = hists->entries_in;
	if (++hists->entries_in > &hists->entries_in_array[1])
		hists->entries_in = &hists->entries_in_array[0];

	pthread_mutex_unlock(&hists->lock);

	return root;
}

456 457 458 459
static void hists__apply_filters(struct hists *hists, struct hist_entry *he)
{
	hists__filter_entry_by_dso(hists, he);
	hists__filter_entry_by_thread(hists, he);
460
	hists__filter_entry_by_symbol(hists, he);
461 462
}

463 464 465
static void __hists__collapse_resort(struct hists *hists, bool threaded)
{
	struct rb_root *root;
466 467 468
	struct rb_node *next;
	struct hist_entry *n;

469
	if (!sort__need_collapse && !threaded)
470 471
		return;

472 473
	root = hists__get_rotate_entries_in(hists);
	next = rb_first(root);
474

475
	while (next) {
476 477
		n = rb_entry(next, struct hist_entry, rb_node_in);
		next = rb_next(&n->rb_node_in);
478

479
		rb_erase(&n->rb_node_in, root);
480 481 482 483 484 485 486 487
		if (hists__collapse_insert_entry(hists, &hists->entries_collapsed, n)) {
			/*
			 * If it wasn't combined with one of the entries already
			 * collapsed, we need to apply the filters that may have
			 * been set by, say, the hist_browser.
			 */
			hists__apply_filters(hists, n);
		}
488
	}
489
}
490

491 492 493 494 495 496 497 498
void hists__collapse_resort(struct hists *hists)
{
	return __hists__collapse_resort(hists, false);
}

void hists__collapse_resort_threaded(struct hists *hists)
{
	return __hists__collapse_resort(hists, true);
499 500 501
}

/*
502
 * reverse the map, sort on period.
503 504
 */

505 506 507
static void __hists__insert_output_entry(struct rb_root *entries,
					 struct hist_entry *he,
					 u64 min_callchain_hits)
508
{
509
	struct rb_node **p = &entries->rb_node;
510 511 512
	struct rb_node *parent = NULL;
	struct hist_entry *iter;

513
	if (symbol_conf.use_callchain)
514
		callchain_param.sort(&he->sorted_chain, he->callchain,
515 516 517 518 519 520
				      min_callchain_hits, &callchain_param);

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

521
		if (he->period > iter->period)
522 523 524 525 526 527
			p = &(*p)->rb_left;
		else
			p = &(*p)->rb_right;
	}

	rb_link_node(&he->rb_node, parent, p);
528
	rb_insert_color(&he->rb_node, entries);
529 530
}

531
static void __hists__output_resort(struct hists *hists, bool threaded)
532
{
533
	struct rb_root *root;
534 535 536 537
	struct rb_node *next;
	struct hist_entry *n;
	u64 min_callchain_hits;

538
	min_callchain_hits = hists->stats.total_period * (callchain_param.min_percent / 100);
539

540 541 542 543 544 545 546
	if (sort__need_collapse || threaded)
		root = &hists->entries_collapsed;
	else
		root = hists->entries_in;

	next = rb_first(root);
	hists->entries = RB_ROOT;
547

548
	hists->nr_entries = 0;
549
	hists->stats.total_period = 0;
550
	hists__reset_col_len(hists);
551

552
	while (next) {
553 554
		n = rb_entry(next, struct hist_entry, rb_node_in);
		next = rb_next(&n->rb_node_in);
555

556
		__hists__insert_output_entry(&hists->entries, n, min_callchain_hits);
557
		hists__inc_nr_entries(hists, n);
558
	}
559
}
560

561 562 563 564 565 566 567 568
void hists__output_resort(struct hists *hists)
{
	return __hists__output_resort(hists, false);
}

void hists__output_resort_threaded(struct hists *hists)
{
	return __hists__output_resort(hists, true);
569
}
570

571
static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h,
572 573 574 575 576 577
				       enum hist_filter filter)
{
	h->filtered &= ~(1 << filter);
	if (h->filtered)
		return;

578
	++hists->nr_entries;
579
	if (h->ms.unfolded)
580
		hists->nr_entries += h->nr_rows;
581
	h->row_offset = 0;
582 583
	hists->stats.total_period += h->period;
	hists->stats.nr_events[PERF_RECORD_SAMPLE] += h->nr_events;
584

585
	hists__calc_col_len(hists, h);
586 587
}

588 589 590 591 592 593 594 595 596 597 598 599 600

static bool hists__filter_entry_by_dso(struct hists *hists,
				       struct hist_entry *he)
{
	if (hists->dso_filter != NULL &&
	    (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) {
		he->filtered |= (1 << HIST_FILTER__DSO);
		return true;
	}

	return false;
}

601
void hists__filter_by_dso(struct hists *hists)
602 603 604
{
	struct rb_node *nd;

605 606 607
	hists->nr_entries = hists->stats.total_period = 0;
	hists->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
	hists__reset_col_len(hists);
608

609
	for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
610 611 612 613 614
		struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);

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

615
		if (hists__filter_entry_by_dso(hists, h))
616 617
			continue;

618
		hists__remove_entry_filter(hists, h, HIST_FILTER__DSO);
619 620 621
	}
}

622 623 624 625 626 627 628 629 630 631 632 633
static bool hists__filter_entry_by_thread(struct hists *hists,
					  struct hist_entry *he)
{
	if (hists->thread_filter != NULL &&
	    he->thread != hists->thread_filter) {
		he->filtered |= (1 << HIST_FILTER__THREAD);
		return true;
	}

	return false;
}

634
void hists__filter_by_thread(struct hists *hists)
635 636 637
{
	struct rb_node *nd;

638 639 640
	hists->nr_entries = hists->stats.total_period = 0;
	hists->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
	hists__reset_col_len(hists);
641

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

645
		if (hists__filter_entry_by_thread(hists, h))
646
			continue;
647

648
		hists__remove_entry_filter(hists, h, HIST_FILTER__THREAD);
649 650
	}
}
651

652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
static bool hists__filter_entry_by_symbol(struct hists *hists,
					  struct hist_entry *he)
{
	if (hists->symbol_filter_str != NULL &&
	    (!he->ms.sym || strstr(he->ms.sym->name,
				   hists->symbol_filter_str) == NULL)) {
		he->filtered |= (1 << HIST_FILTER__SYMBOL);
		return true;
	}

	return false;
}

void hists__filter_by_symbol(struct hists *hists)
{
	struct rb_node *nd;

	hists->nr_entries = hists->stats.total_period = 0;
	hists->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
	hists__reset_col_len(hists);

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

		if (hists__filter_entry_by_symbol(hists, h))
			continue;

		hists__remove_entry_filter(hists, h, HIST_FILTER__SYMBOL);
	}
}

683
int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 ip)
684
{
685
	return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip);
686 687
}

688
int hist_entry__annotate(struct hist_entry *he, size_t privsize)
689
{
690
	return symbol__annotate(he->ms.sym, he->ms.map, privsize);
691
}
692

693
void hists__inc_nr_events(struct hists *hists, u32 type)
694
{
695 696
	++hists->stats.nr_events[0];
	++hists->stats.nr_events[type];
697
}