9 #include "ui/progress.h"
12 static bool hists__filter_entry_by_dso(struct hists
*hists
,
13 struct hist_entry
*he
);
14 static bool hists__filter_entry_by_thread(struct hists
*hists
,
15 struct hist_entry
*he
);
16 static bool hists__filter_entry_by_symbol(struct hists
*hists
,
17 struct hist_entry
*he
);
18 static bool hists__filter_entry_by_socket(struct hists
*hists
,
19 struct hist_entry
*he
);
21 u16
hists__col_len(struct hists
*hists
, enum hist_column col
)
23 return hists
->col_len
[col
];
26 void hists__set_col_len(struct hists
*hists
, enum hist_column col
, u16 len
)
28 hists
->col_len
[col
] = len
;
31 bool hists__new_col_len(struct hists
*hists
, enum hist_column col
, u16 len
)
33 if (len
> hists__col_len(hists
, col
)) {
34 hists__set_col_len(hists
, col
, len
);
40 void hists__reset_col_len(struct hists
*hists
)
44 for (col
= 0; col
< HISTC_NR_COLS
; ++col
)
45 hists__set_col_len(hists
, col
, 0);
48 static void hists__set_unres_dso_col_len(struct hists
*hists
, int dso
)
50 const unsigned int unresolved_col_width
= BITS_PER_LONG
/ 4;
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
);
58 void hists__calc_col_len(struct hists
*hists
, struct hist_entry
*h
)
60 const unsigned int unresolved_col_width
= BITS_PER_LONG
/ 4;
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
70 symlen
= h
->ms
.sym
->namelen
+ 4;
72 symlen
+= BITS_PER_LONG
/ 4 + 2 + 3;
73 hists__new_col_len(hists
, HISTC_SYMBOL
, symlen
);
75 symlen
= unresolved_col_width
+ 4 + 2;
76 hists__new_col_len(hists
, HISTC_SYMBOL
, symlen
);
77 hists__set_unres_dso_col_len(hists
, HISTC_DSO
);
80 len
= thread__comm_len(h
->thread
);
81 if (hists__new_col_len(hists
, HISTC_COMM
, len
))
82 hists__set_col_len(hists
, HISTC_THREAD
, len
+ 6);
85 len
= dso__name_len(h
->ms
.map
->dso
);
86 hists__new_col_len(hists
, HISTC_DSO
, len
);
90 hists__new_col_len(hists
, HISTC_PARENT
, h
->parent
->namelen
);
93 if (h
->branch_info
->from
.sym
) {
94 symlen
= (int)h
->branch_info
->from
.sym
->namelen
+ 4;
96 symlen
+= BITS_PER_LONG
/ 4 + 2 + 3;
97 hists__new_col_len(hists
, HISTC_SYMBOL_FROM
, symlen
);
99 symlen
= dso__name_len(h
->branch_info
->from
.map
->dso
);
100 hists__new_col_len(hists
, HISTC_DSO_FROM
, symlen
);
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
);
107 if (h
->branch_info
->to
.sym
) {
108 symlen
= (int)h
->branch_info
->to
.sym
->namelen
+ 4;
110 symlen
+= BITS_PER_LONG
/ 4 + 2 + 3;
111 hists__new_col_len(hists
, HISTC_SYMBOL_TO
, symlen
);
113 symlen
= dso__name_len(h
->branch_info
->to
.map
->dso
);
114 hists__new_col_len(hists
, HISTC_DSO_TO
, symlen
);
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
);
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
,
128 hists__new_col_len(hists
, HISTC_MEM_DCACHELINE
,
131 symlen
= unresolved_col_width
+ 4 + 2;
132 hists__new_col_len(hists
, HISTC_MEM_DADDR_SYMBOL
,
136 if (h
->mem_info
->iaddr
.sym
) {
137 symlen
= (int)h
->mem_info
->iaddr
.sym
->namelen
+ 4
138 + unresolved_col_width
+ 2;
139 hists__new_col_len(hists
, HISTC_MEM_IADDR_SYMBOL
,
142 symlen
= unresolved_col_width
+ 4 + 2;
143 hists__new_col_len(hists
, HISTC_MEM_IADDR_SYMBOL
,
147 if (h
->mem_info
->daddr
.map
) {
148 symlen
= dso__name_len(h
->mem_info
->daddr
.map
->dso
);
149 hists__new_col_len(hists
, HISTC_MEM_DADDR_DSO
,
152 symlen
= unresolved_col_width
+ 4 + 2;
153 hists__set_unres_dso_col_len(hists
, HISTC_MEM_DADDR_DSO
);
156 symlen
= unresolved_col_width
+ 4 + 2;
157 hists__new_col_len(hists
, HISTC_MEM_DADDR_SYMBOL
, symlen
);
158 hists__new_col_len(hists
, HISTC_MEM_IADDR_SYMBOL
, symlen
);
159 hists__set_unres_dso_col_len(hists
, HISTC_MEM_DADDR_DSO
);
162 hists__new_col_len(hists
, HISTC_CPU
, 3);
163 hists__new_col_len(hists
, HISTC_SOCKET
, 6);
164 hists__new_col_len(hists
, HISTC_MEM_LOCKED
, 6);
165 hists__new_col_len(hists
, HISTC_MEM_TLB
, 22);
166 hists__new_col_len(hists
, HISTC_MEM_SNOOP
, 12);
167 hists__new_col_len(hists
, HISTC_MEM_LVL
, 21 + 3);
168 hists__new_col_len(hists
, HISTC_LOCAL_WEIGHT
, 12);
169 hists__new_col_len(hists
, HISTC_GLOBAL_WEIGHT
, 12);
172 hists__new_col_len(hists
, HISTC_SRCLINE
, strlen(h
->srcline
));
175 hists__new_col_len(hists
, HISTC_SRCFILE
, strlen(h
->srcfile
));
178 hists__new_col_len(hists
, HISTC_TRANSACTION
,
179 hist_entry__transaction_len());
182 void hists__output_recalc_col_len(struct hists
*hists
, int max_rows
)
184 struct rb_node
*next
= rb_first(&hists
->entries
);
185 struct hist_entry
*n
;
188 hists__reset_col_len(hists
);
190 while (next
&& row
++ < max_rows
) {
191 n
= rb_entry(next
, struct hist_entry
, rb_node
);
193 hists__calc_col_len(hists
, n
);
194 next
= rb_next(&n
->rb_node
);
198 static void he_stat__add_cpumode_period(struct he_stat
*he_stat
,
199 unsigned int cpumode
, u64 period
)
202 case PERF_RECORD_MISC_KERNEL
:
203 he_stat
->period_sys
+= period
;
205 case PERF_RECORD_MISC_USER
:
206 he_stat
->period_us
+= period
;
208 case PERF_RECORD_MISC_GUEST_KERNEL
:
209 he_stat
->period_guest_sys
+= period
;
211 case PERF_RECORD_MISC_GUEST_USER
:
212 he_stat
->period_guest_us
+= period
;
219 static void he_stat__add_period(struct he_stat
*he_stat
, u64 period
,
223 he_stat
->period
+= period
;
224 he_stat
->weight
+= weight
;
225 he_stat
->nr_events
+= 1;
228 static void he_stat__add_stat(struct he_stat
*dest
, struct he_stat
*src
)
230 dest
->period
+= src
->period
;
231 dest
->period_sys
+= src
->period_sys
;
232 dest
->period_us
+= src
->period_us
;
233 dest
->period_guest_sys
+= src
->period_guest_sys
;
234 dest
->period_guest_us
+= src
->period_guest_us
;
235 dest
->nr_events
+= src
->nr_events
;
236 dest
->weight
+= src
->weight
;
239 static void he_stat__decay(struct he_stat
*he_stat
)
241 he_stat
->period
= (he_stat
->period
* 7) / 8;
242 he_stat
->nr_events
= (he_stat
->nr_events
* 7) / 8;
243 /* XXX need decay for weight too? */
246 static bool hists__decay_entry(struct hists
*hists
, struct hist_entry
*he
)
248 u64 prev_period
= he
->stat
.period
;
251 if (prev_period
== 0)
254 he_stat__decay(&he
->stat
);
255 if (symbol_conf
.cumulate_callchain
)
256 he_stat__decay(he
->stat_acc
);
258 diff
= prev_period
- he
->stat
.period
;
260 hists
->stats
.total_period
-= diff
;
262 hists
->stats
.total_non_filtered_period
-= diff
;
264 return he
->stat
.period
== 0;
267 static void hists__delete_entry(struct hists
*hists
, struct hist_entry
*he
)
269 rb_erase(&he
->rb_node
, &hists
->entries
);
271 if (sort__need_collapse
)
272 rb_erase(&he
->rb_node_in
, &hists
->entries_collapsed
);
276 --hists
->nr_non_filtered_entries
;
278 hist_entry__delete(he
);
281 void hists__decay_entries(struct hists
*hists
, bool zap_user
, bool zap_kernel
)
283 struct rb_node
*next
= rb_first(&hists
->entries
);
284 struct hist_entry
*n
;
287 n
= rb_entry(next
, struct hist_entry
, rb_node
);
288 next
= rb_next(&n
->rb_node
);
289 if (((zap_user
&& n
->level
== '.') ||
290 (zap_kernel
&& n
->level
!= '.') ||
291 hists__decay_entry(hists
, n
))) {
292 hists__delete_entry(hists
, n
);
297 void hists__delete_entries(struct hists
*hists
)
299 struct rb_node
*next
= rb_first(&hists
->entries
);
300 struct hist_entry
*n
;
303 n
= rb_entry(next
, struct hist_entry
, rb_node
);
304 next
= rb_next(&n
->rb_node
);
306 hists__delete_entry(hists
, n
);
311 * histogram, sorted on item, collects periods
314 static struct hist_entry
*hist_entry__new(struct hist_entry
*template,
317 size_t callchain_size
= 0;
318 struct hist_entry
*he
;
320 if (symbol_conf
.use_callchain
)
321 callchain_size
= sizeof(struct callchain_root
);
323 he
= zalloc(sizeof(*he
) + callchain_size
);
328 if (symbol_conf
.cumulate_callchain
) {
329 he
->stat_acc
= malloc(sizeof(he
->stat
));
330 if (he
->stat_acc
== NULL
) {
334 memcpy(he
->stat_acc
, &he
->stat
, sizeof(he
->stat
));
336 memset(&he
->stat
, 0, sizeof(he
->stat
));
339 map__get(he
->ms
.map
);
341 if (he
->branch_info
) {
343 * This branch info is (a part of) allocated from
344 * sample__resolve_bstack() and will be freed after
345 * adding new entries. So we need to save a copy.
347 he
->branch_info
= malloc(sizeof(*he
->branch_info
));
348 if (he
->branch_info
== NULL
) {
349 map__zput(he
->ms
.map
);
355 memcpy(he
->branch_info
, template->branch_info
,
356 sizeof(*he
->branch_info
));
358 map__get(he
->branch_info
->from
.map
);
359 map__get(he
->branch_info
->to
.map
);
363 map__get(he
->mem_info
->iaddr
.map
);
364 map__get(he
->mem_info
->daddr
.map
);
367 if (symbol_conf
.use_callchain
)
368 callchain_init(he
->callchain
);
370 INIT_LIST_HEAD(&he
->pairs
.node
);
371 thread__get(he
->thread
);
377 static u8
symbol__parent_filter(const struct symbol
*parent
)
379 if (symbol_conf
.exclude_other
&& parent
== NULL
)
380 return 1 << HIST_FILTER__PARENT
;
384 static struct hist_entry
*hists__findnew_entry(struct hists
*hists
,
385 struct hist_entry
*entry
,
386 struct addr_location
*al
,
390 struct rb_node
*parent
= NULL
;
391 struct hist_entry
*he
;
393 u64 period
= entry
->stat
.period
;
394 u64 weight
= entry
->stat
.weight
;
396 p
= &hists
->entries_in
->rb_node
;
400 he
= rb_entry(parent
, struct hist_entry
, rb_node_in
);
403 * Make sure that it receives arguments in a same order as
404 * hist_entry__collapse() so that we can use an appropriate
405 * function when searching an entry regardless which sort
408 cmp
= hist_entry__cmp(he
, entry
);
412 he_stat__add_period(&he
->stat
, period
, weight
);
413 if (symbol_conf
.cumulate_callchain
)
414 he_stat__add_period(he
->stat_acc
, period
, weight
);
417 * This mem info was allocated from sample__resolve_mem
418 * and will not be used anymore.
420 zfree(&entry
->mem_info
);
422 /* If the map of an existing hist_entry has
423 * become out-of-date due to an exec() or
424 * similar, update it. Otherwise we will
425 * mis-adjust symbol addresses when computing
426 * the history counter to increment.
428 if (he
->ms
.map
!= entry
->ms
.map
) {
429 map__put(he
->ms
.map
);
430 he
->ms
.map
= map__get(entry
->ms
.map
);
441 he
= hist_entry__new(entry
, sample_self
);
447 rb_link_node(&he
->rb_node_in
, parent
, p
);
448 rb_insert_color(&he
->rb_node_in
, hists
->entries_in
);
451 he_stat__add_cpumode_period(&he
->stat
, al
->cpumode
, period
);
452 if (symbol_conf
.cumulate_callchain
)
453 he_stat__add_cpumode_period(he
->stat_acc
, al
->cpumode
, period
);
457 struct hist_entry
*__hists__add_entry(struct hists
*hists
,
458 struct addr_location
*al
,
459 struct symbol
*sym_parent
,
460 struct branch_info
*bi
,
462 u64 period
, u64 weight
, u64 transaction
,
465 struct hist_entry entry
= {
466 .thread
= al
->thread
,
467 .comm
= thread__comm(al
->thread
),
472 .socket
= al
->socket
,
474 .cpumode
= al
->cpumode
,
482 .parent
= sym_parent
,
483 .filtered
= symbol__parent_filter(sym_parent
) | al
->filtered
,
487 .transaction
= transaction
,
490 return hists__findnew_entry(hists
, &entry
, al
, sample_self
);
494 iter_next_nop_entry(struct hist_entry_iter
*iter __maybe_unused
,
495 struct addr_location
*al __maybe_unused
)
501 iter_add_next_nop_entry(struct hist_entry_iter
*iter __maybe_unused
,
502 struct addr_location
*al __maybe_unused
)
508 iter_prepare_mem_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
510 struct perf_sample
*sample
= iter
->sample
;
513 mi
= sample__resolve_mem(sample
, al
);
522 iter_add_single_mem_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
525 struct mem_info
*mi
= iter
->priv
;
526 struct hists
*hists
= evsel__hists(iter
->evsel
);
527 struct hist_entry
*he
;
532 cost
= iter
->sample
->weight
;
537 * must pass period=weight in order to get the correct
538 * sorting from hists__collapse_resort() which is solely
539 * based on periods. We want sorting be done on nr_events * weight
540 * and this is indirectly achieved by passing period=weight here
541 * and the he_stat__add_period() function.
543 he
= __hists__add_entry(hists
, al
, iter
->parent
, NULL
, mi
,
544 cost
, cost
, 0, true);
553 iter_finish_mem_entry(struct hist_entry_iter
*iter
,
554 struct addr_location
*al __maybe_unused
)
556 struct perf_evsel
*evsel
= iter
->evsel
;
557 struct hists
*hists
= evsel__hists(evsel
);
558 struct hist_entry
*he
= iter
->he
;
564 hists__inc_nr_samples(hists
, he
->filtered
);
566 err
= hist_entry__append_callchain(he
, iter
->sample
);
570 * We don't need to free iter->priv (mem_info) here since the mem info
571 * was either already freed in hists__findnew_entry() or passed to a
572 * new hist entry by hist_entry__new().
581 iter_prepare_branch_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
583 struct branch_info
*bi
;
584 struct perf_sample
*sample
= iter
->sample
;
586 bi
= sample__resolve_bstack(sample
, al
);
591 iter
->total
= sample
->branch_stack
->nr
;
598 iter_add_single_branch_entry(struct hist_entry_iter
*iter __maybe_unused
,
599 struct addr_location
*al __maybe_unused
)
601 /* to avoid calling callback function */
608 iter_next_branch_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
610 struct branch_info
*bi
= iter
->priv
;
616 if (iter
->curr
>= iter
->total
)
619 al
->map
= bi
[i
].to
.map
;
620 al
->sym
= bi
[i
].to
.sym
;
621 al
->addr
= bi
[i
].to
.addr
;
626 iter_add_next_branch_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
628 struct branch_info
*bi
;
629 struct perf_evsel
*evsel
= iter
->evsel
;
630 struct hists
*hists
= evsel__hists(evsel
);
631 struct hist_entry
*he
= NULL
;
637 if (iter
->hide_unresolved
&& !(bi
[i
].from
.sym
&& bi
[i
].to
.sym
))
641 * The report shows the percentage of total branches captured
642 * and not events sampled. Thus we use a pseudo period of 1.
644 he
= __hists__add_entry(hists
, al
, iter
->parent
, &bi
[i
], NULL
,
645 1, bi
->flags
.cycles
? bi
->flags
.cycles
: 1,
650 hists__inc_nr_samples(hists
, he
->filtered
);
659 iter_finish_branch_entry(struct hist_entry_iter
*iter
,
660 struct addr_location
*al __maybe_unused
)
665 return iter
->curr
>= iter
->total
? 0 : -1;
669 iter_prepare_normal_entry(struct hist_entry_iter
*iter __maybe_unused
,
670 struct addr_location
*al __maybe_unused
)
676 iter_add_single_normal_entry(struct hist_entry_iter
*iter
, struct addr_location
*al
)
678 struct perf_evsel
*evsel
= iter
->evsel
;
679 struct perf_sample
*sample
= iter
->sample
;
680 struct hist_entry
*he
;
682 he
= __hists__add_entry(evsel__hists(evsel
), al
, iter
->parent
, NULL
, NULL
,
683 sample
->period
, sample
->weight
,
684 sample
->transaction
, true);
693 iter_finish_normal_entry(struct hist_entry_iter
*iter
,
694 struct addr_location
*al __maybe_unused
)
696 struct hist_entry
*he
= iter
->he
;
697 struct perf_evsel
*evsel
= iter
->evsel
;
698 struct perf_sample
*sample
= iter
->sample
;
705 hists__inc_nr_samples(evsel__hists(evsel
), he
->filtered
);
707 return hist_entry__append_callchain(he
, sample
);
711 iter_prepare_cumulative_entry(struct hist_entry_iter
*iter
,
712 struct addr_location
*al __maybe_unused
)
714 struct hist_entry
**he_cache
;
716 callchain_cursor_commit(&callchain_cursor
);
719 * This is for detecting cycles or recursions so that they're
720 * cumulated only one time to prevent entries more than 100%
723 he_cache
= malloc(sizeof(*he_cache
) * (iter
->max_stack
+ 1));
724 if (he_cache
== NULL
)
727 iter
->priv
= he_cache
;
734 iter_add_single_cumulative_entry(struct hist_entry_iter
*iter
,
735 struct addr_location
*al
)
737 struct perf_evsel
*evsel
= iter
->evsel
;
738 struct hists
*hists
= evsel__hists(evsel
);
739 struct perf_sample
*sample
= iter
->sample
;
740 struct hist_entry
**he_cache
= iter
->priv
;
741 struct hist_entry
*he
;
744 he
= __hists__add_entry(hists
, al
, iter
->parent
, NULL
, NULL
,
745 sample
->period
, sample
->weight
,
746 sample
->transaction
, true);
751 he_cache
[iter
->curr
++] = he
;
753 hist_entry__append_callchain(he
, sample
);
756 * We need to re-initialize the cursor since callchain_append()
757 * advanced the cursor to the end.
759 callchain_cursor_commit(&callchain_cursor
);
761 hists__inc_nr_samples(hists
, he
->filtered
);
767 iter_next_cumulative_entry(struct hist_entry_iter
*iter
,
768 struct addr_location
*al
)
770 struct callchain_cursor_node
*node
;
772 node
= callchain_cursor_current(&callchain_cursor
);
776 return fill_callchain_info(al
, node
, iter
->hide_unresolved
);
780 iter_add_next_cumulative_entry(struct hist_entry_iter
*iter
,
781 struct addr_location
*al
)
783 struct perf_evsel
*evsel
= iter
->evsel
;
784 struct perf_sample
*sample
= iter
->sample
;
785 struct hist_entry
**he_cache
= iter
->priv
;
786 struct hist_entry
*he
;
787 struct hist_entry he_tmp
= {
788 .hists
= evsel__hists(evsel
),
790 .thread
= al
->thread
,
791 .comm
= thread__comm(al
->thread
),
797 .parent
= iter
->parent
,
800 struct callchain_cursor cursor
;
802 callchain_cursor_snapshot(&cursor
, &callchain_cursor
);
804 callchain_cursor_advance(&callchain_cursor
);
807 * Check if there's duplicate entries in the callchain.
808 * It's possible that it has cycles or recursive calls.
810 for (i
= 0; i
< iter
->curr
; i
++) {
811 if (hist_entry__cmp(he_cache
[i
], &he_tmp
) == 0) {
812 /* to avoid calling callback function */
818 he
= __hists__add_entry(evsel__hists(evsel
), al
, iter
->parent
, NULL
, NULL
,
819 sample
->period
, sample
->weight
,
820 sample
->transaction
, false);
825 he_cache
[iter
->curr
++] = he
;
827 if (symbol_conf
.use_callchain
)
828 callchain_append(he
->callchain
, &cursor
, sample
->period
);
833 iter_finish_cumulative_entry(struct hist_entry_iter
*iter
,
834 struct addr_location
*al __maybe_unused
)
842 const struct hist_iter_ops hist_iter_mem
= {
843 .prepare_entry
= iter_prepare_mem_entry
,
844 .add_single_entry
= iter_add_single_mem_entry
,
845 .next_entry
= iter_next_nop_entry
,
846 .add_next_entry
= iter_add_next_nop_entry
,
847 .finish_entry
= iter_finish_mem_entry
,
850 const struct hist_iter_ops hist_iter_branch
= {
851 .prepare_entry
= iter_prepare_branch_entry
,
852 .add_single_entry
= iter_add_single_branch_entry
,
853 .next_entry
= iter_next_branch_entry
,
854 .add_next_entry
= iter_add_next_branch_entry
,
855 .finish_entry
= iter_finish_branch_entry
,
858 const struct hist_iter_ops hist_iter_normal
= {
859 .prepare_entry
= iter_prepare_normal_entry
,
860 .add_single_entry
= iter_add_single_normal_entry
,
861 .next_entry
= iter_next_nop_entry
,
862 .add_next_entry
= iter_add_next_nop_entry
,
863 .finish_entry
= iter_finish_normal_entry
,
866 const struct hist_iter_ops hist_iter_cumulative
= {
867 .prepare_entry
= iter_prepare_cumulative_entry
,
868 .add_single_entry
= iter_add_single_cumulative_entry
,
869 .next_entry
= iter_next_cumulative_entry
,
870 .add_next_entry
= iter_add_next_cumulative_entry
,
871 .finish_entry
= iter_finish_cumulative_entry
,
874 int hist_entry_iter__add(struct hist_entry_iter
*iter
, struct addr_location
*al
,
875 int max_stack_depth
, void *arg
)
879 err
= sample__resolve_callchain(iter
->sample
, &iter
->parent
,
880 iter
->evsel
, al
, max_stack_depth
);
884 iter
->max_stack
= max_stack_depth
;
886 err
= iter
->ops
->prepare_entry(iter
, al
);
890 err
= iter
->ops
->add_single_entry(iter
, al
);
894 if (iter
->he
&& iter
->add_entry_cb
) {
895 err
= iter
->add_entry_cb(iter
, al
, true, arg
);
900 while (iter
->ops
->next_entry(iter
, al
)) {
901 err
= iter
->ops
->add_next_entry(iter
, al
);
905 if (iter
->he
&& iter
->add_entry_cb
) {
906 err
= iter
->add_entry_cb(iter
, al
, false, arg
);
913 err2
= iter
->ops
->finish_entry(iter
, al
);
921 hist_entry__cmp(struct hist_entry
*left
, struct hist_entry
*right
)
923 struct perf_hpp_fmt
*fmt
;
926 perf_hpp__for_each_sort_list(fmt
) {
927 if (perf_hpp__should_skip(fmt
))
930 cmp
= fmt
->cmp(fmt
, left
, right
);
939 hist_entry__collapse(struct hist_entry
*left
, struct hist_entry
*right
)
941 struct perf_hpp_fmt
*fmt
;
944 perf_hpp__for_each_sort_list(fmt
) {
945 if (perf_hpp__should_skip(fmt
))
948 cmp
= fmt
->collapse(fmt
, left
, right
);
956 void hist_entry__delete(struct hist_entry
*he
)
958 thread__zput(he
->thread
);
959 map__zput(he
->ms
.map
);
961 if (he
->branch_info
) {
962 map__zput(he
->branch_info
->from
.map
);
963 map__zput(he
->branch_info
->to
.map
);
964 zfree(&he
->branch_info
);
968 map__zput(he
->mem_info
->iaddr
.map
);
969 map__zput(he
->mem_info
->daddr
.map
);
970 zfree(&he
->mem_info
);
973 zfree(&he
->stat_acc
);
974 free_srcline(he
->srcline
);
975 if (he
->srcfile
&& he
->srcfile
[0])
977 free_callchain(he
->callchain
);
982 * collapse the histogram
985 static bool hists__collapse_insert_entry(struct hists
*hists __maybe_unused
,
986 struct rb_root
*root
,
987 struct hist_entry
*he
)
989 struct rb_node
**p
= &root
->rb_node
;
990 struct rb_node
*parent
= NULL
;
991 struct hist_entry
*iter
;
996 iter
= rb_entry(parent
, struct hist_entry
, rb_node_in
);
998 cmp
= hist_entry__collapse(iter
, he
);
1001 he_stat__add_stat(&iter
->stat
, &he
->stat
);
1002 if (symbol_conf
.cumulate_callchain
)
1003 he_stat__add_stat(iter
->stat_acc
, he
->stat_acc
);
1005 if (symbol_conf
.use_callchain
) {
1006 callchain_cursor_reset(&callchain_cursor
);
1007 callchain_merge(&callchain_cursor
,
1011 hist_entry__delete(he
);
1018 p
= &(*p
)->rb_right
;
1020 hists
->nr_entries
++;
1022 rb_link_node(&he
->rb_node_in
, parent
, p
);
1023 rb_insert_color(&he
->rb_node_in
, root
);
1027 static struct rb_root
*hists__get_rotate_entries_in(struct hists
*hists
)
1029 struct rb_root
*root
;
1031 pthread_mutex_lock(&hists
->lock
);
1033 root
= hists
->entries_in
;
1034 if (++hists
->entries_in
> &hists
->entries_in_array
[1])
1035 hists
->entries_in
= &hists
->entries_in_array
[0];
1037 pthread_mutex_unlock(&hists
->lock
);
1042 static void hists__apply_filters(struct hists
*hists
, struct hist_entry
*he
)
1044 hists__filter_entry_by_dso(hists
, he
);
1045 hists__filter_entry_by_thread(hists
, he
);
1046 hists__filter_entry_by_symbol(hists
, he
);
1047 hists__filter_entry_by_socket(hists
, he
);
1050 void hists__collapse_resort(struct hists
*hists
, struct ui_progress
*prog
)
1052 struct rb_root
*root
;
1053 struct rb_node
*next
;
1054 struct hist_entry
*n
;
1056 if (!sort__need_collapse
)
1059 hists
->nr_entries
= 0;
1061 root
= hists__get_rotate_entries_in(hists
);
1063 next
= rb_first(root
);
1068 n
= rb_entry(next
, struct hist_entry
, rb_node_in
);
1069 next
= rb_next(&n
->rb_node_in
);
1071 rb_erase(&n
->rb_node_in
, root
);
1072 if (hists__collapse_insert_entry(hists
, &hists
->entries_collapsed
, n
)) {
1074 * If it wasn't combined with one of the entries already
1075 * collapsed, we need to apply the filters that may have
1076 * been set by, say, the hist_browser.
1078 hists__apply_filters(hists
, n
);
1081 ui_progress__update(prog
, 1);
1085 static int hist_entry__sort(struct hist_entry
*a
, struct hist_entry
*b
)
1087 struct perf_hpp_fmt
*fmt
;
1090 perf_hpp__for_each_sort_list(fmt
) {
1091 if (perf_hpp__should_skip(fmt
))
1094 cmp
= fmt
->sort(fmt
, a
, b
);
1102 static void hists__reset_filter_stats(struct hists
*hists
)
1104 hists
->nr_non_filtered_entries
= 0;
1105 hists
->stats
.total_non_filtered_period
= 0;
1108 void hists__reset_stats(struct hists
*hists
)
1110 hists
->nr_entries
= 0;
1111 hists
->stats
.total_period
= 0;
1113 hists__reset_filter_stats(hists
);
1116 static void hists__inc_filter_stats(struct hists
*hists
, struct hist_entry
*h
)
1118 hists
->nr_non_filtered_entries
++;
1119 hists
->stats
.total_non_filtered_period
+= h
->stat
.period
;
1122 void hists__inc_stats(struct hists
*hists
, struct hist_entry
*h
)
1125 hists__inc_filter_stats(hists
, h
);
1127 hists
->nr_entries
++;
1128 hists
->stats
.total_period
+= h
->stat
.period
;
1131 static void __hists__insert_output_entry(struct rb_root
*entries
,
1132 struct hist_entry
*he
,
1133 u64 min_callchain_hits
,
1136 struct rb_node
**p
= &entries
->rb_node
;
1137 struct rb_node
*parent
= NULL
;
1138 struct hist_entry
*iter
;
1141 callchain_param
.sort(&he
->sorted_chain
, he
->callchain
,
1142 min_callchain_hits
, &callchain_param
);
1144 while (*p
!= NULL
) {
1146 iter
= rb_entry(parent
, struct hist_entry
, rb_node
);
1148 if (hist_entry__sort(he
, iter
) > 0)
1151 p
= &(*p
)->rb_right
;
1154 rb_link_node(&he
->rb_node
, parent
, p
);
1155 rb_insert_color(&he
->rb_node
, entries
);
1158 void hists__output_resort(struct hists
*hists
, struct ui_progress
*prog
)
1160 struct rb_root
*root
;
1161 struct rb_node
*next
;
1162 struct hist_entry
*n
;
1163 u64 min_callchain_hits
;
1164 struct perf_evsel
*evsel
= hists_to_evsel(hists
);
1167 if (evsel
&& symbol_conf
.use_callchain
&& !symbol_conf
.show_ref_callgraph
)
1168 use_callchain
= evsel
->attr
.sample_type
& PERF_SAMPLE_CALLCHAIN
;
1170 use_callchain
= symbol_conf
.use_callchain
;
1172 min_callchain_hits
= hists
->stats
.total_period
* (callchain_param
.min_percent
/ 100);
1174 if (sort__need_collapse
)
1175 root
= &hists
->entries_collapsed
;
1177 root
= hists
->entries_in
;
1179 next
= rb_first(root
);
1180 hists
->entries
= RB_ROOT
;
1182 hists__reset_stats(hists
);
1183 hists__reset_col_len(hists
);
1186 n
= rb_entry(next
, struct hist_entry
, rb_node_in
);
1187 next
= rb_next(&n
->rb_node_in
);
1189 __hists__insert_output_entry(&hists
->entries
, n
, min_callchain_hits
, use_callchain
);
1190 hists__inc_stats(hists
, n
);
1193 hists__calc_col_len(hists
, n
);
1196 ui_progress__update(prog
, 1);
1200 static void hists__remove_entry_filter(struct hists
*hists
, struct hist_entry
*h
,
1201 enum hist_filter filter
)
1203 h
->filtered
&= ~(1 << filter
);
1207 /* force fold unfiltered entry for simplicity */
1208 h
->unfolded
= false;
1212 hists
->stats
.nr_non_filtered_samples
+= h
->stat
.nr_events
;
1214 hists__inc_filter_stats(hists
, h
);
1215 hists__calc_col_len(hists
, h
);
1219 static bool hists__filter_entry_by_dso(struct hists
*hists
,
1220 struct hist_entry
*he
)
1222 if (hists
->dso_filter
!= NULL
&&
1223 (he
->ms
.map
== NULL
|| he
->ms
.map
->dso
!= hists
->dso_filter
)) {
1224 he
->filtered
|= (1 << HIST_FILTER__DSO
);
1231 void hists__filter_by_dso(struct hists
*hists
)
1235 hists
->stats
.nr_non_filtered_samples
= 0;
1237 hists__reset_filter_stats(hists
);
1238 hists__reset_col_len(hists
);
1240 for (nd
= rb_first(&hists
->entries
); nd
; nd
= rb_next(nd
)) {
1241 struct hist_entry
*h
= rb_entry(nd
, struct hist_entry
, rb_node
);
1243 if (symbol_conf
.exclude_other
&& !h
->parent
)
1246 if (hists__filter_entry_by_dso(hists
, h
))
1249 hists__remove_entry_filter(hists
, h
, HIST_FILTER__DSO
);
1253 static bool hists__filter_entry_by_thread(struct hists
*hists
,
1254 struct hist_entry
*he
)
1256 if (hists
->thread_filter
!= NULL
&&
1257 he
->thread
!= hists
->thread_filter
) {
1258 he
->filtered
|= (1 << HIST_FILTER__THREAD
);
1265 void hists__filter_by_thread(struct hists
*hists
)
1269 hists
->stats
.nr_non_filtered_samples
= 0;
1271 hists__reset_filter_stats(hists
);
1272 hists__reset_col_len(hists
);
1274 for (nd
= rb_first(&hists
->entries
); nd
; nd
= rb_next(nd
)) {
1275 struct hist_entry
*h
= rb_entry(nd
, struct hist_entry
, rb_node
);
1277 if (hists__filter_entry_by_thread(hists
, h
))
1280 hists__remove_entry_filter(hists
, h
, HIST_FILTER__THREAD
);
1284 static bool hists__filter_entry_by_symbol(struct hists
*hists
,
1285 struct hist_entry
*he
)
1287 if (hists
->symbol_filter_str
!= NULL
&&
1288 (!he
->ms
.sym
|| strstr(he
->ms
.sym
->name
,
1289 hists
->symbol_filter_str
) == NULL
)) {
1290 he
->filtered
|= (1 << HIST_FILTER__SYMBOL
);
1297 void hists__filter_by_symbol(struct hists
*hists
)
1301 hists
->stats
.nr_non_filtered_samples
= 0;
1303 hists__reset_filter_stats(hists
);
1304 hists__reset_col_len(hists
);
1306 for (nd
= rb_first(&hists
->entries
); nd
; nd
= rb_next(nd
)) {
1307 struct hist_entry
*h
= rb_entry(nd
, struct hist_entry
, rb_node
);
1309 if (hists__filter_entry_by_symbol(hists
, h
))
1312 hists__remove_entry_filter(hists
, h
, HIST_FILTER__SYMBOL
);
1316 static bool hists__filter_entry_by_socket(struct hists
*hists
,
1317 struct hist_entry
*he
)
1319 if ((hists
->socket_filter
> -1) &&
1320 (he
->socket
!= hists
->socket_filter
)) {
1321 he
->filtered
|= (1 << HIST_FILTER__SOCKET
);
1328 void hists__filter_by_socket(struct hists
*hists
)
1332 hists
->stats
.nr_non_filtered_samples
= 0;
1334 hists__reset_filter_stats(hists
);
1335 hists__reset_col_len(hists
);
1337 for (nd
= rb_first(&hists
->entries
); nd
; nd
= rb_next(nd
)) {
1338 struct hist_entry
*h
= rb_entry(nd
, struct hist_entry
, rb_node
);
1340 if (hists__filter_entry_by_socket(hists
, h
))
1343 hists__remove_entry_filter(hists
, h
, HIST_FILTER__SOCKET
);
1347 void events_stats__inc(struct events_stats
*stats
, u32 type
)
1349 ++stats
->nr_events
[0];
1350 ++stats
->nr_events
[type
];
1353 void hists__inc_nr_events(struct hists
*hists
, u32 type
)
1355 events_stats__inc(&hists
->stats
, type
);
1358 void hists__inc_nr_samples(struct hists
*hists
, bool filtered
)
1360 events_stats__inc(&hists
->stats
, PERF_RECORD_SAMPLE
);
1362 hists
->stats
.nr_non_filtered_samples
++;
1365 static struct hist_entry
*hists__add_dummy_entry(struct hists
*hists
,
1366 struct hist_entry
*pair
)
1368 struct rb_root
*root
;
1370 struct rb_node
*parent
= NULL
;
1371 struct hist_entry
*he
;
1374 if (sort__need_collapse
)
1375 root
= &hists
->entries_collapsed
;
1377 root
= hists
->entries_in
;
1381 while (*p
!= NULL
) {
1383 he
= rb_entry(parent
, struct hist_entry
, rb_node_in
);
1385 cmp
= hist_entry__collapse(he
, pair
);
1393 p
= &(*p
)->rb_right
;
1396 he
= hist_entry__new(pair
, true);
1398 memset(&he
->stat
, 0, sizeof(he
->stat
));
1400 rb_link_node(&he
->rb_node_in
, parent
, p
);
1401 rb_insert_color(&he
->rb_node_in
, root
);
1402 hists__inc_stats(hists
, he
);
1409 static struct hist_entry
*hists__find_entry(struct hists
*hists
,
1410 struct hist_entry
*he
)
1414 if (sort__need_collapse
)
1415 n
= hists
->entries_collapsed
.rb_node
;
1417 n
= hists
->entries_in
->rb_node
;
1420 struct hist_entry
*iter
= rb_entry(n
, struct hist_entry
, rb_node_in
);
1421 int64_t cmp
= hist_entry__collapse(iter
, he
);
1435 * Look for pairs to link to the leader buckets (hist_entries):
1437 void hists__match(struct hists
*leader
, struct hists
*other
)
1439 struct rb_root
*root
;
1441 struct hist_entry
*pos
, *pair
;
1443 if (sort__need_collapse
)
1444 root
= &leader
->entries_collapsed
;
1446 root
= leader
->entries_in
;
1448 for (nd
= rb_first(root
); nd
; nd
= rb_next(nd
)) {
1449 pos
= rb_entry(nd
, struct hist_entry
, rb_node_in
);
1450 pair
= hists__find_entry(other
, pos
);
1453 hist_entry__add_pair(pair
, pos
);
1458 * Look for entries in the other hists that are not present in the leader, if
1459 * we find them, just add a dummy entry on the leader hists, with period=0,
1460 * nr_events=0, to serve as the list header.
1462 int hists__link(struct hists
*leader
, struct hists
*other
)
1464 struct rb_root
*root
;
1466 struct hist_entry
*pos
, *pair
;
1468 if (sort__need_collapse
)
1469 root
= &other
->entries_collapsed
;
1471 root
= other
->entries_in
;
1473 for (nd
= rb_first(root
); nd
; nd
= rb_next(nd
)) {
1474 pos
= rb_entry(nd
, struct hist_entry
, rb_node_in
);
1476 if (!hist_entry__has_pairs(pos
)) {
1477 pair
= hists__add_dummy_entry(leader
, pos
);
1480 hist_entry__add_pair(pos
, pair
);
1487 void hist__account_cycles(struct branch_stack
*bs
, struct addr_location
*al
,
1488 struct perf_sample
*sample
, bool nonany_branch_mode
)
1490 struct branch_info
*bi
;
1492 /* If we have branch cycles always annotate them. */
1493 if (bs
&& bs
->nr
&& bs
->entries
[0].flags
.cycles
) {
1496 bi
= sample__resolve_bstack(sample
, al
);
1498 struct addr_map_symbol
*prev
= NULL
;
1501 * Ignore errors, still want to process the
1504 * For non standard branch modes always
1505 * force no IPC (prev == NULL)
1507 * Note that perf stores branches reversed from
1510 for (i
= bs
->nr
- 1; i
>= 0; i
--) {
1511 addr_map_symbol__account_cycles(&bi
[i
].from
,
1512 nonany_branch_mode
? NULL
: prev
,
1513 bi
[i
].flags
.cycles
);
1521 size_t perf_evlist__fprintf_nr_events(struct perf_evlist
*evlist
, FILE *fp
)
1523 struct perf_evsel
*pos
;
1526 evlist__for_each(evlist
, pos
) {
1527 ret
+= fprintf(fp
, "%s stats:\n", perf_evsel__name(pos
));
1528 ret
+= events_stats__fprintf(&evsel__hists(pos
)->stats
, fp
);
1535 u64
hists__total_period(struct hists
*hists
)
1537 return symbol_conf
.filter_relative
? hists
->stats
.total_non_filtered_period
:
1538 hists
->stats
.total_period
;
1541 int parse_filter_percentage(const struct option
*opt __maybe_unused
,
1542 const char *arg
, int unset __maybe_unused
)
1544 if (!strcmp(arg
, "relative"))
1545 symbol_conf
.filter_relative
= true;
1546 else if (!strcmp(arg
, "absolute"))
1547 symbol_conf
.filter_relative
= false;
1554 int perf_hist_config(const char *var
, const char *value
)
1556 if (!strcmp(var
, "hist.percentage"))
1557 return parse_filter_percentage(NULL
, value
, 0);
1562 static int hists_evsel__init(struct perf_evsel
*evsel
)
1564 struct hists
*hists
= evsel__hists(evsel
);
1566 memset(hists
, 0, sizeof(*hists
));
1567 hists
->entries_in_array
[0] = hists
->entries_in_array
[1] = RB_ROOT
;
1568 hists
->entries_in
= &hists
->entries_in_array
[0];
1569 hists
->entries_collapsed
= RB_ROOT
;
1570 hists
->entries
= RB_ROOT
;
1571 pthread_mutex_init(&hists
->lock
, NULL
);
1572 hists
->socket_filter
= -1;
1577 * XXX We probably need a hists_evsel__exit() to free the hist_entries
1578 * stored in the rbtree...
1581 int hists__init(void)
1583 int err
= perf_evsel__object_config(sizeof(struct hists_evsel
),
1584 hists_evsel__init
, NULL
);
1586 fputs("FATAL ERROR: Couldn't setup hists class\n", stderr
);