blob: 82833ceba339a6bb52b8a60a4b405d7105e79e32 [file] [log] [blame]
Frederic Weisbecker8a0ecfb2010-05-13 19:47:16 +02001#include "util.h"
Frederic Weisbecker598357e2010-05-21 12:48:39 +02002#include "build-id.h"
John Kacur3d1d07e2009-09-28 15:32:55 +02003#include "hist.h"
Krister Johansen11a4d642017-01-05 22:23:31 -08004#include "map.h"
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -02005#include "session.h"
6#include "sort.h"
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03007#include "evlist.h"
Namhyung Kim29d720e2013-01-22 18:09:33 +09008#include "evsel.h"
Namhyung Kim69bcb012013-10-30 09:40:34 +09009#include "annotate.h"
Namhyung Kim740b97f2014-12-22 13:44:10 +090010#include "ui/progress.h"
Arnaldo Carvalho de Melo9b338272009-12-16 14:31:49 -020011#include <math.h>
John Kacur3d1d07e2009-09-28 15:32:55 +020012
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -020013static bool hists__filter_entry_by_dso(struct hists *hists,
14 struct hist_entry *he);
15static bool hists__filter_entry_by_thread(struct hists *hists,
16 struct hist_entry *he);
Namhyung Kime94d53e2012-03-16 17:50:51 +090017static bool hists__filter_entry_by_symbol(struct hists *hists,
18 struct hist_entry *he);
Kan Liang21394d92015-09-04 10:45:44 -040019static bool hists__filter_entry_by_socket(struct hists *hists,
20 struct hist_entry *he);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -020021
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030022u16 hists__col_len(struct hists *hists, enum hist_column col)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030023{
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030024 return hists->col_len[col];
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030025}
26
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030027void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030028{
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030029 hists->col_len[col] = len;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030030}
31
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030032bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030033{
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030034 if (len > hists__col_len(hists, col)) {
35 hists__set_col_len(hists, col, len);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030036 return true;
37 }
38 return false;
39}
40
Namhyung Kim7ccf4f92012-08-20 13:52:05 +090041void hists__reset_col_len(struct hists *hists)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030042{
43 enum hist_column col;
44
45 for (col = 0; col < HISTC_NR_COLS; ++col)
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030046 hists__set_col_len(hists, col, 0);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030047}
48
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010049static void hists__set_unres_dso_col_len(struct hists *hists, int dso)
50{
51 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
52
53 if (hists__col_len(hists, dso) < unresolved_col_width &&
54 !symbol_conf.col_width_list_str && !symbol_conf.field_sep &&
55 !symbol_conf.dso_list)
56 hists__set_col_len(hists, dso, unresolved_col_width);
57}
58
Namhyung Kim7ccf4f92012-08-20 13:52:05 +090059void hists__calc_col_len(struct hists *hists, struct hist_entry *h)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030060{
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010061 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
Stephane Eranian98a3b322013-01-24 16:10:35 +010062 int symlen;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030063 u16 len;
64
Namhyung Kimded19d52013-04-01 20:35:19 +090065 /*
66 * +4 accounts for '[x] ' priv level info
67 * +2 accounts for 0x prefix on raw addresses
68 * +3 accounts for ' y ' symtab origin info
69 */
70 if (h->ms.sym) {
71 symlen = h->ms.sym->namelen + 4;
72 if (verbose)
73 symlen += BITS_PER_LONG / 4 + 2 + 3;
74 hists__new_col_len(hists, HISTC_SYMBOL, symlen);
75 } else {
Stephane Eranian98a3b322013-01-24 16:10:35 +010076 symlen = unresolved_col_width + 4 + 2;
77 hists__new_col_len(hists, HISTC_SYMBOL, symlen);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010078 hists__set_unres_dso_col_len(hists, HISTC_DSO);
Stephane Eranian98a3b322013-01-24 16:10:35 +010079 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030080
81 len = thread__comm_len(h->thread);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030082 if (hists__new_col_len(hists, HISTC_COMM, len))
Jiri Olsa89c7cb22016-06-20 23:58:19 +020083 hists__set_col_len(hists, HISTC_THREAD, len + 8);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030084
85 if (h->ms.map) {
86 len = dso__name_len(h->ms.map->dso);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030087 hists__new_col_len(hists, HISTC_DSO, len);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030088 }
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010089
Namhyung Kimcb993742012-12-27 18:11:42 +090090 if (h->parent)
91 hists__new_col_len(hists, HISTC_PARENT, h->parent->namelen);
92
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010093 if (h->branch_info) {
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010094 if (h->branch_info->from.sym) {
95 symlen = (int)h->branch_info->from.sym->namelen + 4;
Namhyung Kimded19d52013-04-01 20:35:19 +090096 if (verbose)
97 symlen += BITS_PER_LONG / 4 + 2 + 3;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010098 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
99
100 symlen = dso__name_len(h->branch_info->from.map->dso);
101 hists__new_col_len(hists, HISTC_DSO_FROM, symlen);
102 } else {
103 symlen = unresolved_col_width + 4 + 2;
104 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
105 hists__set_unres_dso_col_len(hists, HISTC_DSO_FROM);
106 }
107
108 if (h->branch_info->to.sym) {
109 symlen = (int)h->branch_info->to.sym->namelen + 4;
Namhyung Kimded19d52013-04-01 20:35:19 +0900110 if (verbose)
111 symlen += BITS_PER_LONG / 4 + 2 + 3;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100112 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
113
114 symlen = dso__name_len(h->branch_info->to.map->dso);
115 hists__new_col_len(hists, HISTC_DSO_TO, symlen);
116 } else {
117 symlen = unresolved_col_width + 4 + 2;
118 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
119 hists__set_unres_dso_col_len(hists, HISTC_DSO_TO);
120 }
Andi Kleen508be0d2016-05-20 13:15:08 -0700121
122 if (h->branch_info->srcline_from)
123 hists__new_col_len(hists, HISTC_SRCLINE_FROM,
124 strlen(h->branch_info->srcline_from));
125 if (h->branch_info->srcline_to)
126 hists__new_col_len(hists, HISTC_SRCLINE_TO,
127 strlen(h->branch_info->srcline_to));
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100128 }
Stephane Eranian98a3b322013-01-24 16:10:35 +0100129
130 if (h->mem_info) {
Stephane Eranian98a3b322013-01-24 16:10:35 +0100131 if (h->mem_info->daddr.sym) {
132 symlen = (int)h->mem_info->daddr.sym->namelen + 4
133 + unresolved_col_width + 2;
134 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL,
135 symlen);
Don Zickus9b32ba72014-06-01 15:38:29 +0200136 hists__new_col_len(hists, HISTC_MEM_DCACHELINE,
137 symlen + 1);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100138 } else {
139 symlen = unresolved_col_width + 4 + 2;
140 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL,
141 symlen);
Jiri Olsa08059092016-01-20 12:56:33 +0100142 hists__new_col_len(hists, HISTC_MEM_DCACHELINE,
143 symlen);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100144 }
Jiri Olsab34b3bf2015-10-05 20:06:08 +0200145
146 if (h->mem_info->iaddr.sym) {
147 symlen = (int)h->mem_info->iaddr.sym->namelen + 4
148 + unresolved_col_width + 2;
149 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL,
150 symlen);
151 } else {
152 symlen = unresolved_col_width + 4 + 2;
153 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL,
154 symlen);
155 }
156
Stephane Eranian98a3b322013-01-24 16:10:35 +0100157 if (h->mem_info->daddr.map) {
158 symlen = dso__name_len(h->mem_info->daddr.map->dso);
159 hists__new_col_len(hists, HISTC_MEM_DADDR_DSO,
160 symlen);
161 } else {
162 symlen = unresolved_col_width + 4 + 2;
163 hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO);
164 }
165 } else {
166 symlen = unresolved_col_width + 4 + 2;
167 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL, symlen);
Jiri Olsab34b3bf2015-10-05 20:06:08 +0200168 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL, symlen);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100169 hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO);
170 }
171
Arnaldo Carvalho de Meloa4978ec2015-09-09 12:14:00 -0300172 hists__new_col_len(hists, HISTC_CPU, 3);
Kan Liang2e7ea3a2015-09-04 10:45:43 -0400173 hists__new_col_len(hists, HISTC_SOCKET, 6);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100174 hists__new_col_len(hists, HISTC_MEM_LOCKED, 6);
175 hists__new_col_len(hists, HISTC_MEM_TLB, 22);
176 hists__new_col_len(hists, HISTC_MEM_SNOOP, 12);
177 hists__new_col_len(hists, HISTC_MEM_LVL, 21 + 3);
178 hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
179 hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
Andi Kleen475eeab2013-09-20 07:40:43 -0700180
Jiri Olsaf666ac02016-09-19 15:10:10 +0200181 if (h->srcline) {
182 len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
183 hists__new_col_len(hists, HISTC_SRCLINE, len);
184 }
Arnaldo Carvalho de Meloe8e6d372015-08-10 16:53:54 -0300185
Andi Kleen31191a82015-08-07 15:54:24 -0700186 if (h->srcfile)
187 hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
188
Andi Kleen475eeab2013-09-20 07:40:43 -0700189 if (h->transaction)
190 hists__new_col_len(hists, HISTC_TRANSACTION,
191 hist_entry__transaction_len());
Namhyung Kim0c0af782016-02-21 23:22:38 +0900192
193 if (h->trace_output)
194 hists__new_col_len(hists, HISTC_TRACE, strlen(h->trace_output));
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300195}
196
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900197void hists__output_recalc_col_len(struct hists *hists, int max_rows)
198{
199 struct rb_node *next = rb_first(&hists->entries);
200 struct hist_entry *n;
201 int row = 0;
202
203 hists__reset_col_len(hists);
204
205 while (next && row++ < max_rows) {
206 n = rb_entry(next, struct hist_entry, rb_node);
207 if (!n->filtered)
208 hists__calc_col_len(hists, n);
209 next = rb_next(&n->rb_node);
210 }
211}
212
Namhyung Kimf39056f2014-01-14 14:25:37 +0900213static void he_stat__add_cpumode_period(struct he_stat *he_stat,
214 unsigned int cpumode, u64 period)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800215{
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300216 switch (cpumode) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800217 case PERF_RECORD_MISC_KERNEL:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900218 he_stat->period_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800219 break;
220 case PERF_RECORD_MISC_USER:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900221 he_stat->period_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800222 break;
223 case PERF_RECORD_MISC_GUEST_KERNEL:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900224 he_stat->period_guest_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800225 break;
226 case PERF_RECORD_MISC_GUEST_USER:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900227 he_stat->period_guest_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800228 break;
229 default:
230 break;
231 }
232}
233
Andi Kleen05484292013-01-24 16:10:29 +0100234static void he_stat__add_period(struct he_stat *he_stat, u64 period,
235 u64 weight)
Namhyung Kim139c0812012-10-04 21:49:43 +0900236{
Stephane Eranian98a3b322013-01-24 16:10:35 +0100237
Namhyung Kim139c0812012-10-04 21:49:43 +0900238 he_stat->period += period;
Andi Kleen05484292013-01-24 16:10:29 +0100239 he_stat->weight += weight;
Namhyung Kim139c0812012-10-04 21:49:43 +0900240 he_stat->nr_events += 1;
241}
242
243static void he_stat__add_stat(struct he_stat *dest, struct he_stat *src)
244{
245 dest->period += src->period;
246 dest->period_sys += src->period_sys;
247 dest->period_us += src->period_us;
248 dest->period_guest_sys += src->period_guest_sys;
249 dest->period_guest_us += src->period_guest_us;
250 dest->nr_events += src->nr_events;
Andi Kleen05484292013-01-24 16:10:29 +0100251 dest->weight += src->weight;
Namhyung Kim139c0812012-10-04 21:49:43 +0900252}
253
Namhyung Kimf39056f2014-01-14 14:25:37 +0900254static void he_stat__decay(struct he_stat *he_stat)
Arnaldo Carvalho de Meloab81f3f2011-10-05 19:16:15 -0300255{
Namhyung Kimf39056f2014-01-14 14:25:37 +0900256 he_stat->period = (he_stat->period * 7) / 8;
257 he_stat->nr_events = (he_stat->nr_events * 7) / 8;
Andi Kleen05484292013-01-24 16:10:29 +0100258 /* XXX need decay for weight too? */
Arnaldo Carvalho de Meloab81f3f2011-10-05 19:16:15 -0300259}
260
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900261static void hists__delete_entry(struct hists *hists, struct hist_entry *he);
262
Arnaldo Carvalho de Meloab81f3f2011-10-05 19:16:15 -0300263static bool hists__decay_entry(struct hists *hists, struct hist_entry *he)
264{
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900265 u64 prev_period = he->stat.period;
Namhyung Kim3186b682014-04-22 13:44:23 +0900266 u64 diff;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200267
268 if (prev_period == 0)
Arnaldo Carvalho de Melodf71d952011-10-13 08:01:33 -0300269 return true;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200270
Namhyung Kimf39056f2014-01-14 14:25:37 +0900271 he_stat__decay(&he->stat);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900272 if (symbol_conf.cumulate_callchain)
273 he_stat__decay(he->stat_acc);
Namhyung Kim42b276a2016-01-05 12:06:00 +0900274 decay_callchain(he->callchain);
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200275
Namhyung Kim3186b682014-04-22 13:44:23 +0900276 diff = prev_period - he->stat.period;
277
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900278 if (!he->depth) {
279 hists->stats.total_period -= diff;
280 if (!he->filtered)
281 hists->stats.total_non_filtered_period -= diff;
282 }
283
284 if (!he->leaf) {
285 struct hist_entry *child;
286 struct rb_node *node = rb_first(&he->hroot_out);
287 while (node) {
288 child = rb_entry(node, struct hist_entry, rb_node);
289 node = rb_next(node);
290
291 if (hists__decay_entry(hists, child))
292 hists__delete_entry(hists, child);
293 }
294 }
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200295
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900296 return he->stat.period == 0;
Arnaldo Carvalho de Meloab81f3f2011-10-05 19:16:15 -0300297}
298
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300299static void hists__delete_entry(struct hists *hists, struct hist_entry *he)
300{
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900301 struct rb_root *root_in;
302 struct rb_root *root_out;
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300303
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900304 if (he->parent_he) {
305 root_in = &he->parent_he->hroot_in;
306 root_out = &he->parent_he->hroot_out;
307 } else {
Jiri Olsa52225032016-05-03 13:54:42 +0200308 if (hists__has(hists, need_collapse))
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900309 root_in = &hists->entries_collapsed;
310 else
311 root_in = hists->entries_in;
312 root_out = &hists->entries;
313 }
314
315 rb_erase(&he->rb_node_in, root_in);
316 rb_erase(&he->rb_node, root_out);
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300317
318 --hists->nr_entries;
319 if (!he->filtered)
320 --hists->nr_non_filtered_entries;
321
322 hist_entry__delete(he);
323}
324
Namhyung Kim3a5714f2013-05-14 11:09:01 +0900325void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel)
Arnaldo Carvalho de Meloab81f3f2011-10-05 19:16:15 -0300326{
327 struct rb_node *next = rb_first(&hists->entries);
328 struct hist_entry *n;
329
330 while (next) {
331 n = rb_entry(next, struct hist_entry, rb_node);
332 next = rb_next(&n->rb_node);
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -0200333 if (((zap_user && n->level == '.') ||
334 (zap_kernel && n->level != '.') ||
Arnaldo Carvalho de Melo4c47f4f2015-03-17 17:18:58 -0300335 hists__decay_entry(hists, n))) {
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300336 hists__delete_entry(hists, n);
Arnaldo Carvalho de Meloab81f3f2011-10-05 19:16:15 -0300337 }
338 }
339}
340
Namhyung Kim701937b2014-08-12 17:16:05 +0900341void hists__delete_entries(struct hists *hists)
342{
343 struct rb_node *next = rb_first(&hists->entries);
344 struct hist_entry *n;
345
346 while (next) {
347 n = rb_entry(next, struct hist_entry, rb_node);
348 next = rb_next(&n->rb_node);
349
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300350 hists__delete_entry(hists, n);
Namhyung Kim701937b2014-08-12 17:16:05 +0900351 }
352}
353
John Kacur3d1d07e2009-09-28 15:32:55 +0200354/*
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300355 * histogram, sorted on item, collects periods
John Kacur3d1d07e2009-09-28 15:32:55 +0200356 */
357
Jiri Olsa0a269a62016-07-05 08:56:03 +0200358static int hist_entry__init(struct hist_entry *he,
359 struct hist_entry *template,
360 bool sample_self)
361{
362 *he = *template;
363
364 if (symbol_conf.cumulate_callchain) {
365 he->stat_acc = malloc(sizeof(he->stat));
366 if (he->stat_acc == NULL)
367 return -ENOMEM;
368 memcpy(he->stat_acc, &he->stat, sizeof(he->stat));
369 if (!sample_self)
370 memset(&he->stat, 0, sizeof(he->stat));
371 }
372
373 map__get(he->ms.map);
374
375 if (he->branch_info) {
376 /*
377 * This branch info is (a part of) allocated from
378 * sample__resolve_bstack() and will be freed after
379 * adding new entries. So we need to save a copy.
380 */
381 he->branch_info = malloc(sizeof(*he->branch_info));
382 if (he->branch_info == NULL) {
383 map__zput(he->ms.map);
384 free(he->stat_acc);
385 return -ENOMEM;
386 }
387
388 memcpy(he->branch_info, template->branch_info,
389 sizeof(*he->branch_info));
390
391 map__get(he->branch_info->from.map);
392 map__get(he->branch_info->to.map);
393 }
394
395 if (he->mem_info) {
396 map__get(he->mem_info->iaddr.map);
397 map__get(he->mem_info->daddr.map);
398 }
399
400 if (symbol_conf.use_callchain)
401 callchain_init(he->callchain);
402
403 if (he->raw_data) {
404 he->raw_data = memdup(he->raw_data, he->raw_size);
405
406 if (he->raw_data == NULL) {
407 map__put(he->ms.map);
408 if (he->branch_info) {
409 map__put(he->branch_info->from.map);
410 map__put(he->branch_info->to.map);
411 free(he->branch_info);
412 }
413 if (he->mem_info) {
414 map__put(he->mem_info->iaddr.map);
415 map__put(he->mem_info->daddr.map);
416 }
417 free(he->stat_acc);
418 return -ENOMEM;
419 }
420 }
421 INIT_LIST_HEAD(&he->pairs.node);
422 thread__get(he->thread);
Namhyung Kimd2580c72016-09-13 16:45:48 +0900423 he->hroot_in = RB_ROOT;
424 he->hroot_out = RB_ROOT;
Jiri Olsa0a269a62016-07-05 08:56:03 +0200425
426 if (!symbol_conf.report_hierarchy)
427 he->leaf = true;
428
429 return 0;
430}
431
Jiri Olsaf542e762016-07-05 08:56:04 +0200432static void *hist_entry__zalloc(size_t size)
433{
434 return zalloc(size + sizeof(struct hist_entry));
435}
436
437static void hist_entry__free(void *ptr)
438{
439 free(ptr);
440}
441
442static struct hist_entry_ops default_ops = {
443 .new = hist_entry__zalloc,
444 .free = hist_entry__free,
445};
446
Namhyung Kima0b51af2012-09-11 13:34:27 +0900447static struct hist_entry *hist_entry__new(struct hist_entry *template,
448 bool sample_self)
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300449{
Jiri Olsaf542e762016-07-05 08:56:04 +0200450 struct hist_entry_ops *ops = template->ops;
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900451 size_t callchain_size = 0;
452 struct hist_entry *he;
Jiri Olsa0a269a62016-07-05 08:56:03 +0200453 int err = 0;
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900454
Jiri Olsaf542e762016-07-05 08:56:04 +0200455 if (!ops)
456 ops = template->ops = &default_ops;
457
Namhyung Kim82aa0192014-12-22 13:44:14 +0900458 if (symbol_conf.use_callchain)
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900459 callchain_size = sizeof(struct callchain_root);
460
Jiri Olsaf542e762016-07-05 08:56:04 +0200461 he = ops->new(callchain_size);
Jiri Olsa0a269a62016-07-05 08:56:03 +0200462 if (he) {
463 err = hist_entry__init(he, template, sample_self);
Jiri Olsaf542e762016-07-05 08:56:04 +0200464 if (err) {
465 ops->free(he);
466 he = NULL;
467 }
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300468 }
469
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200470 return he;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300471}
472
Arnaldo Carvalho de Melo7a007ca2010-07-21 09:19:41 -0300473static u8 symbol__parent_filter(const struct symbol *parent)
474{
475 if (symbol_conf.exclude_other && parent == NULL)
476 return 1 << HIST_FILTER__PARENT;
477 return 0;
478}
479
Namhyung Kim467ef102016-02-16 23:08:19 +0900480static void hist_entry__add_callchain_period(struct hist_entry *he, u64 period)
481{
482 if (!symbol_conf.use_callchain)
483 return;
484
485 he->hists->callchain_period += period;
486 if (!he->filtered)
487 he->hists->callchain_non_filtered_period += period;
488}
489
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300490static struct hist_entry *hists__findnew_entry(struct hists *hists,
491 struct hist_entry *entry,
492 struct addr_location *al,
493 bool sample_self)
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300494{
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300495 struct rb_node **p;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300496 struct rb_node *parent = NULL;
497 struct hist_entry *he;
Andi Kleen354cc402013-10-01 07:22:15 -0700498 int64_t cmp;
Namhyung Kimf1cbf782013-12-18 14:21:11 +0900499 u64 period = entry->stat.period;
500 u64 weight = entry->stat.weight;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300501
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300502 p = &hists->entries_in->rb_node;
503
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300504 while (*p != NULL) {
505 parent = *p;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300506 he = rb_entry(parent, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300507
Namhyung Kim9afcf932012-12-10 17:29:54 +0900508 /*
509 * Make sure that it receives arguments in a same order as
510 * hist_entry__collapse() so that we can use an appropriate
511 * function when searching an entry regardless which sort
512 * keys were used.
513 */
514 cmp = hist_entry__cmp(he, entry);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300515
516 if (!cmp) {
Namhyung Kim0f584742016-01-28 00:40:49 +0900517 if (sample_self) {
Namhyung Kima0b51af2012-09-11 13:34:27 +0900518 he_stat__add_period(&he->stat, period, weight);
Namhyung Kim467ef102016-02-16 23:08:19 +0900519 hist_entry__add_callchain_period(he, period);
Namhyung Kim0f584742016-01-28 00:40:49 +0900520 }
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900521 if (symbol_conf.cumulate_callchain)
522 he_stat__add_period(he->stat_acc, period, weight);
David Miller63fa4712012-03-27 03:14:18 -0400523
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900524 /*
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -0300525 * This mem info was allocated from sample__resolve_mem
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900526 * and will not be used anymore.
527 */
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300528 zfree(&entry->mem_info);
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900529
David Miller63fa4712012-03-27 03:14:18 -0400530 /* If the map of an existing hist_entry has
531 * become out-of-date due to an exec() or
532 * similar, update it. Otherwise we will
533 * mis-adjust symbol addresses when computing
534 * the history counter to increment.
535 */
536 if (he->ms.map != entry->ms.map) {
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300537 map__put(he->ms.map);
538 he->ms.map = map__get(entry->ms.map);
David Miller63fa4712012-03-27 03:14:18 -0400539 }
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300540 goto out;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300541 }
542
543 if (cmp < 0)
544 p = &(*p)->rb_left;
545 else
546 p = &(*p)->rb_right;
547 }
548
Namhyung Kima0b51af2012-09-11 13:34:27 +0900549 he = hist_entry__new(entry, sample_self);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300550 if (!he)
Namhyung Kim27a0dcb2013-05-14 11:09:02 +0900551 return NULL;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300552
Namhyung Kim0f584742016-01-28 00:40:49 +0900553 if (sample_self)
Namhyung Kim467ef102016-02-16 23:08:19 +0900554 hist_entry__add_callchain_period(he, period);
555 hists->nr_entries++;
Namhyung Kim590cd342014-12-22 13:44:09 +0900556
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300557 rb_link_node(&he->rb_node_in, parent, p);
558 rb_insert_color(&he->rb_node_in, hists->entries_in);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300559out:
Namhyung Kima0b51af2012-09-11 13:34:27 +0900560 if (sample_self)
561 he_stat__add_cpumode_period(&he->stat, al->cpumode, period);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900562 if (symbol_conf.cumulate_callchain)
563 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300564 return he;
565}
566
Jiri Olsaa5051972016-07-05 08:56:05 +0200567static struct hist_entry*
568__hists__add_entry(struct hists *hists,
569 struct addr_location *al,
570 struct symbol *sym_parent,
571 struct branch_info *bi,
572 struct mem_info *mi,
573 struct perf_sample *sample,
574 bool sample_self,
575 struct hist_entry_ops *ops)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100576{
577 struct hist_entry entry = {
578 .thread = al->thread,
Namhyung Kim4dfced32013-09-13 16:28:57 +0900579 .comm = thread__comm(al->thread),
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100580 .ms = {
581 .map = al->map,
582 .sym = al->sym,
583 },
Kan Liang0c4c4de2015-09-04 10:45:42 -0400584 .socket = al->socket,
Don Zickus7365be52014-05-27 12:28:05 -0400585 .cpu = al->cpu,
586 .cpumode = al->cpumode,
587 .ip = al->addr,
588 .level = al->level,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900589 .stat = {
Namhyung Kimc4b35352012-10-04 21:49:42 +0900590 .nr_events = 1,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900591 .period = sample->period,
592 .weight = sample->weight,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900593 },
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100594 .parent = sym_parent,
Namhyung Kim2c86c7c2014-03-17 18:18:54 -0300595 .filtered = symbol__parent_filter(sym_parent) | al->filtered,
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300596 .hists = hists,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900597 .branch_info = bi,
598 .mem_info = mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900599 .transaction = sample->transaction,
Namhyung Kim72392832015-12-24 11:16:17 +0900600 .raw_data = sample->raw_data,
601 .raw_size = sample->raw_size,
Jiri Olsaa5051972016-07-05 08:56:05 +0200602 .ops = ops,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100603 };
604
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300605 return hists__findnew_entry(hists, &entry, al, sample_self);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100606}
607
Jiri Olsaa5051972016-07-05 08:56:05 +0200608struct hist_entry *hists__add_entry(struct hists *hists,
609 struct addr_location *al,
610 struct symbol *sym_parent,
611 struct branch_info *bi,
612 struct mem_info *mi,
613 struct perf_sample *sample,
614 bool sample_self)
615{
616 return __hists__add_entry(hists, al, sym_parent, bi, mi,
617 sample, sample_self, NULL);
618}
619
620struct hist_entry *hists__add_entry_ops(struct hists *hists,
621 struct hist_entry_ops *ops,
622 struct addr_location *al,
623 struct symbol *sym_parent,
624 struct branch_info *bi,
625 struct mem_info *mi,
626 struct perf_sample *sample,
627 bool sample_self)
628{
629 return __hists__add_entry(hists, al, sym_parent, bi, mi,
630 sample, sample_self, ops);
631}
632
Namhyung Kim69bcb012013-10-30 09:40:34 +0900633static int
634iter_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
635 struct addr_location *al __maybe_unused)
636{
637 return 0;
638}
639
640static int
641iter_add_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
642 struct addr_location *al __maybe_unused)
643{
644 return 0;
645}
646
647static int
648iter_prepare_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
649{
650 struct perf_sample *sample = iter->sample;
651 struct mem_info *mi;
652
653 mi = sample__resolve_mem(sample, al);
654 if (mi == NULL)
655 return -ENOMEM;
656
657 iter->priv = mi;
658 return 0;
659}
660
661static int
662iter_add_single_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
663{
664 u64 cost;
665 struct mem_info *mi = iter->priv;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300666 struct hists *hists = evsel__hists(iter->evsel);
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900667 struct perf_sample *sample = iter->sample;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900668 struct hist_entry *he;
669
670 if (mi == NULL)
671 return -EINVAL;
672
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900673 cost = sample->weight;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900674 if (!cost)
675 cost = 1;
676
677 /*
678 * must pass period=weight in order to get the correct
679 * sorting from hists__collapse_resort() which is solely
680 * based on periods. We want sorting be done on nr_events * weight
681 * and this is indirectly achieved by passing period=weight here
682 * and the he_stat__add_period() function.
683 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900684 sample->period = cost;
685
Jiri Olsa0102ef32016-06-14 20:19:21 +0200686 he = hists__add_entry(hists, al, iter->parent, NULL, mi,
687 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900688 if (!he)
689 return -ENOMEM;
690
691 iter->he = he;
692 return 0;
693}
694
695static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900696iter_finish_mem_entry(struct hist_entry_iter *iter,
697 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900698{
699 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300700 struct hists *hists = evsel__hists(evsel);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900701 struct hist_entry *he = iter->he;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900702 int err = -EINVAL;
703
704 if (he == NULL)
705 goto out;
706
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300707 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900708
709 err = hist_entry__append_callchain(he, iter->sample);
710
711out:
712 /*
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300713 * We don't need to free iter->priv (mem_info) here since the mem info
714 * was either already freed in hists__findnew_entry() or passed to a
715 * new hist entry by hist_entry__new().
Namhyung Kim69bcb012013-10-30 09:40:34 +0900716 */
717 iter->priv = NULL;
718
719 iter->he = NULL;
720 return err;
721}
722
723static int
724iter_prepare_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
725{
726 struct branch_info *bi;
727 struct perf_sample *sample = iter->sample;
728
729 bi = sample__resolve_bstack(sample, al);
730 if (!bi)
731 return -ENOMEM;
732
733 iter->curr = 0;
734 iter->total = sample->branch_stack->nr;
735
736 iter->priv = bi;
737 return 0;
738}
739
740static int
Arnaldo Carvalho de Melob8f8eb82016-03-22 13:09:37 -0300741iter_add_single_branch_entry(struct hist_entry_iter *iter,
Namhyung Kim69bcb012013-10-30 09:40:34 +0900742 struct addr_location *al __maybe_unused)
743{
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900744 /* to avoid calling callback function */
745 iter->he = NULL;
746
Namhyung Kim69bcb012013-10-30 09:40:34 +0900747 return 0;
748}
749
750static int
751iter_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
752{
753 struct branch_info *bi = iter->priv;
754 int i = iter->curr;
755
756 if (bi == NULL)
757 return 0;
758
759 if (iter->curr >= iter->total)
760 return 0;
761
762 al->map = bi[i].to.map;
763 al->sym = bi[i].to.sym;
764 al->addr = bi[i].to.addr;
765 return 1;
766}
767
768static int
769iter_add_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
770{
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900771 struct branch_info *bi;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900772 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300773 struct hists *hists = evsel__hists(evsel);
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900774 struct perf_sample *sample = iter->sample;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900775 struct hist_entry *he = NULL;
776 int i = iter->curr;
777 int err = 0;
778
779 bi = iter->priv;
780
781 if (iter->hide_unresolved && !(bi[i].from.sym && bi[i].to.sym))
782 goto out;
783
784 /*
785 * The report shows the percentage of total branches captured
786 * and not events sampled. Thus we use a pseudo period of 1.
787 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900788 sample->period = 1;
789 sample->weight = bi->flags.cycles ? bi->flags.cycles : 1;
790
Jiri Olsa0102ef32016-06-14 20:19:21 +0200791 he = hists__add_entry(hists, al, iter->parent, &bi[i], NULL,
792 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900793 if (he == NULL)
794 return -ENOMEM;
795
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300796 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900797
798out:
799 iter->he = he;
800 iter->curr++;
801 return err;
802}
803
804static int
805iter_finish_branch_entry(struct hist_entry_iter *iter,
806 struct addr_location *al __maybe_unused)
807{
808 zfree(&iter->priv);
809 iter->he = NULL;
810
811 return iter->curr >= iter->total ? 0 : -1;
812}
813
814static int
815iter_prepare_normal_entry(struct hist_entry_iter *iter __maybe_unused,
816 struct addr_location *al __maybe_unused)
817{
818 return 0;
819}
820
821static int
822iter_add_single_normal_entry(struct hist_entry_iter *iter, struct addr_location *al)
823{
824 struct perf_evsel *evsel = iter->evsel;
825 struct perf_sample *sample = iter->sample;
826 struct hist_entry *he;
827
Jiri Olsa0102ef32016-06-14 20:19:21 +0200828 he = hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
829 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900830 if (he == NULL)
831 return -ENOMEM;
832
833 iter->he = he;
834 return 0;
835}
836
837static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900838iter_finish_normal_entry(struct hist_entry_iter *iter,
839 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900840{
Namhyung Kim69bcb012013-10-30 09:40:34 +0900841 struct hist_entry *he = iter->he;
842 struct perf_evsel *evsel = iter->evsel;
843 struct perf_sample *sample = iter->sample;
844
845 if (he == NULL)
846 return 0;
847
848 iter->he = NULL;
849
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300850 hists__inc_nr_samples(evsel__hists(evsel), he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900851
852 return hist_entry__append_callchain(he, sample);
853}
854
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900855static int
Adrian Hunter96b40f32015-09-25 16:15:47 +0300856iter_prepare_cumulative_entry(struct hist_entry_iter *iter,
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900857 struct addr_location *al __maybe_unused)
858{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900859 struct hist_entry **he_cache;
860
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900861 callchain_cursor_commit(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900862
863 /*
864 * This is for detecting cycles or recursions so that they're
865 * cumulated only one time to prevent entries more than 100%
866 * overhead.
867 */
Jiri Olsa5a8e2092018-02-16 13:36:19 +0100868 he_cache = malloc(sizeof(*he_cache) * (callchain_cursor.nr + 1));
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900869 if (he_cache == NULL)
870 return -ENOMEM;
871
872 iter->priv = he_cache;
873 iter->curr = 0;
874
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900875 return 0;
876}
877
878static int
879iter_add_single_cumulative_entry(struct hist_entry_iter *iter,
880 struct addr_location *al)
881{
882 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300883 struct hists *hists = evsel__hists(evsel);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900884 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900885 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900886 struct hist_entry *he;
887 int err = 0;
888
Jiri Olsa0102ef32016-06-14 20:19:21 +0200889 he = hists__add_entry(hists, al, iter->parent, NULL, NULL,
890 sample, true);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900891 if (he == NULL)
892 return -ENOMEM;
893
894 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900895 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900896
Namhyung Kim82aa0192014-12-22 13:44:14 +0900897 hist_entry__append_callchain(he, sample);
Namhyung Kimbe7f8552013-12-26 17:44:10 +0900898
899 /*
900 * We need to re-initialize the cursor since callchain_append()
901 * advanced the cursor to the end.
902 */
903 callchain_cursor_commit(&callchain_cursor);
904
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300905 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900906
907 return err;
908}
909
910static int
911iter_next_cumulative_entry(struct hist_entry_iter *iter,
912 struct addr_location *al)
913{
914 struct callchain_cursor_node *node;
915
916 node = callchain_cursor_current(&callchain_cursor);
917 if (node == NULL)
918 return 0;
919
Namhyung Kimc7405d82013-10-31 13:58:30 +0900920 return fill_callchain_info(al, node, iter->hide_unresolved);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900921}
922
923static int
924iter_add_next_cumulative_entry(struct hist_entry_iter *iter,
925 struct addr_location *al)
926{
927 struct perf_evsel *evsel = iter->evsel;
928 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900929 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900930 struct hist_entry *he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900931 struct hist_entry he_tmp = {
Arnaldo Carvalho de Melo5cef8972015-08-10 15:45:55 -0300932 .hists = evsel__hists(evsel),
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900933 .cpu = al->cpu,
934 .thread = al->thread,
935 .comm = thread__comm(al->thread),
936 .ip = al->addr,
937 .ms = {
938 .map = al->map,
939 .sym = al->sym,
940 },
941 .parent = iter->parent,
Namhyung Kim72392832015-12-24 11:16:17 +0900942 .raw_data = sample->raw_data,
943 .raw_size = sample->raw_size,
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900944 };
945 int i;
Namhyung Kimbe7f8552013-12-26 17:44:10 +0900946 struct callchain_cursor cursor;
947
948 callchain_cursor_snapshot(&cursor, &callchain_cursor);
949
950 callchain_cursor_advance(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900951
952 /*
953 * Check if there's duplicate entries in the callchain.
954 * It's possible that it has cycles or recursive calls.
955 */
956 for (i = 0; i < iter->curr; i++) {
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900957 if (hist_entry__cmp(he_cache[i], &he_tmp) == 0) {
958 /* to avoid calling callback function */
959 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900960 return 0;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900961 }
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900962 }
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900963
Jiri Olsa0102ef32016-06-14 20:19:21 +0200964 he = hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
965 sample, false);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900966 if (he == NULL)
967 return -ENOMEM;
968
969 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900970 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900971
Namhyung Kim82aa0192014-12-22 13:44:14 +0900972 if (symbol_conf.use_callchain)
973 callchain_append(he->callchain, &cursor, sample->period);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900974 return 0;
975}
976
977static int
978iter_finish_cumulative_entry(struct hist_entry_iter *iter,
979 struct addr_location *al __maybe_unused)
980{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900981 zfree(&iter->priv);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900982 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900983
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900984 return 0;
985}
986
Namhyung Kim69bcb012013-10-30 09:40:34 +0900987const struct hist_iter_ops hist_iter_mem = {
988 .prepare_entry = iter_prepare_mem_entry,
989 .add_single_entry = iter_add_single_mem_entry,
990 .next_entry = iter_next_nop_entry,
991 .add_next_entry = iter_add_next_nop_entry,
992 .finish_entry = iter_finish_mem_entry,
993};
994
995const struct hist_iter_ops hist_iter_branch = {
996 .prepare_entry = iter_prepare_branch_entry,
997 .add_single_entry = iter_add_single_branch_entry,
998 .next_entry = iter_next_branch_entry,
999 .add_next_entry = iter_add_next_branch_entry,
1000 .finish_entry = iter_finish_branch_entry,
1001};
1002
1003const struct hist_iter_ops hist_iter_normal = {
1004 .prepare_entry = iter_prepare_normal_entry,
1005 .add_single_entry = iter_add_single_normal_entry,
1006 .next_entry = iter_next_nop_entry,
1007 .add_next_entry = iter_add_next_nop_entry,
1008 .finish_entry = iter_finish_normal_entry,
1009};
1010
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001011const struct hist_iter_ops hist_iter_cumulative = {
1012 .prepare_entry = iter_prepare_cumulative_entry,
1013 .add_single_entry = iter_add_single_cumulative_entry,
1014 .next_entry = iter_next_cumulative_entry,
1015 .add_next_entry = iter_add_next_cumulative_entry,
1016 .finish_entry = iter_finish_cumulative_entry,
1017};
1018
Namhyung Kim69bcb012013-10-30 09:40:34 +09001019int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
Namhyung Kim9d3c02d2014-01-07 17:02:25 +09001020 int max_stack_depth, void *arg)
Namhyung Kim69bcb012013-10-30 09:40:34 +09001021{
1022 int err, err2;
Krister Johansen11a4d642017-01-05 22:23:31 -08001023 struct map *alm = NULL;
1024
1025 if (al && al->map)
1026 alm = map__get(al->map);
Namhyung Kim69bcb012013-10-30 09:40:34 +09001027
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001028 err = sample__resolve_callchain(iter->sample, &callchain_cursor, &iter->parent,
Namhyung Kim063bd932015-05-19 17:04:10 +09001029 iter->evsel, al, max_stack_depth);
Changbin Du6fae20e2019-03-16 16:05:49 +08001030 if (err) {
1031 map__put(alm);
Namhyung Kim69bcb012013-10-30 09:40:34 +09001032 return err;
Changbin Du6fae20e2019-03-16 16:05:49 +08001033 }
Namhyung Kim69bcb012013-10-30 09:40:34 +09001034
Namhyung Kim69bcb012013-10-30 09:40:34 +09001035 err = iter->ops->prepare_entry(iter, al);
1036 if (err)
1037 goto out;
1038
1039 err = iter->ops->add_single_entry(iter, al);
1040 if (err)
1041 goto out;
1042
Namhyung Kim9d3c02d2014-01-07 17:02:25 +09001043 if (iter->he && iter->add_entry_cb) {
1044 err = iter->add_entry_cb(iter, al, true, arg);
1045 if (err)
1046 goto out;
1047 }
1048
Namhyung Kim69bcb012013-10-30 09:40:34 +09001049 while (iter->ops->next_entry(iter, al)) {
1050 err = iter->ops->add_next_entry(iter, al);
1051 if (err)
1052 break;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +09001053
1054 if (iter->he && iter->add_entry_cb) {
1055 err = iter->add_entry_cb(iter, al, false, arg);
1056 if (err)
1057 goto out;
1058 }
Namhyung Kim69bcb012013-10-30 09:40:34 +09001059 }
1060
1061out:
1062 err2 = iter->ops->finish_entry(iter, al);
1063 if (!err)
1064 err = err2;
1065
Krister Johansen11a4d642017-01-05 22:23:31 -08001066 map__put(alm);
1067
Namhyung Kim69bcb012013-10-30 09:40:34 +09001068 return err;
1069}
1070
John Kacur3d1d07e2009-09-28 15:32:55 +02001071int64_t
1072hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
1073{
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001074 struct hists *hists = left->hists;
Namhyung Kim093f0ef32014-03-03 12:07:47 +09001075 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +02001076 int64_t cmp = 0;
1077
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001078 hists__for_each_sort_list(hists, fmt) {
Namhyung Kim84b6ee82016-02-27 03:52:43 +09001079 if (perf_hpp__is_dynamic_entry(fmt) &&
1080 !perf_hpp__defined_dynamic_entry(fmt, hists))
1081 continue;
1082
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001083 cmp = fmt->cmp(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +02001084 if (cmp)
1085 break;
1086 }
1087
1088 return cmp;
1089}
1090
1091int64_t
1092hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
1093{
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001094 struct hists *hists = left->hists;
Namhyung Kim093f0ef32014-03-03 12:07:47 +09001095 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +02001096 int64_t cmp = 0;
1097
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001098 hists__for_each_sort_list(hists, fmt) {
Namhyung Kim84b6ee82016-02-27 03:52:43 +09001099 if (perf_hpp__is_dynamic_entry(fmt) &&
1100 !perf_hpp__defined_dynamic_entry(fmt, hists))
1101 continue;
1102
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001103 cmp = fmt->collapse(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +02001104 if (cmp)
1105 break;
1106 }
1107
1108 return cmp;
1109}
1110
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -03001111void hist_entry__delete(struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +02001112{
Jiri Olsaf542e762016-07-05 08:56:04 +02001113 struct hist_entry_ops *ops = he->ops;
1114
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001115 thread__zput(he->thread);
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -03001116 map__zput(he->ms.map);
1117
1118 if (he->branch_info) {
1119 map__zput(he->branch_info->from.map);
1120 map__zput(he->branch_info->to.map);
Andi Kleen508be0d2016-05-20 13:15:08 -07001121 free_srcline(he->branch_info->srcline_from);
1122 free_srcline(he->branch_info->srcline_to);
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -03001123 zfree(&he->branch_info);
1124 }
1125
1126 if (he->mem_info) {
1127 map__zput(he->mem_info->iaddr.map);
1128 map__zput(he->mem_info->daddr.map);
1129 zfree(&he->mem_info);
1130 }
1131
Namhyung Kimf8be1c82012-09-11 13:15:07 +09001132 zfree(&he->stat_acc);
Namhyung Kimf048d542013-09-11 14:09:28 +09001133 free_srcline(he->srcline);
Andi Kleen31191a82015-08-07 15:54:24 -07001134 if (he->srcfile && he->srcfile[0])
1135 free(he->srcfile);
Namhyung Kimd1149602014-12-30 14:38:13 +09001136 free_callchain(he->callchain);
Namhyung Kim60517d22015-12-23 02:07:03 +09001137 free(he->trace_output);
Namhyung Kim72392832015-12-24 11:16:17 +09001138 free(he->raw_data);
Jiri Olsaf542e762016-07-05 08:56:04 +02001139 ops->free(he);
John Kacur3d1d07e2009-09-28 15:32:55 +02001140}
1141
1142/*
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -03001143 * If this is not the last column, then we need to pad it according to the
1144 * pre-calculated max lenght for this column, otherwise don't bother adding
1145 * spaces because that would break viewing this with, for instance, 'less',
1146 * that would show tons of trailing spaces when a long C++ demangled method
1147 * names is sampled.
1148*/
1149int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
1150 struct perf_hpp_fmt *fmt, int printed)
1151{
1152 if (!list_is_last(&fmt->list, &he->hists->hpp_list->fields)) {
Jiri Olsada1b0402016-06-14 20:19:20 +02001153 const int width = fmt->width(fmt, hpp, he->hists);
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -03001154 if (printed < width) {
1155 advance_hpp(hpp, printed);
1156 printed = scnprintf(hpp->buf, hpp->size, "%-*s", width - printed, " ");
1157 }
1158 }
1159
1160 return printed;
1161}
1162
1163/*
John Kacur3d1d07e2009-09-28 15:32:55 +02001164 * collapse the histogram
1165 */
1166
Namhyung Kimaef810e2016-02-25 00:13:34 +09001167static void hists__apply_filters(struct hists *hists, struct hist_entry *he);
Namhyung Kimaec13a72016-03-09 22:46:58 +09001168static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *he,
1169 enum hist_filter type);
1170
1171typedef bool (*fmt_chk_fn)(struct perf_hpp_fmt *fmt);
1172
1173static bool check_thread_entry(struct perf_hpp_fmt *fmt)
1174{
1175 return perf_hpp__is_thread_entry(fmt) || perf_hpp__is_comm_entry(fmt);
1176}
1177
1178static void hist_entry__check_and_remove_filter(struct hist_entry *he,
1179 enum hist_filter type,
1180 fmt_chk_fn check)
1181{
1182 struct perf_hpp_fmt *fmt;
1183 bool type_match = false;
1184 struct hist_entry *parent = he->parent_he;
1185
1186 switch (type) {
1187 case HIST_FILTER__THREAD:
1188 if (symbol_conf.comm_list == NULL &&
1189 symbol_conf.pid_list == NULL &&
1190 symbol_conf.tid_list == NULL)
1191 return;
1192 break;
1193 case HIST_FILTER__DSO:
1194 if (symbol_conf.dso_list == NULL)
1195 return;
1196 break;
1197 case HIST_FILTER__SYMBOL:
1198 if (symbol_conf.sym_list == NULL)
1199 return;
1200 break;
1201 case HIST_FILTER__PARENT:
1202 case HIST_FILTER__GUEST:
1203 case HIST_FILTER__HOST:
1204 case HIST_FILTER__SOCKET:
1205 default:
1206 return;
1207 }
1208
1209 /* if it's filtered by own fmt, it has to have filter bits */
1210 perf_hpp_list__for_each_format(he->hpp_list, fmt) {
1211 if (check(fmt)) {
1212 type_match = true;
1213 break;
1214 }
1215 }
1216
1217 if (type_match) {
1218 /*
1219 * If the filter is for current level entry, propagate
1220 * filter marker to parents. The marker bit was
1221 * already set by default so it only needs to clear
1222 * non-filtered entries.
1223 */
1224 if (!(he->filtered & (1 << type))) {
1225 while (parent) {
1226 parent->filtered &= ~(1 << type);
1227 parent = parent->parent_he;
1228 }
1229 }
1230 } else {
1231 /*
1232 * If current entry doesn't have matching formats, set
1233 * filter marker for upper level entries. it will be
1234 * cleared if its lower level entries is not filtered.
1235 *
1236 * For lower-level entries, it inherits parent's
1237 * filter bit so that lower level entries of a
1238 * non-filtered entry won't set the filter marker.
1239 */
1240 if (parent == NULL)
1241 he->filtered |= (1 << type);
1242 else
1243 he->filtered |= (parent->filtered & (1 << type));
1244 }
1245}
1246
1247static void hist_entry__apply_hierarchy_filters(struct hist_entry *he)
1248{
1249 hist_entry__check_and_remove_filter(he, HIST_FILTER__THREAD,
1250 check_thread_entry);
1251
1252 hist_entry__check_and_remove_filter(he, HIST_FILTER__DSO,
1253 perf_hpp__is_dso_entry);
1254
1255 hist_entry__check_and_remove_filter(he, HIST_FILTER__SYMBOL,
1256 perf_hpp__is_sym_entry);
1257
1258 hists__apply_filters(he->hists, he);
1259}
Namhyung Kimaef810e2016-02-25 00:13:34 +09001260
1261static struct hist_entry *hierarchy_insert_entry(struct hists *hists,
1262 struct rb_root *root,
1263 struct hist_entry *he,
Namhyung Kimaec13a72016-03-09 22:46:58 +09001264 struct hist_entry *parent_he,
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001265 struct perf_hpp_list *hpp_list)
Namhyung Kimaef810e2016-02-25 00:13:34 +09001266{
1267 struct rb_node **p = &root->rb_node;
1268 struct rb_node *parent = NULL;
1269 struct hist_entry *iter, *new;
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001270 struct perf_hpp_fmt *fmt;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001271 int64_t cmp;
1272
1273 while (*p != NULL) {
1274 parent = *p;
1275 iter = rb_entry(parent, struct hist_entry, rb_node_in);
1276
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001277 cmp = 0;
1278 perf_hpp_list__for_each_sort_list(hpp_list, fmt) {
1279 cmp = fmt->collapse(fmt, iter, he);
1280 if (cmp)
1281 break;
1282 }
1283
Namhyung Kimaef810e2016-02-25 00:13:34 +09001284 if (!cmp) {
1285 he_stat__add_stat(&iter->stat, &he->stat);
1286 return iter;
1287 }
1288
1289 if (cmp < 0)
1290 p = &parent->rb_left;
1291 else
1292 p = &parent->rb_right;
1293 }
1294
1295 new = hist_entry__new(he, true);
1296 if (new == NULL)
1297 return NULL;
1298
Namhyung Kimaef810e2016-02-25 00:13:34 +09001299 hists->nr_entries++;
1300
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001301 /* save related format list for output */
1302 new->hpp_list = hpp_list;
Namhyung Kimaec13a72016-03-09 22:46:58 +09001303 new->parent_he = parent_he;
1304
1305 hist_entry__apply_hierarchy_filters(new);
Namhyung Kimaef810e2016-02-25 00:13:34 +09001306
1307 /* some fields are now passed to 'new' */
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001308 perf_hpp_list__for_each_sort_list(hpp_list, fmt) {
1309 if (perf_hpp__is_trace_entry(fmt) || perf_hpp__is_dynamic_entry(fmt))
1310 he->trace_output = NULL;
1311 else
1312 new->trace_output = NULL;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001313
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001314 if (perf_hpp__is_srcline_entry(fmt))
1315 he->srcline = NULL;
1316 else
1317 new->srcline = NULL;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001318
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001319 if (perf_hpp__is_srcfile_entry(fmt))
1320 he->srcfile = NULL;
1321 else
1322 new->srcfile = NULL;
1323 }
Namhyung Kimaef810e2016-02-25 00:13:34 +09001324
1325 rb_link_node(&new->rb_node_in, parent, p);
1326 rb_insert_color(&new->rb_node_in, root);
1327 return new;
1328}
1329
1330static int hists__hierarchy_insert_entry(struct hists *hists,
1331 struct rb_root *root,
1332 struct hist_entry *he)
1333{
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001334 struct perf_hpp_list_node *node;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001335 struct hist_entry *new_he = NULL;
1336 struct hist_entry *parent = NULL;
1337 int depth = 0;
1338 int ret = 0;
1339
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001340 list_for_each_entry(node, &hists->hpp_formats, list) {
1341 /* skip period (overhead) and elided columns */
1342 if (node->level == 0 || node->skip)
Namhyung Kimaef810e2016-02-25 00:13:34 +09001343 continue;
1344
1345 /* insert copy of 'he' for each fmt into the hierarchy */
Namhyung Kimaec13a72016-03-09 22:46:58 +09001346 new_he = hierarchy_insert_entry(hists, root, he, parent, &node->hpp);
Namhyung Kimaef810e2016-02-25 00:13:34 +09001347 if (new_he == NULL) {
1348 ret = -1;
1349 break;
1350 }
1351
1352 root = &new_he->hroot_in;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001353 new_he->depth = depth++;
1354 parent = new_he;
1355 }
1356
1357 if (new_he) {
1358 new_he->leaf = true;
1359
1360 if (symbol_conf.use_callchain) {
1361 callchain_cursor_reset(&callchain_cursor);
1362 if (callchain_merge(&callchain_cursor,
1363 new_he->callchain,
1364 he->callchain) < 0)
1365 ret = -1;
1366 }
1367 }
1368
1369 /* 'he' is no longer used */
1370 hist_entry__delete(he);
1371
1372 /* return 0 (or -1) since it already applied filters */
1373 return ret;
1374}
1375
Jiri Olsa592dac62016-03-24 13:52:17 +01001376static int hists__collapse_insert_entry(struct hists *hists,
1377 struct rb_root *root,
1378 struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +02001379{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -02001380 struct rb_node **p = &root->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001381 struct rb_node *parent = NULL;
1382 struct hist_entry *iter;
1383 int64_t cmp;
1384
Namhyung Kimaef810e2016-02-25 00:13:34 +09001385 if (symbol_conf.report_hierarchy)
1386 return hists__hierarchy_insert_entry(hists, root, he);
1387
John Kacur3d1d07e2009-09-28 15:32:55 +02001388 while (*p != NULL) {
1389 parent = *p;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001390 iter = rb_entry(parent, struct hist_entry, rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001391
1392 cmp = hist_entry__collapse(iter, he);
1393
1394 if (!cmp) {
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001395 int ret = 0;
1396
Namhyung Kim139c0812012-10-04 21:49:43 +09001397 he_stat__add_stat(&iter->stat, &he->stat);
Namhyung Kimf8be1c82012-09-11 13:15:07 +09001398 if (symbol_conf.cumulate_callchain)
1399 he_stat__add_stat(iter->stat_acc, he->stat_acc);
Namhyung Kim9ec60972012-09-26 16:47:28 +09001400
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +01001401 if (symbol_conf.use_callchain) {
Namhyung Kim47260642012-05-31 14:43:26 +09001402 callchain_cursor_reset(&callchain_cursor);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001403 if (callchain_merge(&callchain_cursor,
1404 iter->callchain,
1405 he->callchain) < 0)
1406 ret = -1;
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +01001407 }
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -03001408 hist_entry__delete(he);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001409 return ret;
John Kacur3d1d07e2009-09-28 15:32:55 +02001410 }
1411
1412 if (cmp < 0)
1413 p = &(*p)->rb_left;
1414 else
1415 p = &(*p)->rb_right;
1416 }
Namhyung Kim740b97f2014-12-22 13:44:10 +09001417 hists->nr_entries++;
John Kacur3d1d07e2009-09-28 15:32:55 +02001418
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001419 rb_link_node(&he->rb_node_in, parent, p);
1420 rb_insert_color(&he->rb_node_in, root);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001421 return 1;
John Kacur3d1d07e2009-09-28 15:32:55 +02001422}
1423
Namhyung Kimfc284be2016-01-07 10:14:10 +01001424struct rb_root *hists__get_rotate_entries_in(struct hists *hists)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001425{
1426 struct rb_root *root;
1427
1428 pthread_mutex_lock(&hists->lock);
1429
1430 root = hists->entries_in;
1431 if (++hists->entries_in > &hists->entries_in_array[1])
1432 hists->entries_in = &hists->entries_in_array[0];
1433
1434 pthread_mutex_unlock(&hists->lock);
1435
1436 return root;
1437}
1438
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001439static void hists__apply_filters(struct hists *hists, struct hist_entry *he)
1440{
1441 hists__filter_entry_by_dso(hists, he);
1442 hists__filter_entry_by_thread(hists, he);
Namhyung Kime94d53e2012-03-16 17:50:51 +09001443 hists__filter_entry_by_symbol(hists, he);
Kan Liang21394d92015-09-04 10:45:44 -04001444 hists__filter_entry_by_socket(hists, he);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001445}
1446
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001447int hists__collapse_resort(struct hists *hists, struct ui_progress *prog)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001448{
1449 struct rb_root *root;
1450 struct rb_node *next;
1451 struct hist_entry *n;
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001452 int ret;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001453
Jiri Olsa52225032016-05-03 13:54:42 +02001454 if (!hists__has(hists, need_collapse))
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001455 return 0;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001456
Namhyung Kim740b97f2014-12-22 13:44:10 +09001457 hists->nr_entries = 0;
1458
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001459 root = hists__get_rotate_entries_in(hists);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001460
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001461 next = rb_first(root);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001462
1463 while (next) {
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001464 if (session_done())
1465 break;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001466 n = rb_entry(next, struct hist_entry, rb_node_in);
1467 next = rb_next(&n->rb_node_in);
1468
1469 rb_erase(&n->rb_node_in, root);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001470 ret = hists__collapse_insert_entry(hists, &hists->entries_collapsed, n);
1471 if (ret < 0)
1472 return -1;
1473
1474 if (ret) {
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001475 /*
1476 * If it wasn't combined with one of the entries already
1477 * collapsed, we need to apply the filters that may have
1478 * been set by, say, the hist_browser.
1479 */
1480 hists__apply_filters(hists, n);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001481 }
Namhyung Kimc1fb5652013-10-11 14:15:38 +09001482 if (prog)
1483 ui_progress__update(prog, 1);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001484 }
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001485 return 0;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001486}
1487
Namhyung Kim043ca3892014-03-03 14:18:00 +09001488static int hist_entry__sort(struct hist_entry *a, struct hist_entry *b)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001489{
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001490 struct hists *hists = a->hists;
Namhyung Kim043ca3892014-03-03 14:18:00 +09001491 struct perf_hpp_fmt *fmt;
1492 int64_t cmp = 0;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001493
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001494 hists__for_each_sort_list(hists, fmt) {
Namhyung Kim361459f2015-12-23 02:07:08 +09001495 if (perf_hpp__should_skip(fmt, a->hists))
Namhyung Kime67d49a2014-03-18 13:00:59 +09001496 continue;
1497
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001498 cmp = fmt->sort(fmt, a, b);
Namhyung Kim043ca3892014-03-03 14:18:00 +09001499 if (cmp)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001500 break;
1501 }
1502
Namhyung Kim043ca3892014-03-03 14:18:00 +09001503 return cmp;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001504}
1505
Namhyung Kim9283ba92014-04-24 16:37:26 +09001506static void hists__reset_filter_stats(struct hists *hists)
1507{
1508 hists->nr_non_filtered_entries = 0;
1509 hists->stats.total_non_filtered_period = 0;
1510}
1511
1512void hists__reset_stats(struct hists *hists)
1513{
1514 hists->nr_entries = 0;
1515 hists->stats.total_period = 0;
1516
1517 hists__reset_filter_stats(hists);
1518}
1519
1520static void hists__inc_filter_stats(struct hists *hists, struct hist_entry *h)
1521{
1522 hists->nr_non_filtered_entries++;
1523 hists->stats.total_non_filtered_period += h->stat.period;
1524}
1525
1526void hists__inc_stats(struct hists *hists, struct hist_entry *h)
1527{
1528 if (!h->filtered)
1529 hists__inc_filter_stats(hists, h);
1530
1531 hists->nr_entries++;
1532 hists->stats.total_period += h->stat.period;
1533}
1534
Namhyung Kimf7fb5382016-03-09 22:47:02 +09001535static void hierarchy_recalc_total_periods(struct hists *hists)
1536{
1537 struct rb_node *node;
1538 struct hist_entry *he;
1539
1540 node = rb_first(&hists->entries);
1541
1542 hists->stats.total_period = 0;
1543 hists->stats.total_non_filtered_period = 0;
1544
1545 /*
1546 * recalculate total period using top-level entries only
1547 * since lower level entries only see non-filtered entries
1548 * but upper level entries have sum of both entries.
1549 */
1550 while (node) {
1551 he = rb_entry(node, struct hist_entry, rb_node);
1552 node = rb_next(node);
1553
1554 hists->stats.total_period += he->stat.period;
1555 if (!he->filtered)
1556 hists->stats.total_non_filtered_period += he->stat.period;
1557 }
1558}
1559
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001560static void hierarchy_insert_output_entry(struct rb_root *root,
1561 struct hist_entry *he)
1562{
1563 struct rb_node **p = &root->rb_node;
1564 struct rb_node *parent = NULL;
1565 struct hist_entry *iter;
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001566 struct perf_hpp_fmt *fmt;
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001567
1568 while (*p != NULL) {
1569 parent = *p;
1570 iter = rb_entry(parent, struct hist_entry, rb_node);
1571
1572 if (hist_entry__sort(he, iter) > 0)
1573 p = &parent->rb_left;
1574 else
1575 p = &parent->rb_right;
1576 }
1577
1578 rb_link_node(&he->rb_node, parent, p);
1579 rb_insert_color(&he->rb_node, root);
Namhyung Kimabab5e72016-02-27 03:52:47 +09001580
1581 /* update column width of dynamic entry */
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001582 perf_hpp_list__for_each_sort_list(he->hpp_list, fmt) {
1583 if (perf_hpp__is_dynamic_entry(fmt))
1584 fmt->sort(fmt, he, NULL);
1585 }
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001586}
1587
1588static void hists__hierarchy_output_resort(struct hists *hists,
1589 struct ui_progress *prog,
1590 struct rb_root *root_in,
1591 struct rb_root *root_out,
1592 u64 min_callchain_hits,
1593 bool use_callchain)
1594{
1595 struct rb_node *node;
1596 struct hist_entry *he;
1597
1598 *root_out = RB_ROOT;
1599 node = rb_first(root_in);
1600
1601 while (node) {
1602 he = rb_entry(node, struct hist_entry, rb_node_in);
1603 node = rb_next(node);
1604
1605 hierarchy_insert_output_entry(root_out, he);
1606
1607 if (prog)
1608 ui_progress__update(prog, 1);
1609
Namhyung Kimc72ab442016-11-08 22:08:33 +09001610 hists->nr_entries++;
1611 if (!he->filtered) {
1612 hists->nr_non_filtered_entries++;
1613 hists__calc_col_len(hists, he);
1614 }
1615
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001616 if (!he->leaf) {
1617 hists__hierarchy_output_resort(hists, prog,
1618 &he->hroot_in,
1619 &he->hroot_out,
1620 min_callchain_hits,
1621 use_callchain);
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001622 continue;
1623 }
1624
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001625 if (!use_callchain)
1626 continue;
1627
1628 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1629 u64 total = he->stat.period;
1630
1631 if (symbol_conf.cumulate_callchain)
1632 total = he->stat_acc->period;
1633
1634 min_callchain_hits = total * (callchain_param.min_percent / 100);
1635 }
1636
1637 callchain_param.sort(&he->sorted_chain, he->callchain,
1638 min_callchain_hits, &callchain_param);
1639 }
1640}
1641
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001642static void __hists__insert_output_entry(struct rb_root *entries,
1643 struct hist_entry *he,
Kan Liangf9db0d02015-08-11 06:30:48 -04001644 u64 min_callchain_hits,
1645 bool use_callchain)
John Kacur3d1d07e2009-09-28 15:32:55 +02001646{
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001647 struct rb_node **p = &entries->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001648 struct rb_node *parent = NULL;
1649 struct hist_entry *iter;
Namhyung Kimabab5e72016-02-27 03:52:47 +09001650 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +02001651
Namhyung Kim744070e2016-01-28 00:40:48 +09001652 if (use_callchain) {
1653 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1654 u64 total = he->stat.period;
1655
1656 if (symbol_conf.cumulate_callchain)
1657 total = he->stat_acc->period;
1658
1659 min_callchain_hits = total * (callchain_param.min_percent / 100);
1660 }
Arnaldo Carvalho de Melob9fb9302010-04-02 09:50:42 -03001661 callchain_param.sort(&he->sorted_chain, he->callchain,
John Kacur3d1d07e2009-09-28 15:32:55 +02001662 min_callchain_hits, &callchain_param);
Namhyung Kim744070e2016-01-28 00:40:48 +09001663 }
John Kacur3d1d07e2009-09-28 15:32:55 +02001664
1665 while (*p != NULL) {
1666 parent = *p;
1667 iter = rb_entry(parent, struct hist_entry, rb_node);
1668
Namhyung Kim043ca3892014-03-03 14:18:00 +09001669 if (hist_entry__sort(he, iter) > 0)
John Kacur3d1d07e2009-09-28 15:32:55 +02001670 p = &(*p)->rb_left;
1671 else
1672 p = &(*p)->rb_right;
1673 }
1674
1675 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001676 rb_insert_color(&he->rb_node, entries);
Namhyung Kimabab5e72016-02-27 03:52:47 +09001677
1678 perf_hpp_list__for_each_sort_list(&perf_hpp_list, fmt) {
1679 if (perf_hpp__is_dynamic_entry(fmt) &&
1680 perf_hpp__defined_dynamic_entry(fmt, he->hists))
1681 fmt->sort(fmt, he, NULL); /* update column width */
1682 }
John Kacur3d1d07e2009-09-28 15:32:55 +02001683}
1684
Jiri Olsa01441af2016-01-18 10:23:59 +01001685static void output_resort(struct hists *hists, struct ui_progress *prog,
Jiri Olsa52c5cc32016-08-01 20:02:34 +02001686 bool use_callchain, hists__resort_cb_t cb)
John Kacur3d1d07e2009-09-28 15:32:55 +02001687{
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001688 struct rb_root *root;
John Kacur3d1d07e2009-09-28 15:32:55 +02001689 struct rb_node *next;
1690 struct hist_entry *n;
Namhyung Kim467ef102016-02-16 23:08:19 +09001691 u64 callchain_total;
John Kacur3d1d07e2009-09-28 15:32:55 +02001692 u64 min_callchain_hits;
1693
Namhyung Kim467ef102016-02-16 23:08:19 +09001694 callchain_total = hists->callchain_period;
1695 if (symbol_conf.filter_relative)
1696 callchain_total = hists->callchain_non_filtered_period;
1697
1698 min_callchain_hits = callchain_total * (callchain_param.min_percent / 100);
John Kacur3d1d07e2009-09-28 15:32:55 +02001699
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001700 hists__reset_stats(hists);
1701 hists__reset_col_len(hists);
1702
1703 if (symbol_conf.report_hierarchy) {
Namhyung Kimf7fb5382016-03-09 22:47:02 +09001704 hists__hierarchy_output_resort(hists, prog,
1705 &hists->entries_collapsed,
1706 &hists->entries,
1707 min_callchain_hits,
1708 use_callchain);
1709 hierarchy_recalc_total_periods(hists);
1710 return;
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001711 }
1712
Jiri Olsa52225032016-05-03 13:54:42 +02001713 if (hists__has(hists, need_collapse))
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001714 root = &hists->entries_collapsed;
1715 else
1716 root = hists->entries_in;
1717
1718 next = rb_first(root);
1719 hists->entries = RB_ROOT;
John Kacur3d1d07e2009-09-28 15:32:55 +02001720
1721 while (next) {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001722 n = rb_entry(next, struct hist_entry, rb_node_in);
1723 next = rb_next(&n->rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001724
Jiri Olsa52c5cc32016-08-01 20:02:34 +02001725 if (cb && cb(n))
1726 continue;
1727
Kan Liangf9db0d02015-08-11 06:30:48 -04001728 __hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain);
Namhyung Kim62638352014-04-24 16:21:46 +09001729 hists__inc_stats(hists, n);
Namhyung Kimae993ef2014-04-24 16:25:19 +09001730
1731 if (!n->filtered)
1732 hists__calc_col_len(hists, n);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001733
1734 if (prog)
1735 ui_progress__update(prog, 1);
John Kacur3d1d07e2009-09-28 15:32:55 +02001736 }
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001737}
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -02001738
Jiri Olsa452ce032016-01-18 10:24:00 +01001739void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog)
Jiri Olsa01441af2016-01-18 10:23:59 +01001740{
Jiri Olsa01441af2016-01-18 10:23:59 +01001741 bool use_callchain;
1742
1743 if (evsel && symbol_conf.use_callchain && !symbol_conf.show_ref_callgraph)
1744 use_callchain = evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN;
1745 else
1746 use_callchain = symbol_conf.use_callchain;
1747
Jiri Olsa52c5cc32016-08-01 20:02:34 +02001748 output_resort(evsel__hists(evsel), prog, use_callchain, NULL);
Jiri Olsa452ce032016-01-18 10:24:00 +01001749}
1750
1751void hists__output_resort(struct hists *hists, struct ui_progress *prog)
1752{
Jiri Olsa52c5cc32016-08-01 20:02:34 +02001753 output_resort(hists, prog, symbol_conf.use_callchain, NULL);
1754}
1755
1756void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog,
1757 hists__resort_cb_t cb)
1758{
1759 output_resort(hists, prog, symbol_conf.use_callchain, cb);
Jiri Olsa01441af2016-01-18 10:23:59 +01001760}
1761
Namhyung Kim8c018722016-02-25 00:13:36 +09001762static bool can_goto_child(struct hist_entry *he, enum hierarchy_move_dir hmd)
1763{
1764 if (he->leaf || hmd == HMD_FORCE_SIBLING)
1765 return false;
1766
1767 if (he->unfolded || hmd == HMD_FORCE_CHILD)
1768 return true;
1769
1770 return false;
1771}
1772
1773struct rb_node *rb_hierarchy_last(struct rb_node *node)
1774{
1775 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1776
1777 while (can_goto_child(he, HMD_NORMAL)) {
1778 node = rb_last(&he->hroot_out);
1779 he = rb_entry(node, struct hist_entry, rb_node);
1780 }
1781 return node;
1782}
1783
1784struct rb_node *__rb_hierarchy_next(struct rb_node *node, enum hierarchy_move_dir hmd)
1785{
1786 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1787
1788 if (can_goto_child(he, hmd))
1789 node = rb_first(&he->hroot_out);
1790 else
1791 node = rb_next(node);
1792
1793 while (node == NULL) {
1794 he = he->parent_he;
1795 if (he == NULL)
1796 break;
1797
1798 node = rb_next(&he->rb_node);
1799 }
1800 return node;
1801}
1802
1803struct rb_node *rb_hierarchy_prev(struct rb_node *node)
1804{
1805 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1806
1807 node = rb_prev(node);
1808 if (node)
1809 return rb_hierarchy_last(node);
1810
1811 he = he->parent_he;
1812 if (he == NULL)
1813 return NULL;
1814
1815 return &he->rb_node;
1816}
1817
Namhyung Kima7b58952016-02-26 21:13:16 +09001818bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit)
1819{
1820 struct rb_node *node;
1821 struct hist_entry *child;
1822 float percent;
1823
1824 if (he->leaf)
1825 return false;
1826
1827 node = rb_first(&he->hroot_out);
1828 child = rb_entry(node, struct hist_entry, rb_node);
1829
1830 while (node && child->filtered) {
1831 node = rb_next(node);
1832 child = rb_entry(node, struct hist_entry, rb_node);
1833 }
1834
1835 if (node)
1836 percent = hist_entry__get_percent_limit(child);
1837 else
1838 percent = 0;
1839
1840 return node && percent >= limit;
1841}
1842
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001843static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h,
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001844 enum hist_filter filter)
1845{
1846 h->filtered &= ~(1 << filter);
Namhyung Kim155e9af2016-02-25 00:13:38 +09001847
1848 if (symbol_conf.report_hierarchy) {
1849 struct hist_entry *parent = h->parent_he;
1850
1851 while (parent) {
1852 he_stat__add_stat(&parent->stat, &h->stat);
1853
1854 parent->filtered &= ~(1 << filter);
1855
1856 if (parent->filtered)
1857 goto next;
1858
1859 /* force fold unfiltered entry for simplicity */
1860 parent->unfolded = false;
Namhyung Kim79dded82016-02-26 21:13:19 +09001861 parent->has_no_entry = false;
Namhyung Kim155e9af2016-02-25 00:13:38 +09001862 parent->row_offset = 0;
1863 parent->nr_rows = 0;
1864next:
1865 parent = parent->parent_he;
1866 }
1867 }
1868
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001869 if (h->filtered)
1870 return;
1871
Namhyung Kim87e90f42014-04-24 16:44:16 +09001872 /* force fold unfiltered entry for simplicity */
Namhyung Kim3698dab2015-05-05 23:55:46 +09001873 h->unfolded = false;
Namhyung Kim79dded82016-02-26 21:13:19 +09001874 h->has_no_entry = false;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -03001875 h->row_offset = 0;
He Kuanga8cd1f42015-03-11 20:36:03 +08001876 h->nr_rows = 0;
Namhyung Kim9283ba92014-04-24 16:37:26 +09001877
Namhyung Kim1ab1fa52013-12-26 15:11:52 +09001878 hists->stats.nr_non_filtered_samples += h->stat.nr_events;
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001879
Namhyung Kim9283ba92014-04-24 16:37:26 +09001880 hists__inc_filter_stats(hists, h);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001881 hists__calc_col_len(hists, h);
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001882}
1883
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001884
1885static bool hists__filter_entry_by_dso(struct hists *hists,
1886 struct hist_entry *he)
1887{
1888 if (hists->dso_filter != NULL &&
1889 (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) {
1890 he->filtered |= (1 << HIST_FILTER__DSO);
1891 return true;
1892 }
1893
1894 return false;
1895}
1896
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001897static bool hists__filter_entry_by_thread(struct hists *hists,
1898 struct hist_entry *he)
1899{
1900 if (hists->thread_filter != NULL &&
1901 he->thread != hists->thread_filter) {
1902 he->filtered |= (1 << HIST_FILTER__THREAD);
1903 return true;
1904 }
1905
1906 return false;
1907}
1908
Namhyung Kime94d53e2012-03-16 17:50:51 +09001909static bool hists__filter_entry_by_symbol(struct hists *hists,
1910 struct hist_entry *he)
1911{
1912 if (hists->symbol_filter_str != NULL &&
1913 (!he->ms.sym || strstr(he->ms.sym->name,
1914 hists->symbol_filter_str) == NULL)) {
1915 he->filtered |= (1 << HIST_FILTER__SYMBOL);
1916 return true;
1917 }
1918
1919 return false;
1920}
1921
Kan Liang21394d92015-09-04 10:45:44 -04001922static bool hists__filter_entry_by_socket(struct hists *hists,
1923 struct hist_entry *he)
1924{
1925 if ((hists->socket_filter > -1) &&
1926 (he->socket != hists->socket_filter)) {
1927 he->filtered |= (1 << HIST_FILTER__SOCKET);
1928 return true;
1929 }
1930
1931 return false;
1932}
1933
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001934typedef bool (*filter_fn_t)(struct hists *hists, struct hist_entry *he);
1935
1936static void hists__filter_by_type(struct hists *hists, int type, filter_fn_t filter)
Kan Liang84734b02015-09-04 10:45:45 -04001937{
1938 struct rb_node *nd;
1939
1940 hists->stats.nr_non_filtered_samples = 0;
1941
1942 hists__reset_filter_stats(hists);
1943 hists__reset_col_len(hists);
1944
1945 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
1946 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1947
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001948 if (filter(hists, h))
Kan Liang84734b02015-09-04 10:45:45 -04001949 continue;
1950
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001951 hists__remove_entry_filter(hists, h, type);
Kan Liang84734b02015-09-04 10:45:45 -04001952 }
1953}
1954
Namhyung Kim70642852016-02-25 00:13:39 +09001955static void resort_filtered_entry(struct rb_root *root, struct hist_entry *he)
1956{
1957 struct rb_node **p = &root->rb_node;
1958 struct rb_node *parent = NULL;
1959 struct hist_entry *iter;
1960 struct rb_root new_root = RB_ROOT;
1961 struct rb_node *nd;
1962
1963 while (*p != NULL) {
1964 parent = *p;
1965 iter = rb_entry(parent, struct hist_entry, rb_node);
1966
1967 if (hist_entry__sort(he, iter) > 0)
1968 p = &(*p)->rb_left;
1969 else
1970 p = &(*p)->rb_right;
1971 }
1972
1973 rb_link_node(&he->rb_node, parent, p);
1974 rb_insert_color(&he->rb_node, root);
1975
1976 if (he->leaf || he->filtered)
1977 return;
1978
1979 nd = rb_first(&he->hroot_out);
1980 while (nd) {
1981 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1982
1983 nd = rb_next(nd);
1984 rb_erase(&h->rb_node, &he->hroot_out);
1985
1986 resort_filtered_entry(&new_root, h);
1987 }
1988
1989 he->hroot_out = new_root;
1990}
1991
Namhyung Kim155e9af2016-02-25 00:13:38 +09001992static void hists__filter_hierarchy(struct hists *hists, int type, const void *arg)
1993{
1994 struct rb_node *nd;
Namhyung Kim70642852016-02-25 00:13:39 +09001995 struct rb_root new_root = RB_ROOT;
Namhyung Kim155e9af2016-02-25 00:13:38 +09001996
1997 hists->stats.nr_non_filtered_samples = 0;
1998
1999 hists__reset_filter_stats(hists);
2000 hists__reset_col_len(hists);
2001
2002 nd = rb_first(&hists->entries);
2003 while (nd) {
2004 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
2005 int ret;
2006
2007 ret = hist_entry__filter(h, type, arg);
2008
2009 /*
2010 * case 1. non-matching type
2011 * zero out the period, set filter marker and move to child
2012 */
2013 if (ret < 0) {
2014 memset(&h->stat, 0, sizeof(h->stat));
2015 h->filtered |= (1 << type);
2016
2017 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_CHILD);
2018 }
2019 /*
2020 * case 2. matched type (filter out)
2021 * set filter marker and move to next
2022 */
2023 else if (ret == 1) {
2024 h->filtered |= (1 << type);
2025
2026 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_SIBLING);
2027 }
2028 /*
2029 * case 3. ok (not filtered)
2030 * add period to hists and parents, erase the filter marker
2031 * and move to next sibling
2032 */
2033 else {
2034 hists__remove_entry_filter(hists, h, type);
2035
2036 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_SIBLING);
2037 }
2038 }
Namhyung Kim70642852016-02-25 00:13:39 +09002039
Namhyung Kimf7fb5382016-03-09 22:47:02 +09002040 hierarchy_recalc_total_periods(hists);
2041
Namhyung Kim70642852016-02-25 00:13:39 +09002042 /*
2043 * resort output after applying a new filter since filter in a lower
2044 * hierarchy can change periods in a upper hierarchy.
2045 */
2046 nd = rb_first(&hists->entries);
2047 while (nd) {
2048 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
2049
2050 nd = rb_next(nd);
2051 rb_erase(&h->rb_node, &hists->entries);
2052
2053 resort_filtered_entry(&new_root, h);
2054 }
2055
2056 hists->entries = new_root;
Namhyung Kim155e9af2016-02-25 00:13:38 +09002057}
2058
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002059void hists__filter_by_thread(struct hists *hists)
2060{
Namhyung Kim155e9af2016-02-25 00:13:38 +09002061 if (symbol_conf.report_hierarchy)
2062 hists__filter_hierarchy(hists, HIST_FILTER__THREAD,
2063 hists->thread_filter);
2064 else
2065 hists__filter_by_type(hists, HIST_FILTER__THREAD,
2066 hists__filter_entry_by_thread);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002067}
2068
2069void hists__filter_by_dso(struct hists *hists)
2070{
Namhyung Kim155e9af2016-02-25 00:13:38 +09002071 if (symbol_conf.report_hierarchy)
2072 hists__filter_hierarchy(hists, HIST_FILTER__DSO,
2073 hists->dso_filter);
2074 else
2075 hists__filter_by_type(hists, HIST_FILTER__DSO,
2076 hists__filter_entry_by_dso);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002077}
2078
2079void hists__filter_by_symbol(struct hists *hists)
2080{
Namhyung Kim155e9af2016-02-25 00:13:38 +09002081 if (symbol_conf.report_hierarchy)
2082 hists__filter_hierarchy(hists, HIST_FILTER__SYMBOL,
2083 hists->symbol_filter_str);
2084 else
2085 hists__filter_by_type(hists, HIST_FILTER__SYMBOL,
2086 hists__filter_entry_by_symbol);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002087}
2088
2089void hists__filter_by_socket(struct hists *hists)
2090{
Namhyung Kim155e9af2016-02-25 00:13:38 +09002091 if (symbol_conf.report_hierarchy)
2092 hists__filter_hierarchy(hists, HIST_FILTER__SOCKET,
2093 &hists->socket_filter);
2094 else
2095 hists__filter_by_type(hists, HIST_FILTER__SOCKET,
2096 hists__filter_entry_by_socket);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002097}
2098
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03002099void events_stats__inc(struct events_stats *stats, u32 type)
2100{
2101 ++stats->nr_events[0];
2102 ++stats->nr_events[type];
2103}
2104
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03002105void hists__inc_nr_events(struct hists *hists, u32 type)
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03002106{
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03002107 events_stats__inc(&hists->stats, type);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03002108}
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002109
Namhyung Kim1844dbc2014-05-28 14:12:18 +09002110void hists__inc_nr_samples(struct hists *hists, bool filtered)
2111{
2112 events_stats__inc(&hists->stats, PERF_RECORD_SAMPLE);
2113 if (!filtered)
2114 hists->stats.nr_non_filtered_samples++;
2115}
2116
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002117static struct hist_entry *hists__add_dummy_entry(struct hists *hists,
2118 struct hist_entry *pair)
2119{
Namhyung Kimce74f602012-12-10 17:29:55 +09002120 struct rb_root *root;
2121 struct rb_node **p;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002122 struct rb_node *parent = NULL;
2123 struct hist_entry *he;
Andi Kleen354cc402013-10-01 07:22:15 -07002124 int64_t cmp;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002125
Jiri Olsa52225032016-05-03 13:54:42 +02002126 if (hists__has(hists, need_collapse))
Namhyung Kimce74f602012-12-10 17:29:55 +09002127 root = &hists->entries_collapsed;
2128 else
2129 root = hists->entries_in;
2130
2131 p = &root->rb_node;
2132
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002133 while (*p != NULL) {
2134 parent = *p;
Namhyung Kimce74f602012-12-10 17:29:55 +09002135 he = rb_entry(parent, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002136
Namhyung Kimce74f602012-12-10 17:29:55 +09002137 cmp = hist_entry__collapse(he, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002138
2139 if (!cmp)
2140 goto out;
2141
2142 if (cmp < 0)
2143 p = &(*p)->rb_left;
2144 else
2145 p = &(*p)->rb_right;
2146 }
2147
Namhyung Kima0b51af2012-09-11 13:34:27 +09002148 he = hist_entry__new(pair, true);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002149 if (he) {
Arnaldo Carvalho de Melo30193d72012-11-12 13:20:03 -03002150 memset(&he->stat, 0, sizeof(he->stat));
2151 he->hists = hists;
Kan Liang09623d72016-04-24 23:28:09 -07002152 if (symbol_conf.cumulate_callchain)
2153 memset(he->stat_acc, 0, sizeof(he->stat));
Namhyung Kimce74f602012-12-10 17:29:55 +09002154 rb_link_node(&he->rb_node_in, parent, p);
2155 rb_insert_color(&he->rb_node_in, root);
Namhyung Kim62638352014-04-24 16:21:46 +09002156 hists__inc_stats(hists, he);
Jiri Olsae0af43d2012-12-01 21:18:20 +01002157 he->dummy = true;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002158 }
2159out:
2160 return he;
2161}
2162
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002163static struct hist_entry *add_dummy_hierarchy_entry(struct hists *hists,
2164 struct rb_root *root,
2165 struct hist_entry *pair)
2166{
2167 struct rb_node **p;
2168 struct rb_node *parent = NULL;
2169 struct hist_entry *he;
2170 struct perf_hpp_fmt *fmt;
2171
2172 p = &root->rb_node;
2173 while (*p != NULL) {
2174 int64_t cmp = 0;
2175
2176 parent = *p;
2177 he = rb_entry(parent, struct hist_entry, rb_node_in);
2178
2179 perf_hpp_list__for_each_sort_list(he->hpp_list, fmt) {
2180 cmp = fmt->collapse(fmt, he, pair);
2181 if (cmp)
2182 break;
2183 }
2184 if (!cmp)
2185 goto out;
2186
2187 if (cmp < 0)
2188 p = &parent->rb_left;
2189 else
2190 p = &parent->rb_right;
2191 }
2192
2193 he = hist_entry__new(pair, true);
2194 if (he) {
2195 rb_link_node(&he->rb_node_in, parent, p);
2196 rb_insert_color(&he->rb_node_in, root);
2197
2198 he->dummy = true;
2199 he->hists = hists;
2200 memset(&he->stat, 0, sizeof(he->stat));
2201 hists__inc_stats(hists, he);
2202 }
2203out:
2204 return he;
2205}
2206
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002207static struct hist_entry *hists__find_entry(struct hists *hists,
2208 struct hist_entry *he)
2209{
Namhyung Kimce74f602012-12-10 17:29:55 +09002210 struct rb_node *n;
2211
Jiri Olsa52225032016-05-03 13:54:42 +02002212 if (hists__has(hists, need_collapse))
Namhyung Kimce74f602012-12-10 17:29:55 +09002213 n = hists->entries_collapsed.rb_node;
2214 else
2215 n = hists->entries_in->rb_node;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002216
2217 while (n) {
Namhyung Kimce74f602012-12-10 17:29:55 +09002218 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node_in);
2219 int64_t cmp = hist_entry__collapse(iter, he);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002220
2221 if (cmp < 0)
2222 n = n->rb_left;
2223 else if (cmp > 0)
2224 n = n->rb_right;
2225 else
2226 return iter;
2227 }
2228
2229 return NULL;
2230}
2231
Namhyung Kim09034de2016-09-13 16:45:46 +09002232static struct hist_entry *hists__find_hierarchy_entry(struct rb_root *root,
2233 struct hist_entry *he)
2234{
2235 struct rb_node *n = root->rb_node;
2236
2237 while (n) {
2238 struct hist_entry *iter;
2239 struct perf_hpp_fmt *fmt;
2240 int64_t cmp = 0;
2241
2242 iter = rb_entry(n, struct hist_entry, rb_node_in);
2243 perf_hpp_list__for_each_sort_list(he->hpp_list, fmt) {
2244 cmp = fmt->collapse(fmt, iter, he);
2245 if (cmp)
2246 break;
2247 }
2248
2249 if (cmp < 0)
2250 n = n->rb_left;
2251 else if (cmp > 0)
2252 n = n->rb_right;
2253 else
2254 return iter;
2255 }
2256
2257 return NULL;
2258}
2259
2260static void hists__match_hierarchy(struct rb_root *leader_root,
2261 struct rb_root *other_root)
2262{
2263 struct rb_node *nd;
2264 struct hist_entry *pos, *pair;
2265
2266 for (nd = rb_first(leader_root); nd; nd = rb_next(nd)) {
2267 pos = rb_entry(nd, struct hist_entry, rb_node_in);
2268 pair = hists__find_hierarchy_entry(other_root, pos);
2269
2270 if (pair) {
2271 hist_entry__add_pair(pair, pos);
2272 hists__match_hierarchy(&pos->hroot_in, &pair->hroot_in);
2273 }
2274 }
2275}
2276
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002277/*
2278 * Look for pairs to link to the leader buckets (hist_entries):
2279 */
2280void hists__match(struct hists *leader, struct hists *other)
2281{
Namhyung Kimce74f602012-12-10 17:29:55 +09002282 struct rb_root *root;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002283 struct rb_node *nd;
2284 struct hist_entry *pos, *pair;
2285
Namhyung Kim09034de2016-09-13 16:45:46 +09002286 if (symbol_conf.report_hierarchy) {
2287 /* hierarchy report always collapses entries */
2288 return hists__match_hierarchy(&leader->entries_collapsed,
2289 &other->entries_collapsed);
2290 }
2291
Jiri Olsa52225032016-05-03 13:54:42 +02002292 if (hists__has(leader, need_collapse))
Namhyung Kimce74f602012-12-10 17:29:55 +09002293 root = &leader->entries_collapsed;
2294 else
2295 root = leader->entries_in;
2296
2297 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
2298 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002299 pair = hists__find_entry(other, pos);
2300
2301 if (pair)
Namhyung Kim5fa90412012-11-29 15:38:34 +09002302 hist_entry__add_pair(pair, pos);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002303 }
2304}
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002305
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002306static int hists__link_hierarchy(struct hists *leader_hists,
2307 struct hist_entry *parent,
2308 struct rb_root *leader_root,
2309 struct rb_root *other_root)
2310{
2311 struct rb_node *nd;
2312 struct hist_entry *pos, *leader;
2313
2314 for (nd = rb_first(other_root); nd; nd = rb_next(nd)) {
2315 pos = rb_entry(nd, struct hist_entry, rb_node_in);
2316
2317 if (hist_entry__has_pairs(pos)) {
2318 bool found = false;
2319
2320 list_for_each_entry(leader, &pos->pairs.head, pairs.node) {
2321 if (leader->hists == leader_hists) {
2322 found = true;
2323 break;
2324 }
2325 }
2326 if (!found)
2327 return -1;
2328 } else {
2329 leader = add_dummy_hierarchy_entry(leader_hists,
2330 leader_root, pos);
2331 if (leader == NULL)
2332 return -1;
2333
2334 /* do not point parent in the pos */
2335 leader->parent_he = parent;
2336
2337 hist_entry__add_pair(pos, leader);
2338 }
2339
2340 if (!pos->leaf) {
2341 if (hists__link_hierarchy(leader_hists, leader,
2342 &leader->hroot_in,
2343 &pos->hroot_in) < 0)
2344 return -1;
2345 }
2346 }
2347 return 0;
2348}
2349
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002350/*
2351 * Look for entries in the other hists that are not present in the leader, if
2352 * we find them, just add a dummy entry on the leader hists, with period=0,
2353 * nr_events=0, to serve as the list header.
2354 */
2355int hists__link(struct hists *leader, struct hists *other)
2356{
Namhyung Kimce74f602012-12-10 17:29:55 +09002357 struct rb_root *root;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002358 struct rb_node *nd;
2359 struct hist_entry *pos, *pair;
2360
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002361 if (symbol_conf.report_hierarchy) {
2362 /* hierarchy report always collapses entries */
2363 return hists__link_hierarchy(leader, NULL,
2364 &leader->entries_collapsed,
2365 &other->entries_collapsed);
2366 }
2367
Jiri Olsa52225032016-05-03 13:54:42 +02002368 if (hists__has(other, need_collapse))
Namhyung Kimce74f602012-12-10 17:29:55 +09002369 root = &other->entries_collapsed;
2370 else
2371 root = other->entries_in;
2372
2373 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
2374 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002375
2376 if (!hist_entry__has_pairs(pos)) {
2377 pair = hists__add_dummy_entry(leader, pos);
2378 if (pair == NULL)
2379 return -1;
Namhyung Kim5fa90412012-11-29 15:38:34 +09002380 hist_entry__add_pair(pos, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002381 }
2382 }
2383
2384 return 0;
2385}
Namhyung Kimf2148332014-01-14 11:52:48 +09002386
Andi Kleen578499982015-07-18 08:24:49 -07002387void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
2388 struct perf_sample *sample, bool nonany_branch_mode)
2389{
2390 struct branch_info *bi;
2391
2392 /* If we have branch cycles always annotate them. */
2393 if (bs && bs->nr && bs->entries[0].flags.cycles) {
2394 int i;
2395
2396 bi = sample__resolve_bstack(sample, al);
2397 if (bi) {
2398 struct addr_map_symbol *prev = NULL;
2399
2400 /*
2401 * Ignore errors, still want to process the
2402 * other entries.
2403 *
2404 * For non standard branch modes always
2405 * force no IPC (prev == NULL)
2406 *
2407 * Note that perf stores branches reversed from
2408 * program order!
2409 */
2410 for (i = bs->nr - 1; i >= 0; i--) {
2411 addr_map_symbol__account_cycles(&bi[i].from,
2412 nonany_branch_mode ? NULL : prev,
2413 bi[i].flags.cycles);
2414 prev = &bi[i].to;
2415 }
2416 free(bi);
2417 }
2418 }
2419}
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03002420
2421size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp)
2422{
2423 struct perf_evsel *pos;
2424 size_t ret = 0;
2425
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002426 evlist__for_each_entry(evlist, pos) {
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03002427 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
2428 ret += events_stats__fprintf(&evsel__hists(pos)->stats, fp);
2429 }
2430
2431 return ret;
2432}
2433
2434
Namhyung Kimf2148332014-01-14 11:52:48 +09002435u64 hists__total_period(struct hists *hists)
2436{
2437 return symbol_conf.filter_relative ? hists->stats.total_non_filtered_period :
2438 hists->stats.total_period;
2439}
Namhyung Kim33db4562014-02-07 12:06:07 +09002440
2441int parse_filter_percentage(const struct option *opt __maybe_unused,
2442 const char *arg, int unset __maybe_unused)
2443{
2444 if (!strcmp(arg, "relative"))
2445 symbol_conf.filter_relative = true;
2446 else if (!strcmp(arg, "absolute"))
2447 symbol_conf.filter_relative = false;
2448 else
2449 return -1;
2450
2451 return 0;
2452}
Namhyung Kim0b93da12014-01-14 12:02:15 +09002453
2454int perf_hist_config(const char *var, const char *value)
2455{
2456 if (!strcmp(var, "hist.percentage"))
2457 return parse_filter_percentage(NULL, value, 0);
2458
2459 return 0;
2460}
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002461
Jiri Olsa5b658552016-01-18 10:24:22 +01002462int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list)
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002463{
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002464 memset(hists, 0, sizeof(*hists));
2465 hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT;
2466 hists->entries_in = &hists->entries_in_array[0];
2467 hists->entries_collapsed = RB_ROOT;
2468 hists->entries = RB_ROOT;
2469 pthread_mutex_init(&hists->lock, NULL);
Kan Liang21394d92015-09-04 10:45:44 -04002470 hists->socket_filter = -1;
Jiri Olsa5b658552016-01-18 10:24:22 +01002471 hists->hpp_list = hpp_list;
Namhyung Kimc3bc0c42016-03-07 16:44:45 -03002472 INIT_LIST_HEAD(&hists->hpp_formats);
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002473 return 0;
2474}
2475
Namhyung Kim61fa0e92015-12-10 16:53:20 +09002476static void hists__delete_remaining_entries(struct rb_root *root)
2477{
2478 struct rb_node *node;
2479 struct hist_entry *he;
2480
2481 while (!RB_EMPTY_ROOT(root)) {
2482 node = rb_first(root);
2483 rb_erase(node, root);
2484
2485 he = rb_entry(node, struct hist_entry, rb_node_in);
2486 hist_entry__delete(he);
2487 }
2488}
2489
2490static void hists__delete_all_entries(struct hists *hists)
2491{
2492 hists__delete_entries(hists);
2493 hists__delete_remaining_entries(&hists->entries_in_array[0]);
2494 hists__delete_remaining_entries(&hists->entries_in_array[1]);
2495 hists__delete_remaining_entries(&hists->entries_collapsed);
2496}
2497
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002498static void hists_evsel__exit(struct perf_evsel *evsel)
2499{
2500 struct hists *hists = evsel__hists(evsel);
Namhyung Kimc3bc0c42016-03-07 16:44:45 -03002501 struct perf_hpp_fmt *fmt, *pos;
2502 struct perf_hpp_list_node *node, *tmp;
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002503
Namhyung Kim61fa0e92015-12-10 16:53:20 +09002504 hists__delete_all_entries(hists);
Namhyung Kimc3bc0c42016-03-07 16:44:45 -03002505
2506 list_for_each_entry_safe(node, tmp, &hists->hpp_formats, list) {
2507 perf_hpp_list__for_each_format_safe(&node->hpp, fmt, pos) {
2508 list_del(&fmt->list);
2509 free(fmt);
2510 }
2511 list_del(&node->list);
2512 free(node);
2513 }
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002514}
2515
Namhyung Kimfc284be2016-01-07 10:14:10 +01002516static int hists_evsel__init(struct perf_evsel *evsel)
2517{
2518 struct hists *hists = evsel__hists(evsel);
2519
Jiri Olsa5b658552016-01-18 10:24:22 +01002520 __hists__init(hists, &perf_hpp_list);
Namhyung Kimfc284be2016-01-07 10:14:10 +01002521 return 0;
2522}
2523
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002524/*
2525 * XXX We probably need a hists_evsel__exit() to free the hist_entries
2526 * stored in the rbtree...
2527 */
2528
2529int hists__init(void)
2530{
2531 int err = perf_evsel__object_config(sizeof(struct hists_evsel),
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002532 hists_evsel__init,
2533 hists_evsel__exit);
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002534 if (err)
2535 fputs("FATAL ERROR: Couldn't setup hists class\n", stderr);
2536
2537 return err;
2538}
Jiri Olsa94b3dc32016-01-18 10:24:13 +01002539
2540void perf_hpp_list__init(struct perf_hpp_list *list)
2541{
2542 INIT_LIST_HEAD(&list->fields);
2543 INIT_LIST_HEAD(&list->sorts);
2544}