1 // SPDX-License-Identifier: GPL-2.0
9 #include "map_symbol.h"
11 #include "mem-events.h"
14 #include "namespaces.h"
24 #include "block-info.h"
25 #include "ui/progress.h"
29 #include <sys/param.h>
30 #include <linux/rbtree.h>
31 #include <linux/string.h>
32 #include <linux/time64.h>
33 #include <linux/zalloc.h>
35 static bool hists__filter_entry_by_dso(struct hists
*hists
,
36 struct hist_entry
*he
);
37 static bool hists__filter_entry_by_thread(struct hists
*hists
,
38 struct hist_entry
*he
);
39 static bool hists__filter_entry_by_symbol(struct hists
*hists
,
40 struct hist_entry
*he
);
41 static bool hists__filter_entry_by_socket(struct hists
*hists
,
42 struct hist_entry
*he
);
44 u16
hists__col_len(struct hists
*hists
, enum hist_column col
)
46 return hists
->col_len
[col
];
49 void hists__set_col_len(struct hists
*hists
, enum hist_column col
, u16 len
)
51 hists
->col_len
[col
] = len
;
54 bool hists__new_col_len(struct hists
*hists
, enum hist_column col
, u16 len
)
56 if (len
> hists__col_len(hists
, col
)) {
57 hists__set_col_len(hists
, col
, len
);
63 void hists__reset_col_len(struct hists
*hists
)
67 for (col
= 0; col
< HISTC_NR_COLS
; ++col
)
68 hists__set_col_len(hists
, col
, 0);
71 static void hists__set_unres_dso_col_len(struct hists
*hists
, int dso
)
73 const unsigned int unresolved_col_width
= BITS_PER_LONG
/ 4;
75 if (hists__col_len(hists
, dso
) < unresolved_col_width
&&
76 !symbol_conf
.col_width_list_str
&& !symbol_conf
.field_sep
&&
77 !symbol_conf
.dso_list
)
78 hists__set_col_len(hists
, dso
, unresolved_col_width
);
81 void hists__calc_col_len(struct hists
*hists
, struct hist_entry
*h
)
83 const unsigned int unresolved_col_width
= BITS_PER_LONG
/ 4;
90 * +4 accounts for '[x] ' priv level info
91 * +2 accounts for 0x prefix on raw addresses
92 * +3 accounts for ' y ' symtab origin info
95 symlen
= h
->ms
.sym
->namelen
+ 4;
97 symlen
+= BITS_PER_LONG
/ 4 + 2 + 3;
98 hists__new_col_len(hists
, HISTC_SYMBOL
, symlen
);
100 symlen
= unresolved_col_width
+ 4 + 2;
101 hists__new_col_len(hists
, HISTC_SYMBOL
, symlen
);
102 hists__set_unres_dso_col_len(hists
, HISTC_DSO
);
105 len
= thread__comm_len(h
->thread
);
106 if (hists__new_col_len(hists
, HISTC_COMM
, len
))
107 hists__set_col_len(hists
, HISTC_THREAD
, len
+ 8);
110 len
= dso__name_len(map__dso(h
->ms
.map
));
111 hists__new_col_len(hists
, HISTC_DSO
, len
);
115 hists__new_col_len(hists
, HISTC_PARENT
, h
->parent
->namelen
);
117 if (h
->branch_info
) {
118 if (h
->branch_info
->from
.ms
.sym
) {
119 symlen
= (int)h
->branch_info
->from
.ms
.sym
->namelen
+ 4;
121 symlen
+= BITS_PER_LONG
/ 4 + 2 + 3;
122 hists__new_col_len(hists
, HISTC_SYMBOL_FROM
, symlen
);
124 symlen
= dso__name_len(map__dso(h
->branch_info
->from
.ms
.map
));
125 hists__new_col_len(hists
, HISTC_DSO_FROM
, symlen
);
127 symlen
= unresolved_col_width
+ 4 + 2;
128 hists__new_col_len(hists
, HISTC_SYMBOL_FROM
, symlen
);
129 hists__new_col_len(hists
, HISTC_ADDR_FROM
, symlen
);
130 hists__set_unres_dso_col_len(hists
, HISTC_DSO_FROM
);
133 if (h
->branch_info
->to
.ms
.sym
) {
134 symlen
= (int)h
->branch_info
->to
.ms
.sym
->namelen
+ 4;
136 symlen
+= BITS_PER_LONG
/ 4 + 2 + 3;
137 hists__new_col_len(hists
, HISTC_SYMBOL_TO
, symlen
);
139 symlen
= dso__name_len(map__dso(h
->branch_info
->to
.ms
.map
));
140 hists__new_col_len(hists
, HISTC_DSO_TO
, symlen
);
142 symlen
= unresolved_col_width
+ 4 + 2;
143 hists__new_col_len(hists
, HISTC_SYMBOL_TO
, symlen
);
144 hists__new_col_len(hists
, HISTC_ADDR_TO
, symlen
);
145 hists__set_unres_dso_col_len(hists
, HISTC_DSO_TO
);
148 if (h
->branch_info
->srcline_from
)
149 hists__new_col_len(hists
, HISTC_SRCLINE_FROM
,
150 strlen(h
->branch_info
->srcline_from
));
151 if (h
->branch_info
->srcline_to
)
152 hists__new_col_len(hists
, HISTC_SRCLINE_TO
,
153 strlen(h
->branch_info
->srcline_to
));
157 if (mem_info__daddr(h
->mem_info
)->ms
.sym
) {
158 symlen
= (int)mem_info__daddr(h
->mem_info
)->ms
.sym
->namelen
+ 4
159 + unresolved_col_width
+ 2;
160 hists__new_col_len(hists
, HISTC_MEM_DADDR_SYMBOL
,
162 hists__new_col_len(hists
, HISTC_MEM_DCACHELINE
,
165 symlen
= unresolved_col_width
+ 4 + 2;
166 hists__new_col_len(hists
, HISTC_MEM_DADDR_SYMBOL
,
168 hists__new_col_len(hists
, HISTC_MEM_DCACHELINE
,
172 if (mem_info__iaddr(h
->mem_info
)->ms
.sym
) {
173 symlen
= (int)mem_info__iaddr(h
->mem_info
)->ms
.sym
->namelen
+ 4
174 + unresolved_col_width
+ 2;
175 hists__new_col_len(hists
, HISTC_MEM_IADDR_SYMBOL
,
178 symlen
= unresolved_col_width
+ 4 + 2;
179 hists__new_col_len(hists
, HISTC_MEM_IADDR_SYMBOL
,
183 if (mem_info__daddr(h
->mem_info
)->ms
.map
) {
184 symlen
= dso__name_len(map__dso(mem_info__daddr(h
->mem_info
)->ms
.map
));
185 hists__new_col_len(hists
, HISTC_MEM_DADDR_DSO
,
188 symlen
= unresolved_col_width
+ 4 + 2;
189 hists__set_unres_dso_col_len(hists
, HISTC_MEM_DADDR_DSO
);
192 hists__new_col_len(hists
, HISTC_MEM_PHYS_DADDR
,
193 unresolved_col_width
+ 4 + 2);
195 hists__new_col_len(hists
, HISTC_MEM_DATA_PAGE_SIZE
,
196 unresolved_col_width
+ 4 + 2);
199 symlen
= unresolved_col_width
+ 4 + 2;
200 hists__new_col_len(hists
, HISTC_MEM_DADDR_SYMBOL
, symlen
);
201 hists__new_col_len(hists
, HISTC_MEM_IADDR_SYMBOL
, symlen
);
202 hists__set_unres_dso_col_len(hists
, HISTC_MEM_DADDR_DSO
);
205 hists__new_col_len(hists
, HISTC_CGROUP
, 6);
206 hists__new_col_len(hists
, HISTC_CGROUP_ID
, 20);
207 hists__new_col_len(hists
, HISTC_CPU
, 3);
208 hists__new_col_len(hists
, HISTC_SOCKET
, 6);
209 hists__new_col_len(hists
, HISTC_MEM_LOCKED
, 6);
210 hists__new_col_len(hists
, HISTC_MEM_TLB
, 22);
211 hists__new_col_len(hists
, HISTC_MEM_SNOOP
, 12);
212 hists__new_col_len(hists
, HISTC_MEM_LVL
, 36 + 3);
213 hists__new_col_len(hists
, HISTC_LOCAL_WEIGHT
, 12);
214 hists__new_col_len(hists
, HISTC_GLOBAL_WEIGHT
, 12);
215 hists__new_col_len(hists
, HISTC_MEM_BLOCKED
, 10);
216 hists__new_col_len(hists
, HISTC_LOCAL_INS_LAT
, 13);
217 hists__new_col_len(hists
, HISTC_GLOBAL_INS_LAT
, 13);
218 hists__new_col_len(hists
, HISTC_LOCAL_P_STAGE_CYC
, 13);
219 hists__new_col_len(hists
, HISTC_GLOBAL_P_STAGE_CYC
, 13);
220 hists__new_col_len(hists
, HISTC_ADDR
, BITS_PER_LONG
/ 4 + 2);
221 hists__new_col_len(hists
, HISTC_CALLCHAIN_BRANCH_PREDICTED
, 9);
222 hists__new_col_len(hists
, HISTC_CALLCHAIN_BRANCH_ABORT
, 5);
223 hists__new_col_len(hists
, HISTC_CALLCHAIN_BRANCH_CYCLES
, 6);
225 if (symbol_conf
.nanosecs
)
226 hists__new_col_len(hists
, HISTC_TIME
, 16);
228 hists__new_col_len(hists
, HISTC_TIME
, 12);
229 hists__new_col_len(hists
, HISTC_CODE_PAGE_SIZE
, 6);
232 len
= MAX(strlen(h
->srcline
), strlen(sort_srcline
.se_header
));
233 hists__new_col_len(hists
, HISTC_SRCLINE
, len
);
237 hists__new_col_len(hists
, HISTC_SRCFILE
, strlen(h
->srcfile
));
240 hists__new_col_len(hists
, HISTC_TRANSACTION
,
241 hist_entry__transaction_len());
244 hists__new_col_len(hists
, HISTC_TRACE
, strlen(h
->trace_output
));
247 const char *cgrp_name
= "unknown";
248 struct cgroup
*cgrp
= cgroup__find(maps__machine(h
->ms
.maps
)->env
,
251 cgrp_name
= cgrp
->name
;
253 hists__new_col_len(hists
, HISTC_CGROUP
, strlen(cgrp_name
));
257 void hists__output_recalc_col_len(struct hists
*hists
, int max_rows
)
259 struct rb_node
*next
= rb_first_cached(&hists
->entries
);
260 struct hist_entry
*n
;
263 hists__reset_col_len(hists
);
265 while (next
&& row
++ < max_rows
) {
266 n
= rb_entry(next
, struct hist_entry
, rb_node
);
268 hists__calc_col_len(hists
, n
);
269 next
= rb_next(&n
->rb_node
);
273 static void he_stat__add_cpumode_period(struct he_stat
*he_stat
,
274 unsigned int cpumode
, u64 period
)
277 case PERF_RECORD_MISC_KERNEL
:
278 he_stat
->period_sys
+= period
;
280 case PERF_RECORD_MISC_USER
:
281 he_stat
->period_us
+= period
;
283 case PERF_RECORD_MISC_GUEST_KERNEL
:
284 he_stat
->period_guest_sys
+= period
;
286 case PERF_RECORD_MISC_GUEST_USER
:
287 he_stat
->period_guest_us
+= period
;
294 static long hist_time(unsigned long htime
)
296 unsigned long time_quantum
= symbol_conf
.time_quantum
;
298 return (htime
/ time_quantum
) * time_quantum
;
302 static void he_stat__add_period(struct he_stat
*he_stat
, u64 period
)
304 he_stat
->period
+= period
;
305 he_stat
->nr_events
+= 1;
308 static void he_stat__add_stat(struct he_stat
*dest
, struct he_stat
*src
)
310 dest
->period
+= src
->period
;
311 dest
->period_sys
+= src
->period_sys
;
312 dest
->period_us
+= src
->period_us
;
313 dest
->period_guest_sys
+= src
->period_guest_sys
;
314 dest
->period_guest_us
+= src
->period_guest_us
;
315 dest
->weight1
+= src
->weight1
;
316 dest
->weight2
+= src
->weight2
;
317 dest
->weight3
+= src
->weight3
;
318 dest
->nr_events
+= src
->nr_events
;
321 static void he_stat__decay(struct he_stat
*he_stat
)
323 he_stat
->period
= (he_stat
->period
* 7) / 8;
324 he_stat
->nr_events
= (he_stat
->nr_events
* 7) / 8;
325 he_stat
->weight1
= (he_stat
->weight1
* 7) / 8;
326 he_stat
->weight2
= (he_stat
->weight2
* 7) / 8;
327 he_stat
->weight3
= (he_stat
->weight3
* 7) / 8;
330 static void hists__delete_entry(struct hists
*hists
, struct hist_entry
*he
);
332 static bool hists__decay_entry(struct hists
*hists
, struct hist_entry
*he
)
334 u64 prev_period
= he
->stat
.period
;
337 if (prev_period
== 0)
340 he_stat__decay(&he
->stat
);
341 if (symbol_conf
.cumulate_callchain
)
342 he_stat__decay(he
->stat_acc
);
343 decay_callchain(he
->callchain
);
345 diff
= prev_period
- he
->stat
.period
;
348 hists
->stats
.total_period
-= diff
;
350 hists
->stats
.total_non_filtered_period
-= diff
;
354 struct hist_entry
*child
;
355 struct rb_node
*node
= rb_first_cached(&he
->hroot_out
);
357 child
= rb_entry(node
, struct hist_entry
, rb_node
);
358 node
= rb_next(node
);
360 if (hists__decay_entry(hists
, child
))
361 hists__delete_entry(hists
, child
);
365 return he
->stat
.period
== 0;
368 static void hists__delete_entry(struct hists
*hists
, struct hist_entry
*he
)
370 struct rb_root_cached
*root_in
;
371 struct rb_root_cached
*root_out
;
374 root_in
= &he
->parent_he
->hroot_in
;
375 root_out
= &he
->parent_he
->hroot_out
;
377 if (hists__has(hists
, need_collapse
))
378 root_in
= &hists
->entries_collapsed
;
380 root_in
= hists
->entries_in
;
381 root_out
= &hists
->entries
;
384 rb_erase_cached(&he
->rb_node_in
, root_in
);
385 rb_erase_cached(&he
->rb_node
, root_out
);
389 --hists
->nr_non_filtered_entries
;
391 hist_entry__delete(he
);
394 void hists__decay_entries(struct hists
*hists
, bool zap_user
, bool zap_kernel
)
396 struct rb_node
*next
= rb_first_cached(&hists
->entries
);
397 struct hist_entry
*n
;
400 n
= rb_entry(next
, struct hist_entry
, rb_node
);
401 next
= rb_next(&n
->rb_node
);
402 if (((zap_user
&& n
->level
== '.') ||
403 (zap_kernel
&& n
->level
!= '.') ||
404 hists__decay_entry(hists
, n
))) {
405 hists__delete_entry(hists
, n
);
410 void hists__delete_entries(struct hists
*hists
)
412 struct rb_node
*next
= rb_first_cached(&hists
->entries
);
413 struct hist_entry
*n
;
416 n
= rb_entry(next
, struct hist_entry
, rb_node
);
417 next
= rb_next(&n
->rb_node
);
419 hists__delete_entry(hists
, n
);
423 struct hist_entry
*hists__get_entry(struct hists
*hists
, int idx
)
425 struct rb_node
*next
= rb_first_cached(&hists
->entries
);
426 struct hist_entry
*n
;
430 n
= rb_entry(next
, struct hist_entry
, rb_node
);
434 next
= rb_next(&n
->rb_node
);
442 * histogram, sorted on item, collects periods
445 static int hist_entry__init(struct hist_entry
*he
,
446 struct hist_entry
*template,
448 size_t callchain_size
)
451 he
->callchain_size
= callchain_size
;
453 if (symbol_conf
.cumulate_callchain
) {
454 he
->stat_acc
= malloc(sizeof(he
->stat
));
455 if (he
->stat_acc
== NULL
)
457 memcpy(he
->stat_acc
, &he
->stat
, sizeof(he
->stat
));
459 memset(&he
->stat
, 0, sizeof(he
->stat
));
462 he
->ms
.maps
= maps__get(he
->ms
.maps
);
463 he
->ms
.map
= map__get(he
->ms
.map
);
465 if (he
->branch_info
) {
467 * This branch info is (a part of) allocated from
468 * sample__resolve_bstack() and will be freed after
469 * adding new entries. So we need to save a copy.
471 he
->branch_info
= malloc(sizeof(*he
->branch_info
));
472 if (he
->branch_info
== NULL
)
475 memcpy(he
->branch_info
, template->branch_info
,
476 sizeof(*he
->branch_info
));
478 he
->branch_info
->from
.ms
.maps
= maps__get(he
->branch_info
->from
.ms
.maps
);
479 he
->branch_info
->from
.ms
.map
= map__get(he
->branch_info
->from
.ms
.map
);
480 he
->branch_info
->to
.ms
.maps
= maps__get(he
->branch_info
->to
.ms
.maps
);
481 he
->branch_info
->to
.ms
.map
= map__get(he
->branch_info
->to
.ms
.map
);
485 he
->mem_info
= mem_info__clone(template->mem_info
);
486 if (he
->mem_info
== NULL
)
490 if (hist_entry__has_callchains(he
) && symbol_conf
.use_callchain
)
491 callchain_init(he
->callchain
);
494 he
->raw_data
= memdup(he
->raw_data
, he
->raw_size
);
495 if (he
->raw_data
== NULL
)
499 if (he
->srcline
&& he
->srcline
!= SRCLINE_UNKNOWN
) {
500 he
->srcline
= strdup(he
->srcline
);
501 if (he
->srcline
== NULL
)
505 if (symbol_conf
.res_sample
) {
506 he
->res_samples
= calloc(symbol_conf
.res_sample
,
507 sizeof(struct res_sample
));
508 if (!he
->res_samples
)
512 INIT_LIST_HEAD(&he
->pairs
.node
);
513 he
->thread
= thread__get(he
->thread
);
514 he
->hroot_in
= RB_ROOT_CACHED
;
515 he
->hroot_out
= RB_ROOT_CACHED
;
517 if (!symbol_conf
.report_hierarchy
)
526 zfree(&he
->raw_data
);
529 if (he
->branch_info
) {
530 map_symbol__exit(&he
->branch_info
->from
.ms
);
531 map_symbol__exit(&he
->branch_info
->to
.ms
);
532 zfree(&he
->branch_info
);
535 map_symbol__exit(&mem_info__iaddr(he
->mem_info
)->ms
);
536 map_symbol__exit(&mem_info__daddr(he
->mem_info
)->ms
);
539 map_symbol__exit(&he
->ms
);
540 zfree(&he
->stat_acc
);
544 static void *hist_entry__zalloc(size_t size
)
546 return zalloc(size
+ sizeof(struct hist_entry
));
549 static void hist_entry__free(void *ptr
)
554 static struct hist_entry_ops default_ops
= {
555 .new = hist_entry__zalloc
,
556 .free
= hist_entry__free
,
559 static struct hist_entry
*hist_entry__new(struct hist_entry
*template,
562 struct hist_entry_ops
*ops
= template->ops
;
563 size_t callchain_size
= 0;
564 struct hist_entry
*he
;
568 ops
= template->ops
= &default_ops
;
570 if (symbol_conf
.use_callchain
)
571 callchain_size
= sizeof(struct callchain_root
);
573 he
= ops
->new(callchain_size
);
575 err
= hist_entry__init(he
, template, sample_self
, callchain_size
);
584 static u8
symbol__parent_filter(const struct symbol
*parent
)
586 if (symbol_conf
.exclude_other
&& parent
== NULL
)
587 return 1 << HIST_FILTER__PARENT
;
591 static void hist_entry__add_callchain_period(struct hist_entry
*he
, u64 period
)
593 if (!hist_entry__has_callchains(he
) || !symbol_conf
.use_callchain
)
596 he
->hists
->callchain_period
+= period
;
598 he
->hists
->callchain_non_filtered_period
+= period
;
601 static struct hist_entry
*hists__findnew_entry(struct hists
*hists
,
602 struct hist_entry
*entry
,
603 const struct addr_location
*al
,
607 struct rb_node
*parent
= NULL
;
608 struct hist_entry
*he
;
610 u64 period
= entry
->stat
.period
;
611 bool leftmost
= true;
613 p
= &hists
->entries_in
->rb_root
.rb_node
;
617 he
= rb_entry(parent
, struct hist_entry
, rb_node_in
);
620 * Make sure that it receives arguments in a same order as
621 * hist_entry__collapse() so that we can use an appropriate
622 * function when searching an entry regardless which sort
625 cmp
= hist_entry__cmp(he
, entry
);
628 he_stat__add_stat(&he
->stat
, &entry
->stat
);
629 hist_entry__add_callchain_period(he
, period
);
631 if (symbol_conf
.cumulate_callchain
)
632 he_stat__add_period(he
->stat_acc
, period
);
634 block_info__delete(entry
->block_info
);
636 kvm_info__zput(entry
->kvm_info
);
638 /* If the map of an existing hist_entry has
639 * become out-of-date due to an exec() or
640 * similar, update it. Otherwise we will
641 * mis-adjust symbol addresses when computing
642 * the history counter to increment.
644 if (hists__has(hists
, sym
) && he
->ms
.map
!= entry
->ms
.map
) {
646 u64 addr
= he
->ms
.sym
->start
;
647 he
->ms
.sym
= map__find_symbol(entry
->ms
.map
, addr
);
650 map__put(he
->ms
.map
);
651 he
->ms
.map
= map__get(entry
->ms
.map
);
664 he
= hist_entry__new(entry
, sample_self
);
669 hist_entry__add_callchain_period(he
, period
);
672 rb_link_node(&he
->rb_node_in
, parent
, p
);
673 rb_insert_color_cached(&he
->rb_node_in
, hists
->entries_in
, leftmost
);
676 he_stat__add_cpumode_period(&he
->stat
, al
->cpumode
, period
);
677 if (symbol_conf
.cumulate_callchain
)
678 he_stat__add_cpumode_period(he
->stat_acc
, al
->cpumode
, period
);
682 static unsigned random_max(unsigned high
)
684 unsigned thresh
= -high
% high
;
686 unsigned r
= random();
692 static void hists__res_sample(struct hist_entry
*he
, struct perf_sample
*sample
)
694 struct res_sample
*r
;
697 if (he
->num_res
< symbol_conf
.res_sample
) {
700 j
= random_max(symbol_conf
.res_sample
);
702 r
= &he
->res_samples
[j
];
703 r
->time
= sample
->time
;
704 r
->cpu
= sample
->cpu
;
705 r
->tid
= sample
->tid
;
708 static struct hist_entry
*
709 __hists__add_entry(struct hists
*hists
,
710 struct addr_location
*al
,
711 struct symbol
*sym_parent
,
712 struct branch_info
*bi
,
715 struct block_info
*block_info
,
716 struct perf_sample
*sample
,
718 struct hist_entry_ops
*ops
)
720 struct namespaces
*ns
= thread__namespaces(al
->thread
);
721 struct hist_entry entry
= {
722 .thread
= al
->thread
,
723 .comm
= thread__comm(al
->thread
),
725 .dev
= ns
? ns
->link_info
[CGROUP_NS_INDEX
].dev
: 0,
726 .ino
= ns
? ns
->link_info
[CGROUP_NS_INDEX
].ino
: 0,
728 .cgroup
= sample
->cgroup
,
734 .srcline
= (char *) al
->srcline
,
735 .socket
= al
->socket
,
737 .cpumode
= al
->cpumode
,
740 .code_page_size
= sample
->code_page_size
,
743 .period
= sample
->period
,
744 .weight1
= sample
->weight
,
745 .weight2
= sample
->ins_lat
,
746 .weight3
= sample
->p_stage_cyc
,
748 .parent
= sym_parent
,
749 .filtered
= symbol__parent_filter(sym_parent
) | al
->filtered
,
754 .block_info
= block_info
,
755 .transaction
= sample
->transaction
,
756 .raw_data
= sample
->raw_data
,
757 .raw_size
= sample
->raw_size
,
759 .time
= hist_time(sample
->time
),
760 .weight
= sample
->weight
,
761 .ins_lat
= sample
->ins_lat
,
762 .p_stage_cyc
= sample
->p_stage_cyc
,
763 .simd_flags
= sample
->simd_flags
,
764 }, *he
= hists__findnew_entry(hists
, &entry
, al
, sample_self
);
766 if (!hists
->has_callchains
&& he
&& he
->callchain_size
!= 0)
767 hists
->has_callchains
= true;
768 if (he
&& symbol_conf
.res_sample
)
769 hists__res_sample(he
, sample
);
773 struct hist_entry
*hists__add_entry(struct hists
*hists
,
774 struct addr_location
*al
,
775 struct symbol
*sym_parent
,
776 struct branch_info
*bi
,
779 struct perf_sample
*sample
,
782 return __hists__add_entry(hists
, al
, sym_parent
, bi
, mi
, ki
, NULL
,
783 sample
, sample_self
, NULL
);
786 struct hist_entry
*hists__add_entry_ops(struct hists
*hists
,
787 struct hist_entry_ops
*ops
,
788 struct addr_location
*al
,
789 struct symbol
*sym_parent
,
790 struct branch_info
*bi
,
793 struct perf_sample
*sample
,
796 return __hists__add_entry(hists
, al
, sym_parent
, bi
, mi
, ki
, NULL
,
797 sample
, sample_self
, ops
);
800 struct hist_entry
*hists__add_entry_block(struct hists
*hists
,
801 struct addr_location
*al
,
802 struct block_info
*block_info
)
804 struct hist_entry entry
= {
805 .block_info
= block_info
,
812 }, *he
= hists__findnew_entry(hists
, &entry
, al
, false);
818 iter_next_nop_entry(struct hist_entry_iter
*iter __maybe_unused
,
819 struct addr_location
*al __maybe_unused
)
825 iter_add_next_nop_entry(struct hist_entry_iter
*iter __maybe_unused
,
826 struct addr_location
*al __maybe_unused
)
832 iter_prepare_mem_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
834 struct perf_sample
*sample
= iter
->sample
;
837 mi
= sample__resolve_mem(sample
, al
);
846 iter_add_single_mem_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
849 struct mem_info
*mi
= iter
->mi
;
850 struct hists
*hists
= evsel__hists(iter
->evsel
);
851 struct perf_sample
*sample
= iter
->sample
;
852 struct hist_entry
*he
;
857 cost
= sample
->weight
;
862 * must pass period=weight in order to get the correct
863 * sorting from hists__collapse_resort() which is solely
864 * based on periods. We want sorting be done on nr_events * weight
865 * and this is indirectly achieved by passing period=weight here
866 * and the he_stat__add_period() function.
868 sample
->period
= cost
;
870 he
= hists__add_entry(hists
, al
, iter
->parent
, NULL
, mi
, NULL
,
880 iter_finish_mem_entry(struct hist_entry_iter
*iter
,
881 struct addr_location
*al __maybe_unused
)
883 struct evsel
*evsel
= iter
->evsel
;
884 struct hists
*hists
= evsel__hists(evsel
);
885 struct hist_entry
*he
= iter
->he
;
891 hists__inc_nr_samples(hists
, he
->filtered
);
893 err
= hist_entry__append_callchain(he
, iter
->sample
);
896 mem_info__zput(iter
->mi
);
903 iter_prepare_branch_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
905 struct branch_info
*bi
;
906 struct perf_sample
*sample
= iter
->sample
;
908 bi
= sample__resolve_bstack(sample
, al
);
913 iter
->total
= sample
->branch_stack
->nr
;
920 iter_add_single_branch_entry(struct hist_entry_iter
*iter __maybe_unused
,
921 struct addr_location
*al __maybe_unused
)
927 iter_next_branch_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
929 struct branch_info
*bi
= iter
->bi
;
935 if (iter
->curr
>= iter
->total
)
939 al
->maps
= maps__get(bi
[i
].to
.ms
.maps
);
941 al
->map
= map__get(bi
[i
].to
.ms
.map
);
942 al
->sym
= bi
[i
].to
.ms
.sym
;
943 al
->addr
= bi
[i
].to
.addr
;
948 iter_add_next_branch_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
950 struct branch_info
*bi
;
951 struct evsel
*evsel
= iter
->evsel
;
952 struct hists
*hists
= evsel__hists(evsel
);
953 struct perf_sample
*sample
= iter
->sample
;
954 struct hist_entry
*he
= NULL
;
960 if (iter
->hide_unresolved
&& !(bi
[i
].from
.ms
.sym
&& bi
[i
].to
.ms
.sym
))
964 * The report shows the percentage of total branches captured
965 * and not events sampled. Thus we use a pseudo period of 1.
968 sample
->weight
= bi
->flags
.cycles
? bi
->flags
.cycles
: 1;
970 he
= hists__add_entry(hists
, al
, iter
->parent
, &bi
[i
], NULL
, NULL
,
975 hists__inc_nr_samples(hists
, he
->filtered
);
983 static void branch_info__exit(struct branch_info
*bi
)
985 map_symbol__exit(&bi
->from
.ms
);
986 map_symbol__exit(&bi
->to
.ms
);
987 zfree_srcline(&bi
->srcline_from
);
988 zfree_srcline(&bi
->srcline_to
);
992 iter_finish_branch_entry(struct hist_entry_iter
*iter
,
993 struct addr_location
*al __maybe_unused
)
995 for (int i
= 0; i
< iter
->total
; i
++)
996 branch_info__exit(&iter
->bi
[i
]);
1001 return iter
->curr
>= iter
->total
? 0 : -1;
1005 iter_prepare_normal_entry(struct hist_entry_iter
*iter __maybe_unused
,
1006 struct addr_location
*al __maybe_unused
)
1012 iter_add_single_normal_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
1014 struct evsel
*evsel
= iter
->evsel
;
1015 struct perf_sample
*sample
= iter
->sample
;
1016 struct hist_entry
*he
;
1018 he
= hists__add_entry(evsel__hists(evsel
), al
, iter
->parent
, NULL
, NULL
,
1019 NULL
, sample
, true);
1028 iter_finish_normal_entry(struct hist_entry_iter
*iter
,
1029 struct addr_location
*al __maybe_unused
)
1031 struct hist_entry
*he
= iter
->he
;
1032 struct evsel
*evsel
= iter
->evsel
;
1033 struct perf_sample
*sample
= iter
->sample
;
1040 hists__inc_nr_samples(evsel__hists(evsel
), he
->filtered
);
1042 return hist_entry__append_callchain(he
, sample
);
1046 iter_prepare_cumulative_entry(struct hist_entry_iter
*iter
,
1047 struct addr_location
*al __maybe_unused
)
1049 struct hist_entry
**he_cache
;
1050 struct callchain_cursor
*cursor
= get_tls_callchain_cursor();
1055 callchain_cursor_commit(cursor
);
1058 * This is for detecting cycles or recursions so that they're
1059 * cumulated only one time to prevent entries more than 100%
1062 he_cache
= malloc(sizeof(*he_cache
) * (cursor
->nr
+ 1));
1063 if (he_cache
== NULL
)
1066 iter
->he_cache
= he_cache
;
1073 iter_add_single_cumulative_entry(struct hist_entry_iter
*iter
,
1074 struct addr_location
*al
)
1076 struct evsel
*evsel
= iter
->evsel
;
1077 struct hists
*hists
= evsel__hists(evsel
);
1078 struct perf_sample
*sample
= iter
->sample
;
1079 struct hist_entry
**he_cache
= iter
->he_cache
;
1080 struct hist_entry
*he
;
1083 he
= hists__add_entry(hists
, al
, iter
->parent
, NULL
, NULL
, NULL
,
1089 he_cache
[iter
->curr
++] = he
;
1091 hist_entry__append_callchain(he
, sample
);
1094 * We need to re-initialize the cursor since callchain_append()
1095 * advanced the cursor to the end.
1097 callchain_cursor_commit(get_tls_callchain_cursor());
1099 hists__inc_nr_samples(hists
, he
->filtered
);
1105 iter_next_cumulative_entry(struct hist_entry_iter
*iter
,
1106 struct addr_location
*al
)
1108 struct callchain_cursor_node
*node
;
1110 node
= callchain_cursor_current(get_tls_callchain_cursor());
1114 return fill_callchain_info(al
, node
, iter
->hide_unresolved
);
1118 hist_entry__fast__sym_diff(struct hist_entry
*left
,
1119 struct hist_entry
*right
)
1121 struct symbol
*sym_l
= left
->ms
.sym
;
1122 struct symbol
*sym_r
= right
->ms
.sym
;
1124 if (!sym_l
&& !sym_r
)
1125 return left
->ip
!= right
->ip
;
1127 return !!_sort__sym_cmp(sym_l
, sym_r
);
1132 iter_add_next_cumulative_entry(struct hist_entry_iter
*iter
,
1133 struct addr_location
*al
)
1135 struct evsel
*evsel
= iter
->evsel
;
1136 struct perf_sample
*sample
= iter
->sample
;
1137 struct hist_entry
**he_cache
= iter
->he_cache
;
1138 struct hist_entry
*he
;
1139 struct hist_entry he_tmp
= {
1140 .hists
= evsel__hists(evsel
),
1142 .thread
= al
->thread
,
1143 .comm
= thread__comm(al
->thread
),
1150 .srcline
= (char *) al
->srcline
,
1151 .parent
= iter
->parent
,
1152 .raw_data
= sample
->raw_data
,
1153 .raw_size
= sample
->raw_size
,
1156 struct callchain_cursor cursor
, *tls_cursor
= get_tls_callchain_cursor();
1157 bool fast
= hists__has(he_tmp
.hists
, sym
);
1159 if (tls_cursor
== NULL
)
1162 callchain_cursor_snapshot(&cursor
, tls_cursor
);
1164 callchain_cursor_advance(tls_cursor
);
1167 * Check if there's duplicate entries in the callchain.
1168 * It's possible that it has cycles or recursive calls.
1170 for (i
= 0; i
< iter
->curr
; i
++) {
1172 * For most cases, there are no duplicate entries in callchain.
1173 * The symbols are usually different. Do a quick check for
1176 if (fast
&& hist_entry__fast__sym_diff(he_cache
[i
], &he_tmp
))
1179 if (hist_entry__cmp(he_cache
[i
], &he_tmp
) == 0) {
1180 /* to avoid calling callback function */
1186 he
= hists__add_entry(evsel__hists(evsel
), al
, iter
->parent
, NULL
, NULL
,
1187 NULL
, sample
, false);
1192 he_cache
[iter
->curr
++] = he
;
1194 if (hist_entry__has_callchains(he
) && symbol_conf
.use_callchain
)
1195 callchain_append(he
->callchain
, &cursor
, sample
->period
);
1200 iter_finish_cumulative_entry(struct hist_entry_iter
*iter
,
1201 struct addr_location
*al __maybe_unused
)
1203 mem_info__zput(iter
->mi
);
1205 zfree(&iter
->he_cache
);
1211 const struct hist_iter_ops hist_iter_mem
= {
1212 .prepare_entry
= iter_prepare_mem_entry
,
1213 .add_single_entry
= iter_add_single_mem_entry
,
1214 .next_entry
= iter_next_nop_entry
,
1215 .add_next_entry
= iter_add_next_nop_entry
,
1216 .finish_entry
= iter_finish_mem_entry
,
1219 const struct hist_iter_ops hist_iter_branch
= {
1220 .prepare_entry
= iter_prepare_branch_entry
,
1221 .add_single_entry
= iter_add_single_branch_entry
,
1222 .next_entry
= iter_next_branch_entry
,
1223 .add_next_entry
= iter_add_next_branch_entry
,
1224 .finish_entry
= iter_finish_branch_entry
,
1227 const struct hist_iter_ops hist_iter_normal
= {
1228 .prepare_entry
= iter_prepare_normal_entry
,
1229 .add_single_entry
= iter_add_single_normal_entry
,
1230 .next_entry
= iter_next_nop_entry
,
1231 .add_next_entry
= iter_add_next_nop_entry
,
1232 .finish_entry
= iter_finish_normal_entry
,
1235 const struct hist_iter_ops hist_iter_cumulative
= {
1236 .prepare_entry
= iter_prepare_cumulative_entry
,
1237 .add_single_entry
= iter_add_single_cumulative_entry
,
1238 .next_entry
= iter_next_cumulative_entry
,
1239 .add_next_entry
= iter_add_next_cumulative_entry
,
1240 .finish_entry
= iter_finish_cumulative_entry
,
1243 int hist_entry_iter__add(struct hist_entry_iter
*iter
, struct addr_location
*al
,
1244 int max_stack_depth
, void *arg
)
1247 struct map
*alm
= NULL
;
1250 alm
= map__get(al
->map
);
1252 err
= sample__resolve_callchain(iter
->sample
, get_tls_callchain_cursor(), &iter
->parent
,
1253 iter
->evsel
, al
, max_stack_depth
);
1259 err
= iter
->ops
->prepare_entry(iter
, al
);
1263 err
= iter
->ops
->add_single_entry(iter
, al
);
1267 if (iter
->he
&& iter
->add_entry_cb
) {
1268 err
= iter
->add_entry_cb(iter
, al
, true, arg
);
1273 while (iter
->ops
->next_entry(iter
, al
)) {
1274 err
= iter
->ops
->add_next_entry(iter
, al
);
1278 if (iter
->he
&& iter
->add_entry_cb
) {
1279 err
= iter
->add_entry_cb(iter
, al
, false, arg
);
1286 err2
= iter
->ops
->finish_entry(iter
, al
);
1296 hist_entry__cmp(struct hist_entry
*left
, struct hist_entry
*right
)
1298 struct hists
*hists
= left
->hists
;
1299 struct perf_hpp_fmt
*fmt
;
1302 hists__for_each_sort_list(hists
, fmt
) {
1303 if (perf_hpp__is_dynamic_entry(fmt
) &&
1304 !perf_hpp__defined_dynamic_entry(fmt
, hists
))
1307 cmp
= fmt
->cmp(fmt
, left
, right
);
1316 hist_entry__collapse(struct hist_entry
*left
, struct hist_entry
*right
)
1318 struct hists
*hists
= left
->hists
;
1319 struct perf_hpp_fmt
*fmt
;
1322 hists__for_each_sort_list(hists
, fmt
) {
1323 if (perf_hpp__is_dynamic_entry(fmt
) &&
1324 !perf_hpp__defined_dynamic_entry(fmt
, hists
))
1327 cmp
= fmt
->collapse(fmt
, left
, right
);
1335 void hist_entry__delete(struct hist_entry
*he
)
1337 struct hist_entry_ops
*ops
= he
->ops
;
1339 thread__zput(he
->thread
);
1340 map_symbol__exit(&he
->ms
);
1342 if (he
->branch_info
) {
1343 branch_info__exit(he
->branch_info
);
1344 zfree(&he
->branch_info
);
1348 map_symbol__exit(&mem_info__iaddr(he
->mem_info
)->ms
);
1349 map_symbol__exit(&mem_info__daddr(he
->mem_info
)->ms
);
1350 mem_info__zput(he
->mem_info
);
1354 block_info__delete(he
->block_info
);
1357 kvm_info__zput(he
->kvm_info
);
1359 zfree(&he
->res_samples
);
1360 zfree(&he
->stat_acc
);
1361 zfree_srcline(&he
->srcline
);
1362 if (he
->srcfile
&& he
->srcfile
[0])
1363 zfree(&he
->srcfile
);
1364 free_callchain(he
->callchain
);
1365 zfree(&he
->trace_output
);
1366 zfree(&he
->raw_data
);
1371 * If this is not the last column, then we need to pad it according to the
1372 * pre-calculated max length for this column, otherwise don't bother adding
1373 * spaces because that would break viewing this with, for instance, 'less',
1374 * that would show tons of trailing spaces when a long C++ demangled method
1377 int hist_entry__snprintf_alignment(struct hist_entry
*he
, struct perf_hpp
*hpp
,
1378 struct perf_hpp_fmt
*fmt
, int printed
)
1380 if (!list_is_last(&fmt
->list
, &he
->hists
->hpp_list
->fields
)) {
1381 const int width
= fmt
->width(fmt
, hpp
, he
->hists
);
1382 if (printed
< width
) {
1383 advance_hpp(hpp
, printed
);
1384 printed
= scnprintf(hpp
->buf
, hpp
->size
, "%-*s", width
- printed
, " ");
1392 * collapse the histogram
1395 static void hists__apply_filters(struct hists
*hists
, struct hist_entry
*he
);
1396 static void hists__remove_entry_filter(struct hists
*hists
, struct hist_entry
*he
,
1397 enum hist_filter type
);
1399 typedef bool (*fmt_chk_fn
)(struct perf_hpp_fmt
*fmt
);
1401 static bool check_thread_entry(struct perf_hpp_fmt
*fmt
)
1403 return perf_hpp__is_thread_entry(fmt
) || perf_hpp__is_comm_entry(fmt
);
1406 static void hist_entry__check_and_remove_filter(struct hist_entry
*he
,
1407 enum hist_filter type
,
1410 struct perf_hpp_fmt
*fmt
;
1411 bool type_match
= false;
1412 struct hist_entry
*parent
= he
->parent_he
;
1415 case HIST_FILTER__THREAD
:
1416 if (symbol_conf
.comm_list
== NULL
&&
1417 symbol_conf
.pid_list
== NULL
&&
1418 symbol_conf
.tid_list
== NULL
)
1421 case HIST_FILTER__DSO
:
1422 if (symbol_conf
.dso_list
== NULL
)
1425 case HIST_FILTER__SYMBOL
:
1426 if (symbol_conf
.sym_list
== NULL
)
1429 case HIST_FILTER__PARENT
:
1430 case HIST_FILTER__GUEST
:
1431 case HIST_FILTER__HOST
:
1432 case HIST_FILTER__SOCKET
:
1433 case HIST_FILTER__C2C
:
1438 /* if it's filtered by own fmt, it has to have filter bits */
1439 perf_hpp_list__for_each_format(he
->hpp_list
, fmt
) {
1448 * If the filter is for current level entry, propagate
1449 * filter marker to parents. The marker bit was
1450 * already set by default so it only needs to clear
1451 * non-filtered entries.
1453 if (!(he
->filtered
& (1 << type
))) {
1455 parent
->filtered
&= ~(1 << type
);
1456 parent
= parent
->parent_he
;
1461 * If current entry doesn't have matching formats, set
1462 * filter marker for upper level entries. it will be
1463 * cleared if its lower level entries is not filtered.
1465 * For lower-level entries, it inherits parent's
1466 * filter bit so that lower level entries of a
1467 * non-filtered entry won't set the filter marker.
1470 he
->filtered
|= (1 << type
);
1472 he
->filtered
|= (parent
->filtered
& (1 << type
));
1476 static void hist_entry__apply_hierarchy_filters(struct hist_entry
*he
)
1478 hist_entry__check_and_remove_filter(he
, HIST_FILTER__THREAD
,
1479 check_thread_entry
);
1481 hist_entry__check_and_remove_filter(he
, HIST_FILTER__DSO
,
1482 perf_hpp__is_dso_entry
);
1484 hist_entry__check_and_remove_filter(he
, HIST_FILTER__SYMBOL
,
1485 perf_hpp__is_sym_entry
);
1487 hists__apply_filters(he
->hists
, he
);
1490 static struct hist_entry
*hierarchy_insert_entry(struct hists
*hists
,
1491 struct rb_root_cached
*root
,
1492 struct hist_entry
*he
,
1493 struct hist_entry
*parent_he
,
1494 struct perf_hpp_list
*hpp_list
)
1496 struct rb_node
**p
= &root
->rb_root
.rb_node
;
1497 struct rb_node
*parent
= NULL
;
1498 struct hist_entry
*iter
, *new;
1499 struct perf_hpp_fmt
*fmt
;
1501 bool leftmost
= true;
1503 while (*p
!= NULL
) {
1505 iter
= rb_entry(parent
, struct hist_entry
, rb_node_in
);
1508 perf_hpp_list__for_each_sort_list(hpp_list
, fmt
) {
1509 cmp
= fmt
->collapse(fmt
, iter
, he
);
1515 he_stat__add_stat(&iter
->stat
, &he
->stat
);
1520 p
= &parent
->rb_left
;
1522 p
= &parent
->rb_right
;
1527 new = hist_entry__new(he
, true);
1531 hists
->nr_entries
++;
1533 /* save related format list for output */
1534 new->hpp_list
= hpp_list
;
1535 new->parent_he
= parent_he
;
1537 hist_entry__apply_hierarchy_filters(new);
1539 /* some fields are now passed to 'new' */
1540 perf_hpp_list__for_each_sort_list(hpp_list
, fmt
) {
1541 if (perf_hpp__is_trace_entry(fmt
) || perf_hpp__is_dynamic_entry(fmt
))
1542 he
->trace_output
= NULL
;
1544 new->trace_output
= NULL
;
1546 if (perf_hpp__is_srcline_entry(fmt
))
1549 new->srcline
= NULL
;
1551 if (perf_hpp__is_srcfile_entry(fmt
))
1554 new->srcfile
= NULL
;
1557 rb_link_node(&new->rb_node_in
, parent
, p
);
1558 rb_insert_color_cached(&new->rb_node_in
, root
, leftmost
);
1562 static int hists__hierarchy_insert_entry(struct hists
*hists
,
1563 struct rb_root_cached
*root
,
1564 struct hist_entry
*he
)
1566 struct perf_hpp_list_node
*node
;
1567 struct hist_entry
*new_he
= NULL
;
1568 struct hist_entry
*parent
= NULL
;
1572 list_for_each_entry(node
, &hists
->hpp_formats
, list
) {
1573 /* skip period (overhead) and elided columns */
1574 if (node
->level
== 0 || node
->skip
)
1577 /* insert copy of 'he' for each fmt into the hierarchy */
1578 new_he
= hierarchy_insert_entry(hists
, root
, he
, parent
, &node
->hpp
);
1579 if (new_he
== NULL
) {
1584 root
= &new_he
->hroot_in
;
1585 new_he
->depth
= depth
++;
1590 new_he
->leaf
= true;
1592 if (hist_entry__has_callchains(new_he
) &&
1593 symbol_conf
.use_callchain
) {
1594 struct callchain_cursor
*cursor
= get_tls_callchain_cursor();
1599 callchain_cursor_reset(cursor
);
1600 if (callchain_merge(cursor
,
1607 /* 'he' is no longer used */
1608 hist_entry__delete(he
);
1610 /* return 0 (or -1) since it already applied filters */
1614 static int hists__collapse_insert_entry(struct hists
*hists
,
1615 struct rb_root_cached
*root
,
1616 struct hist_entry
*he
)
1618 struct rb_node
**p
= &root
->rb_root
.rb_node
;
1619 struct rb_node
*parent
= NULL
;
1620 struct hist_entry
*iter
;
1622 bool leftmost
= true;
1624 if (symbol_conf
.report_hierarchy
)
1625 return hists__hierarchy_insert_entry(hists
, root
, he
);
1627 while (*p
!= NULL
) {
1629 iter
= rb_entry(parent
, struct hist_entry
, rb_node_in
);
1631 cmp
= hist_entry__collapse(iter
, he
);
1636 he_stat__add_stat(&iter
->stat
, &he
->stat
);
1637 if (symbol_conf
.cumulate_callchain
)
1638 he_stat__add_stat(iter
->stat_acc
, he
->stat_acc
);
1640 if (hist_entry__has_callchains(he
) && symbol_conf
.use_callchain
) {
1641 struct callchain_cursor
*cursor
= get_tls_callchain_cursor();
1643 if (cursor
!= NULL
) {
1644 callchain_cursor_reset(cursor
);
1645 if (callchain_merge(cursor
, iter
->callchain
, he
->callchain
) < 0)
1651 hist_entry__delete(he
);
1658 p
= &(*p
)->rb_right
;
1662 hists
->nr_entries
++;
1664 rb_link_node(&he
->rb_node_in
, parent
, p
);
1665 rb_insert_color_cached(&he
->rb_node_in
, root
, leftmost
);
1669 struct rb_root_cached
*hists__get_rotate_entries_in(struct hists
*hists
)
1671 struct rb_root_cached
*root
;
1673 mutex_lock(&hists
->lock
);
1675 root
= hists
->entries_in
;
1676 if (++hists
->entries_in
> &hists
->entries_in_array
[1])
1677 hists
->entries_in
= &hists
->entries_in_array
[0];
1679 mutex_unlock(&hists
->lock
);
1684 static void hists__apply_filters(struct hists
*hists
, struct hist_entry
*he
)
1686 hists__filter_entry_by_dso(hists
, he
);
1687 hists__filter_entry_by_thread(hists
, he
);
1688 hists__filter_entry_by_symbol(hists
, he
);
1689 hists__filter_entry_by_socket(hists
, he
);
1692 int hists__collapse_resort(struct hists
*hists
, struct ui_progress
*prog
)
1694 struct rb_root_cached
*root
;
1695 struct rb_node
*next
;
1696 struct hist_entry
*n
;
1699 if (!hists__has(hists
, need_collapse
))
1702 hists
->nr_entries
= 0;
1704 root
= hists__get_rotate_entries_in(hists
);
1706 next
= rb_first_cached(root
);
1711 n
= rb_entry(next
, struct hist_entry
, rb_node_in
);
1712 next
= rb_next(&n
->rb_node_in
);
1714 rb_erase_cached(&n
->rb_node_in
, root
);
1715 ret
= hists__collapse_insert_entry(hists
, &hists
->entries_collapsed
, n
);
1721 * If it wasn't combined with one of the entries already
1722 * collapsed, we need to apply the filters that may have
1723 * been set by, say, the hist_browser.
1725 hists__apply_filters(hists
, n
);
1728 ui_progress__update(prog
, 1);
1733 static int64_t hist_entry__sort(struct hist_entry
*a
, struct hist_entry
*b
)
1735 struct hists
*hists
= a
->hists
;
1736 struct perf_hpp_fmt
*fmt
;
1739 hists__for_each_sort_list(hists
, fmt
) {
1740 if (perf_hpp__should_skip(fmt
, a
->hists
))
1743 cmp
= fmt
->sort(fmt
, a
, b
);
1751 static void hists__reset_filter_stats(struct hists
*hists
)
1753 hists
->nr_non_filtered_entries
= 0;
1754 hists
->stats
.total_non_filtered_period
= 0;
1757 void hists__reset_stats(struct hists
*hists
)
1759 hists
->nr_entries
= 0;
1760 hists
->stats
.total_period
= 0;
1762 hists__reset_filter_stats(hists
);
1765 static void hists__inc_filter_stats(struct hists
*hists
, struct hist_entry
*h
)
1767 hists
->nr_non_filtered_entries
++;
1768 hists
->stats
.total_non_filtered_period
+= h
->stat
.period
;
1771 void hists__inc_stats(struct hists
*hists
, struct hist_entry
*h
)
1774 hists__inc_filter_stats(hists
, h
);
1776 hists
->nr_entries
++;
1777 hists
->stats
.total_period
+= h
->stat
.period
;
1780 static void hierarchy_recalc_total_periods(struct hists
*hists
)
1782 struct rb_node
*node
;
1783 struct hist_entry
*he
;
1785 node
= rb_first_cached(&hists
->entries
);
1787 hists
->stats
.total_period
= 0;
1788 hists
->stats
.total_non_filtered_period
= 0;
1791 * recalculate total period using top-level entries only
1792 * since lower level entries only see non-filtered entries
1793 * but upper level entries have sum of both entries.
1796 he
= rb_entry(node
, struct hist_entry
, rb_node
);
1797 node
= rb_next(node
);
1799 hists
->stats
.total_period
+= he
->stat
.period
;
1801 hists
->stats
.total_non_filtered_period
+= he
->stat
.period
;
1805 static void hierarchy_insert_output_entry(struct rb_root_cached
*root
,
1806 struct hist_entry
*he
)
1808 struct rb_node
**p
= &root
->rb_root
.rb_node
;
1809 struct rb_node
*parent
= NULL
;
1810 struct hist_entry
*iter
;
1811 struct perf_hpp_fmt
*fmt
;
1812 bool leftmost
= true;
1814 while (*p
!= NULL
) {
1816 iter
= rb_entry(parent
, struct hist_entry
, rb_node
);
1818 if (hist_entry__sort(he
, iter
) > 0)
1819 p
= &parent
->rb_left
;
1821 p
= &parent
->rb_right
;
1826 rb_link_node(&he
->rb_node
, parent
, p
);
1827 rb_insert_color_cached(&he
->rb_node
, root
, leftmost
);
1829 /* update column width of dynamic entry */
1830 perf_hpp_list__for_each_sort_list(he
->hpp_list
, fmt
) {
1836 static void hists__hierarchy_output_resort(struct hists
*hists
,
1837 struct ui_progress
*prog
,
1838 struct rb_root_cached
*root_in
,
1839 struct rb_root_cached
*root_out
,
1840 u64 min_callchain_hits
,
1843 struct rb_node
*node
;
1844 struct hist_entry
*he
;
1846 *root_out
= RB_ROOT_CACHED
;
1847 node
= rb_first_cached(root_in
);
1850 he
= rb_entry(node
, struct hist_entry
, rb_node_in
);
1851 node
= rb_next(node
);
1853 hierarchy_insert_output_entry(root_out
, he
);
1856 ui_progress__update(prog
, 1);
1858 hists
->nr_entries
++;
1859 if (!he
->filtered
) {
1860 hists
->nr_non_filtered_entries
++;
1861 hists__calc_col_len(hists
, he
);
1865 hists__hierarchy_output_resort(hists
, prog
,
1876 if (callchain_param
.mode
== CHAIN_GRAPH_REL
) {
1877 u64 total
= he
->stat
.period
;
1879 if (symbol_conf
.cumulate_callchain
)
1880 total
= he
->stat_acc
->period
;
1882 min_callchain_hits
= total
* (callchain_param
.min_percent
/ 100);
1885 callchain_param
.sort(&he
->sorted_chain
, he
->callchain
,
1886 min_callchain_hits
, &callchain_param
);
1890 static void __hists__insert_output_entry(struct rb_root_cached
*entries
,
1891 struct hist_entry
*he
,
1892 u64 min_callchain_hits
,
1895 struct rb_node
**p
= &entries
->rb_root
.rb_node
;
1896 struct rb_node
*parent
= NULL
;
1897 struct hist_entry
*iter
;
1898 struct perf_hpp_fmt
*fmt
;
1899 bool leftmost
= true;
1901 if (use_callchain
) {
1902 if (callchain_param
.mode
== CHAIN_GRAPH_REL
) {
1903 u64 total
= he
->stat
.period
;
1905 if (symbol_conf
.cumulate_callchain
)
1906 total
= he
->stat_acc
->period
;
1908 min_callchain_hits
= total
* (callchain_param
.min_percent
/ 100);
1910 callchain_param
.sort(&he
->sorted_chain
, he
->callchain
,
1911 min_callchain_hits
, &callchain_param
);
1914 while (*p
!= NULL
) {
1916 iter
= rb_entry(parent
, struct hist_entry
, rb_node
);
1918 if (hist_entry__sort(he
, iter
) > 0)
1921 p
= &(*p
)->rb_right
;
1926 rb_link_node(&he
->rb_node
, parent
, p
);
1927 rb_insert_color_cached(&he
->rb_node
, entries
, leftmost
);
1929 /* update column width of dynamic entries */
1930 perf_hpp_list__for_each_sort_list(&perf_hpp_list
, fmt
) {
1936 static void output_resort(struct hists
*hists
, struct ui_progress
*prog
,
1937 bool use_callchain
, hists__resort_cb_t cb
,
1940 struct rb_root_cached
*root
;
1941 struct rb_node
*next
;
1942 struct hist_entry
*n
;
1943 u64 callchain_total
;
1944 u64 min_callchain_hits
;
1946 callchain_total
= hists
->callchain_period
;
1947 if (symbol_conf
.filter_relative
)
1948 callchain_total
= hists
->callchain_non_filtered_period
;
1950 min_callchain_hits
= callchain_total
* (callchain_param
.min_percent
/ 100);
1952 hists__reset_stats(hists
);
1953 hists__reset_col_len(hists
);
1955 if (symbol_conf
.report_hierarchy
) {
1956 hists__hierarchy_output_resort(hists
, prog
,
1957 &hists
->entries_collapsed
,
1961 hierarchy_recalc_total_periods(hists
);
1965 if (hists__has(hists
, need_collapse
))
1966 root
= &hists
->entries_collapsed
;
1968 root
= hists
->entries_in
;
1970 next
= rb_first_cached(root
);
1971 hists
->entries
= RB_ROOT_CACHED
;
1974 n
= rb_entry(next
, struct hist_entry
, rb_node_in
);
1975 next
= rb_next(&n
->rb_node_in
);
1977 if (cb
&& cb(n
, cb_arg
))
1980 __hists__insert_output_entry(&hists
->entries
, n
, min_callchain_hits
, use_callchain
);
1981 hists__inc_stats(hists
, n
);
1984 hists__calc_col_len(hists
, n
);
1987 ui_progress__update(prog
, 1);
1991 void evsel__output_resort_cb(struct evsel
*evsel
, struct ui_progress
*prog
,
1992 hists__resort_cb_t cb
, void *cb_arg
)
1996 if (evsel
&& symbol_conf
.use_callchain
&& !symbol_conf
.show_ref_callgraph
)
1997 use_callchain
= evsel__has_callchain(evsel
);
1999 use_callchain
= symbol_conf
.use_callchain
;
2001 use_callchain
|= symbol_conf
.show_branchflag_count
;
2003 output_resort(evsel__hists(evsel
), prog
, use_callchain
, cb
, cb_arg
);
2006 void evsel__output_resort(struct evsel
*evsel
, struct ui_progress
*prog
)
2008 return evsel__output_resort_cb(evsel
, prog
, NULL
, NULL
);
2011 void hists__output_resort(struct hists
*hists
, struct ui_progress
*prog
)
2013 output_resort(hists
, prog
, symbol_conf
.use_callchain
, NULL
, NULL
);
2016 void hists__output_resort_cb(struct hists
*hists
, struct ui_progress
*prog
,
2017 hists__resort_cb_t cb
)
2019 output_resort(hists
, prog
, symbol_conf
.use_callchain
, cb
, NULL
);
2022 static bool can_goto_child(struct hist_entry
*he
, enum hierarchy_move_dir hmd
)
2024 if (he
->leaf
|| hmd
== HMD_FORCE_SIBLING
)
2027 if (he
->unfolded
|| hmd
== HMD_FORCE_CHILD
)
2033 struct rb_node
*rb_hierarchy_last(struct rb_node
*node
)
2035 struct hist_entry
*he
= rb_entry(node
, struct hist_entry
, rb_node
);
2037 while (can_goto_child(he
, HMD_NORMAL
)) {
2038 node
= rb_last(&he
->hroot_out
.rb_root
);
2039 he
= rb_entry(node
, struct hist_entry
, rb_node
);
2044 struct rb_node
*__rb_hierarchy_next(struct rb_node
*node
, enum hierarchy_move_dir hmd
)
2046 struct hist_entry
*he
= rb_entry(node
, struct hist_entry
, rb_node
);
2048 if (can_goto_child(he
, hmd
))
2049 node
= rb_first_cached(&he
->hroot_out
);
2051 node
= rb_next(node
);
2053 while (node
== NULL
) {
2058 node
= rb_next(&he
->rb_node
);
2063 struct rb_node
*rb_hierarchy_prev(struct rb_node
*node
)
2065 struct hist_entry
*he
= rb_entry(node
, struct hist_entry
, rb_node
);
2067 node
= rb_prev(node
);
2069 return rb_hierarchy_last(node
);
2075 return &he
->rb_node
;
2078 bool hist_entry__has_hierarchy_children(struct hist_entry
*he
, float limit
)
2080 struct rb_node
*node
;
2081 struct hist_entry
*child
;
2087 node
= rb_first_cached(&he
->hroot_out
);
2088 child
= rb_entry(node
, struct hist_entry
, rb_node
);
2090 while (node
&& child
->filtered
) {
2091 node
= rb_next(node
);
2092 child
= rb_entry(node
, struct hist_entry
, rb_node
);
2096 percent
= hist_entry__get_percent_limit(child
);
2100 return node
&& percent
>= limit
;
2103 static void hists__remove_entry_filter(struct hists
*hists
, struct hist_entry
*h
,
2104 enum hist_filter filter
)
2106 h
->filtered
&= ~(1 << filter
);
2108 if (symbol_conf
.report_hierarchy
) {
2109 struct hist_entry
*parent
= h
->parent_he
;
2112 he_stat__add_stat(&parent
->stat
, &h
->stat
);
2114 parent
->filtered
&= ~(1 << filter
);
2116 if (parent
->filtered
)
2119 /* force fold unfiltered entry for simplicity */
2120 parent
->unfolded
= false;
2121 parent
->has_no_entry
= false;
2122 parent
->row_offset
= 0;
2123 parent
->nr_rows
= 0;
2125 parent
= parent
->parent_he
;
2132 /* force fold unfiltered entry for simplicity */
2133 h
->unfolded
= false;
2134 h
->has_no_entry
= false;
2138 hists
->stats
.nr_non_filtered_samples
+= h
->stat
.nr_events
;
2140 hists__inc_filter_stats(hists
, h
);
2141 hists__calc_col_len(hists
, h
);
2145 static bool hists__filter_entry_by_dso(struct hists
*hists
,
2146 struct hist_entry
*he
)
2148 if (hists
->dso_filter
!= NULL
&&
2149 (he
->ms
.map
== NULL
|| !RC_CHK_EQUAL(map__dso(he
->ms
.map
), hists
->dso_filter
))) {
2150 he
->filtered
|= (1 << HIST_FILTER__DSO
);
2157 static bool hists__filter_entry_by_thread(struct hists
*hists
,
2158 struct hist_entry
*he
)
2160 if (hists
->thread_filter
!= NULL
&&
2161 !RC_CHK_EQUAL(he
->thread
, hists
->thread_filter
)) {
2162 he
->filtered
|= (1 << HIST_FILTER__THREAD
);
2169 static bool hists__filter_entry_by_symbol(struct hists
*hists
,
2170 struct hist_entry
*he
)
2172 if (hists
->symbol_filter_str
!= NULL
&&
2173 (!he
->ms
.sym
|| strstr(he
->ms
.sym
->name
,
2174 hists
->symbol_filter_str
) == NULL
)) {
2175 he
->filtered
|= (1 << HIST_FILTER__SYMBOL
);
2182 static bool hists__filter_entry_by_socket(struct hists
*hists
,
2183 struct hist_entry
*he
)
2185 if ((hists
->socket_filter
> -1) &&
2186 (he
->socket
!= hists
->socket_filter
)) {
2187 he
->filtered
|= (1 << HIST_FILTER__SOCKET
);
2194 typedef bool (*filter_fn_t
)(struct hists
*hists
, struct hist_entry
*he
);
2196 static void hists__filter_by_type(struct hists
*hists
, int type
, filter_fn_t filter
)
2200 hists
->stats
.nr_non_filtered_samples
= 0;
2202 hists__reset_filter_stats(hists
);
2203 hists__reset_col_len(hists
);
2205 for (nd
= rb_first_cached(&hists
->entries
); nd
; nd
= rb_next(nd
)) {
2206 struct hist_entry
*h
= rb_entry(nd
, struct hist_entry
, rb_node
);
2208 if (filter(hists
, h
))
2211 hists__remove_entry_filter(hists
, h
, type
);
2215 static void resort_filtered_entry(struct rb_root_cached
*root
,
2216 struct hist_entry
*he
)
2218 struct rb_node
**p
= &root
->rb_root
.rb_node
;
2219 struct rb_node
*parent
= NULL
;
2220 struct hist_entry
*iter
;
2221 struct rb_root_cached new_root
= RB_ROOT_CACHED
;
2223 bool leftmost
= true;
2225 while (*p
!= NULL
) {
2227 iter
= rb_entry(parent
, struct hist_entry
, rb_node
);
2229 if (hist_entry__sort(he
, iter
) > 0)
2232 p
= &(*p
)->rb_right
;
2237 rb_link_node(&he
->rb_node
, parent
, p
);
2238 rb_insert_color_cached(&he
->rb_node
, root
, leftmost
);
2240 if (he
->leaf
|| he
->filtered
)
2243 nd
= rb_first_cached(&he
->hroot_out
);
2245 struct hist_entry
*h
= rb_entry(nd
, struct hist_entry
, rb_node
);
2248 rb_erase_cached(&h
->rb_node
, &he
->hroot_out
);
2250 resort_filtered_entry(&new_root
, h
);
2253 he
->hroot_out
= new_root
;
2256 static void hists__filter_hierarchy(struct hists
*hists
, int type
, const void *arg
)
2259 struct rb_root_cached new_root
= RB_ROOT_CACHED
;
2261 hists
->stats
.nr_non_filtered_samples
= 0;
2263 hists__reset_filter_stats(hists
);
2264 hists__reset_col_len(hists
);
2266 nd
= rb_first_cached(&hists
->entries
);
2268 struct hist_entry
*h
= rb_entry(nd
, struct hist_entry
, rb_node
);
2271 ret
= hist_entry__filter(h
, type
, arg
);
2274 * case 1. non-matching type
2275 * zero out the period, set filter marker and move to child
2278 memset(&h
->stat
, 0, sizeof(h
->stat
));
2279 h
->filtered
|= (1 << type
);
2281 nd
= __rb_hierarchy_next(&h
->rb_node
, HMD_FORCE_CHILD
);
2284 * case 2. matched type (filter out)
2285 * set filter marker and move to next
2287 else if (ret
== 1) {
2288 h
->filtered
|= (1 << type
);
2290 nd
= __rb_hierarchy_next(&h
->rb_node
, HMD_FORCE_SIBLING
);
2293 * case 3. ok (not filtered)
2294 * add period to hists and parents, erase the filter marker
2295 * and move to next sibling
2298 hists__remove_entry_filter(hists
, h
, type
);
2300 nd
= __rb_hierarchy_next(&h
->rb_node
, HMD_FORCE_SIBLING
);
2304 hierarchy_recalc_total_periods(hists
);
2307 * resort output after applying a new filter since filter in a lower
2308 * hierarchy can change periods in a upper hierarchy.
2310 nd
= rb_first_cached(&hists
->entries
);
2312 struct hist_entry
*h
= rb_entry(nd
, struct hist_entry
, rb_node
);
2315 rb_erase_cached(&h
->rb_node
, &hists
->entries
);
2317 resort_filtered_entry(&new_root
, h
);
2320 hists
->entries
= new_root
;
2323 void hists__filter_by_thread(struct hists
*hists
)
2325 if (symbol_conf
.report_hierarchy
)
2326 hists__filter_hierarchy(hists
, HIST_FILTER__THREAD
,
2327 hists
->thread_filter
);
2329 hists__filter_by_type(hists
, HIST_FILTER__THREAD
,
2330 hists__filter_entry_by_thread
);
2333 void hists__filter_by_dso(struct hists
*hists
)
2335 if (symbol_conf
.report_hierarchy
)
2336 hists__filter_hierarchy(hists
, HIST_FILTER__DSO
,
2339 hists__filter_by_type(hists
, HIST_FILTER__DSO
,
2340 hists__filter_entry_by_dso
);
2343 void hists__filter_by_symbol(struct hists
*hists
)
2345 if (symbol_conf
.report_hierarchy
)
2346 hists__filter_hierarchy(hists
, HIST_FILTER__SYMBOL
,
2347 hists
->symbol_filter_str
);
2349 hists__filter_by_type(hists
, HIST_FILTER__SYMBOL
,
2350 hists__filter_entry_by_symbol
);
2353 void hists__filter_by_socket(struct hists
*hists
)
2355 if (symbol_conf
.report_hierarchy
)
2356 hists__filter_hierarchy(hists
, HIST_FILTER__SOCKET
,
2357 &hists
->socket_filter
);
2359 hists__filter_by_type(hists
, HIST_FILTER__SOCKET
,
2360 hists__filter_entry_by_socket
);
2363 void events_stats__inc(struct events_stats
*stats
, u32 type
)
2365 ++stats
->nr_events
[0];
2366 ++stats
->nr_events
[type
];
2369 static void hists_stats__inc(struct hists_stats
*stats
)
2371 ++stats
->nr_samples
;
2374 void hists__inc_nr_events(struct hists
*hists
)
2376 hists_stats__inc(&hists
->stats
);
2379 void hists__inc_nr_samples(struct hists
*hists
, bool filtered
)
2381 hists_stats__inc(&hists
->stats
);
2383 hists
->stats
.nr_non_filtered_samples
++;
2386 void hists__inc_nr_lost_samples(struct hists
*hists
, u32 lost
)
2388 hists
->stats
.nr_lost_samples
+= lost
;
2391 void hists__inc_nr_dropped_samples(struct hists
*hists
, u32 lost
)
2393 hists
->stats
.nr_dropped_samples
+= lost
;
2396 static struct hist_entry
*hists__add_dummy_entry(struct hists
*hists
,
2397 struct hist_entry
*pair
)
2399 struct rb_root_cached
*root
;
2401 struct rb_node
*parent
= NULL
;
2402 struct hist_entry
*he
;
2404 bool leftmost
= true;
2406 if (hists__has(hists
, need_collapse
))
2407 root
= &hists
->entries_collapsed
;
2409 root
= hists
->entries_in
;
2411 p
= &root
->rb_root
.rb_node
;
2413 while (*p
!= NULL
) {
2415 he
= rb_entry(parent
, struct hist_entry
, rb_node_in
);
2417 cmp
= hist_entry__collapse(he
, pair
);
2425 p
= &(*p
)->rb_right
;
2430 he
= hist_entry__new(pair
, true);
2432 memset(&he
->stat
, 0, sizeof(he
->stat
));
2434 if (symbol_conf
.cumulate_callchain
)
2435 memset(he
->stat_acc
, 0, sizeof(he
->stat
));
2436 rb_link_node(&he
->rb_node_in
, parent
, p
);
2437 rb_insert_color_cached(&he
->rb_node_in
, root
, leftmost
);
2438 hists__inc_stats(hists
, he
);
2445 static struct hist_entry
*add_dummy_hierarchy_entry(struct hists
*hists
,
2446 struct rb_root_cached
*root
,
2447 struct hist_entry
*pair
)
2450 struct rb_node
*parent
= NULL
;
2451 struct hist_entry
*he
;
2452 struct perf_hpp_fmt
*fmt
;
2453 bool leftmost
= true;
2455 p
= &root
->rb_root
.rb_node
;
2456 while (*p
!= NULL
) {
2460 he
= rb_entry(parent
, struct hist_entry
, rb_node_in
);
2462 perf_hpp_list__for_each_sort_list(he
->hpp_list
, fmt
) {
2463 cmp
= fmt
->collapse(fmt
, he
, pair
);
2471 p
= &parent
->rb_left
;
2473 p
= &parent
->rb_right
;
2478 he
= hist_entry__new(pair
, true);
2480 rb_link_node(&he
->rb_node_in
, parent
, p
);
2481 rb_insert_color_cached(&he
->rb_node_in
, root
, leftmost
);
2485 memset(&he
->stat
, 0, sizeof(he
->stat
));
2486 hists__inc_stats(hists
, he
);
2492 static struct hist_entry
*hists__find_entry(struct hists
*hists
,
2493 struct hist_entry
*he
)
2497 if (hists__has(hists
, need_collapse
))
2498 n
= hists
->entries_collapsed
.rb_root
.rb_node
;
2500 n
= hists
->entries_in
->rb_root
.rb_node
;
2503 struct hist_entry
*iter
= rb_entry(n
, struct hist_entry
, rb_node_in
);
2504 int64_t cmp
= hist_entry__collapse(iter
, he
);
2517 static struct hist_entry
*hists__find_hierarchy_entry(struct rb_root_cached
*root
,
2518 struct hist_entry
*he
)
2520 struct rb_node
*n
= root
->rb_root
.rb_node
;
2523 struct hist_entry
*iter
;
2524 struct perf_hpp_fmt
*fmt
;
2527 iter
= rb_entry(n
, struct hist_entry
, rb_node_in
);
2528 perf_hpp_list__for_each_sort_list(he
->hpp_list
, fmt
) {
2529 cmp
= fmt
->collapse(fmt
, iter
, he
);
2545 static void hists__match_hierarchy(struct rb_root_cached
*leader_root
,
2546 struct rb_root_cached
*other_root
)
2549 struct hist_entry
*pos
, *pair
;
2551 for (nd
= rb_first_cached(leader_root
); nd
; nd
= rb_next(nd
)) {
2552 pos
= rb_entry(nd
, struct hist_entry
, rb_node_in
);
2553 pair
= hists__find_hierarchy_entry(other_root
, pos
);
2556 hist_entry__add_pair(pair
, pos
);
2557 hists__match_hierarchy(&pos
->hroot_in
, &pair
->hroot_in
);
2563 * Look for pairs to link to the leader buckets (hist_entries):
2565 void hists__match(struct hists
*leader
, struct hists
*other
)
2567 struct rb_root_cached
*root
;
2569 struct hist_entry
*pos
, *pair
;
2571 if (symbol_conf
.report_hierarchy
) {
2572 /* hierarchy report always collapses entries */
2573 return hists__match_hierarchy(&leader
->entries_collapsed
,
2574 &other
->entries_collapsed
);
2577 if (hists__has(leader
, need_collapse
))
2578 root
= &leader
->entries_collapsed
;
2580 root
= leader
->entries_in
;
2582 for (nd
= rb_first_cached(root
); nd
; nd
= rb_next(nd
)) {
2583 pos
= rb_entry(nd
, struct hist_entry
, rb_node_in
);
2584 pair
= hists__find_entry(other
, pos
);
2587 hist_entry__add_pair(pair
, pos
);
2591 static int hists__link_hierarchy(struct hists
*leader_hists
,
2592 struct hist_entry
*parent
,
2593 struct rb_root_cached
*leader_root
,
2594 struct rb_root_cached
*other_root
)
2597 struct hist_entry
*pos
, *leader
;
2599 for (nd
= rb_first_cached(other_root
); nd
; nd
= rb_next(nd
)) {
2600 pos
= rb_entry(nd
, struct hist_entry
, rb_node_in
);
2602 if (hist_entry__has_pairs(pos
)) {
2605 list_for_each_entry(leader
, &pos
->pairs
.head
, pairs
.node
) {
2606 if (leader
->hists
== leader_hists
) {
2614 leader
= add_dummy_hierarchy_entry(leader_hists
,
2619 /* do not point parent in the pos */
2620 leader
->parent_he
= parent
;
2622 hist_entry__add_pair(pos
, leader
);
2626 if (hists__link_hierarchy(leader_hists
, leader
,
2628 &pos
->hroot_in
) < 0)
2636 * Look for entries in the other hists that are not present in the leader, if
2637 * we find them, just add a dummy entry on the leader hists, with period=0,
2638 * nr_events=0, to serve as the list header.
2640 int hists__link(struct hists
*leader
, struct hists
*other
)
2642 struct rb_root_cached
*root
;
2644 struct hist_entry
*pos
, *pair
;
2646 if (symbol_conf
.report_hierarchy
) {
2647 /* hierarchy report always collapses entries */
2648 return hists__link_hierarchy(leader
, NULL
,
2649 &leader
->entries_collapsed
,
2650 &other
->entries_collapsed
);
2653 if (hists__has(other
, need_collapse
))
2654 root
= &other
->entries_collapsed
;
2656 root
= other
->entries_in
;
2658 for (nd
= rb_first_cached(root
); nd
; nd
= rb_next(nd
)) {
2659 pos
= rb_entry(nd
, struct hist_entry
, rb_node_in
);
2661 if (!hist_entry__has_pairs(pos
)) {
2662 pair
= hists__add_dummy_entry(leader
, pos
);
2665 hist_entry__add_pair(pos
, pair
);
2672 int hists__unlink(struct hists
*hists
)
2674 struct rb_root_cached
*root
;
2676 struct hist_entry
*pos
;
2678 if (hists__has(hists
, need_collapse
))
2679 root
= &hists
->entries_collapsed
;
2681 root
= hists
->entries_in
;
2683 for (nd
= rb_first_cached(root
); nd
; nd
= rb_next(nd
)) {
2684 pos
= rb_entry(nd
, struct hist_entry
, rb_node_in
);
2685 list_del_init(&pos
->pairs
.node
);
2691 void hist__account_cycles(struct branch_stack
*bs
, struct addr_location
*al
,
2692 struct perf_sample
*sample
, bool nonany_branch_mode
,
2693 u64
*total_cycles
, struct evsel
*evsel
)
2695 struct branch_info
*bi
;
2696 struct branch_entry
*entries
= perf_sample__branch_entries(sample
);
2698 /* If we have branch cycles always annotate them. */
2699 if (bs
&& bs
->nr
&& entries
[0].flags
.cycles
) {
2700 bi
= sample__resolve_bstack(sample
, al
);
2702 struct addr_map_symbol
*prev
= NULL
;
2705 * Ignore errors, still want to process the
2708 * For non standard branch modes always
2709 * force no IPC (prev == NULL)
2711 * Note that perf stores branches reversed from
2714 for (int i
= bs
->nr
- 1; i
>= 0; i
--) {
2715 addr_map_symbol__account_cycles(&bi
[i
].from
,
2716 nonany_branch_mode
? NULL
: prev
,
2717 bi
[i
].flags
.cycles
, evsel
,
2718 bi
[i
].branch_stack_cntr
);
2722 *total_cycles
+= bi
[i
].flags
.cycles
;
2724 for (unsigned int i
= 0; i
< bs
->nr
; i
++) {
2725 map_symbol__exit(&bi
[i
].to
.ms
);
2726 map_symbol__exit(&bi
[i
].from
.ms
);
2733 size_t evlist__fprintf_nr_events(struct evlist
*evlist
, FILE *fp
)
2738 evlist__for_each_entry(evlist
, pos
) {
2739 struct hists
*hists
= evsel__hists(pos
);
2740 u64 total_samples
= hists
->stats
.nr_samples
;
2742 total_samples
+= hists
->stats
.nr_lost_samples
;
2743 total_samples
+= hists
->stats
.nr_dropped_samples
;
2745 if (symbol_conf
.skip_empty
&& total_samples
== 0)
2748 ret
+= fprintf(fp
, "%s stats:\n", evsel__name(pos
));
2749 if (hists
->stats
.nr_samples
)
2750 ret
+= fprintf(fp
, "%20s events: %10d\n",
2751 "SAMPLE", hists
->stats
.nr_samples
);
2752 if (hists
->stats
.nr_lost_samples
)
2753 ret
+= fprintf(fp
, "%20s events: %10d\n",
2754 "LOST_SAMPLES", hists
->stats
.nr_lost_samples
);
2755 if (hists
->stats
.nr_dropped_samples
)
2756 ret
+= fprintf(fp
, "%20s events: %10d\n",
2757 "LOST_SAMPLES (BPF)", hists
->stats
.nr_dropped_samples
);
2764 u64
hists__total_period(struct hists
*hists
)
2766 return symbol_conf
.filter_relative
? hists
->stats
.total_non_filtered_period
:
2767 hists
->stats
.total_period
;
2770 int __hists__scnprintf_title(struct hists
*hists
, char *bf
, size_t size
, bool show_freq
)
2774 const struct dso
*dso
= hists
->dso_filter
;
2775 struct thread
*thread
= hists
->thread_filter
;
2776 int socket_id
= hists
->socket_filter
;
2777 unsigned long nr_samples
= hists
->stats
.nr_samples
;
2778 u64 nr_events
= hists
->stats
.total_period
;
2779 struct evsel
*evsel
= hists_to_evsel(hists
);
2780 const char *ev_name
= evsel__name(evsel
);
2781 char buf
[512], sample_freq_str
[64] = "";
2782 size_t buflen
= sizeof(buf
);
2783 char ref
[30] = " show reference callgraph, ";
2784 bool enable_ref
= false;
2786 if (symbol_conf
.filter_relative
) {
2787 nr_samples
= hists
->stats
.nr_non_filtered_samples
;
2788 nr_events
= hists
->stats
.total_non_filtered_period
;
2791 if (evsel__is_group_event(evsel
)) {
2794 evsel__group_desc(evsel
, buf
, buflen
);
2797 for_each_group_member(pos
, evsel
) {
2798 struct hists
*pos_hists
= evsel__hists(pos
);
2800 if (symbol_conf
.filter_relative
) {
2801 nr_samples
+= pos_hists
->stats
.nr_non_filtered_samples
;
2802 nr_events
+= pos_hists
->stats
.total_non_filtered_period
;
2804 nr_samples
+= pos_hists
->stats
.nr_samples
;
2805 nr_events
+= pos_hists
->stats
.total_period
;
2810 if (symbol_conf
.show_ref_callgraph
&&
2811 strstr(ev_name
, "call-graph=no"))
2815 scnprintf(sample_freq_str
, sizeof(sample_freq_str
), " %d Hz,", evsel
->core
.attr
.sample_freq
);
2817 nr_samples
= convert_unit(nr_samples
, &unit
);
2818 printed
= scnprintf(bf
, size
,
2819 "Samples: %lu%c of event%s '%s',%s%sEvent count (approx.): %" PRIu64
,
2820 nr_samples
, unit
, evsel
->core
.nr_members
> 1 ? "s" : "",
2821 ev_name
, sample_freq_str
, enable_ref
? ref
: " ", nr_events
);
2824 if (hists
->uid_filter_str
)
2825 printed
+= snprintf(bf
+ printed
, size
- printed
,
2826 ", UID: %s", hists
->uid_filter_str
);
2828 if (hists__has(hists
, thread
)) {
2829 printed
+= scnprintf(bf
+ printed
, size
- printed
,
2831 (thread__comm_set(thread
) ? thread__comm_str(thread
) : ""),
2832 thread__tid(thread
));
2834 printed
+= scnprintf(bf
+ printed
, size
- printed
,
2836 (thread__comm_set(thread
) ? thread__comm_str(thread
) : ""));
2840 printed
+= scnprintf(bf
+ printed
, size
- printed
,
2841 ", DSO: %s", dso__short_name(dso
));
2843 printed
+= scnprintf(bf
+ printed
, size
- printed
,
2844 ", Processor Socket: %d", socket_id
);
2849 int parse_filter_percentage(const struct option
*opt __maybe_unused
,
2850 const char *arg
, int unset __maybe_unused
)
2852 if (!strcmp(arg
, "relative"))
2853 symbol_conf
.filter_relative
= true;
2854 else if (!strcmp(arg
, "absolute"))
2855 symbol_conf
.filter_relative
= false;
2857 pr_debug("Invalid percentage: %s\n", arg
);
2864 int perf_hist_config(const char *var
, const char *value
)
2866 if (!strcmp(var
, "hist.percentage"))
2867 return parse_filter_percentage(NULL
, value
, 0);
2872 int __hists__init(struct hists
*hists
, struct perf_hpp_list
*hpp_list
)
2874 memset(hists
, 0, sizeof(*hists
));
2875 hists
->entries_in_array
[0] = hists
->entries_in_array
[1] = RB_ROOT_CACHED
;
2876 hists
->entries_in
= &hists
->entries_in_array
[0];
2877 hists
->entries_collapsed
= RB_ROOT_CACHED
;
2878 hists
->entries
= RB_ROOT_CACHED
;
2879 mutex_init(&hists
->lock
);
2880 hists
->socket_filter
= -1;
2881 hists
->hpp_list
= hpp_list
;
2882 INIT_LIST_HEAD(&hists
->hpp_formats
);
2886 static void hists__delete_remaining_entries(struct rb_root_cached
*root
)
2888 struct rb_node
*node
;
2889 struct hist_entry
*he
;
2891 while (!RB_EMPTY_ROOT(&root
->rb_root
)) {
2892 node
= rb_first_cached(root
);
2893 rb_erase_cached(node
, root
);
2895 he
= rb_entry(node
, struct hist_entry
, rb_node_in
);
2896 hist_entry__delete(he
);
2900 static void hists__delete_all_entries(struct hists
*hists
)
2902 hists__delete_entries(hists
);
2903 hists__delete_remaining_entries(&hists
->entries_in_array
[0]);
2904 hists__delete_remaining_entries(&hists
->entries_in_array
[1]);
2905 hists__delete_remaining_entries(&hists
->entries_collapsed
);
2908 static void hists_evsel__exit(struct evsel
*evsel
)
2910 struct hists
*hists
= evsel__hists(evsel
);
2911 struct perf_hpp_fmt
*fmt
, *pos
;
2912 struct perf_hpp_list_node
*node
, *tmp
;
2914 hists__delete_all_entries(hists
);
2916 list_for_each_entry_safe(node
, tmp
, &hists
->hpp_formats
, list
) {
2917 perf_hpp_list__for_each_format_safe(&node
->hpp
, fmt
, pos
) {
2918 list_del_init(&fmt
->list
);
2921 list_del_init(&node
->list
);
2926 static int hists_evsel__init(struct evsel
*evsel
)
2928 struct hists
*hists
= evsel__hists(evsel
);
2930 __hists__init(hists
, &perf_hpp_list
);
2935 * XXX We probably need a hists_evsel__exit() to free the hist_entries
2936 * stored in the rbtree...
2939 int hists__init(void)
2941 int err
= evsel__object_config(sizeof(struct hists_evsel
),
2942 hists_evsel__init
, hists_evsel__exit
);
2944 fputs("FATAL ERROR: Couldn't setup hists class\n", stderr
);
2949 void perf_hpp_list__init(struct perf_hpp_list
*list
)
2951 INIT_LIST_HEAD(&list
->fields
);
2952 INIT_LIST_HEAD(&list
->sorts
);