perf tools: Fix column width setting on 'trace' sort key
[deliverable/linux.git] / tools / perf / util / hist.c
CommitLineData
8a0ecfb8 1#include "util.h"
598357eb 2#include "build-id.h"
3d1d07ec 3#include "hist.h"
4e4f06e4
ACM
4#include "session.h"
5#include "sort.h"
2a1731fb 6#include "evlist.h"
29d720ed 7#include "evsel.h"
69bcb019 8#include "annotate.h"
740b97f9 9#include "ui/progress.h"
9b33827d 10#include <math.h>
3d1d07ec 11
90cf1fb5
ACM
12static bool hists__filter_entry_by_dso(struct hists *hists,
13 struct hist_entry *he);
14static bool hists__filter_entry_by_thread(struct hists *hists,
15 struct hist_entry *he);
e94d53eb
NK
16static bool hists__filter_entry_by_symbol(struct hists *hists,
17 struct hist_entry *he);
21394d94
KL
18static bool hists__filter_entry_by_socket(struct hists *hists,
19 struct hist_entry *he);
90cf1fb5 20
42b28ac0 21u16 hists__col_len(struct hists *hists, enum hist_column col)
8a6c5b26 22{
42b28ac0 23 return hists->col_len[col];
8a6c5b26
ACM
24}
25
42b28ac0 26void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len)
8a6c5b26 27{
42b28ac0 28 hists->col_len[col] = len;
8a6c5b26
ACM
29}
30
42b28ac0 31bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len)
8a6c5b26 32{
42b28ac0
ACM
33 if (len > hists__col_len(hists, col)) {
34 hists__set_col_len(hists, col, len);
8a6c5b26
ACM
35 return true;
36 }
37 return false;
38}
39
7ccf4f90 40void hists__reset_col_len(struct hists *hists)
8a6c5b26
ACM
41{
42 enum hist_column col;
43
44 for (col = 0; col < HISTC_NR_COLS; ++col)
42b28ac0 45 hists__set_col_len(hists, col, 0);
8a6c5b26
ACM
46}
47
b5387528
RAV
48static void hists__set_unres_dso_col_len(struct hists *hists, int dso)
49{
50 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
51
52 if (hists__col_len(hists, dso) < unresolved_col_width &&
53 !symbol_conf.col_width_list_str && !symbol_conf.field_sep &&
54 !symbol_conf.dso_list)
55 hists__set_col_len(hists, dso, unresolved_col_width);
56}
57
7ccf4f90 58void hists__calc_col_len(struct hists *hists, struct hist_entry *h)
8a6c5b26 59{
b5387528 60 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
98a3b32c 61 int symlen;
8a6c5b26
ACM
62 u16 len;
63
ded19d57
NK
64 /*
65 * +4 accounts for '[x] ' priv level info
66 * +2 accounts for 0x prefix on raw addresses
67 * +3 accounts for ' y ' symtab origin info
68 */
69 if (h->ms.sym) {
70 symlen = h->ms.sym->namelen + 4;
71 if (verbose)
72 symlen += BITS_PER_LONG / 4 + 2 + 3;
73 hists__new_col_len(hists, HISTC_SYMBOL, symlen);
74 } else {
98a3b32c
SE
75 symlen = unresolved_col_width + 4 + 2;
76 hists__new_col_len(hists, HISTC_SYMBOL, symlen);
b5387528 77 hists__set_unres_dso_col_len(hists, HISTC_DSO);
98a3b32c 78 }
8a6c5b26
ACM
79
80 len = thread__comm_len(h->thread);
42b28ac0
ACM
81 if (hists__new_col_len(hists, HISTC_COMM, len))
82 hists__set_col_len(hists, HISTC_THREAD, len + 6);
8a6c5b26
ACM
83
84 if (h->ms.map) {
85 len = dso__name_len(h->ms.map->dso);
42b28ac0 86 hists__new_col_len(hists, HISTC_DSO, len);
8a6c5b26 87 }
b5387528 88
cb993744
NK
89 if (h->parent)
90 hists__new_col_len(hists, HISTC_PARENT, h->parent->namelen);
91
b5387528 92 if (h->branch_info) {
b5387528
RAV
93 if (h->branch_info->from.sym) {
94 symlen = (int)h->branch_info->from.sym->namelen + 4;
ded19d57
NK
95 if (verbose)
96 symlen += BITS_PER_LONG / 4 + 2 + 3;
b5387528
RAV
97 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
98
99 symlen = dso__name_len(h->branch_info->from.map->dso);
100 hists__new_col_len(hists, HISTC_DSO_FROM, symlen);
101 } else {
102 symlen = unresolved_col_width + 4 + 2;
103 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
104 hists__set_unres_dso_col_len(hists, HISTC_DSO_FROM);
105 }
106
107 if (h->branch_info->to.sym) {
108 symlen = (int)h->branch_info->to.sym->namelen + 4;
ded19d57
NK
109 if (verbose)
110 symlen += BITS_PER_LONG / 4 + 2 + 3;
b5387528
RAV
111 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
112
113 symlen = dso__name_len(h->branch_info->to.map->dso);
114 hists__new_col_len(hists, HISTC_DSO_TO, symlen);
115 } else {
116 symlen = unresolved_col_width + 4 + 2;
117 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
118 hists__set_unres_dso_col_len(hists, HISTC_DSO_TO);
119 }
120 }
98a3b32c
SE
121
122 if (h->mem_info) {
98a3b32c
SE
123 if (h->mem_info->daddr.sym) {
124 symlen = (int)h->mem_info->daddr.sym->namelen + 4
125 + unresolved_col_width + 2;
126 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL,
127 symlen);
9b32ba71
DZ
128 hists__new_col_len(hists, HISTC_MEM_DCACHELINE,
129 symlen + 1);
98a3b32c
SE
130 } else {
131 symlen = unresolved_col_width + 4 + 2;
132 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL,
133 symlen);
0805909f
JO
134 hists__new_col_len(hists, HISTC_MEM_DCACHELINE,
135 symlen);
98a3b32c 136 }
b34b3bf0
JO
137
138 if (h->mem_info->iaddr.sym) {
139 symlen = (int)h->mem_info->iaddr.sym->namelen + 4
140 + unresolved_col_width + 2;
141 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL,
142 symlen);
143 } else {
144 symlen = unresolved_col_width + 4 + 2;
145 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL,
146 symlen);
147 }
148
98a3b32c
SE
149 if (h->mem_info->daddr.map) {
150 symlen = dso__name_len(h->mem_info->daddr.map->dso);
151 hists__new_col_len(hists, HISTC_MEM_DADDR_DSO,
152 symlen);
153 } else {
154 symlen = unresolved_col_width + 4 + 2;
155 hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO);
156 }
157 } else {
158 symlen = unresolved_col_width + 4 + 2;
159 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL, symlen);
b34b3bf0 160 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL, symlen);
98a3b32c
SE
161 hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO);
162 }
163
a4978eca 164 hists__new_col_len(hists, HISTC_CPU, 3);
2e7ea3ab 165 hists__new_col_len(hists, HISTC_SOCKET, 6);
98a3b32c
SE
166 hists__new_col_len(hists, HISTC_MEM_LOCKED, 6);
167 hists__new_col_len(hists, HISTC_MEM_TLB, 22);
168 hists__new_col_len(hists, HISTC_MEM_SNOOP, 12);
169 hists__new_col_len(hists, HISTC_MEM_LVL, 21 + 3);
170 hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
171 hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
475eeab9 172
e8e6d37e
ACM
173 if (h->srcline)
174 hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
175
31191a85
AK
176 if (h->srcfile)
177 hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
178
475eeab9
AK
179 if (h->transaction)
180 hists__new_col_len(hists, HISTC_TRANSACTION,
181 hist_entry__transaction_len());
0c0af78d
NK
182
183 if (h->trace_output)
184 hists__new_col_len(hists, HISTC_TRACE, strlen(h->trace_output));
8a6c5b26
ACM
185}
186
7ccf4f90
NK
187void hists__output_recalc_col_len(struct hists *hists, int max_rows)
188{
189 struct rb_node *next = rb_first(&hists->entries);
190 struct hist_entry *n;
191 int row = 0;
192
193 hists__reset_col_len(hists);
194
195 while (next && row++ < max_rows) {
196 n = rb_entry(next, struct hist_entry, rb_node);
197 if (!n->filtered)
198 hists__calc_col_len(hists, n);
199 next = rb_next(&n->rb_node);
200 }
201}
202
f39056f9
NK
203static void he_stat__add_cpumode_period(struct he_stat *he_stat,
204 unsigned int cpumode, u64 period)
a1645ce1 205{
28e2a106 206 switch (cpumode) {
a1645ce1 207 case PERF_RECORD_MISC_KERNEL:
f39056f9 208 he_stat->period_sys += period;
a1645ce1
ZY
209 break;
210 case PERF_RECORD_MISC_USER:
f39056f9 211 he_stat->period_us += period;
a1645ce1
ZY
212 break;
213 case PERF_RECORD_MISC_GUEST_KERNEL:
f39056f9 214 he_stat->period_guest_sys += period;
a1645ce1
ZY
215 break;
216 case PERF_RECORD_MISC_GUEST_USER:
f39056f9 217 he_stat->period_guest_us += period;
a1645ce1
ZY
218 break;
219 default:
220 break;
221 }
222}
223
05484298
AK
224static void he_stat__add_period(struct he_stat *he_stat, u64 period,
225 u64 weight)
139c0815 226{
98a3b32c 227
139c0815 228 he_stat->period += period;
05484298 229 he_stat->weight += weight;
139c0815
NK
230 he_stat->nr_events += 1;
231}
232
233static void he_stat__add_stat(struct he_stat *dest, struct he_stat *src)
234{
235 dest->period += src->period;
236 dest->period_sys += src->period_sys;
237 dest->period_us += src->period_us;
238 dest->period_guest_sys += src->period_guest_sys;
239 dest->period_guest_us += src->period_guest_us;
240 dest->nr_events += src->nr_events;
05484298 241 dest->weight += src->weight;
139c0815
NK
242}
243
f39056f9 244static void he_stat__decay(struct he_stat *he_stat)
ab81f3fd 245{
f39056f9
NK
246 he_stat->period = (he_stat->period * 7) / 8;
247 he_stat->nr_events = (he_stat->nr_events * 7) / 8;
05484298 248 /* XXX need decay for weight too? */
ab81f3fd
ACM
249}
250
251static bool hists__decay_entry(struct hists *hists, struct hist_entry *he)
252{
b24c28f7 253 u64 prev_period = he->stat.period;
3186b681 254 u64 diff;
c64550cf
ACM
255
256 if (prev_period == 0)
df71d95f 257 return true;
c64550cf 258
f39056f9 259 he_stat__decay(&he->stat);
f8be1c8c
NK
260 if (symbol_conf.cumulate_callchain)
261 he_stat__decay(he->stat_acc);
42b276a2 262 decay_callchain(he->callchain);
c64550cf 263
3186b681
NK
264 diff = prev_period - he->stat.period;
265
266 hists->stats.total_period -= diff;
c64550cf 267 if (!he->filtered)
3186b681 268 hists->stats.total_non_filtered_period -= diff;
c64550cf 269
b24c28f7 270 return he->stat.period == 0;
ab81f3fd
ACM
271}
272
956b65e1
ACM
273static void hists__delete_entry(struct hists *hists, struct hist_entry *he)
274{
275 rb_erase(&he->rb_node, &hists->entries);
276
277 if (sort__need_collapse)
278 rb_erase(&he->rb_node_in, &hists->entries_collapsed);
61fa0e94
NK
279 else
280 rb_erase(&he->rb_node_in, hists->entries_in);
956b65e1
ACM
281
282 --hists->nr_entries;
283 if (!he->filtered)
284 --hists->nr_non_filtered_entries;
285
286 hist_entry__delete(he);
287}
288
3a5714f8 289void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel)
ab81f3fd
ACM
290{
291 struct rb_node *next = rb_first(&hists->entries);
292 struct hist_entry *n;
293
294 while (next) {
295 n = rb_entry(next, struct hist_entry, rb_node);
296 next = rb_next(&n->rb_node);
b079d4e9
ACM
297 if (((zap_user && n->level == '.') ||
298 (zap_kernel && n->level != '.') ||
4c47f4fc 299 hists__decay_entry(hists, n))) {
956b65e1 300 hists__delete_entry(hists, n);
ab81f3fd
ACM
301 }
302 }
303}
304
701937bd
NK
305void hists__delete_entries(struct hists *hists)
306{
307 struct rb_node *next = rb_first(&hists->entries);
308 struct hist_entry *n;
309
310 while (next) {
311 n = rb_entry(next, struct hist_entry, rb_node);
312 next = rb_next(&n->rb_node);
313
956b65e1 314 hists__delete_entry(hists, n);
701937bd
NK
315 }
316}
317
3d1d07ec 318/*
c82ee828 319 * histogram, sorted on item, collects periods
3d1d07ec
JK
320 */
321
a0b51af3
NK
322static struct hist_entry *hist_entry__new(struct hist_entry *template,
323 bool sample_self)
28e2a106 324{
f8be1c8c
NK
325 size_t callchain_size = 0;
326 struct hist_entry *he;
327
82aa019e 328 if (symbol_conf.use_callchain)
f8be1c8c
NK
329 callchain_size = sizeof(struct callchain_root);
330
331 he = zalloc(sizeof(*he) + callchain_size);
28e2a106 332
12c14278
ACM
333 if (he != NULL) {
334 *he = *template;
c4b35351 335
f8be1c8c
NK
336 if (symbol_conf.cumulate_callchain) {
337 he->stat_acc = malloc(sizeof(he->stat));
338 if (he->stat_acc == NULL) {
339 free(he);
340 return NULL;
341 }
342 memcpy(he->stat_acc, &he->stat, sizeof(he->stat));
a0b51af3
NK
343 if (!sample_self)
344 memset(&he->stat, 0, sizeof(he->stat));
f8be1c8c
NK
345 }
346
5c24b67a 347 map__get(he->ms.map);
3cf0cb1f
SE
348
349 if (he->branch_info) {
26353a61
NK
350 /*
351 * This branch info is (a part of) allocated from
644f2df2 352 * sample__resolve_bstack() and will be freed after
26353a61
NK
353 * adding new entries. So we need to save a copy.
354 */
355 he->branch_info = malloc(sizeof(*he->branch_info));
356 if (he->branch_info == NULL) {
5c24b67a 357 map__zput(he->ms.map);
f8be1c8c 358 free(he->stat_acc);
26353a61
NK
359 free(he);
360 return NULL;
361 }
362
363 memcpy(he->branch_info, template->branch_info,
364 sizeof(*he->branch_info));
365
5c24b67a
ACM
366 map__get(he->branch_info->from.map);
367 map__get(he->branch_info->to.map);
3cf0cb1f
SE
368 }
369
98a3b32c 370 if (he->mem_info) {
5c24b67a
ACM
371 map__get(he->mem_info->iaddr.map);
372 map__get(he->mem_info->daddr.map);
98a3b32c
SE
373 }
374
28e2a106 375 if (symbol_conf.use_callchain)
12c14278 376 callchain_init(he->callchain);
b821c732 377
72392834
NK
378 if (he->raw_data) {
379 he->raw_data = memdup(he->raw_data, he->raw_size);
380
381 if (he->raw_data == NULL) {
382 map__put(he->ms.map);
383 if (he->branch_info) {
384 map__put(he->branch_info->from.map);
385 map__put(he->branch_info->to.map);
386 free(he->branch_info);
387 }
388 if (he->mem_info) {
389 map__put(he->mem_info->iaddr.map);
390 map__put(he->mem_info->daddr.map);
391 }
392 free(he->stat_acc);
393 free(he);
394 return NULL;
395 }
396 }
b821c732 397 INIT_LIST_HEAD(&he->pairs.node);
f3b623b8 398 thread__get(he->thread);
28e2a106
ACM
399 }
400
12c14278 401 return he;
28e2a106
ACM
402}
403
7a007ca9
ACM
404static u8 symbol__parent_filter(const struct symbol *parent)
405{
406 if (symbol_conf.exclude_other && parent == NULL)
407 return 1 << HIST_FILTER__PARENT;
408 return 0;
409}
410
467ef10c
NK
411static void hist_entry__add_callchain_period(struct hist_entry *he, u64 period)
412{
413 if (!symbol_conf.use_callchain)
414 return;
415
416 he->hists->callchain_period += period;
417 if (!he->filtered)
418 he->hists->callchain_non_filtered_period += period;
419}
420
e7e0efcd
ACM
421static struct hist_entry *hists__findnew_entry(struct hists *hists,
422 struct hist_entry *entry,
423 struct addr_location *al,
424 bool sample_self)
9735abf1 425{
1980c2eb 426 struct rb_node **p;
9735abf1
ACM
427 struct rb_node *parent = NULL;
428 struct hist_entry *he;
354cc40e 429 int64_t cmp;
f1cbf78d
NK
430 u64 period = entry->stat.period;
431 u64 weight = entry->stat.weight;
9735abf1 432
1980c2eb
ACM
433 p = &hists->entries_in->rb_node;
434
9735abf1
ACM
435 while (*p != NULL) {
436 parent = *p;
1980c2eb 437 he = rb_entry(parent, struct hist_entry, rb_node_in);
9735abf1 438
9afcf930
NK
439 /*
440 * Make sure that it receives arguments in a same order as
441 * hist_entry__collapse() so that we can use an appropriate
442 * function when searching an entry regardless which sort
443 * keys were used.
444 */
445 cmp = hist_entry__cmp(he, entry);
9735abf1
ACM
446
447 if (!cmp) {
0f58474e 448 if (sample_self) {
a0b51af3 449 he_stat__add_period(&he->stat, period, weight);
467ef10c 450 hist_entry__add_callchain_period(he, period);
0f58474e 451 }
f8be1c8c
NK
452 if (symbol_conf.cumulate_callchain)
453 he_stat__add_period(he->stat_acc, period, weight);
63fa471d 454
ceb2acbc 455 /*
e80faac0 456 * This mem info was allocated from sample__resolve_mem
ceb2acbc
NK
457 * and will not be used anymore.
458 */
74cf249d 459 zfree(&entry->mem_info);
ceb2acbc 460
63fa471d
DM
461 /* If the map of an existing hist_entry has
462 * become out-of-date due to an exec() or
463 * similar, update it. Otherwise we will
464 * mis-adjust symbol addresses when computing
465 * the history counter to increment.
466 */
467 if (he->ms.map != entry->ms.map) {
5c24b67a
ACM
468 map__put(he->ms.map);
469 he->ms.map = map__get(entry->ms.map);
63fa471d 470 }
28e2a106 471 goto out;
9735abf1
ACM
472 }
473
474 if (cmp < 0)
475 p = &(*p)->rb_left;
476 else
477 p = &(*p)->rb_right;
478 }
479
a0b51af3 480 he = hist_entry__new(entry, sample_self);
9735abf1 481 if (!he)
27a0dcb7 482 return NULL;
1980c2eb 483
0f58474e 484 if (sample_self)
467ef10c
NK
485 hist_entry__add_callchain_period(he, period);
486 hists->nr_entries++;
590cd344 487
1980c2eb
ACM
488 rb_link_node(&he->rb_node_in, parent, p);
489 rb_insert_color(&he->rb_node_in, hists->entries_in);
28e2a106 490out:
a0b51af3
NK
491 if (sample_self)
492 he_stat__add_cpumode_period(&he->stat, al->cpumode, period);
f8be1c8c
NK
493 if (symbol_conf.cumulate_callchain)
494 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period);
9735abf1
ACM
495 return he;
496}
497
c824c433 498struct hist_entry *__hists__add_entry(struct hists *hists,
b5387528 499 struct addr_location *al,
41a4e6e2
NK
500 struct symbol *sym_parent,
501 struct branch_info *bi,
502 struct mem_info *mi,
fd36f3dd 503 struct perf_sample *sample,
a0b51af3 504 bool sample_self)
b5387528
RAV
505{
506 struct hist_entry entry = {
507 .thread = al->thread,
4dfced35 508 .comm = thread__comm(al->thread),
b5387528
RAV
509 .ms = {
510 .map = al->map,
511 .sym = al->sym,
512 },
0c4c4deb 513 .socket = al->socket,
7365be55
DZ
514 .cpu = al->cpu,
515 .cpumode = al->cpumode,
516 .ip = al->addr,
517 .level = al->level,
b24c28f7 518 .stat = {
c4b35351 519 .nr_events = 1,
fd36f3dd
NK
520 .period = sample->period,
521 .weight = sample->weight,
b24c28f7 522 },
b5387528 523 .parent = sym_parent,
2c86c7ca 524 .filtered = symbol__parent_filter(sym_parent) | al->filtered,
c824c433 525 .hists = hists,
41a4e6e2
NK
526 .branch_info = bi,
527 .mem_info = mi,
fd36f3dd 528 .transaction = sample->transaction,
72392834
NK
529 .raw_data = sample->raw_data,
530 .raw_size = sample->raw_size,
b5387528
RAV
531 };
532
e7e0efcd 533 return hists__findnew_entry(hists, &entry, al, sample_self);
b5387528
RAV
534}
535
69bcb019
NK
536static int
537iter_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
538 struct addr_location *al __maybe_unused)
539{
540 return 0;
541}
542
543static int
544iter_add_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
545 struct addr_location *al __maybe_unused)
546{
547 return 0;
548}
549
550static int
551iter_prepare_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
552{
553 struct perf_sample *sample = iter->sample;
554 struct mem_info *mi;
555
556 mi = sample__resolve_mem(sample, al);
557 if (mi == NULL)
558 return -ENOMEM;
559
560 iter->priv = mi;
561 return 0;
562}
563
564static int
565iter_add_single_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
566{
567 u64 cost;
568 struct mem_info *mi = iter->priv;
4ea062ed 569 struct hists *hists = evsel__hists(iter->evsel);
fd36f3dd 570 struct perf_sample *sample = iter->sample;
69bcb019
NK
571 struct hist_entry *he;
572
573 if (mi == NULL)
574 return -EINVAL;
575
fd36f3dd 576 cost = sample->weight;
69bcb019
NK
577 if (!cost)
578 cost = 1;
579
580 /*
581 * must pass period=weight in order to get the correct
582 * sorting from hists__collapse_resort() which is solely
583 * based on periods. We want sorting be done on nr_events * weight
584 * and this is indirectly achieved by passing period=weight here
585 * and the he_stat__add_period() function.
586 */
fd36f3dd
NK
587 sample->period = cost;
588
4ea062ed 589 he = __hists__add_entry(hists, al, iter->parent, NULL, mi,
fd36f3dd 590 sample, true);
69bcb019
NK
591 if (!he)
592 return -ENOMEM;
593
594 iter->he = he;
595 return 0;
596}
597
598static int
9d3c02d7
NK
599iter_finish_mem_entry(struct hist_entry_iter *iter,
600 struct addr_location *al __maybe_unused)
69bcb019
NK
601{
602 struct perf_evsel *evsel = iter->evsel;
4ea062ed 603 struct hists *hists = evsel__hists(evsel);
69bcb019 604 struct hist_entry *he = iter->he;
69bcb019
NK
605 int err = -EINVAL;
606
607 if (he == NULL)
608 goto out;
609
4ea062ed 610 hists__inc_nr_samples(hists, he->filtered);
69bcb019
NK
611
612 err = hist_entry__append_callchain(he, iter->sample);
613
614out:
615 /*
e7e0efcd
ACM
616 * We don't need to free iter->priv (mem_info) here since the mem info
617 * was either already freed in hists__findnew_entry() or passed to a
618 * new hist entry by hist_entry__new().
69bcb019
NK
619 */
620 iter->priv = NULL;
621
622 iter->he = NULL;
623 return err;
624}
625
626static int
627iter_prepare_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
628{
629 struct branch_info *bi;
630 struct perf_sample *sample = iter->sample;
631
632 bi = sample__resolve_bstack(sample, al);
633 if (!bi)
634 return -ENOMEM;
635
636 iter->curr = 0;
637 iter->total = sample->branch_stack->nr;
638
639 iter->priv = bi;
640 return 0;
641}
642
643static int
644iter_add_single_branch_entry(struct hist_entry_iter *iter __maybe_unused,
645 struct addr_location *al __maybe_unused)
646{
9d3c02d7
NK
647 /* to avoid calling callback function */
648 iter->he = NULL;
649
69bcb019
NK
650 return 0;
651}
652
653static int
654iter_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
655{
656 struct branch_info *bi = iter->priv;
657 int i = iter->curr;
658
659 if (bi == NULL)
660 return 0;
661
662 if (iter->curr >= iter->total)
663 return 0;
664
665 al->map = bi[i].to.map;
666 al->sym = bi[i].to.sym;
667 al->addr = bi[i].to.addr;
668 return 1;
669}
670
671static int
672iter_add_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
673{
9d3c02d7 674 struct branch_info *bi;
69bcb019 675 struct perf_evsel *evsel = iter->evsel;
4ea062ed 676 struct hists *hists = evsel__hists(evsel);
fd36f3dd 677 struct perf_sample *sample = iter->sample;
69bcb019
NK
678 struct hist_entry *he = NULL;
679 int i = iter->curr;
680 int err = 0;
681
682 bi = iter->priv;
683
684 if (iter->hide_unresolved && !(bi[i].from.sym && bi[i].to.sym))
685 goto out;
686
687 /*
688 * The report shows the percentage of total branches captured
689 * and not events sampled. Thus we use a pseudo period of 1.
690 */
fd36f3dd
NK
691 sample->period = 1;
692 sample->weight = bi->flags.cycles ? bi->flags.cycles : 1;
693
4ea062ed 694 he = __hists__add_entry(hists, al, iter->parent, &bi[i], NULL,
fd36f3dd 695 sample, true);
69bcb019
NK
696 if (he == NULL)
697 return -ENOMEM;
698
4ea062ed 699 hists__inc_nr_samples(hists, he->filtered);
69bcb019
NK
700
701out:
702 iter->he = he;
703 iter->curr++;
704 return err;
705}
706
707static int
708iter_finish_branch_entry(struct hist_entry_iter *iter,
709 struct addr_location *al __maybe_unused)
710{
711 zfree(&iter->priv);
712 iter->he = NULL;
713
714 return iter->curr >= iter->total ? 0 : -1;
715}
716
717static int
718iter_prepare_normal_entry(struct hist_entry_iter *iter __maybe_unused,
719 struct addr_location *al __maybe_unused)
720{
721 return 0;
722}
723
724static int
725iter_add_single_normal_entry(struct hist_entry_iter *iter, struct addr_location *al)
726{
727 struct perf_evsel *evsel = iter->evsel;
728 struct perf_sample *sample = iter->sample;
729 struct hist_entry *he;
730
4ea062ed 731 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
fd36f3dd 732 sample, true);
69bcb019
NK
733 if (he == NULL)
734 return -ENOMEM;
735
736 iter->he = he;
737 return 0;
738}
739
740static int
9d3c02d7
NK
741iter_finish_normal_entry(struct hist_entry_iter *iter,
742 struct addr_location *al __maybe_unused)
69bcb019 743{
69bcb019
NK
744 struct hist_entry *he = iter->he;
745 struct perf_evsel *evsel = iter->evsel;
746 struct perf_sample *sample = iter->sample;
747
748 if (he == NULL)
749 return 0;
750
751 iter->he = NULL;
752
4ea062ed 753 hists__inc_nr_samples(evsel__hists(evsel), he->filtered);
69bcb019
NK
754
755 return hist_entry__append_callchain(he, sample);
756}
757
7a13aa28 758static int
96b40f3c 759iter_prepare_cumulative_entry(struct hist_entry_iter *iter,
7a13aa28
NK
760 struct addr_location *al __maybe_unused)
761{
b4d3c8bd
NK
762 struct hist_entry **he_cache;
763
7a13aa28 764 callchain_cursor_commit(&callchain_cursor);
b4d3c8bd
NK
765
766 /*
767 * This is for detecting cycles or recursions so that they're
768 * cumulated only one time to prevent entries more than 100%
769 * overhead.
770 */
96b40f3c 771 he_cache = malloc(sizeof(*he_cache) * (iter->max_stack + 1));
b4d3c8bd
NK
772 if (he_cache == NULL)
773 return -ENOMEM;
774
775 iter->priv = he_cache;
776 iter->curr = 0;
777
7a13aa28
NK
778 return 0;
779}
780
781static int
782iter_add_single_cumulative_entry(struct hist_entry_iter *iter,
783 struct addr_location *al)
784{
785 struct perf_evsel *evsel = iter->evsel;
4ea062ed 786 struct hists *hists = evsel__hists(evsel);
7a13aa28 787 struct perf_sample *sample = iter->sample;
b4d3c8bd 788 struct hist_entry **he_cache = iter->priv;
7a13aa28
NK
789 struct hist_entry *he;
790 int err = 0;
791
4ea062ed 792 he = __hists__add_entry(hists, al, iter->parent, NULL, NULL,
fd36f3dd 793 sample, true);
7a13aa28
NK
794 if (he == NULL)
795 return -ENOMEM;
796
797 iter->he = he;
b4d3c8bd 798 he_cache[iter->curr++] = he;
7a13aa28 799
82aa019e 800 hist_entry__append_callchain(he, sample);
be7f855a
NK
801
802 /*
803 * We need to re-initialize the cursor since callchain_append()
804 * advanced the cursor to the end.
805 */
806 callchain_cursor_commit(&callchain_cursor);
807
4ea062ed 808 hists__inc_nr_samples(hists, he->filtered);
7a13aa28
NK
809
810 return err;
811}
812
813static int
814iter_next_cumulative_entry(struct hist_entry_iter *iter,
815 struct addr_location *al)
816{
817 struct callchain_cursor_node *node;
818
819 node = callchain_cursor_current(&callchain_cursor);
820 if (node == NULL)
821 return 0;
822
c7405d85 823 return fill_callchain_info(al, node, iter->hide_unresolved);
7a13aa28
NK
824}
825
826static int
827iter_add_next_cumulative_entry(struct hist_entry_iter *iter,
828 struct addr_location *al)
829{
830 struct perf_evsel *evsel = iter->evsel;
831 struct perf_sample *sample = iter->sample;
b4d3c8bd 832 struct hist_entry **he_cache = iter->priv;
7a13aa28 833 struct hist_entry *he;
b4d3c8bd 834 struct hist_entry he_tmp = {
5cef8976 835 .hists = evsel__hists(evsel),
b4d3c8bd
NK
836 .cpu = al->cpu,
837 .thread = al->thread,
838 .comm = thread__comm(al->thread),
839 .ip = al->addr,
840 .ms = {
841 .map = al->map,
842 .sym = al->sym,
843 },
844 .parent = iter->parent,
72392834
NK
845 .raw_data = sample->raw_data,
846 .raw_size = sample->raw_size,
b4d3c8bd
NK
847 };
848 int i;
be7f855a
NK
849 struct callchain_cursor cursor;
850
851 callchain_cursor_snapshot(&cursor, &callchain_cursor);
852
853 callchain_cursor_advance(&callchain_cursor);
b4d3c8bd
NK
854
855 /*
856 * Check if there's duplicate entries in the callchain.
857 * It's possible that it has cycles or recursive calls.
858 */
859 for (i = 0; i < iter->curr; i++) {
9d3c02d7
NK
860 if (hist_entry__cmp(he_cache[i], &he_tmp) == 0) {
861 /* to avoid calling callback function */
862 iter->he = NULL;
b4d3c8bd 863 return 0;
9d3c02d7 864 }
b4d3c8bd 865 }
7a13aa28 866
4ea062ed 867 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
fd36f3dd 868 sample, false);
7a13aa28
NK
869 if (he == NULL)
870 return -ENOMEM;
871
872 iter->he = he;
b4d3c8bd 873 he_cache[iter->curr++] = he;
7a13aa28 874
82aa019e
NK
875 if (symbol_conf.use_callchain)
876 callchain_append(he->callchain, &cursor, sample->period);
7a13aa28
NK
877 return 0;
878}
879
880static int
881iter_finish_cumulative_entry(struct hist_entry_iter *iter,
882 struct addr_location *al __maybe_unused)
883{
b4d3c8bd 884 zfree(&iter->priv);
7a13aa28 885 iter->he = NULL;
b4d3c8bd 886
7a13aa28
NK
887 return 0;
888}
889
69bcb019
NK
890const struct hist_iter_ops hist_iter_mem = {
891 .prepare_entry = iter_prepare_mem_entry,
892 .add_single_entry = iter_add_single_mem_entry,
893 .next_entry = iter_next_nop_entry,
894 .add_next_entry = iter_add_next_nop_entry,
895 .finish_entry = iter_finish_mem_entry,
896};
897
898const struct hist_iter_ops hist_iter_branch = {
899 .prepare_entry = iter_prepare_branch_entry,
900 .add_single_entry = iter_add_single_branch_entry,
901 .next_entry = iter_next_branch_entry,
902 .add_next_entry = iter_add_next_branch_entry,
903 .finish_entry = iter_finish_branch_entry,
904};
905
906const struct hist_iter_ops hist_iter_normal = {
907 .prepare_entry = iter_prepare_normal_entry,
908 .add_single_entry = iter_add_single_normal_entry,
909 .next_entry = iter_next_nop_entry,
910 .add_next_entry = iter_add_next_nop_entry,
911 .finish_entry = iter_finish_normal_entry,
912};
913
7a13aa28
NK
914const struct hist_iter_ops hist_iter_cumulative = {
915 .prepare_entry = iter_prepare_cumulative_entry,
916 .add_single_entry = iter_add_single_cumulative_entry,
917 .next_entry = iter_next_cumulative_entry,
918 .add_next_entry = iter_add_next_cumulative_entry,
919 .finish_entry = iter_finish_cumulative_entry,
920};
921
69bcb019 922int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
9d3c02d7 923 int max_stack_depth, void *arg)
69bcb019
NK
924{
925 int err, err2;
926
063bd936
NK
927 err = sample__resolve_callchain(iter->sample, &iter->parent,
928 iter->evsel, al, max_stack_depth);
69bcb019
NK
929 if (err)
930 return err;
931
96b40f3c
AH
932 iter->max_stack = max_stack_depth;
933
69bcb019
NK
934 err = iter->ops->prepare_entry(iter, al);
935 if (err)
936 goto out;
937
938 err = iter->ops->add_single_entry(iter, al);
939 if (err)
940 goto out;
941
9d3c02d7
NK
942 if (iter->he && iter->add_entry_cb) {
943 err = iter->add_entry_cb(iter, al, true, arg);
944 if (err)
945 goto out;
946 }
947
69bcb019
NK
948 while (iter->ops->next_entry(iter, al)) {
949 err = iter->ops->add_next_entry(iter, al);
950 if (err)
951 break;
9d3c02d7
NK
952
953 if (iter->he && iter->add_entry_cb) {
954 err = iter->add_entry_cb(iter, al, false, arg);
955 if (err)
956 goto out;
957 }
69bcb019
NK
958 }
959
960out:
961 err2 = iter->ops->finish_entry(iter, al);
962 if (!err)
963 err = err2;
964
965 return err;
966}
967
3d1d07ec
JK
968int64_t
969hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
970{
aa6f50af 971 struct hists *hists = left->hists;
093f0ef3 972 struct perf_hpp_fmt *fmt;
3d1d07ec
JK
973 int64_t cmp = 0;
974
aa6f50af 975 hists__for_each_sort_list(hists, fmt) {
87bbdf76 976 cmp = fmt->cmp(fmt, left, right);
3d1d07ec
JK
977 if (cmp)
978 break;
979 }
980
981 return cmp;
982}
983
984int64_t
985hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
986{
aa6f50af 987 struct hists *hists = left->hists;
093f0ef3 988 struct perf_hpp_fmt *fmt;
3d1d07ec
JK
989 int64_t cmp = 0;
990
aa6f50af 991 hists__for_each_sort_list(hists, fmt) {
87bbdf76 992 cmp = fmt->collapse(fmt, left, right);
3d1d07ec
JK
993 if (cmp)
994 break;
995 }
996
997 return cmp;
998}
999
6733d1bf 1000void hist_entry__delete(struct hist_entry *he)
3d1d07ec 1001{
f3b623b8 1002 thread__zput(he->thread);
5c24b67a
ACM
1003 map__zput(he->ms.map);
1004
1005 if (he->branch_info) {
1006 map__zput(he->branch_info->from.map);
1007 map__zput(he->branch_info->to.map);
1008 zfree(&he->branch_info);
1009 }
1010
1011 if (he->mem_info) {
1012 map__zput(he->mem_info->iaddr.map);
1013 map__zput(he->mem_info->daddr.map);
1014 zfree(&he->mem_info);
1015 }
1016
f8be1c8c 1017 zfree(&he->stat_acc);
f048d548 1018 free_srcline(he->srcline);
31191a85
AK
1019 if (he->srcfile && he->srcfile[0])
1020 free(he->srcfile);
d114960c 1021 free_callchain(he->callchain);
60517d28 1022 free(he->trace_output);
72392834 1023 free(he->raw_data);
3d1d07ec
JK
1024 free(he);
1025}
1026
89fee709
ACM
1027/*
1028 * If this is not the last column, then we need to pad it according to the
1029 * pre-calculated max lenght for this column, otherwise don't bother adding
1030 * spaces because that would break viewing this with, for instance, 'less',
1031 * that would show tons of trailing spaces when a long C++ demangled method
1032 * names is sampled.
1033*/
1034int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
1035 struct perf_hpp_fmt *fmt, int printed)
1036{
1037 if (!list_is_last(&fmt->list, &he->hists->hpp_list->fields)) {
1038 const int width = fmt->width(fmt, hpp, hists_to_evsel(he->hists));
1039 if (printed < width) {
1040 advance_hpp(hpp, printed);
1041 printed = scnprintf(hpp->buf, hpp->size, "%-*s", width - printed, " ");
1042 }
1043 }
1044
1045 return printed;
1046}
1047
3d1d07ec
JK
1048/*
1049 * collapse the histogram
1050 */
1051
bba58cdf
NK
1052int hists__collapse_insert_entry(struct hists *hists, struct rb_root *root,
1053 struct hist_entry *he)
3d1d07ec 1054{
b9bf0892 1055 struct rb_node **p = &root->rb_node;
3d1d07ec
JK
1056 struct rb_node *parent = NULL;
1057 struct hist_entry *iter;
1058 int64_t cmp;
1059
1060 while (*p != NULL) {
1061 parent = *p;
1980c2eb 1062 iter = rb_entry(parent, struct hist_entry, rb_node_in);
3d1d07ec
JK
1063
1064 cmp = hist_entry__collapse(iter, he);
1065
1066 if (!cmp) {
bba58cdf
NK
1067 int ret = 0;
1068
139c0815 1069 he_stat__add_stat(&iter->stat, &he->stat);
f8be1c8c
NK
1070 if (symbol_conf.cumulate_callchain)
1071 he_stat__add_stat(iter->stat_acc, he->stat_acc);
9ec60972 1072
1b3a0e95 1073 if (symbol_conf.use_callchain) {
47260645 1074 callchain_cursor_reset(&callchain_cursor);
bba58cdf
NK
1075 if (callchain_merge(&callchain_cursor,
1076 iter->callchain,
1077 he->callchain) < 0)
1078 ret = -1;
1b3a0e95 1079 }
6733d1bf 1080 hist_entry__delete(he);
bba58cdf 1081 return ret;
3d1d07ec
JK
1082 }
1083
1084 if (cmp < 0)
1085 p = &(*p)->rb_left;
1086 else
1087 p = &(*p)->rb_right;
1088 }
740b97f9 1089 hists->nr_entries++;
3d1d07ec 1090
1980c2eb
ACM
1091 rb_link_node(&he->rb_node_in, parent, p);
1092 rb_insert_color(&he->rb_node_in, root);
bba58cdf 1093 return 1;
3d1d07ec
JK
1094}
1095
fc284be9 1096struct rb_root *hists__get_rotate_entries_in(struct hists *hists)
3d1d07ec 1097{
1980c2eb
ACM
1098 struct rb_root *root;
1099
1100 pthread_mutex_lock(&hists->lock);
1101
1102 root = hists->entries_in;
1103 if (++hists->entries_in > &hists->entries_in_array[1])
1104 hists->entries_in = &hists->entries_in_array[0];
1105
1106 pthread_mutex_unlock(&hists->lock);
1107
1108 return root;
1109}
1110
90cf1fb5
ACM
1111static void hists__apply_filters(struct hists *hists, struct hist_entry *he)
1112{
1113 hists__filter_entry_by_dso(hists, he);
1114 hists__filter_entry_by_thread(hists, he);
e94d53eb 1115 hists__filter_entry_by_symbol(hists, he);
21394d94 1116 hists__filter_entry_by_socket(hists, he);
90cf1fb5
ACM
1117}
1118
bba58cdf 1119int hists__collapse_resort(struct hists *hists, struct ui_progress *prog)
1980c2eb
ACM
1120{
1121 struct rb_root *root;
3d1d07ec
JK
1122 struct rb_node *next;
1123 struct hist_entry *n;
bba58cdf 1124 int ret;
3d1d07ec 1125
3a5714f8 1126 if (!sort__need_collapse)
bba58cdf 1127 return 0;
3d1d07ec 1128
740b97f9
NK
1129 hists->nr_entries = 0;
1130
1980c2eb 1131 root = hists__get_rotate_entries_in(hists);
740b97f9 1132
1980c2eb 1133 next = rb_first(root);
b9bf0892 1134
3d1d07ec 1135 while (next) {
33e940a2
ACM
1136 if (session_done())
1137 break;
1980c2eb
ACM
1138 n = rb_entry(next, struct hist_entry, rb_node_in);
1139 next = rb_next(&n->rb_node_in);
3d1d07ec 1140
1980c2eb 1141 rb_erase(&n->rb_node_in, root);
bba58cdf
NK
1142 ret = hists__collapse_insert_entry(hists, &hists->entries_collapsed, n);
1143 if (ret < 0)
1144 return -1;
1145
1146 if (ret) {
90cf1fb5
ACM
1147 /*
1148 * If it wasn't combined with one of the entries already
1149 * collapsed, we need to apply the filters that may have
1150 * been set by, say, the hist_browser.
1151 */
1152 hists__apply_filters(hists, n);
90cf1fb5 1153 }
c1fb5651
NK
1154 if (prog)
1155 ui_progress__update(prog, 1);
3d1d07ec 1156 }
bba58cdf 1157 return 0;
1980c2eb 1158}
b9bf0892 1159
043ca389 1160static int hist_entry__sort(struct hist_entry *a, struct hist_entry *b)
29d720ed 1161{
aa6f50af 1162 struct hists *hists = a->hists;
043ca389
NK
1163 struct perf_hpp_fmt *fmt;
1164 int64_t cmp = 0;
29d720ed 1165
aa6f50af 1166 hists__for_each_sort_list(hists, fmt) {
361459f1 1167 if (perf_hpp__should_skip(fmt, a->hists))
e67d49a7
NK
1168 continue;
1169
87bbdf76 1170 cmp = fmt->sort(fmt, a, b);
043ca389 1171 if (cmp)
29d720ed
NK
1172 break;
1173 }
1174
043ca389 1175 return cmp;
29d720ed
NK
1176}
1177
9283ba9b
NK
1178static void hists__reset_filter_stats(struct hists *hists)
1179{
1180 hists->nr_non_filtered_entries = 0;
1181 hists->stats.total_non_filtered_period = 0;
1182}
1183
1184void hists__reset_stats(struct hists *hists)
1185{
1186 hists->nr_entries = 0;
1187 hists->stats.total_period = 0;
1188
1189 hists__reset_filter_stats(hists);
1190}
1191
1192static void hists__inc_filter_stats(struct hists *hists, struct hist_entry *h)
1193{
1194 hists->nr_non_filtered_entries++;
1195 hists->stats.total_non_filtered_period += h->stat.period;
1196}
1197
1198void hists__inc_stats(struct hists *hists, struct hist_entry *h)
1199{
1200 if (!h->filtered)
1201 hists__inc_filter_stats(hists, h);
1202
1203 hists->nr_entries++;
1204 hists->stats.total_period += h->stat.period;
1205}
1206
1c02c4d2
ACM
1207static void __hists__insert_output_entry(struct rb_root *entries,
1208 struct hist_entry *he,
f9db0d0f
KL
1209 u64 min_callchain_hits,
1210 bool use_callchain)
3d1d07ec 1211{
1c02c4d2 1212 struct rb_node **p = &entries->rb_node;
3d1d07ec
JK
1213 struct rb_node *parent = NULL;
1214 struct hist_entry *iter;
1215
744070e0
NK
1216 if (use_callchain) {
1217 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1218 u64 total = he->stat.period;
1219
1220 if (symbol_conf.cumulate_callchain)
1221 total = he->stat_acc->period;
1222
1223 min_callchain_hits = total * (callchain_param.min_percent / 100);
1224 }
b9fb9304 1225 callchain_param.sort(&he->sorted_chain, he->callchain,
3d1d07ec 1226 min_callchain_hits, &callchain_param);
744070e0 1227 }
3d1d07ec
JK
1228
1229 while (*p != NULL) {
1230 parent = *p;
1231 iter = rb_entry(parent, struct hist_entry, rb_node);
1232
043ca389 1233 if (hist_entry__sort(he, iter) > 0)
3d1d07ec
JK
1234 p = &(*p)->rb_left;
1235 else
1236 p = &(*p)->rb_right;
1237 }
1238
1239 rb_link_node(&he->rb_node, parent, p);
1c02c4d2 1240 rb_insert_color(&he->rb_node, entries);
3d1d07ec
JK
1241}
1242
01441af5
JO
1243static void output_resort(struct hists *hists, struct ui_progress *prog,
1244 bool use_callchain)
3d1d07ec 1245{
1980c2eb 1246 struct rb_root *root;
3d1d07ec
JK
1247 struct rb_node *next;
1248 struct hist_entry *n;
467ef10c 1249 u64 callchain_total;
3d1d07ec
JK
1250 u64 min_callchain_hits;
1251
467ef10c
NK
1252 callchain_total = hists->callchain_period;
1253 if (symbol_conf.filter_relative)
1254 callchain_total = hists->callchain_non_filtered_period;
1255
1256 min_callchain_hits = callchain_total * (callchain_param.min_percent / 100);
3d1d07ec 1257
3a5714f8 1258 if (sort__need_collapse)
1980c2eb
ACM
1259 root = &hists->entries_collapsed;
1260 else
1261 root = hists->entries_in;
1262
1263 next = rb_first(root);
1264 hists->entries = RB_ROOT;
3d1d07ec 1265
9283ba9b 1266 hists__reset_stats(hists);
42b28ac0 1267 hists__reset_col_len(hists);
fefb0b94 1268
3d1d07ec 1269 while (next) {
1980c2eb
ACM
1270 n = rb_entry(next, struct hist_entry, rb_node_in);
1271 next = rb_next(&n->rb_node_in);
3d1d07ec 1272
f9db0d0f 1273 __hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain);
6263835a 1274 hists__inc_stats(hists, n);
ae993efc
NK
1275
1276 if (!n->filtered)
1277 hists__calc_col_len(hists, n);
740b97f9
NK
1278
1279 if (prog)
1280 ui_progress__update(prog, 1);
3d1d07ec 1281 }
1980c2eb 1282}
b9bf0892 1283
452ce03b 1284void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog)
01441af5 1285{
01441af5
JO
1286 bool use_callchain;
1287
1288 if (evsel && symbol_conf.use_callchain && !symbol_conf.show_ref_callgraph)
1289 use_callchain = evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN;
1290 else
1291 use_callchain = symbol_conf.use_callchain;
1292
452ce03b
JO
1293 output_resort(evsel__hists(evsel), prog, use_callchain);
1294}
1295
1296void hists__output_resort(struct hists *hists, struct ui_progress *prog)
1297{
1298 output_resort(hists, prog, symbol_conf.use_callchain);
01441af5
JO
1299}
1300
42b28ac0 1301static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h,
cc5edb0e
ACM
1302 enum hist_filter filter)
1303{
1304 h->filtered &= ~(1 << filter);
1305 if (h->filtered)
1306 return;
1307
87e90f43 1308 /* force fold unfiltered entry for simplicity */
3698dab1 1309 h->unfolded = false;
0f0cbf7a 1310 h->row_offset = 0;
a8cd1f43 1311 h->nr_rows = 0;
9283ba9b 1312
1ab1fa5d 1313 hists->stats.nr_non_filtered_samples += h->stat.nr_events;
cc5edb0e 1314
9283ba9b 1315 hists__inc_filter_stats(hists, h);
42b28ac0 1316 hists__calc_col_len(hists, h);
cc5edb0e
ACM
1317}
1318
90cf1fb5
ACM
1319
1320static bool hists__filter_entry_by_dso(struct hists *hists,
1321 struct hist_entry *he)
1322{
1323 if (hists->dso_filter != NULL &&
1324 (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) {
1325 he->filtered |= (1 << HIST_FILTER__DSO);
1326 return true;
1327 }
1328
1329 return false;
1330}
1331
90cf1fb5
ACM
1332static bool hists__filter_entry_by_thread(struct hists *hists,
1333 struct hist_entry *he)
1334{
1335 if (hists->thread_filter != NULL &&
1336 he->thread != hists->thread_filter) {
1337 he->filtered |= (1 << HIST_FILTER__THREAD);
1338 return true;
1339 }
1340
1341 return false;
1342}
1343
e94d53eb
NK
1344static bool hists__filter_entry_by_symbol(struct hists *hists,
1345 struct hist_entry *he)
1346{
1347 if (hists->symbol_filter_str != NULL &&
1348 (!he->ms.sym || strstr(he->ms.sym->name,
1349 hists->symbol_filter_str) == NULL)) {
1350 he->filtered |= (1 << HIST_FILTER__SYMBOL);
1351 return true;
1352 }
1353
1354 return false;
1355}
1356
21394d94
KL
1357static bool hists__filter_entry_by_socket(struct hists *hists,
1358 struct hist_entry *he)
1359{
1360 if ((hists->socket_filter > -1) &&
1361 (he->socket != hists->socket_filter)) {
1362 he->filtered |= (1 << HIST_FILTER__SOCKET);
1363 return true;
1364 }
1365
1366 return false;
1367}
1368
1f7c2541
NK
1369typedef bool (*filter_fn_t)(struct hists *hists, struct hist_entry *he);
1370
1371static void hists__filter_by_type(struct hists *hists, int type, filter_fn_t filter)
84734b06
KL
1372{
1373 struct rb_node *nd;
1374
1375 hists->stats.nr_non_filtered_samples = 0;
1376
1377 hists__reset_filter_stats(hists);
1378 hists__reset_col_len(hists);
1379
1380 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
1381 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1382
1f7c2541 1383 if (filter(hists, h))
84734b06
KL
1384 continue;
1385
1f7c2541 1386 hists__remove_entry_filter(hists, h, type);
84734b06
KL
1387 }
1388}
1389
1f7c2541
NK
1390void hists__filter_by_thread(struct hists *hists)
1391{
1392 hists__filter_by_type(hists, HIST_FILTER__THREAD,
1393 hists__filter_entry_by_thread);
1394}
1395
1396void hists__filter_by_dso(struct hists *hists)
1397{
1398 hists__filter_by_type(hists, HIST_FILTER__DSO,
1399 hists__filter_entry_by_dso);
1400}
1401
1402void hists__filter_by_symbol(struct hists *hists)
1403{
1404 hists__filter_by_type(hists, HIST_FILTER__SYMBOL,
1405 hists__filter_entry_by_symbol);
1406}
1407
1408void hists__filter_by_socket(struct hists *hists)
1409{
1410 hists__filter_by_type(hists, HIST_FILTER__SOCKET,
1411 hists__filter_entry_by_socket);
1412}
1413
28a6b6aa
ACM
1414void events_stats__inc(struct events_stats *stats, u32 type)
1415{
1416 ++stats->nr_events[0];
1417 ++stats->nr_events[type];
1418}
1419
42b28ac0 1420void hists__inc_nr_events(struct hists *hists, u32 type)
c8446b9b 1421{
28a6b6aa 1422 events_stats__inc(&hists->stats, type);
c8446b9b 1423}
95529be4 1424
1844dbcb
NK
1425void hists__inc_nr_samples(struct hists *hists, bool filtered)
1426{
1427 events_stats__inc(&hists->stats, PERF_RECORD_SAMPLE);
1428 if (!filtered)
1429 hists->stats.nr_non_filtered_samples++;
1430}
1431
494d70a1
ACM
1432static struct hist_entry *hists__add_dummy_entry(struct hists *hists,
1433 struct hist_entry *pair)
1434{
ce74f60e
NK
1435 struct rb_root *root;
1436 struct rb_node **p;
494d70a1
ACM
1437 struct rb_node *parent = NULL;
1438 struct hist_entry *he;
354cc40e 1439 int64_t cmp;
494d70a1 1440
ce74f60e
NK
1441 if (sort__need_collapse)
1442 root = &hists->entries_collapsed;
1443 else
1444 root = hists->entries_in;
1445
1446 p = &root->rb_node;
1447
494d70a1
ACM
1448 while (*p != NULL) {
1449 parent = *p;
ce74f60e 1450 he = rb_entry(parent, struct hist_entry, rb_node_in);
494d70a1 1451
ce74f60e 1452 cmp = hist_entry__collapse(he, pair);
494d70a1
ACM
1453
1454 if (!cmp)
1455 goto out;
1456
1457 if (cmp < 0)
1458 p = &(*p)->rb_left;
1459 else
1460 p = &(*p)->rb_right;
1461 }
1462
a0b51af3 1463 he = hist_entry__new(pair, true);
494d70a1 1464 if (he) {
30193d78
ACM
1465 memset(&he->stat, 0, sizeof(he->stat));
1466 he->hists = hists;
ce74f60e
NK
1467 rb_link_node(&he->rb_node_in, parent, p);
1468 rb_insert_color(&he->rb_node_in, root);
6263835a 1469 hists__inc_stats(hists, he);
e0af43d2 1470 he->dummy = true;
494d70a1
ACM
1471 }
1472out:
1473 return he;
1474}
1475
95529be4
ACM
1476static struct hist_entry *hists__find_entry(struct hists *hists,
1477 struct hist_entry *he)
1478{
ce74f60e
NK
1479 struct rb_node *n;
1480
1481 if (sort__need_collapse)
1482 n = hists->entries_collapsed.rb_node;
1483 else
1484 n = hists->entries_in->rb_node;
95529be4
ACM
1485
1486 while (n) {
ce74f60e
NK
1487 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node_in);
1488 int64_t cmp = hist_entry__collapse(iter, he);
95529be4
ACM
1489
1490 if (cmp < 0)
1491 n = n->rb_left;
1492 else if (cmp > 0)
1493 n = n->rb_right;
1494 else
1495 return iter;
1496 }
1497
1498 return NULL;
1499}
1500
1501/*
1502 * Look for pairs to link to the leader buckets (hist_entries):
1503 */
1504void hists__match(struct hists *leader, struct hists *other)
1505{
ce74f60e 1506 struct rb_root *root;
95529be4
ACM
1507 struct rb_node *nd;
1508 struct hist_entry *pos, *pair;
1509
ce74f60e
NK
1510 if (sort__need_collapse)
1511 root = &leader->entries_collapsed;
1512 else
1513 root = leader->entries_in;
1514
1515 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
1516 pos = rb_entry(nd, struct hist_entry, rb_node_in);
95529be4
ACM
1517 pair = hists__find_entry(other, pos);
1518
1519 if (pair)
5fa9041b 1520 hist_entry__add_pair(pair, pos);
95529be4
ACM
1521 }
1522}
494d70a1
ACM
1523
1524/*
1525 * Look for entries in the other hists that are not present in the leader, if
1526 * we find them, just add a dummy entry on the leader hists, with period=0,
1527 * nr_events=0, to serve as the list header.
1528 */
1529int hists__link(struct hists *leader, struct hists *other)
1530{
ce74f60e 1531 struct rb_root *root;
494d70a1
ACM
1532 struct rb_node *nd;
1533 struct hist_entry *pos, *pair;
1534
ce74f60e
NK
1535 if (sort__need_collapse)
1536 root = &other->entries_collapsed;
1537 else
1538 root = other->entries_in;
1539
1540 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
1541 pos = rb_entry(nd, struct hist_entry, rb_node_in);
494d70a1
ACM
1542
1543 if (!hist_entry__has_pairs(pos)) {
1544 pair = hists__add_dummy_entry(leader, pos);
1545 if (pair == NULL)
1546 return -1;
5fa9041b 1547 hist_entry__add_pair(pos, pair);
494d70a1
ACM
1548 }
1549 }
1550
1551 return 0;
1552}
f2148330 1553
57849998
AK
1554void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
1555 struct perf_sample *sample, bool nonany_branch_mode)
1556{
1557 struct branch_info *bi;
1558
1559 /* If we have branch cycles always annotate them. */
1560 if (bs && bs->nr && bs->entries[0].flags.cycles) {
1561 int i;
1562
1563 bi = sample__resolve_bstack(sample, al);
1564 if (bi) {
1565 struct addr_map_symbol *prev = NULL;
1566
1567 /*
1568 * Ignore errors, still want to process the
1569 * other entries.
1570 *
1571 * For non standard branch modes always
1572 * force no IPC (prev == NULL)
1573 *
1574 * Note that perf stores branches reversed from
1575 * program order!
1576 */
1577 for (i = bs->nr - 1; i >= 0; i--) {
1578 addr_map_symbol__account_cycles(&bi[i].from,
1579 nonany_branch_mode ? NULL : prev,
1580 bi[i].flags.cycles);
1581 prev = &bi[i].to;
1582 }
1583 free(bi);
1584 }
1585 }
1586}
2a1731fb
ACM
1587
1588size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp)
1589{
1590 struct perf_evsel *pos;
1591 size_t ret = 0;
1592
1593 evlist__for_each(evlist, pos) {
1594 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
1595 ret += events_stats__fprintf(&evsel__hists(pos)->stats, fp);
1596 }
1597
1598 return ret;
1599}
1600
1601
f2148330
NK
1602u64 hists__total_period(struct hists *hists)
1603{
1604 return symbol_conf.filter_relative ? hists->stats.total_non_filtered_period :
1605 hists->stats.total_period;
1606}
33db4568
NK
1607
1608int parse_filter_percentage(const struct option *opt __maybe_unused,
1609 const char *arg, int unset __maybe_unused)
1610{
1611 if (!strcmp(arg, "relative"))
1612 symbol_conf.filter_relative = true;
1613 else if (!strcmp(arg, "absolute"))
1614 symbol_conf.filter_relative = false;
1615 else
1616 return -1;
1617
1618 return 0;
1619}
0b93da17
NK
1620
1621int perf_hist_config(const char *var, const char *value)
1622{
1623 if (!strcmp(var, "hist.percentage"))
1624 return parse_filter_percentage(NULL, value, 0);
1625
1626 return 0;
1627}
a635fc51 1628
5b65855e 1629int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list)
a635fc51 1630{
a635fc51
ACM
1631 memset(hists, 0, sizeof(*hists));
1632 hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT;
1633 hists->entries_in = &hists->entries_in_array[0];
1634 hists->entries_collapsed = RB_ROOT;
1635 hists->entries = RB_ROOT;
1636 pthread_mutex_init(&hists->lock, NULL);
21394d94 1637 hists->socket_filter = -1;
5b65855e 1638 hists->hpp_list = hpp_list;
a635fc51
ACM
1639 return 0;
1640}
1641
61fa0e94
NK
1642static void hists__delete_remaining_entries(struct rb_root *root)
1643{
1644 struct rb_node *node;
1645 struct hist_entry *he;
1646
1647 while (!RB_EMPTY_ROOT(root)) {
1648 node = rb_first(root);
1649 rb_erase(node, root);
1650
1651 he = rb_entry(node, struct hist_entry, rb_node_in);
1652 hist_entry__delete(he);
1653 }
1654}
1655
1656static void hists__delete_all_entries(struct hists *hists)
1657{
1658 hists__delete_entries(hists);
1659 hists__delete_remaining_entries(&hists->entries_in_array[0]);
1660 hists__delete_remaining_entries(&hists->entries_in_array[1]);
1661 hists__delete_remaining_entries(&hists->entries_collapsed);
1662}
1663
17577dec
MH
1664static void hists_evsel__exit(struct perf_evsel *evsel)
1665{
1666 struct hists *hists = evsel__hists(evsel);
1667
61fa0e94 1668 hists__delete_all_entries(hists);
17577dec
MH
1669}
1670
fc284be9
NK
1671static int hists_evsel__init(struct perf_evsel *evsel)
1672{
1673 struct hists *hists = evsel__hists(evsel);
1674
5b65855e 1675 __hists__init(hists, &perf_hpp_list);
fc284be9
NK
1676 return 0;
1677}
1678
a635fc51
ACM
1679/*
1680 * XXX We probably need a hists_evsel__exit() to free the hist_entries
1681 * stored in the rbtree...
1682 */
1683
1684int hists__init(void)
1685{
1686 int err = perf_evsel__object_config(sizeof(struct hists_evsel),
17577dec
MH
1687 hists_evsel__init,
1688 hists_evsel__exit);
a635fc51
ACM
1689 if (err)
1690 fputs("FATAL ERROR: Couldn't setup hists class\n", stderr);
1691
1692 return err;
1693}
94b3dc38
JO
1694
1695void perf_hpp_list__init(struct perf_hpp_list *list)
1696{
1697 INIT_LIST_HEAD(&list->fields);
1698 INIT_LIST_HEAD(&list->sorts);
1699}
This page took 0.406497 seconds and 5 git commands to generate.