perf hists: Use own hpp_list for hierarchy mode
[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
5d8200ae
NK
251static void hists__delete_entry(struct hists *hists, struct hist_entry *he);
252
ab81f3fd
ACM
253static bool hists__decay_entry(struct hists *hists, struct hist_entry *he)
254{
b24c28f7 255 u64 prev_period = he->stat.period;
3186b681 256 u64 diff;
c64550cf
ACM
257
258 if (prev_period == 0)
df71d95f 259 return true;
c64550cf 260
f39056f9 261 he_stat__decay(&he->stat);
f8be1c8c
NK
262 if (symbol_conf.cumulate_callchain)
263 he_stat__decay(he->stat_acc);
42b276a2 264 decay_callchain(he->callchain);
c64550cf 265
3186b681
NK
266 diff = prev_period - he->stat.period;
267
5d8200ae
NK
268 if (!he->depth) {
269 hists->stats.total_period -= diff;
270 if (!he->filtered)
271 hists->stats.total_non_filtered_period -= diff;
272 }
273
274 if (!he->leaf) {
275 struct hist_entry *child;
276 struct rb_node *node = rb_first(&he->hroot_out);
277 while (node) {
278 child = rb_entry(node, struct hist_entry, rb_node);
279 node = rb_next(node);
280
281 if (hists__decay_entry(hists, child))
282 hists__delete_entry(hists, child);
283 }
284 }
c64550cf 285
b24c28f7 286 return he->stat.period == 0;
ab81f3fd
ACM
287}
288
956b65e1
ACM
289static void hists__delete_entry(struct hists *hists, struct hist_entry *he)
290{
5d8200ae
NK
291 struct rb_root *root_in;
292 struct rb_root *root_out;
293
294 if (he->parent_he) {
295 root_in = &he->parent_he->hroot_in;
296 root_out = &he->parent_he->hroot_out;
297 } else {
298 if (sort__need_collapse)
299 root_in = &hists->entries_collapsed;
300 else
301 root_in = hists->entries_in;
302 root_out = &hists->entries;
303 }
956b65e1 304
5d8200ae
NK
305 rb_erase(&he->rb_node_in, root_in);
306 rb_erase(&he->rb_node, root_out);
956b65e1
ACM
307
308 --hists->nr_entries;
309 if (!he->filtered)
310 --hists->nr_non_filtered_entries;
311
312 hist_entry__delete(he);
313}
314
3a5714f8 315void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel)
ab81f3fd
ACM
316{
317 struct rb_node *next = rb_first(&hists->entries);
318 struct hist_entry *n;
319
320 while (next) {
321 n = rb_entry(next, struct hist_entry, rb_node);
322 next = rb_next(&n->rb_node);
b079d4e9
ACM
323 if (((zap_user && n->level == '.') ||
324 (zap_kernel && n->level != '.') ||
4c47f4fc 325 hists__decay_entry(hists, n))) {
956b65e1 326 hists__delete_entry(hists, n);
ab81f3fd
ACM
327 }
328 }
329}
330
701937bd
NK
331void hists__delete_entries(struct hists *hists)
332{
333 struct rb_node *next = rb_first(&hists->entries);
334 struct hist_entry *n;
335
336 while (next) {
337 n = rb_entry(next, struct hist_entry, rb_node);
338 next = rb_next(&n->rb_node);
339
956b65e1 340 hists__delete_entry(hists, n);
701937bd
NK
341 }
342}
343
3d1d07ec 344/*
c82ee828 345 * histogram, sorted on item, collects periods
3d1d07ec
JK
346 */
347
a0b51af3
NK
348static struct hist_entry *hist_entry__new(struct hist_entry *template,
349 bool sample_self)
28e2a106 350{
f8be1c8c
NK
351 size_t callchain_size = 0;
352 struct hist_entry *he;
353
82aa019e 354 if (symbol_conf.use_callchain)
f8be1c8c
NK
355 callchain_size = sizeof(struct callchain_root);
356
357 he = zalloc(sizeof(*he) + callchain_size);
28e2a106 358
12c14278
ACM
359 if (he != NULL) {
360 *he = *template;
c4b35351 361
f8be1c8c
NK
362 if (symbol_conf.cumulate_callchain) {
363 he->stat_acc = malloc(sizeof(he->stat));
364 if (he->stat_acc == NULL) {
365 free(he);
366 return NULL;
367 }
368 memcpy(he->stat_acc, &he->stat, sizeof(he->stat));
a0b51af3
NK
369 if (!sample_self)
370 memset(&he->stat, 0, sizeof(he->stat));
f8be1c8c
NK
371 }
372
5c24b67a 373 map__get(he->ms.map);
3cf0cb1f
SE
374
375 if (he->branch_info) {
26353a61
NK
376 /*
377 * This branch info is (a part of) allocated from
644f2df2 378 * sample__resolve_bstack() and will be freed after
26353a61
NK
379 * adding new entries. So we need to save a copy.
380 */
381 he->branch_info = malloc(sizeof(*he->branch_info));
382 if (he->branch_info == NULL) {
5c24b67a 383 map__zput(he->ms.map);
f8be1c8c 384 free(he->stat_acc);
26353a61
NK
385 free(he);
386 return NULL;
387 }
388
389 memcpy(he->branch_info, template->branch_info,
390 sizeof(*he->branch_info));
391
5c24b67a
ACM
392 map__get(he->branch_info->from.map);
393 map__get(he->branch_info->to.map);
3cf0cb1f
SE
394 }
395
98a3b32c 396 if (he->mem_info) {
5c24b67a
ACM
397 map__get(he->mem_info->iaddr.map);
398 map__get(he->mem_info->daddr.map);
98a3b32c
SE
399 }
400
28e2a106 401 if (symbol_conf.use_callchain)
12c14278 402 callchain_init(he->callchain);
b821c732 403
72392834
NK
404 if (he->raw_data) {
405 he->raw_data = memdup(he->raw_data, he->raw_size);
406
407 if (he->raw_data == NULL) {
408 map__put(he->ms.map);
409 if (he->branch_info) {
410 map__put(he->branch_info->from.map);
411 map__put(he->branch_info->to.map);
412 free(he->branch_info);
413 }
414 if (he->mem_info) {
415 map__put(he->mem_info->iaddr.map);
416 map__put(he->mem_info->daddr.map);
417 }
418 free(he->stat_acc);
419 free(he);
420 return NULL;
421 }
422 }
b821c732 423 INIT_LIST_HEAD(&he->pairs.node);
f3b623b8 424 thread__get(he->thread);
aef810ec
NK
425
426 if (!symbol_conf.report_hierarchy)
427 he->leaf = true;
28e2a106
ACM
428 }
429
12c14278 430 return he;
28e2a106
ACM
431}
432
7a007ca9
ACM
433static u8 symbol__parent_filter(const struct symbol *parent)
434{
435 if (symbol_conf.exclude_other && parent == NULL)
436 return 1 << HIST_FILTER__PARENT;
437 return 0;
438}
439
467ef10c
NK
440static void hist_entry__add_callchain_period(struct hist_entry *he, u64 period)
441{
442 if (!symbol_conf.use_callchain)
443 return;
444
445 he->hists->callchain_period += period;
446 if (!he->filtered)
447 he->hists->callchain_non_filtered_period += period;
448}
449
e7e0efcd
ACM
450static struct hist_entry *hists__findnew_entry(struct hists *hists,
451 struct hist_entry *entry,
452 struct addr_location *al,
453 bool sample_self)
9735abf1 454{
1980c2eb 455 struct rb_node **p;
9735abf1
ACM
456 struct rb_node *parent = NULL;
457 struct hist_entry *he;
354cc40e 458 int64_t cmp;
f1cbf78d
NK
459 u64 period = entry->stat.period;
460 u64 weight = entry->stat.weight;
9735abf1 461
1980c2eb
ACM
462 p = &hists->entries_in->rb_node;
463
9735abf1
ACM
464 while (*p != NULL) {
465 parent = *p;
1980c2eb 466 he = rb_entry(parent, struct hist_entry, rb_node_in);
9735abf1 467
9afcf930
NK
468 /*
469 * Make sure that it receives arguments in a same order as
470 * hist_entry__collapse() so that we can use an appropriate
471 * function when searching an entry regardless which sort
472 * keys were used.
473 */
474 cmp = hist_entry__cmp(he, entry);
9735abf1
ACM
475
476 if (!cmp) {
0f58474e 477 if (sample_self) {
a0b51af3 478 he_stat__add_period(&he->stat, period, weight);
467ef10c 479 hist_entry__add_callchain_period(he, period);
0f58474e 480 }
f8be1c8c
NK
481 if (symbol_conf.cumulate_callchain)
482 he_stat__add_period(he->stat_acc, period, weight);
63fa471d 483
ceb2acbc 484 /*
e80faac0 485 * This mem info was allocated from sample__resolve_mem
ceb2acbc
NK
486 * and will not be used anymore.
487 */
74cf249d 488 zfree(&entry->mem_info);
ceb2acbc 489
63fa471d
DM
490 /* If the map of an existing hist_entry has
491 * become out-of-date due to an exec() or
492 * similar, update it. Otherwise we will
493 * mis-adjust symbol addresses when computing
494 * the history counter to increment.
495 */
496 if (he->ms.map != entry->ms.map) {
5c24b67a
ACM
497 map__put(he->ms.map);
498 he->ms.map = map__get(entry->ms.map);
63fa471d 499 }
28e2a106 500 goto out;
9735abf1
ACM
501 }
502
503 if (cmp < 0)
504 p = &(*p)->rb_left;
505 else
506 p = &(*p)->rb_right;
507 }
508
a0b51af3 509 he = hist_entry__new(entry, sample_self);
9735abf1 510 if (!he)
27a0dcb7 511 return NULL;
1980c2eb 512
0f58474e 513 if (sample_self)
467ef10c
NK
514 hist_entry__add_callchain_period(he, period);
515 hists->nr_entries++;
590cd344 516
1980c2eb
ACM
517 rb_link_node(&he->rb_node_in, parent, p);
518 rb_insert_color(&he->rb_node_in, hists->entries_in);
28e2a106 519out:
a0b51af3
NK
520 if (sample_self)
521 he_stat__add_cpumode_period(&he->stat, al->cpumode, period);
f8be1c8c
NK
522 if (symbol_conf.cumulate_callchain)
523 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period);
9735abf1
ACM
524 return he;
525}
526
c824c433 527struct hist_entry *__hists__add_entry(struct hists *hists,
b5387528 528 struct addr_location *al,
41a4e6e2
NK
529 struct symbol *sym_parent,
530 struct branch_info *bi,
531 struct mem_info *mi,
fd36f3dd 532 struct perf_sample *sample,
a0b51af3 533 bool sample_self)
b5387528
RAV
534{
535 struct hist_entry entry = {
536 .thread = al->thread,
4dfced35 537 .comm = thread__comm(al->thread),
b5387528
RAV
538 .ms = {
539 .map = al->map,
540 .sym = al->sym,
541 },
0c4c4deb 542 .socket = al->socket,
7365be55
DZ
543 .cpu = al->cpu,
544 .cpumode = al->cpumode,
545 .ip = al->addr,
546 .level = al->level,
b24c28f7 547 .stat = {
c4b35351 548 .nr_events = 1,
fd36f3dd
NK
549 .period = sample->period,
550 .weight = sample->weight,
b24c28f7 551 },
b5387528 552 .parent = sym_parent,
2c86c7ca 553 .filtered = symbol__parent_filter(sym_parent) | al->filtered,
c824c433 554 .hists = hists,
41a4e6e2
NK
555 .branch_info = bi,
556 .mem_info = mi,
fd36f3dd 557 .transaction = sample->transaction,
72392834
NK
558 .raw_data = sample->raw_data,
559 .raw_size = sample->raw_size,
b5387528
RAV
560 };
561
e7e0efcd 562 return hists__findnew_entry(hists, &entry, al, sample_self);
b5387528
RAV
563}
564
69bcb019
NK
565static int
566iter_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
567 struct addr_location *al __maybe_unused)
568{
569 return 0;
570}
571
572static int
573iter_add_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
574 struct addr_location *al __maybe_unused)
575{
576 return 0;
577}
578
579static int
580iter_prepare_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
581{
582 struct perf_sample *sample = iter->sample;
583 struct mem_info *mi;
584
585 mi = sample__resolve_mem(sample, al);
586 if (mi == NULL)
587 return -ENOMEM;
588
589 iter->priv = mi;
590 return 0;
591}
592
593static int
594iter_add_single_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
595{
596 u64 cost;
597 struct mem_info *mi = iter->priv;
4ea062ed 598 struct hists *hists = evsel__hists(iter->evsel);
fd36f3dd 599 struct perf_sample *sample = iter->sample;
69bcb019
NK
600 struct hist_entry *he;
601
602 if (mi == NULL)
603 return -EINVAL;
604
fd36f3dd 605 cost = sample->weight;
69bcb019
NK
606 if (!cost)
607 cost = 1;
608
609 /*
610 * must pass period=weight in order to get the correct
611 * sorting from hists__collapse_resort() which is solely
612 * based on periods. We want sorting be done on nr_events * weight
613 * and this is indirectly achieved by passing period=weight here
614 * and the he_stat__add_period() function.
615 */
fd36f3dd
NK
616 sample->period = cost;
617
4ea062ed 618 he = __hists__add_entry(hists, al, iter->parent, NULL, mi,
fd36f3dd 619 sample, true);
69bcb019
NK
620 if (!he)
621 return -ENOMEM;
622
623 iter->he = he;
624 return 0;
625}
626
627static int
9d3c02d7
NK
628iter_finish_mem_entry(struct hist_entry_iter *iter,
629 struct addr_location *al __maybe_unused)
69bcb019
NK
630{
631 struct perf_evsel *evsel = iter->evsel;
4ea062ed 632 struct hists *hists = evsel__hists(evsel);
69bcb019 633 struct hist_entry *he = iter->he;
69bcb019
NK
634 int err = -EINVAL;
635
636 if (he == NULL)
637 goto out;
638
4ea062ed 639 hists__inc_nr_samples(hists, he->filtered);
69bcb019
NK
640
641 err = hist_entry__append_callchain(he, iter->sample);
642
643out:
644 /*
e7e0efcd
ACM
645 * We don't need to free iter->priv (mem_info) here since the mem info
646 * was either already freed in hists__findnew_entry() or passed to a
647 * new hist entry by hist_entry__new().
69bcb019
NK
648 */
649 iter->priv = NULL;
650
651 iter->he = NULL;
652 return err;
653}
654
655static int
656iter_prepare_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
657{
658 struct branch_info *bi;
659 struct perf_sample *sample = iter->sample;
660
661 bi = sample__resolve_bstack(sample, al);
662 if (!bi)
663 return -ENOMEM;
664
665 iter->curr = 0;
666 iter->total = sample->branch_stack->nr;
667
668 iter->priv = bi;
669 return 0;
670}
671
672static int
673iter_add_single_branch_entry(struct hist_entry_iter *iter __maybe_unused,
674 struct addr_location *al __maybe_unused)
675{
9d3c02d7
NK
676 /* to avoid calling callback function */
677 iter->he = NULL;
678
69bcb019
NK
679 return 0;
680}
681
682static int
683iter_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
684{
685 struct branch_info *bi = iter->priv;
686 int i = iter->curr;
687
688 if (bi == NULL)
689 return 0;
690
691 if (iter->curr >= iter->total)
692 return 0;
693
694 al->map = bi[i].to.map;
695 al->sym = bi[i].to.sym;
696 al->addr = bi[i].to.addr;
697 return 1;
698}
699
700static int
701iter_add_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
702{
9d3c02d7 703 struct branch_info *bi;
69bcb019 704 struct perf_evsel *evsel = iter->evsel;
4ea062ed 705 struct hists *hists = evsel__hists(evsel);
fd36f3dd 706 struct perf_sample *sample = iter->sample;
69bcb019
NK
707 struct hist_entry *he = NULL;
708 int i = iter->curr;
709 int err = 0;
710
711 bi = iter->priv;
712
713 if (iter->hide_unresolved && !(bi[i].from.sym && bi[i].to.sym))
714 goto out;
715
716 /*
717 * The report shows the percentage of total branches captured
718 * and not events sampled. Thus we use a pseudo period of 1.
719 */
fd36f3dd
NK
720 sample->period = 1;
721 sample->weight = bi->flags.cycles ? bi->flags.cycles : 1;
722
4ea062ed 723 he = __hists__add_entry(hists, al, iter->parent, &bi[i], NULL,
fd36f3dd 724 sample, true);
69bcb019
NK
725 if (he == NULL)
726 return -ENOMEM;
727
4ea062ed 728 hists__inc_nr_samples(hists, he->filtered);
69bcb019
NK
729
730out:
731 iter->he = he;
732 iter->curr++;
733 return err;
734}
735
736static int
737iter_finish_branch_entry(struct hist_entry_iter *iter,
738 struct addr_location *al __maybe_unused)
739{
740 zfree(&iter->priv);
741 iter->he = NULL;
742
743 return iter->curr >= iter->total ? 0 : -1;
744}
745
746static int
747iter_prepare_normal_entry(struct hist_entry_iter *iter __maybe_unused,
748 struct addr_location *al __maybe_unused)
749{
750 return 0;
751}
752
753static int
754iter_add_single_normal_entry(struct hist_entry_iter *iter, struct addr_location *al)
755{
756 struct perf_evsel *evsel = iter->evsel;
757 struct perf_sample *sample = iter->sample;
758 struct hist_entry *he;
759
4ea062ed 760 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
fd36f3dd 761 sample, true);
69bcb019
NK
762 if (he == NULL)
763 return -ENOMEM;
764
765 iter->he = he;
766 return 0;
767}
768
769static int
9d3c02d7
NK
770iter_finish_normal_entry(struct hist_entry_iter *iter,
771 struct addr_location *al __maybe_unused)
69bcb019 772{
69bcb019
NK
773 struct hist_entry *he = iter->he;
774 struct perf_evsel *evsel = iter->evsel;
775 struct perf_sample *sample = iter->sample;
776
777 if (he == NULL)
778 return 0;
779
780 iter->he = NULL;
781
4ea062ed 782 hists__inc_nr_samples(evsel__hists(evsel), he->filtered);
69bcb019
NK
783
784 return hist_entry__append_callchain(he, sample);
785}
786
7a13aa28 787static int
96b40f3c 788iter_prepare_cumulative_entry(struct hist_entry_iter *iter,
7a13aa28
NK
789 struct addr_location *al __maybe_unused)
790{
b4d3c8bd
NK
791 struct hist_entry **he_cache;
792
7a13aa28 793 callchain_cursor_commit(&callchain_cursor);
b4d3c8bd
NK
794
795 /*
796 * This is for detecting cycles or recursions so that they're
797 * cumulated only one time to prevent entries more than 100%
798 * overhead.
799 */
96b40f3c 800 he_cache = malloc(sizeof(*he_cache) * (iter->max_stack + 1));
b4d3c8bd
NK
801 if (he_cache == NULL)
802 return -ENOMEM;
803
804 iter->priv = he_cache;
805 iter->curr = 0;
806
7a13aa28
NK
807 return 0;
808}
809
810static int
811iter_add_single_cumulative_entry(struct hist_entry_iter *iter,
812 struct addr_location *al)
813{
814 struct perf_evsel *evsel = iter->evsel;
4ea062ed 815 struct hists *hists = evsel__hists(evsel);
7a13aa28 816 struct perf_sample *sample = iter->sample;
b4d3c8bd 817 struct hist_entry **he_cache = iter->priv;
7a13aa28
NK
818 struct hist_entry *he;
819 int err = 0;
820
4ea062ed 821 he = __hists__add_entry(hists, al, iter->parent, NULL, NULL,
fd36f3dd 822 sample, true);
7a13aa28
NK
823 if (he == NULL)
824 return -ENOMEM;
825
826 iter->he = he;
b4d3c8bd 827 he_cache[iter->curr++] = he;
7a13aa28 828
82aa019e 829 hist_entry__append_callchain(he, sample);
be7f855a
NK
830
831 /*
832 * We need to re-initialize the cursor since callchain_append()
833 * advanced the cursor to the end.
834 */
835 callchain_cursor_commit(&callchain_cursor);
836
4ea062ed 837 hists__inc_nr_samples(hists, he->filtered);
7a13aa28
NK
838
839 return err;
840}
841
842static int
843iter_next_cumulative_entry(struct hist_entry_iter *iter,
844 struct addr_location *al)
845{
846 struct callchain_cursor_node *node;
847
848 node = callchain_cursor_current(&callchain_cursor);
849 if (node == NULL)
850 return 0;
851
c7405d85 852 return fill_callchain_info(al, node, iter->hide_unresolved);
7a13aa28
NK
853}
854
855static int
856iter_add_next_cumulative_entry(struct hist_entry_iter *iter,
857 struct addr_location *al)
858{
859 struct perf_evsel *evsel = iter->evsel;
860 struct perf_sample *sample = iter->sample;
b4d3c8bd 861 struct hist_entry **he_cache = iter->priv;
7a13aa28 862 struct hist_entry *he;
b4d3c8bd 863 struct hist_entry he_tmp = {
5cef8976 864 .hists = evsel__hists(evsel),
b4d3c8bd
NK
865 .cpu = al->cpu,
866 .thread = al->thread,
867 .comm = thread__comm(al->thread),
868 .ip = al->addr,
869 .ms = {
870 .map = al->map,
871 .sym = al->sym,
872 },
873 .parent = iter->parent,
72392834
NK
874 .raw_data = sample->raw_data,
875 .raw_size = sample->raw_size,
b4d3c8bd
NK
876 };
877 int i;
be7f855a
NK
878 struct callchain_cursor cursor;
879
880 callchain_cursor_snapshot(&cursor, &callchain_cursor);
881
882 callchain_cursor_advance(&callchain_cursor);
b4d3c8bd
NK
883
884 /*
885 * Check if there's duplicate entries in the callchain.
886 * It's possible that it has cycles or recursive calls.
887 */
888 for (i = 0; i < iter->curr; i++) {
9d3c02d7
NK
889 if (hist_entry__cmp(he_cache[i], &he_tmp) == 0) {
890 /* to avoid calling callback function */
891 iter->he = NULL;
b4d3c8bd 892 return 0;
9d3c02d7 893 }
b4d3c8bd 894 }
7a13aa28 895
4ea062ed 896 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
fd36f3dd 897 sample, false);
7a13aa28
NK
898 if (he == NULL)
899 return -ENOMEM;
900
901 iter->he = he;
b4d3c8bd 902 he_cache[iter->curr++] = he;
7a13aa28 903
82aa019e
NK
904 if (symbol_conf.use_callchain)
905 callchain_append(he->callchain, &cursor, sample->period);
7a13aa28
NK
906 return 0;
907}
908
909static int
910iter_finish_cumulative_entry(struct hist_entry_iter *iter,
911 struct addr_location *al __maybe_unused)
912{
b4d3c8bd 913 zfree(&iter->priv);
7a13aa28 914 iter->he = NULL;
b4d3c8bd 915
7a13aa28
NK
916 return 0;
917}
918
69bcb019
NK
919const struct hist_iter_ops hist_iter_mem = {
920 .prepare_entry = iter_prepare_mem_entry,
921 .add_single_entry = iter_add_single_mem_entry,
922 .next_entry = iter_next_nop_entry,
923 .add_next_entry = iter_add_next_nop_entry,
924 .finish_entry = iter_finish_mem_entry,
925};
926
927const struct hist_iter_ops hist_iter_branch = {
928 .prepare_entry = iter_prepare_branch_entry,
929 .add_single_entry = iter_add_single_branch_entry,
930 .next_entry = iter_next_branch_entry,
931 .add_next_entry = iter_add_next_branch_entry,
932 .finish_entry = iter_finish_branch_entry,
933};
934
935const struct hist_iter_ops hist_iter_normal = {
936 .prepare_entry = iter_prepare_normal_entry,
937 .add_single_entry = iter_add_single_normal_entry,
938 .next_entry = iter_next_nop_entry,
939 .add_next_entry = iter_add_next_nop_entry,
940 .finish_entry = iter_finish_normal_entry,
941};
942
7a13aa28
NK
943const struct hist_iter_ops hist_iter_cumulative = {
944 .prepare_entry = iter_prepare_cumulative_entry,
945 .add_single_entry = iter_add_single_cumulative_entry,
946 .next_entry = iter_next_cumulative_entry,
947 .add_next_entry = iter_add_next_cumulative_entry,
948 .finish_entry = iter_finish_cumulative_entry,
949};
950
69bcb019 951int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
9d3c02d7 952 int max_stack_depth, void *arg)
69bcb019
NK
953{
954 int err, err2;
955
063bd936
NK
956 err = sample__resolve_callchain(iter->sample, &iter->parent,
957 iter->evsel, al, max_stack_depth);
69bcb019
NK
958 if (err)
959 return err;
960
96b40f3c
AH
961 iter->max_stack = max_stack_depth;
962
69bcb019
NK
963 err = iter->ops->prepare_entry(iter, al);
964 if (err)
965 goto out;
966
967 err = iter->ops->add_single_entry(iter, al);
968 if (err)
969 goto out;
970
9d3c02d7
NK
971 if (iter->he && iter->add_entry_cb) {
972 err = iter->add_entry_cb(iter, al, true, arg);
973 if (err)
974 goto out;
975 }
976
69bcb019
NK
977 while (iter->ops->next_entry(iter, al)) {
978 err = iter->ops->add_next_entry(iter, al);
979 if (err)
980 break;
9d3c02d7
NK
981
982 if (iter->he && iter->add_entry_cb) {
983 err = iter->add_entry_cb(iter, al, false, arg);
984 if (err)
985 goto out;
986 }
69bcb019
NK
987 }
988
989out:
990 err2 = iter->ops->finish_entry(iter, al);
991 if (!err)
992 err = err2;
993
994 return err;
995}
996
3d1d07ec
JK
997int64_t
998hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
999{
aa6f50af 1000 struct hists *hists = left->hists;
093f0ef3 1001 struct perf_hpp_fmt *fmt;
3d1d07ec
JK
1002 int64_t cmp = 0;
1003
aa6f50af 1004 hists__for_each_sort_list(hists, fmt) {
84b6ee8e
NK
1005 if (perf_hpp__is_dynamic_entry(fmt) &&
1006 !perf_hpp__defined_dynamic_entry(fmt, hists))
1007 continue;
1008
87bbdf76 1009 cmp = fmt->cmp(fmt, left, right);
3d1d07ec
JK
1010 if (cmp)
1011 break;
1012 }
1013
1014 return cmp;
1015}
1016
1017int64_t
1018hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
1019{
aa6f50af 1020 struct hists *hists = left->hists;
093f0ef3 1021 struct perf_hpp_fmt *fmt;
3d1d07ec
JK
1022 int64_t cmp = 0;
1023
aa6f50af 1024 hists__for_each_sort_list(hists, fmt) {
84b6ee8e
NK
1025 if (perf_hpp__is_dynamic_entry(fmt) &&
1026 !perf_hpp__defined_dynamic_entry(fmt, hists))
1027 continue;
1028
87bbdf76 1029 cmp = fmt->collapse(fmt, left, right);
3d1d07ec
JK
1030 if (cmp)
1031 break;
1032 }
1033
1034 return cmp;
1035}
1036
6733d1bf 1037void hist_entry__delete(struct hist_entry *he)
3d1d07ec 1038{
f3b623b8 1039 thread__zput(he->thread);
5c24b67a
ACM
1040 map__zput(he->ms.map);
1041
1042 if (he->branch_info) {
1043 map__zput(he->branch_info->from.map);
1044 map__zput(he->branch_info->to.map);
1045 zfree(&he->branch_info);
1046 }
1047
1048 if (he->mem_info) {
1049 map__zput(he->mem_info->iaddr.map);
1050 map__zput(he->mem_info->daddr.map);
1051 zfree(&he->mem_info);
1052 }
1053
f8be1c8c 1054 zfree(&he->stat_acc);
f048d548 1055 free_srcline(he->srcline);
31191a85
AK
1056 if (he->srcfile && he->srcfile[0])
1057 free(he->srcfile);
d114960c 1058 free_callchain(he->callchain);
60517d28 1059 free(he->trace_output);
72392834 1060 free(he->raw_data);
3d1d07ec
JK
1061 free(he);
1062}
1063
89fee709
ACM
1064/*
1065 * If this is not the last column, then we need to pad it according to the
1066 * pre-calculated max lenght for this column, otherwise don't bother adding
1067 * spaces because that would break viewing this with, for instance, 'less',
1068 * that would show tons of trailing spaces when a long C++ demangled method
1069 * names is sampled.
1070*/
1071int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
1072 struct perf_hpp_fmt *fmt, int printed)
1073{
1074 if (!list_is_last(&fmt->list, &he->hists->hpp_list->fields)) {
1075 const int width = fmt->width(fmt, hpp, hists_to_evsel(he->hists));
1076 if (printed < width) {
1077 advance_hpp(hpp, printed);
1078 printed = scnprintf(hpp->buf, hpp->size, "%-*s", width - printed, " ");
1079 }
1080 }
1081
1082 return printed;
1083}
1084
3d1d07ec
JK
1085/*
1086 * collapse the histogram
1087 */
1088
aef810ec
NK
1089static void hists__apply_filters(struct hists *hists, struct hist_entry *he);
1090
1091static struct hist_entry *hierarchy_insert_entry(struct hists *hists,
1092 struct rb_root *root,
1093 struct hist_entry *he,
1b2dbbf4 1094 struct perf_hpp_list *hpp_list)
aef810ec
NK
1095{
1096 struct rb_node **p = &root->rb_node;
1097 struct rb_node *parent = NULL;
1098 struct hist_entry *iter, *new;
1b2dbbf4 1099 struct perf_hpp_fmt *fmt;
aef810ec
NK
1100 int64_t cmp;
1101
1102 while (*p != NULL) {
1103 parent = *p;
1104 iter = rb_entry(parent, struct hist_entry, rb_node_in);
1105
1b2dbbf4
NK
1106 cmp = 0;
1107 perf_hpp_list__for_each_sort_list(hpp_list, fmt) {
1108 cmp = fmt->collapse(fmt, iter, he);
1109 if (cmp)
1110 break;
1111 }
1112
aef810ec
NK
1113 if (!cmp) {
1114 he_stat__add_stat(&iter->stat, &he->stat);
1115 return iter;
1116 }
1117
1118 if (cmp < 0)
1119 p = &parent->rb_left;
1120 else
1121 p = &parent->rb_right;
1122 }
1123
1124 new = hist_entry__new(he, true);
1125 if (new == NULL)
1126 return NULL;
1127
1128 hists__apply_filters(hists, new);
1129 hists->nr_entries++;
1130
1b2dbbf4
NK
1131 /* save related format list for output */
1132 new->hpp_list = hpp_list;
aef810ec
NK
1133
1134 /* some fields are now passed to 'new' */
1b2dbbf4
NK
1135 perf_hpp_list__for_each_sort_list(hpp_list, fmt) {
1136 if (perf_hpp__is_trace_entry(fmt) || perf_hpp__is_dynamic_entry(fmt))
1137 he->trace_output = NULL;
1138 else
1139 new->trace_output = NULL;
aef810ec 1140
1b2dbbf4
NK
1141 if (perf_hpp__is_srcline_entry(fmt))
1142 he->srcline = NULL;
1143 else
1144 new->srcline = NULL;
aef810ec 1145
1b2dbbf4
NK
1146 if (perf_hpp__is_srcfile_entry(fmt))
1147 he->srcfile = NULL;
1148 else
1149 new->srcfile = NULL;
1150 }
aef810ec
NK
1151
1152 rb_link_node(&new->rb_node_in, parent, p);
1153 rb_insert_color(&new->rb_node_in, root);
1154 return new;
1155}
1156
1157static int hists__hierarchy_insert_entry(struct hists *hists,
1158 struct rb_root *root,
1159 struct hist_entry *he)
1160{
1b2dbbf4 1161 struct perf_hpp_list_node *node;
aef810ec
NK
1162 struct hist_entry *new_he = NULL;
1163 struct hist_entry *parent = NULL;
1164 int depth = 0;
1165 int ret = 0;
1166
1b2dbbf4
NK
1167 list_for_each_entry(node, &hists->hpp_formats, list) {
1168 /* skip period (overhead) and elided columns */
1169 if (node->level == 0 || node->skip)
aef810ec
NK
1170 continue;
1171
1172 /* insert copy of 'he' for each fmt into the hierarchy */
1b2dbbf4 1173 new_he = hierarchy_insert_entry(hists, root, he, &node->hpp);
aef810ec
NK
1174 if (new_he == NULL) {
1175 ret = -1;
1176 break;
1177 }
1178
1179 root = &new_he->hroot_in;
1180 new_he->parent_he = parent;
1181 new_he->depth = depth++;
1182 parent = new_he;
1183 }
1184
1185 if (new_he) {
1186 new_he->leaf = true;
1187
1188 if (symbol_conf.use_callchain) {
1189 callchain_cursor_reset(&callchain_cursor);
1190 if (callchain_merge(&callchain_cursor,
1191 new_he->callchain,
1192 he->callchain) < 0)
1193 ret = -1;
1194 }
1195 }
1196
1197 /* 'he' is no longer used */
1198 hist_entry__delete(he);
1199
1200 /* return 0 (or -1) since it already applied filters */
1201 return ret;
1202}
1203
bba58cdf
NK
1204int hists__collapse_insert_entry(struct hists *hists, struct rb_root *root,
1205 struct hist_entry *he)
3d1d07ec 1206{
b9bf0892 1207 struct rb_node **p = &root->rb_node;
3d1d07ec
JK
1208 struct rb_node *parent = NULL;
1209 struct hist_entry *iter;
1210 int64_t cmp;
1211
aef810ec
NK
1212 if (symbol_conf.report_hierarchy)
1213 return hists__hierarchy_insert_entry(hists, root, he);
1214
3d1d07ec
JK
1215 while (*p != NULL) {
1216 parent = *p;
1980c2eb 1217 iter = rb_entry(parent, struct hist_entry, rb_node_in);
3d1d07ec
JK
1218
1219 cmp = hist_entry__collapse(iter, he);
1220
1221 if (!cmp) {
bba58cdf
NK
1222 int ret = 0;
1223
139c0815 1224 he_stat__add_stat(&iter->stat, &he->stat);
f8be1c8c
NK
1225 if (symbol_conf.cumulate_callchain)
1226 he_stat__add_stat(iter->stat_acc, he->stat_acc);
9ec60972 1227
1b3a0e95 1228 if (symbol_conf.use_callchain) {
47260645 1229 callchain_cursor_reset(&callchain_cursor);
bba58cdf
NK
1230 if (callchain_merge(&callchain_cursor,
1231 iter->callchain,
1232 he->callchain) < 0)
1233 ret = -1;
1b3a0e95 1234 }
6733d1bf 1235 hist_entry__delete(he);
bba58cdf 1236 return ret;
3d1d07ec
JK
1237 }
1238
1239 if (cmp < 0)
1240 p = &(*p)->rb_left;
1241 else
1242 p = &(*p)->rb_right;
1243 }
740b97f9 1244 hists->nr_entries++;
3d1d07ec 1245
1980c2eb
ACM
1246 rb_link_node(&he->rb_node_in, parent, p);
1247 rb_insert_color(&he->rb_node_in, root);
bba58cdf 1248 return 1;
3d1d07ec
JK
1249}
1250
fc284be9 1251struct rb_root *hists__get_rotate_entries_in(struct hists *hists)
3d1d07ec 1252{
1980c2eb
ACM
1253 struct rb_root *root;
1254
1255 pthread_mutex_lock(&hists->lock);
1256
1257 root = hists->entries_in;
1258 if (++hists->entries_in > &hists->entries_in_array[1])
1259 hists->entries_in = &hists->entries_in_array[0];
1260
1261 pthread_mutex_unlock(&hists->lock);
1262
1263 return root;
1264}
1265
90cf1fb5
ACM
1266static void hists__apply_filters(struct hists *hists, struct hist_entry *he)
1267{
1268 hists__filter_entry_by_dso(hists, he);
1269 hists__filter_entry_by_thread(hists, he);
e94d53eb 1270 hists__filter_entry_by_symbol(hists, he);
21394d94 1271 hists__filter_entry_by_socket(hists, he);
90cf1fb5
ACM
1272}
1273
bba58cdf 1274int hists__collapse_resort(struct hists *hists, struct ui_progress *prog)
1980c2eb
ACM
1275{
1276 struct rb_root *root;
3d1d07ec
JK
1277 struct rb_node *next;
1278 struct hist_entry *n;
bba58cdf 1279 int ret;
3d1d07ec 1280
3a5714f8 1281 if (!sort__need_collapse)
bba58cdf 1282 return 0;
3d1d07ec 1283
740b97f9
NK
1284 hists->nr_entries = 0;
1285
1980c2eb 1286 root = hists__get_rotate_entries_in(hists);
740b97f9 1287
1980c2eb 1288 next = rb_first(root);
b9bf0892 1289
3d1d07ec 1290 while (next) {
33e940a2
ACM
1291 if (session_done())
1292 break;
1980c2eb
ACM
1293 n = rb_entry(next, struct hist_entry, rb_node_in);
1294 next = rb_next(&n->rb_node_in);
3d1d07ec 1295
1980c2eb 1296 rb_erase(&n->rb_node_in, root);
bba58cdf
NK
1297 ret = hists__collapse_insert_entry(hists, &hists->entries_collapsed, n);
1298 if (ret < 0)
1299 return -1;
1300
1301 if (ret) {
90cf1fb5
ACM
1302 /*
1303 * If it wasn't combined with one of the entries already
1304 * collapsed, we need to apply the filters that may have
1305 * been set by, say, the hist_browser.
1306 */
1307 hists__apply_filters(hists, n);
90cf1fb5 1308 }
c1fb5651
NK
1309 if (prog)
1310 ui_progress__update(prog, 1);
3d1d07ec 1311 }
bba58cdf 1312 return 0;
1980c2eb 1313}
b9bf0892 1314
043ca389 1315static int hist_entry__sort(struct hist_entry *a, struct hist_entry *b)
29d720ed 1316{
aa6f50af 1317 struct hists *hists = a->hists;
043ca389
NK
1318 struct perf_hpp_fmt *fmt;
1319 int64_t cmp = 0;
29d720ed 1320
aa6f50af 1321 hists__for_each_sort_list(hists, fmt) {
361459f1 1322 if (perf_hpp__should_skip(fmt, a->hists))
e67d49a7
NK
1323 continue;
1324
87bbdf76 1325 cmp = fmt->sort(fmt, a, b);
043ca389 1326 if (cmp)
29d720ed
NK
1327 break;
1328 }
1329
043ca389 1330 return cmp;
29d720ed
NK
1331}
1332
9283ba9b
NK
1333static void hists__reset_filter_stats(struct hists *hists)
1334{
1335 hists->nr_non_filtered_entries = 0;
1336 hists->stats.total_non_filtered_period = 0;
1337}
1338
1339void hists__reset_stats(struct hists *hists)
1340{
1341 hists->nr_entries = 0;
1342 hists->stats.total_period = 0;
1343
1344 hists__reset_filter_stats(hists);
1345}
1346
1347static void hists__inc_filter_stats(struct hists *hists, struct hist_entry *h)
1348{
1349 hists->nr_non_filtered_entries++;
1350 hists->stats.total_non_filtered_period += h->stat.period;
1351}
1352
1353void hists__inc_stats(struct hists *hists, struct hist_entry *h)
1354{
1355 if (!h->filtered)
1356 hists__inc_filter_stats(hists, h);
1357
1358 hists->nr_entries++;
1359 hists->stats.total_period += h->stat.period;
1360}
1361
1a3906a7
NK
1362static void hierarchy_insert_output_entry(struct rb_root *root,
1363 struct hist_entry *he)
1364{
1365 struct rb_node **p = &root->rb_node;
1366 struct rb_node *parent = NULL;
1367 struct hist_entry *iter;
1b2dbbf4 1368 struct perf_hpp_fmt *fmt;
1a3906a7
NK
1369
1370 while (*p != NULL) {
1371 parent = *p;
1372 iter = rb_entry(parent, struct hist_entry, rb_node);
1373
1374 if (hist_entry__sort(he, iter) > 0)
1375 p = &parent->rb_left;
1376 else
1377 p = &parent->rb_right;
1378 }
1379
1380 rb_link_node(&he->rb_node, parent, p);
1381 rb_insert_color(&he->rb_node, root);
abab5e7f
NK
1382
1383 /* update column width of dynamic entry */
1b2dbbf4
NK
1384 perf_hpp_list__for_each_sort_list(he->hpp_list, fmt) {
1385 if (perf_hpp__is_dynamic_entry(fmt))
1386 fmt->sort(fmt, he, NULL);
1387 }
1a3906a7
NK
1388}
1389
1390static void hists__hierarchy_output_resort(struct hists *hists,
1391 struct ui_progress *prog,
1392 struct rb_root *root_in,
1393 struct rb_root *root_out,
1394 u64 min_callchain_hits,
1395 bool use_callchain)
1396{
1397 struct rb_node *node;
1398 struct hist_entry *he;
1399
1400 *root_out = RB_ROOT;
1401 node = rb_first(root_in);
1402
1403 while (node) {
1404 he = rb_entry(node, struct hist_entry, rb_node_in);
1405 node = rb_next(node);
1406
1407 hierarchy_insert_output_entry(root_out, he);
1408
1409 if (prog)
1410 ui_progress__update(prog, 1);
1411
1412 if (!he->leaf) {
1413 hists__hierarchy_output_resort(hists, prog,
1414 &he->hroot_in,
1415 &he->hroot_out,
1416 min_callchain_hits,
1417 use_callchain);
1418 hists->nr_entries++;
1419 if (!he->filtered) {
1420 hists->nr_non_filtered_entries++;
1421 hists__calc_col_len(hists, he);
1422 }
1423
1424 continue;
1425 }
1426
1427 /* only update stat for leaf entries to avoid duplication */
1428 hists__inc_stats(hists, he);
1429 if (!he->filtered)
1430 hists__calc_col_len(hists, he);
1431
1432 if (!use_callchain)
1433 continue;
1434
1435 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1436 u64 total = he->stat.period;
1437
1438 if (symbol_conf.cumulate_callchain)
1439 total = he->stat_acc->period;
1440
1441 min_callchain_hits = total * (callchain_param.min_percent / 100);
1442 }
1443
1444 callchain_param.sort(&he->sorted_chain, he->callchain,
1445 min_callchain_hits, &callchain_param);
1446 }
1447}
1448
1c02c4d2
ACM
1449static void __hists__insert_output_entry(struct rb_root *entries,
1450 struct hist_entry *he,
f9db0d0f
KL
1451 u64 min_callchain_hits,
1452 bool use_callchain)
3d1d07ec 1453{
1c02c4d2 1454 struct rb_node **p = &entries->rb_node;
3d1d07ec
JK
1455 struct rb_node *parent = NULL;
1456 struct hist_entry *iter;
abab5e7f 1457 struct perf_hpp_fmt *fmt;
3d1d07ec 1458
744070e0
NK
1459 if (use_callchain) {
1460 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1461 u64 total = he->stat.period;
1462
1463 if (symbol_conf.cumulate_callchain)
1464 total = he->stat_acc->period;
1465
1466 min_callchain_hits = total * (callchain_param.min_percent / 100);
1467 }
b9fb9304 1468 callchain_param.sort(&he->sorted_chain, he->callchain,
3d1d07ec 1469 min_callchain_hits, &callchain_param);
744070e0 1470 }
3d1d07ec
JK
1471
1472 while (*p != NULL) {
1473 parent = *p;
1474 iter = rb_entry(parent, struct hist_entry, rb_node);
1475
043ca389 1476 if (hist_entry__sort(he, iter) > 0)
3d1d07ec
JK
1477 p = &(*p)->rb_left;
1478 else
1479 p = &(*p)->rb_right;
1480 }
1481
1482 rb_link_node(&he->rb_node, parent, p);
1c02c4d2 1483 rb_insert_color(&he->rb_node, entries);
abab5e7f
NK
1484
1485 perf_hpp_list__for_each_sort_list(&perf_hpp_list, fmt) {
1486 if (perf_hpp__is_dynamic_entry(fmt) &&
1487 perf_hpp__defined_dynamic_entry(fmt, he->hists))
1488 fmt->sort(fmt, he, NULL); /* update column width */
1489 }
3d1d07ec
JK
1490}
1491
01441af5
JO
1492static void output_resort(struct hists *hists, struct ui_progress *prog,
1493 bool use_callchain)
3d1d07ec 1494{
1980c2eb 1495 struct rb_root *root;
3d1d07ec
JK
1496 struct rb_node *next;
1497 struct hist_entry *n;
467ef10c 1498 u64 callchain_total;
3d1d07ec
JK
1499 u64 min_callchain_hits;
1500
467ef10c
NK
1501 callchain_total = hists->callchain_period;
1502 if (symbol_conf.filter_relative)
1503 callchain_total = hists->callchain_non_filtered_period;
1504
1505 min_callchain_hits = callchain_total * (callchain_param.min_percent / 100);
3d1d07ec 1506
1a3906a7
NK
1507 hists__reset_stats(hists);
1508 hists__reset_col_len(hists);
1509
1510 if (symbol_conf.report_hierarchy) {
1511 return hists__hierarchy_output_resort(hists, prog,
1512 &hists->entries_collapsed,
1513 &hists->entries,
1514 min_callchain_hits,
1515 use_callchain);
1516 }
1517
3a5714f8 1518 if (sort__need_collapse)
1980c2eb
ACM
1519 root = &hists->entries_collapsed;
1520 else
1521 root = hists->entries_in;
1522
1523 next = rb_first(root);
1524 hists->entries = RB_ROOT;
3d1d07ec
JK
1525
1526 while (next) {
1980c2eb
ACM
1527 n = rb_entry(next, struct hist_entry, rb_node_in);
1528 next = rb_next(&n->rb_node_in);
3d1d07ec 1529
f9db0d0f 1530 __hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain);
6263835a 1531 hists__inc_stats(hists, n);
ae993efc
NK
1532
1533 if (!n->filtered)
1534 hists__calc_col_len(hists, n);
740b97f9
NK
1535
1536 if (prog)
1537 ui_progress__update(prog, 1);
3d1d07ec 1538 }
1980c2eb 1539}
b9bf0892 1540
452ce03b 1541void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog)
01441af5 1542{
01441af5
JO
1543 bool use_callchain;
1544
1545 if (evsel && symbol_conf.use_callchain && !symbol_conf.show_ref_callgraph)
1546 use_callchain = evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN;
1547 else
1548 use_callchain = symbol_conf.use_callchain;
1549
452ce03b
JO
1550 output_resort(evsel__hists(evsel), prog, use_callchain);
1551}
1552
1553void hists__output_resort(struct hists *hists, struct ui_progress *prog)
1554{
1555 output_resort(hists, prog, symbol_conf.use_callchain);
01441af5
JO
1556}
1557
8c01872f
NK
1558static bool can_goto_child(struct hist_entry *he, enum hierarchy_move_dir hmd)
1559{
1560 if (he->leaf || hmd == HMD_FORCE_SIBLING)
1561 return false;
1562
1563 if (he->unfolded || hmd == HMD_FORCE_CHILD)
1564 return true;
1565
1566 return false;
1567}
1568
1569struct rb_node *rb_hierarchy_last(struct rb_node *node)
1570{
1571 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1572
1573 while (can_goto_child(he, HMD_NORMAL)) {
1574 node = rb_last(&he->hroot_out);
1575 he = rb_entry(node, struct hist_entry, rb_node);
1576 }
1577 return node;
1578}
1579
1580struct rb_node *__rb_hierarchy_next(struct rb_node *node, enum hierarchy_move_dir hmd)
1581{
1582 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1583
1584 if (can_goto_child(he, hmd))
1585 node = rb_first(&he->hroot_out);
1586 else
1587 node = rb_next(node);
1588
1589 while (node == NULL) {
1590 he = he->parent_he;
1591 if (he == NULL)
1592 break;
1593
1594 node = rb_next(&he->rb_node);
1595 }
1596 return node;
1597}
1598
1599struct rb_node *rb_hierarchy_prev(struct rb_node *node)
1600{
1601 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1602
1603 node = rb_prev(node);
1604 if (node)
1605 return rb_hierarchy_last(node);
1606
1607 he = he->parent_he;
1608 if (he == NULL)
1609 return NULL;
1610
1611 return &he->rb_node;
1612}
1613
a7b5895b
NK
1614bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit)
1615{
1616 struct rb_node *node;
1617 struct hist_entry *child;
1618 float percent;
1619
1620 if (he->leaf)
1621 return false;
1622
1623 node = rb_first(&he->hroot_out);
1624 child = rb_entry(node, struct hist_entry, rb_node);
1625
1626 while (node && child->filtered) {
1627 node = rb_next(node);
1628 child = rb_entry(node, struct hist_entry, rb_node);
1629 }
1630
1631 if (node)
1632 percent = hist_entry__get_percent_limit(child);
1633 else
1634 percent = 0;
1635
1636 return node && percent >= limit;
1637}
1638
42b28ac0 1639static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h,
cc5edb0e
ACM
1640 enum hist_filter filter)
1641{
1642 h->filtered &= ~(1 << filter);
155e9aff
NK
1643
1644 if (symbol_conf.report_hierarchy) {
1645 struct hist_entry *parent = h->parent_he;
1646
1647 while (parent) {
1648 he_stat__add_stat(&parent->stat, &h->stat);
1649
1650 parent->filtered &= ~(1 << filter);
1651
1652 if (parent->filtered)
1653 goto next;
1654
1655 /* force fold unfiltered entry for simplicity */
1656 parent->unfolded = false;
79dded87 1657 parent->has_no_entry = false;
155e9aff
NK
1658 parent->row_offset = 0;
1659 parent->nr_rows = 0;
1660next:
1661 parent = parent->parent_he;
1662 }
1663 }
1664
cc5edb0e
ACM
1665 if (h->filtered)
1666 return;
1667
87e90f43 1668 /* force fold unfiltered entry for simplicity */
3698dab1 1669 h->unfolded = false;
79dded87 1670 h->has_no_entry = false;
0f0cbf7a 1671 h->row_offset = 0;
a8cd1f43 1672 h->nr_rows = 0;
9283ba9b 1673
1ab1fa5d 1674 hists->stats.nr_non_filtered_samples += h->stat.nr_events;
cc5edb0e 1675
9283ba9b 1676 hists__inc_filter_stats(hists, h);
42b28ac0 1677 hists__calc_col_len(hists, h);
cc5edb0e
ACM
1678}
1679
90cf1fb5
ACM
1680
1681static bool hists__filter_entry_by_dso(struct hists *hists,
1682 struct hist_entry *he)
1683{
1684 if (hists->dso_filter != NULL &&
1685 (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) {
1686 he->filtered |= (1 << HIST_FILTER__DSO);
1687 return true;
1688 }
1689
1690 return false;
1691}
1692
90cf1fb5
ACM
1693static bool hists__filter_entry_by_thread(struct hists *hists,
1694 struct hist_entry *he)
1695{
1696 if (hists->thread_filter != NULL &&
1697 he->thread != hists->thread_filter) {
1698 he->filtered |= (1 << HIST_FILTER__THREAD);
1699 return true;
1700 }
1701
1702 return false;
1703}
1704
e94d53eb
NK
1705static bool hists__filter_entry_by_symbol(struct hists *hists,
1706 struct hist_entry *he)
1707{
1708 if (hists->symbol_filter_str != NULL &&
1709 (!he->ms.sym || strstr(he->ms.sym->name,
1710 hists->symbol_filter_str) == NULL)) {
1711 he->filtered |= (1 << HIST_FILTER__SYMBOL);
1712 return true;
1713 }
1714
1715 return false;
1716}
1717
21394d94
KL
1718static bool hists__filter_entry_by_socket(struct hists *hists,
1719 struct hist_entry *he)
1720{
1721 if ((hists->socket_filter > -1) &&
1722 (he->socket != hists->socket_filter)) {
1723 he->filtered |= (1 << HIST_FILTER__SOCKET);
1724 return true;
1725 }
1726
1727 return false;
1728}
1729
1f7c2541
NK
1730typedef bool (*filter_fn_t)(struct hists *hists, struct hist_entry *he);
1731
1732static void hists__filter_by_type(struct hists *hists, int type, filter_fn_t filter)
84734b06
KL
1733{
1734 struct rb_node *nd;
1735
1736 hists->stats.nr_non_filtered_samples = 0;
1737
1738 hists__reset_filter_stats(hists);
1739 hists__reset_col_len(hists);
1740
1741 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
1742 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1743
1f7c2541 1744 if (filter(hists, h))
84734b06
KL
1745 continue;
1746
1f7c2541 1747 hists__remove_entry_filter(hists, h, type);
84734b06
KL
1748 }
1749}
1750
70642850
NK
1751static void resort_filtered_entry(struct rb_root *root, struct hist_entry *he)
1752{
1753 struct rb_node **p = &root->rb_node;
1754 struct rb_node *parent = NULL;
1755 struct hist_entry *iter;
1756 struct rb_root new_root = RB_ROOT;
1757 struct rb_node *nd;
1758
1759 while (*p != NULL) {
1760 parent = *p;
1761 iter = rb_entry(parent, struct hist_entry, rb_node);
1762
1763 if (hist_entry__sort(he, iter) > 0)
1764 p = &(*p)->rb_left;
1765 else
1766 p = &(*p)->rb_right;
1767 }
1768
1769 rb_link_node(&he->rb_node, parent, p);
1770 rb_insert_color(&he->rb_node, root);
1771
1772 if (he->leaf || he->filtered)
1773 return;
1774
1775 nd = rb_first(&he->hroot_out);
1776 while (nd) {
1777 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1778
1779 nd = rb_next(nd);
1780 rb_erase(&h->rb_node, &he->hroot_out);
1781
1782 resort_filtered_entry(&new_root, h);
1783 }
1784
1785 he->hroot_out = new_root;
1786}
1787
155e9aff
NK
1788static void hists__filter_hierarchy(struct hists *hists, int type, const void *arg)
1789{
1790 struct rb_node *nd;
70642850 1791 struct rb_root new_root = RB_ROOT;
155e9aff
NK
1792
1793 hists->stats.nr_non_filtered_samples = 0;
1794
1795 hists__reset_filter_stats(hists);
1796 hists__reset_col_len(hists);
1797
1798 nd = rb_first(&hists->entries);
1799 while (nd) {
1800 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1801 int ret;
1802
1803 ret = hist_entry__filter(h, type, arg);
1804
1805 /*
1806 * case 1. non-matching type
1807 * zero out the period, set filter marker and move to child
1808 */
1809 if (ret < 0) {
1810 memset(&h->stat, 0, sizeof(h->stat));
1811 h->filtered |= (1 << type);
1812
1813 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_CHILD);
1814 }
1815 /*
1816 * case 2. matched type (filter out)
1817 * set filter marker and move to next
1818 */
1819 else if (ret == 1) {
1820 h->filtered |= (1 << type);
1821
1822 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_SIBLING);
1823 }
1824 /*
1825 * case 3. ok (not filtered)
1826 * add period to hists and parents, erase the filter marker
1827 * and move to next sibling
1828 */
1829 else {
1830 hists__remove_entry_filter(hists, h, type);
1831
1832 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_SIBLING);
1833 }
1834 }
70642850
NK
1835
1836 /*
1837 * resort output after applying a new filter since filter in a lower
1838 * hierarchy can change periods in a upper hierarchy.
1839 */
1840 nd = rb_first(&hists->entries);
1841 while (nd) {
1842 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1843
1844 nd = rb_next(nd);
1845 rb_erase(&h->rb_node, &hists->entries);
1846
1847 resort_filtered_entry(&new_root, h);
1848 }
1849
1850 hists->entries = new_root;
155e9aff
NK
1851}
1852
1f7c2541
NK
1853void hists__filter_by_thread(struct hists *hists)
1854{
155e9aff
NK
1855 if (symbol_conf.report_hierarchy)
1856 hists__filter_hierarchy(hists, HIST_FILTER__THREAD,
1857 hists->thread_filter);
1858 else
1859 hists__filter_by_type(hists, HIST_FILTER__THREAD,
1860 hists__filter_entry_by_thread);
1f7c2541
NK
1861}
1862
1863void hists__filter_by_dso(struct hists *hists)
1864{
155e9aff
NK
1865 if (symbol_conf.report_hierarchy)
1866 hists__filter_hierarchy(hists, HIST_FILTER__DSO,
1867 hists->dso_filter);
1868 else
1869 hists__filter_by_type(hists, HIST_FILTER__DSO,
1870 hists__filter_entry_by_dso);
1f7c2541
NK
1871}
1872
1873void hists__filter_by_symbol(struct hists *hists)
1874{
155e9aff
NK
1875 if (symbol_conf.report_hierarchy)
1876 hists__filter_hierarchy(hists, HIST_FILTER__SYMBOL,
1877 hists->symbol_filter_str);
1878 else
1879 hists__filter_by_type(hists, HIST_FILTER__SYMBOL,
1880 hists__filter_entry_by_symbol);
1f7c2541
NK
1881}
1882
1883void hists__filter_by_socket(struct hists *hists)
1884{
155e9aff
NK
1885 if (symbol_conf.report_hierarchy)
1886 hists__filter_hierarchy(hists, HIST_FILTER__SOCKET,
1887 &hists->socket_filter);
1888 else
1889 hists__filter_by_type(hists, HIST_FILTER__SOCKET,
1890 hists__filter_entry_by_socket);
1f7c2541
NK
1891}
1892
28a6b6aa
ACM
1893void events_stats__inc(struct events_stats *stats, u32 type)
1894{
1895 ++stats->nr_events[0];
1896 ++stats->nr_events[type];
1897}
1898
42b28ac0 1899void hists__inc_nr_events(struct hists *hists, u32 type)
c8446b9b 1900{
28a6b6aa 1901 events_stats__inc(&hists->stats, type);
c8446b9b 1902}
95529be4 1903
1844dbcb
NK
1904void hists__inc_nr_samples(struct hists *hists, bool filtered)
1905{
1906 events_stats__inc(&hists->stats, PERF_RECORD_SAMPLE);
1907 if (!filtered)
1908 hists->stats.nr_non_filtered_samples++;
1909}
1910
494d70a1
ACM
1911static struct hist_entry *hists__add_dummy_entry(struct hists *hists,
1912 struct hist_entry *pair)
1913{
ce74f60e
NK
1914 struct rb_root *root;
1915 struct rb_node **p;
494d70a1
ACM
1916 struct rb_node *parent = NULL;
1917 struct hist_entry *he;
354cc40e 1918 int64_t cmp;
494d70a1 1919
ce74f60e
NK
1920 if (sort__need_collapse)
1921 root = &hists->entries_collapsed;
1922 else
1923 root = hists->entries_in;
1924
1925 p = &root->rb_node;
1926
494d70a1
ACM
1927 while (*p != NULL) {
1928 parent = *p;
ce74f60e 1929 he = rb_entry(parent, struct hist_entry, rb_node_in);
494d70a1 1930
ce74f60e 1931 cmp = hist_entry__collapse(he, pair);
494d70a1
ACM
1932
1933 if (!cmp)
1934 goto out;
1935
1936 if (cmp < 0)
1937 p = &(*p)->rb_left;
1938 else
1939 p = &(*p)->rb_right;
1940 }
1941
a0b51af3 1942 he = hist_entry__new(pair, true);
494d70a1 1943 if (he) {
30193d78
ACM
1944 memset(&he->stat, 0, sizeof(he->stat));
1945 he->hists = hists;
ce74f60e
NK
1946 rb_link_node(&he->rb_node_in, parent, p);
1947 rb_insert_color(&he->rb_node_in, root);
6263835a 1948 hists__inc_stats(hists, he);
e0af43d2 1949 he->dummy = true;
494d70a1
ACM
1950 }
1951out:
1952 return he;
1953}
1954
95529be4
ACM
1955static struct hist_entry *hists__find_entry(struct hists *hists,
1956 struct hist_entry *he)
1957{
ce74f60e
NK
1958 struct rb_node *n;
1959
1960 if (sort__need_collapse)
1961 n = hists->entries_collapsed.rb_node;
1962 else
1963 n = hists->entries_in->rb_node;
95529be4
ACM
1964
1965 while (n) {
ce74f60e
NK
1966 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node_in);
1967 int64_t cmp = hist_entry__collapse(iter, he);
95529be4
ACM
1968
1969 if (cmp < 0)
1970 n = n->rb_left;
1971 else if (cmp > 0)
1972 n = n->rb_right;
1973 else
1974 return iter;
1975 }
1976
1977 return NULL;
1978}
1979
1980/*
1981 * Look for pairs to link to the leader buckets (hist_entries):
1982 */
1983void hists__match(struct hists *leader, struct hists *other)
1984{
ce74f60e 1985 struct rb_root *root;
95529be4
ACM
1986 struct rb_node *nd;
1987 struct hist_entry *pos, *pair;
1988
ce74f60e
NK
1989 if (sort__need_collapse)
1990 root = &leader->entries_collapsed;
1991 else
1992 root = leader->entries_in;
1993
1994 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
1995 pos = rb_entry(nd, struct hist_entry, rb_node_in);
95529be4
ACM
1996 pair = hists__find_entry(other, pos);
1997
1998 if (pair)
5fa9041b 1999 hist_entry__add_pair(pair, pos);
95529be4
ACM
2000 }
2001}
494d70a1
ACM
2002
2003/*
2004 * Look for entries in the other hists that are not present in the leader, if
2005 * we find them, just add a dummy entry on the leader hists, with period=0,
2006 * nr_events=0, to serve as the list header.
2007 */
2008int hists__link(struct hists *leader, struct hists *other)
2009{
ce74f60e 2010 struct rb_root *root;
494d70a1
ACM
2011 struct rb_node *nd;
2012 struct hist_entry *pos, *pair;
2013
ce74f60e
NK
2014 if (sort__need_collapse)
2015 root = &other->entries_collapsed;
2016 else
2017 root = other->entries_in;
2018
2019 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
2020 pos = rb_entry(nd, struct hist_entry, rb_node_in);
494d70a1
ACM
2021
2022 if (!hist_entry__has_pairs(pos)) {
2023 pair = hists__add_dummy_entry(leader, pos);
2024 if (pair == NULL)
2025 return -1;
5fa9041b 2026 hist_entry__add_pair(pos, pair);
494d70a1
ACM
2027 }
2028 }
2029
2030 return 0;
2031}
f2148330 2032
57849998
AK
2033void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
2034 struct perf_sample *sample, bool nonany_branch_mode)
2035{
2036 struct branch_info *bi;
2037
2038 /* If we have branch cycles always annotate them. */
2039 if (bs && bs->nr && bs->entries[0].flags.cycles) {
2040 int i;
2041
2042 bi = sample__resolve_bstack(sample, al);
2043 if (bi) {
2044 struct addr_map_symbol *prev = NULL;
2045
2046 /*
2047 * Ignore errors, still want to process the
2048 * other entries.
2049 *
2050 * For non standard branch modes always
2051 * force no IPC (prev == NULL)
2052 *
2053 * Note that perf stores branches reversed from
2054 * program order!
2055 */
2056 for (i = bs->nr - 1; i >= 0; i--) {
2057 addr_map_symbol__account_cycles(&bi[i].from,
2058 nonany_branch_mode ? NULL : prev,
2059 bi[i].flags.cycles);
2060 prev = &bi[i].to;
2061 }
2062 free(bi);
2063 }
2064 }
2065}
2a1731fb
ACM
2066
2067size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp)
2068{
2069 struct perf_evsel *pos;
2070 size_t ret = 0;
2071
2072 evlist__for_each(evlist, pos) {
2073 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
2074 ret += events_stats__fprintf(&evsel__hists(pos)->stats, fp);
2075 }
2076
2077 return ret;
2078}
2079
2080
f2148330
NK
2081u64 hists__total_period(struct hists *hists)
2082{
2083 return symbol_conf.filter_relative ? hists->stats.total_non_filtered_period :
2084 hists->stats.total_period;
2085}
33db4568
NK
2086
2087int parse_filter_percentage(const struct option *opt __maybe_unused,
2088 const char *arg, int unset __maybe_unused)
2089{
2090 if (!strcmp(arg, "relative"))
2091 symbol_conf.filter_relative = true;
2092 else if (!strcmp(arg, "absolute"))
2093 symbol_conf.filter_relative = false;
2094 else
2095 return -1;
2096
2097 return 0;
2098}
0b93da17
NK
2099
2100int perf_hist_config(const char *var, const char *value)
2101{
2102 if (!strcmp(var, "hist.percentage"))
2103 return parse_filter_percentage(NULL, value, 0);
2104
2105 return 0;
2106}
a635fc51 2107
5b65855e 2108int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list)
a635fc51 2109{
a635fc51
ACM
2110 memset(hists, 0, sizeof(*hists));
2111 hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT;
2112 hists->entries_in = &hists->entries_in_array[0];
2113 hists->entries_collapsed = RB_ROOT;
2114 hists->entries = RB_ROOT;
2115 pthread_mutex_init(&hists->lock, NULL);
21394d94 2116 hists->socket_filter = -1;
5b65855e 2117 hists->hpp_list = hpp_list;
c3bc0c43 2118 INIT_LIST_HEAD(&hists->hpp_formats);
a635fc51
ACM
2119 return 0;
2120}
2121
61fa0e94
NK
2122static void hists__delete_remaining_entries(struct rb_root *root)
2123{
2124 struct rb_node *node;
2125 struct hist_entry *he;
2126
2127 while (!RB_EMPTY_ROOT(root)) {
2128 node = rb_first(root);
2129 rb_erase(node, root);
2130
2131 he = rb_entry(node, struct hist_entry, rb_node_in);
2132 hist_entry__delete(he);
2133 }
2134}
2135
2136static void hists__delete_all_entries(struct hists *hists)
2137{
2138 hists__delete_entries(hists);
2139 hists__delete_remaining_entries(&hists->entries_in_array[0]);
2140 hists__delete_remaining_entries(&hists->entries_in_array[1]);
2141 hists__delete_remaining_entries(&hists->entries_collapsed);
2142}
2143
17577dec
MH
2144static void hists_evsel__exit(struct perf_evsel *evsel)
2145{
2146 struct hists *hists = evsel__hists(evsel);
c3bc0c43
NK
2147 struct perf_hpp_fmt *fmt, *pos;
2148 struct perf_hpp_list_node *node, *tmp;
17577dec 2149
61fa0e94 2150 hists__delete_all_entries(hists);
c3bc0c43
NK
2151
2152 list_for_each_entry_safe(node, tmp, &hists->hpp_formats, list) {
2153 perf_hpp_list__for_each_format_safe(&node->hpp, fmt, pos) {
2154 list_del(&fmt->list);
2155 free(fmt);
2156 }
2157 list_del(&node->list);
2158 free(node);
2159 }
17577dec
MH
2160}
2161
fc284be9
NK
2162static int hists_evsel__init(struct perf_evsel *evsel)
2163{
2164 struct hists *hists = evsel__hists(evsel);
2165
5b65855e 2166 __hists__init(hists, &perf_hpp_list);
fc284be9
NK
2167 return 0;
2168}
2169
a635fc51
ACM
2170/*
2171 * XXX We probably need a hists_evsel__exit() to free the hist_entries
2172 * stored in the rbtree...
2173 */
2174
2175int hists__init(void)
2176{
2177 int err = perf_evsel__object_config(sizeof(struct hists_evsel),
17577dec
MH
2178 hists_evsel__init,
2179 hists_evsel__exit);
a635fc51
ACM
2180 if (err)
2181 fputs("FATAL ERROR: Couldn't setup hists class\n", stderr);
2182
2183 return err;
2184}
94b3dc38
JO
2185
2186void perf_hpp_list__init(struct perf_hpp_list *list)
2187{
2188 INIT_LIST_HEAD(&list->fields);
2189 INIT_LIST_HEAD(&list->sorts);
2190}
This page took 0.394535 seconds and 5 git commands to generate.