blob: 4b8b67bc0cd8579f1c05f38f97c482fb3ff6a1c7 [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"
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -02004#include "session.h"
5#include "sort.h"
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03006#include "evlist.h"
Namhyung Kim29d720e2013-01-22 18:09:33 +09007#include "evsel.h"
Namhyung Kim69bcb012013-10-30 09:40:34 +09008#include "annotate.h"
Namhyung Kim740b97f2014-12-22 13:44:10 +09009#include "ui/progress.h"
Arnaldo Carvalho de Melo9b338272009-12-16 14:31:49 -020010#include <math.h>
John Kacur3d1d07e2009-09-28 15:32:55 +020011
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -020012static bool hists__filter_entry_by_dso(struct hists *hists,
13 struct hist_entry *he);
14static bool hists__filter_entry_by_thread(struct hists *hists,
15 struct hist_entry *he);
Namhyung Kime94d53e2012-03-16 17:50:51 +090016static bool hists__filter_entry_by_symbol(struct hists *hists,
17 struct hist_entry *he);
Kan Liang21394d92015-09-04 10:45:44 -040018static bool hists__filter_entry_by_socket(struct hists *hists,
19 struct hist_entry *he);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -020020
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030021u16 hists__col_len(struct hists *hists, enum hist_column col)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030022{
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030023 return hists->col_len[col];
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030024}
25
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030026void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030027{
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030028 hists->col_len[col] = len;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030029}
30
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030031bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030032{
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030033 if (len > hists__col_len(hists, col)) {
34 hists__set_col_len(hists, col, len);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030035 return true;
36 }
37 return false;
38}
39
Namhyung Kim7ccf4f92012-08-20 13:52:05 +090040void hists__reset_col_len(struct hists *hists)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030041{
42 enum hist_column col;
43
44 for (col = 0; col < HISTC_NR_COLS; ++col)
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030045 hists__set_col_len(hists, col, 0);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030046}
47
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010048static void hists__set_unres_dso_col_len(struct hists *hists, int dso)
49{
50 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
51
52 if (hists__col_len(hists, dso) < unresolved_col_width &&
53 !symbol_conf.col_width_list_str && !symbol_conf.field_sep &&
54 !symbol_conf.dso_list)
55 hists__set_col_len(hists, dso, unresolved_col_width);
56}
57
Namhyung Kim7ccf4f92012-08-20 13:52:05 +090058void hists__calc_col_len(struct hists *hists, struct hist_entry *h)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030059{
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010060 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
Stephane Eranian98a3b322013-01-24 16:10:35 +010061 int symlen;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030062 u16 len;
63
Namhyung Kimded19d52013-04-01 20:35:19 +090064 /*
65 * +4 accounts for '[x] ' priv level info
66 * +2 accounts for 0x prefix on raw addresses
67 * +3 accounts for ' y ' symtab origin info
68 */
69 if (h->ms.sym) {
70 symlen = h->ms.sym->namelen + 4;
71 if (verbose)
72 symlen += BITS_PER_LONG / 4 + 2 + 3;
73 hists__new_col_len(hists, HISTC_SYMBOL, symlen);
74 } else {
Stephane Eranian98a3b322013-01-24 16:10:35 +010075 symlen = unresolved_col_width + 4 + 2;
76 hists__new_col_len(hists, HISTC_SYMBOL, symlen);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010077 hists__set_unres_dso_col_len(hists, HISTC_DSO);
Stephane Eranian98a3b322013-01-24 16:10:35 +010078 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030079
80 len = thread__comm_len(h->thread);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030081 if (hists__new_col_len(hists, HISTC_COMM, len))
82 hists__set_col_len(hists, HISTC_THREAD, len + 6);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030083
84 if (h->ms.map) {
85 len = dso__name_len(h->ms.map->dso);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030086 hists__new_col_len(hists, HISTC_DSO, len);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030087 }
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010088
Namhyung Kimcb993742012-12-27 18:11:42 +090089 if (h->parent)
90 hists__new_col_len(hists, HISTC_PARENT, h->parent->namelen);
91
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010092 if (h->branch_info) {
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010093 if (h->branch_info->from.sym) {
94 symlen = (int)h->branch_info->from.sym->namelen + 4;
Namhyung Kimded19d52013-04-01 20:35:19 +090095 if (verbose)
96 symlen += BITS_PER_LONG / 4 + 2 + 3;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010097 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
98
99 symlen = dso__name_len(h->branch_info->from.map->dso);
100 hists__new_col_len(hists, HISTC_DSO_FROM, symlen);
101 } else {
102 symlen = unresolved_col_width + 4 + 2;
103 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
104 hists__set_unres_dso_col_len(hists, HISTC_DSO_FROM);
105 }
106
107 if (h->branch_info->to.sym) {
108 symlen = (int)h->branch_info->to.sym->namelen + 4;
Namhyung Kimded19d52013-04-01 20:35:19 +0900109 if (verbose)
110 symlen += BITS_PER_LONG / 4 + 2 + 3;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100111 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
112
113 symlen = dso__name_len(h->branch_info->to.map->dso);
114 hists__new_col_len(hists, HISTC_DSO_TO, symlen);
115 } else {
116 symlen = unresolved_col_width + 4 + 2;
117 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
118 hists__set_unres_dso_col_len(hists, HISTC_DSO_TO);
119 }
120 }
Stephane Eranian98a3b322013-01-24 16:10:35 +0100121
122 if (h->mem_info) {
Stephane Eranian98a3b322013-01-24 16:10:35 +0100123 if (h->mem_info->daddr.sym) {
124 symlen = (int)h->mem_info->daddr.sym->namelen + 4
125 + unresolved_col_width + 2;
126 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL,
127 symlen);
Don Zickus9b32ba72014-06-01 15:38:29 +0200128 hists__new_col_len(hists, HISTC_MEM_DCACHELINE,
129 symlen + 1);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100130 } else {
131 symlen = unresolved_col_width + 4 + 2;
132 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL,
133 symlen);
Jiri Olsa08059092016-01-20 12:56:33 +0100134 hists__new_col_len(hists, HISTC_MEM_DCACHELINE,
135 symlen);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100136 }
Jiri Olsab34b3bf2015-10-05 20:06:08 +0200137
138 if (h->mem_info->iaddr.sym) {
139 symlen = (int)h->mem_info->iaddr.sym->namelen + 4
140 + unresolved_col_width + 2;
141 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL,
142 symlen);
143 } else {
144 symlen = unresolved_col_width + 4 + 2;
145 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL,
146 symlen);
147 }
148
Stephane Eranian98a3b322013-01-24 16:10:35 +0100149 if (h->mem_info->daddr.map) {
150 symlen = dso__name_len(h->mem_info->daddr.map->dso);
151 hists__new_col_len(hists, HISTC_MEM_DADDR_DSO,
152 symlen);
153 } else {
154 symlen = unresolved_col_width + 4 + 2;
155 hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO);
156 }
157 } else {
158 symlen = unresolved_col_width + 4 + 2;
159 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL, symlen);
Jiri Olsab34b3bf2015-10-05 20:06:08 +0200160 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL, symlen);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100161 hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO);
162 }
163
Arnaldo Carvalho de Meloa4978ec2015-09-09 12:14:00 -0300164 hists__new_col_len(hists, HISTC_CPU, 3);
Kan Liang2e7ea3a2015-09-04 10:45:43 -0400165 hists__new_col_len(hists, HISTC_SOCKET, 6);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100166 hists__new_col_len(hists, HISTC_MEM_LOCKED, 6);
167 hists__new_col_len(hists, HISTC_MEM_TLB, 22);
168 hists__new_col_len(hists, HISTC_MEM_SNOOP, 12);
169 hists__new_col_len(hists, HISTC_MEM_LVL, 21 + 3);
170 hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
171 hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
Andi Kleen475eeab2013-09-20 07:40:43 -0700172
Arnaldo Carvalho de Meloe8e6d372015-08-10 16:53:54 -0300173 if (h->srcline)
174 hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline));
175
Andi Kleen31191a82015-08-07 15:54:24 -0700176 if (h->srcfile)
177 hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
178
Andi Kleen475eeab2013-09-20 07:40:43 -0700179 if (h->transaction)
180 hists__new_col_len(hists, HISTC_TRANSACTION,
181 hist_entry__transaction_len());
Namhyung Kim0c0af782016-02-21 23:22:38 +0900182
183 if (h->trace_output)
184 hists__new_col_len(hists, HISTC_TRACE, strlen(h->trace_output));
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300185}
186
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900187void hists__output_recalc_col_len(struct hists *hists, int max_rows)
188{
189 struct rb_node *next = rb_first(&hists->entries);
190 struct hist_entry *n;
191 int row = 0;
192
193 hists__reset_col_len(hists);
194
195 while (next && row++ < max_rows) {
196 n = rb_entry(next, struct hist_entry, rb_node);
197 if (!n->filtered)
198 hists__calc_col_len(hists, n);
199 next = rb_next(&n->rb_node);
200 }
201}
202
Namhyung Kimf39056f2014-01-14 14:25:37 +0900203static void he_stat__add_cpumode_period(struct he_stat *he_stat,
204 unsigned int cpumode, u64 period)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800205{
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300206 switch (cpumode) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800207 case PERF_RECORD_MISC_KERNEL:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900208 he_stat->period_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800209 break;
210 case PERF_RECORD_MISC_USER:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900211 he_stat->period_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800212 break;
213 case PERF_RECORD_MISC_GUEST_KERNEL:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900214 he_stat->period_guest_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800215 break;
216 case PERF_RECORD_MISC_GUEST_USER:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900217 he_stat->period_guest_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800218 break;
219 default:
220 break;
221 }
222}
223
Andi Kleen05484292013-01-24 16:10:29 +0100224static void he_stat__add_period(struct he_stat *he_stat, u64 period,
225 u64 weight)
Namhyung Kim139c0812012-10-04 21:49:43 +0900226{
Stephane Eranian98a3b322013-01-24 16:10:35 +0100227
Namhyung Kim139c0812012-10-04 21:49:43 +0900228 he_stat->period += period;
Andi Kleen05484292013-01-24 16:10:29 +0100229 he_stat->weight += weight;
Namhyung Kim139c0812012-10-04 21:49:43 +0900230 he_stat->nr_events += 1;
231}
232
233static void he_stat__add_stat(struct he_stat *dest, struct he_stat *src)
234{
235 dest->period += src->period;
236 dest->period_sys += src->period_sys;
237 dest->period_us += src->period_us;
238 dest->period_guest_sys += src->period_guest_sys;
239 dest->period_guest_us += src->period_guest_us;
240 dest->nr_events += src->nr_events;
Andi Kleen05484292013-01-24 16:10:29 +0100241 dest->weight += src->weight;
Namhyung Kim139c0812012-10-04 21:49:43 +0900242}
243
Namhyung Kimf39056f2014-01-14 14:25:37 +0900244static void he_stat__decay(struct he_stat *he_stat)
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300245{
Namhyung Kimf39056f2014-01-14 14:25:37 +0900246 he_stat->period = (he_stat->period * 7) / 8;
247 he_stat->nr_events = (he_stat->nr_events * 7) / 8;
Andi Kleen05484292013-01-24 16:10:29 +0100248 /* XXX need decay for weight too? */
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300249}
250
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900251static void hists__delete_entry(struct hists *hists, struct hist_entry *he);
252
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300253static bool hists__decay_entry(struct hists *hists, struct hist_entry *he)
254{
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900255 u64 prev_period = he->stat.period;
Namhyung Kim3186b682014-04-22 13:44:23 +0900256 u64 diff;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200257
258 if (prev_period == 0)
Arnaldo Carvalho de Melodf71d952011-10-13 08:01:33 -0300259 return true;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200260
Namhyung Kimf39056f2014-01-14 14:25:37 +0900261 he_stat__decay(&he->stat);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900262 if (symbol_conf.cumulate_callchain)
263 he_stat__decay(he->stat_acc);
Namhyung Kim42b276a2016-01-05 12:06:00 +0900264 decay_callchain(he->callchain);
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200265
Namhyung Kim3186b682014-04-22 13:44:23 +0900266 diff = prev_period - he->stat.period;
267
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900268 if (!he->depth) {
269 hists->stats.total_period -= diff;
270 if (!he->filtered)
271 hists->stats.total_non_filtered_period -= diff;
272 }
273
274 if (!he->leaf) {
275 struct hist_entry *child;
276 struct rb_node *node = rb_first(&he->hroot_out);
277 while (node) {
278 child = rb_entry(node, struct hist_entry, rb_node);
279 node = rb_next(node);
280
281 if (hists__decay_entry(hists, child))
282 hists__delete_entry(hists, child);
283 }
284 }
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200285
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900286 return he->stat.period == 0;
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300287}
288
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300289static void hists__delete_entry(struct hists *hists, struct hist_entry *he)
290{
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900291 struct rb_root *root_in;
292 struct rb_root *root_out;
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300293
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900294 if (he->parent_he) {
295 root_in = &he->parent_he->hroot_in;
296 root_out = &he->parent_he->hroot_out;
297 } else {
298 if (sort__need_collapse)
299 root_in = &hists->entries_collapsed;
300 else
301 root_in = hists->entries_in;
302 root_out = &hists->entries;
303 }
304
305 rb_erase(&he->rb_node_in, root_in);
306 rb_erase(&he->rb_node, root_out);
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300307
308 --hists->nr_entries;
309 if (!he->filtered)
310 --hists->nr_non_filtered_entries;
311
312 hist_entry__delete(he);
313}
314
Namhyung Kim3a5714f2013-05-14 11:09:01 +0900315void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel)
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300316{
317 struct rb_node *next = rb_first(&hists->entries);
318 struct hist_entry *n;
319
320 while (next) {
321 n = rb_entry(next, struct hist_entry, rb_node);
322 next = rb_next(&n->rb_node);
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -0200323 if (((zap_user && n->level == '.') ||
324 (zap_kernel && n->level != '.') ||
Arnaldo Carvalho de Melo4c47f4f2015-03-17 17:18:58 -0300325 hists__decay_entry(hists, n))) {
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300326 hists__delete_entry(hists, n);
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300327 }
328 }
329}
330
Namhyung Kim701937b2014-08-12 17:16:05 +0900331void hists__delete_entries(struct hists *hists)
332{
333 struct rb_node *next = rb_first(&hists->entries);
334 struct hist_entry *n;
335
336 while (next) {
337 n = rb_entry(next, struct hist_entry, rb_node);
338 next = rb_next(&n->rb_node);
339
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300340 hists__delete_entry(hists, n);
Namhyung Kim701937b2014-08-12 17:16:05 +0900341 }
342}
343
John Kacur3d1d07e2009-09-28 15:32:55 +0200344/*
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300345 * histogram, sorted on item, collects periods
John Kacur3d1d07e2009-09-28 15:32:55 +0200346 */
347
Namhyung Kima0b51af2012-09-11 13:34:27 +0900348static struct hist_entry *hist_entry__new(struct hist_entry *template,
349 bool sample_self)
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300350{
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900351 size_t callchain_size = 0;
352 struct hist_entry *he;
353
Namhyung Kim82aa0192014-12-22 13:44:14 +0900354 if (symbol_conf.use_callchain)
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900355 callchain_size = sizeof(struct callchain_root);
356
357 he = zalloc(sizeof(*he) + callchain_size);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300358
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200359 if (he != NULL) {
360 *he = *template;
Namhyung Kimc4b35352012-10-04 21:49:42 +0900361
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900362 if (symbol_conf.cumulate_callchain) {
363 he->stat_acc = malloc(sizeof(he->stat));
364 if (he->stat_acc == NULL) {
365 free(he);
366 return NULL;
367 }
368 memcpy(he->stat_acc, &he->stat, sizeof(he->stat));
Namhyung Kima0b51af2012-09-11 13:34:27 +0900369 if (!sample_self)
370 memset(&he->stat, 0, sizeof(he->stat));
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900371 }
372
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300373 map__get(he->ms.map);
Stephane Eranian3cf0cb12013-01-14 15:02:45 +0100374
375 if (he->branch_info) {
Namhyung Kim26353a62013-04-01 20:35:17 +0900376 /*
377 * This branch info is (a part of) allocated from
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -0300378 * sample__resolve_bstack() and will be freed after
Namhyung Kim26353a62013-04-01 20:35:17 +0900379 * 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) {
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300383 map__zput(he->ms.map);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900384 free(he->stat_acc);
Namhyung Kim26353a62013-04-01 20:35:17 +0900385 free(he);
386 return NULL;
387 }
388
389 memcpy(he->branch_info, template->branch_info,
390 sizeof(*he->branch_info));
391
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300392 map__get(he->branch_info->from.map);
393 map__get(he->branch_info->to.map);
Stephane Eranian3cf0cb12013-01-14 15:02:45 +0100394 }
395
Stephane Eranian98a3b322013-01-24 16:10:35 +0100396 if (he->mem_info) {
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300397 map__get(he->mem_info->iaddr.map);
398 map__get(he->mem_info->daddr.map);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100399 }
400
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300401 if (symbol_conf.use_callchain)
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200402 callchain_init(he->callchain);
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200403
Namhyung Kim72392832015-12-24 11:16:17 +0900404 if (he->raw_data) {
405 he->raw_data = memdup(he->raw_data, he->raw_size);
406
407 if (he->raw_data == NULL) {
408 map__put(he->ms.map);
409 if (he->branch_info) {
410 map__put(he->branch_info->from.map);
411 map__put(he->branch_info->to.map);
412 free(he->branch_info);
413 }
414 if (he->mem_info) {
415 map__put(he->mem_info->iaddr.map);
416 map__put(he->mem_info->daddr.map);
417 }
418 free(he->stat_acc);
419 free(he);
420 return NULL;
421 }
422 }
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200423 INIT_LIST_HEAD(&he->pairs.node);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300424 thread__get(he->thread);
Namhyung Kimaef810e2016-02-25 00:13:34 +0900425
426 if (!symbol_conf.report_hierarchy)
427 he->leaf = true;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300428 }
429
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200430 return he;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300431}
432
Arnaldo Carvalho de Melo7a007ca2010-07-21 09:19:41 -0300433static u8 symbol__parent_filter(const struct symbol *parent)
434{
435 if (symbol_conf.exclude_other && parent == NULL)
436 return 1 << HIST_FILTER__PARENT;
437 return 0;
438}
439
Namhyung Kim467ef102016-02-16 23:08:19 +0900440static void hist_entry__add_callchain_period(struct hist_entry *he, u64 period)
441{
442 if (!symbol_conf.use_callchain)
443 return;
444
445 he->hists->callchain_period += period;
446 if (!he->filtered)
447 he->hists->callchain_non_filtered_period += period;
448}
449
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300450static struct hist_entry *hists__findnew_entry(struct hists *hists,
451 struct hist_entry *entry,
452 struct addr_location *al,
453 bool sample_self)
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300454{
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300455 struct rb_node **p;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300456 struct rb_node *parent = NULL;
457 struct hist_entry *he;
Andi Kleen354cc402013-10-01 07:22:15 -0700458 int64_t cmp;
Namhyung Kimf1cbf782013-12-18 14:21:11 +0900459 u64 period = entry->stat.period;
460 u64 weight = entry->stat.weight;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300461
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300462 p = &hists->entries_in->rb_node;
463
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300464 while (*p != NULL) {
465 parent = *p;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300466 he = rb_entry(parent, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300467
Namhyung Kim9afcf932012-12-10 17:29:54 +0900468 /*
469 * Make sure that it receives arguments in a same order as
470 * hist_entry__collapse() so that we can use an appropriate
471 * function when searching an entry regardless which sort
472 * keys were used.
473 */
474 cmp = hist_entry__cmp(he, entry);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300475
476 if (!cmp) {
Namhyung Kim0f584742016-01-28 00:40:49 +0900477 if (sample_self) {
Namhyung Kima0b51af2012-09-11 13:34:27 +0900478 he_stat__add_period(&he->stat, period, weight);
Namhyung Kim467ef102016-02-16 23:08:19 +0900479 hist_entry__add_callchain_period(he, period);
Namhyung Kim0f584742016-01-28 00:40:49 +0900480 }
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900481 if (symbol_conf.cumulate_callchain)
482 he_stat__add_period(he->stat_acc, period, weight);
David Miller63fa4712012-03-27 03:14:18 -0400483
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900484 /*
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -0300485 * This mem info was allocated from sample__resolve_mem
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900486 * and will not be used anymore.
487 */
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300488 zfree(&entry->mem_info);
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900489
David Miller63fa4712012-03-27 03:14:18 -0400490 /* If the map of an existing hist_entry has
491 * become out-of-date due to an exec() or
492 * similar, update it. Otherwise we will
493 * mis-adjust symbol addresses when computing
494 * the history counter to increment.
495 */
496 if (he->ms.map != entry->ms.map) {
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300497 map__put(he->ms.map);
498 he->ms.map = map__get(entry->ms.map);
David Miller63fa4712012-03-27 03:14:18 -0400499 }
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300500 goto out;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300501 }
502
503 if (cmp < 0)
504 p = &(*p)->rb_left;
505 else
506 p = &(*p)->rb_right;
507 }
508
Namhyung Kima0b51af2012-09-11 13:34:27 +0900509 he = hist_entry__new(entry, sample_self);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300510 if (!he)
Namhyung Kim27a0dcb2013-05-14 11:09:02 +0900511 return NULL;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300512
Namhyung Kim0f584742016-01-28 00:40:49 +0900513 if (sample_self)
Namhyung Kim467ef102016-02-16 23:08:19 +0900514 hist_entry__add_callchain_period(he, period);
515 hists->nr_entries++;
Namhyung Kim590cd342014-12-22 13:44:09 +0900516
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300517 rb_link_node(&he->rb_node_in, parent, p);
518 rb_insert_color(&he->rb_node_in, hists->entries_in);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300519out:
Namhyung Kima0b51af2012-09-11 13:34:27 +0900520 if (sample_self)
521 he_stat__add_cpumode_period(&he->stat, al->cpumode, period);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900522 if (symbol_conf.cumulate_callchain)
523 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300524 return he;
525}
526
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300527struct hist_entry *__hists__add_entry(struct hists *hists,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100528 struct addr_location *al,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900529 struct symbol *sym_parent,
530 struct branch_info *bi,
531 struct mem_info *mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900532 struct perf_sample *sample,
Namhyung Kima0b51af2012-09-11 13:34:27 +0900533 bool sample_self)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100534{
535 struct hist_entry entry = {
536 .thread = al->thread,
Namhyung Kim4dfced32013-09-13 16:28:57 +0900537 .comm = thread__comm(al->thread),
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100538 .ms = {
539 .map = al->map,
540 .sym = al->sym,
541 },
Kan Liang0c4c4deb2015-09-04 10:45:42 -0400542 .socket = al->socket,
Don Zickus7365be52014-05-27 12:28:05 -0400543 .cpu = al->cpu,
544 .cpumode = al->cpumode,
545 .ip = al->addr,
546 .level = al->level,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900547 .stat = {
Namhyung Kimc4b35352012-10-04 21:49:42 +0900548 .nr_events = 1,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900549 .period = sample->period,
550 .weight = sample->weight,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900551 },
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100552 .parent = sym_parent,
Namhyung Kim2c86c7c2014-03-17 18:18:54 -0300553 .filtered = symbol__parent_filter(sym_parent) | al->filtered,
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300554 .hists = hists,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900555 .branch_info = bi,
556 .mem_info = mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900557 .transaction = sample->transaction,
Namhyung Kim72392832015-12-24 11:16:17 +0900558 .raw_data = sample->raw_data,
559 .raw_size = sample->raw_size,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100560 };
561
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300562 return hists__findnew_entry(hists, &entry, al, sample_self);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100563}
564
Namhyung Kim69bcb012013-10-30 09:40:34 +0900565static int
566iter_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
567 struct addr_location *al __maybe_unused)
568{
569 return 0;
570}
571
572static int
573iter_add_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
574 struct addr_location *al __maybe_unused)
575{
576 return 0;
577}
578
579static int
580iter_prepare_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
581{
582 struct perf_sample *sample = iter->sample;
583 struct mem_info *mi;
584
585 mi = sample__resolve_mem(sample, al);
586 if (mi == NULL)
587 return -ENOMEM;
588
589 iter->priv = mi;
590 return 0;
591}
592
593static int
594iter_add_single_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
595{
596 u64 cost;
597 struct mem_info *mi = iter->priv;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300598 struct hists *hists = evsel__hists(iter->evsel);
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900599 struct perf_sample *sample = iter->sample;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900600 struct hist_entry *he;
601
602 if (mi == NULL)
603 return -EINVAL;
604
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900605 cost = sample->weight;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900606 if (!cost)
607 cost = 1;
608
609 /*
610 * must pass period=weight in order to get the correct
611 * sorting from hists__collapse_resort() which is solely
612 * based on periods. We want sorting be done on nr_events * weight
613 * and this is indirectly achieved by passing period=weight here
614 * and the he_stat__add_period() function.
615 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900616 sample->period = cost;
617
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300618 he = __hists__add_entry(hists, al, iter->parent, NULL, mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900619 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900620 if (!he)
621 return -ENOMEM;
622
623 iter->he = he;
624 return 0;
625}
626
627static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900628iter_finish_mem_entry(struct hist_entry_iter *iter,
629 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900630{
631 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300632 struct hists *hists = evsel__hists(evsel);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900633 struct hist_entry *he = iter->he;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900634 int err = -EINVAL;
635
636 if (he == NULL)
637 goto out;
638
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300639 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900640
641 err = hist_entry__append_callchain(he, iter->sample);
642
643out:
644 /*
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300645 * We don't need to free iter->priv (mem_info) here since the mem info
646 * was either already freed in hists__findnew_entry() or passed to a
647 * new hist entry by hist_entry__new().
Namhyung Kim69bcb012013-10-30 09:40:34 +0900648 */
649 iter->priv = NULL;
650
651 iter->he = NULL;
652 return err;
653}
654
655static int
656iter_prepare_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
657{
658 struct branch_info *bi;
659 struct perf_sample *sample = iter->sample;
660
661 bi = sample__resolve_bstack(sample, al);
662 if (!bi)
663 return -ENOMEM;
664
665 iter->curr = 0;
666 iter->total = sample->branch_stack->nr;
667
668 iter->priv = bi;
669 return 0;
670}
671
672static int
673iter_add_single_branch_entry(struct hist_entry_iter *iter __maybe_unused,
674 struct addr_location *al __maybe_unused)
675{
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900676 /* to avoid calling callback function */
677 iter->he = NULL;
678
Namhyung Kim69bcb012013-10-30 09:40:34 +0900679 return 0;
680}
681
682static int
683iter_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
684{
685 struct branch_info *bi = iter->priv;
686 int i = iter->curr;
687
688 if (bi == NULL)
689 return 0;
690
691 if (iter->curr >= iter->total)
692 return 0;
693
694 al->map = bi[i].to.map;
695 al->sym = bi[i].to.sym;
696 al->addr = bi[i].to.addr;
697 return 1;
698}
699
700static int
701iter_add_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
702{
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900703 struct branch_info *bi;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900704 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300705 struct hists *hists = evsel__hists(evsel);
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900706 struct perf_sample *sample = iter->sample;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900707 struct hist_entry *he = NULL;
708 int i = iter->curr;
709 int err = 0;
710
711 bi = iter->priv;
712
713 if (iter->hide_unresolved && !(bi[i].from.sym && bi[i].to.sym))
714 goto out;
715
716 /*
717 * The report shows the percentage of total branches captured
718 * and not events sampled. Thus we use a pseudo period of 1.
719 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900720 sample->period = 1;
721 sample->weight = bi->flags.cycles ? bi->flags.cycles : 1;
722
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300723 he = __hists__add_entry(hists, al, iter->parent, &bi[i], NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900724 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900725 if (he == NULL)
726 return -ENOMEM;
727
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300728 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900729
730out:
731 iter->he = he;
732 iter->curr++;
733 return err;
734}
735
736static int
737iter_finish_branch_entry(struct hist_entry_iter *iter,
738 struct addr_location *al __maybe_unused)
739{
740 zfree(&iter->priv);
741 iter->he = NULL;
742
743 return iter->curr >= iter->total ? 0 : -1;
744}
745
746static int
747iter_prepare_normal_entry(struct hist_entry_iter *iter __maybe_unused,
748 struct addr_location *al __maybe_unused)
749{
750 return 0;
751}
752
753static int
754iter_add_single_normal_entry(struct hist_entry_iter *iter, struct addr_location *al)
755{
756 struct perf_evsel *evsel = iter->evsel;
757 struct perf_sample *sample = iter->sample;
758 struct hist_entry *he;
759
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300760 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900761 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900762 if (he == NULL)
763 return -ENOMEM;
764
765 iter->he = he;
766 return 0;
767}
768
769static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900770iter_finish_normal_entry(struct hist_entry_iter *iter,
771 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900772{
Namhyung Kim69bcb012013-10-30 09:40:34 +0900773 struct hist_entry *he = iter->he;
774 struct perf_evsel *evsel = iter->evsel;
775 struct perf_sample *sample = iter->sample;
776
777 if (he == NULL)
778 return 0;
779
780 iter->he = NULL;
781
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300782 hists__inc_nr_samples(evsel__hists(evsel), he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900783
784 return hist_entry__append_callchain(he, sample);
785}
786
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900787static int
Adrian Hunter96b40f32015-09-25 16:15:47 +0300788iter_prepare_cumulative_entry(struct hist_entry_iter *iter,
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900789 struct addr_location *al __maybe_unused)
790{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900791 struct hist_entry **he_cache;
792
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900793 callchain_cursor_commit(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900794
795 /*
796 * This is for detecting cycles or recursions so that they're
797 * cumulated only one time to prevent entries more than 100%
798 * overhead.
799 */
Adrian Hunter96b40f32015-09-25 16:15:47 +0300800 he_cache = malloc(sizeof(*he_cache) * (iter->max_stack + 1));
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900801 if (he_cache == NULL)
802 return -ENOMEM;
803
804 iter->priv = he_cache;
805 iter->curr = 0;
806
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900807 return 0;
808}
809
810static int
811iter_add_single_cumulative_entry(struct hist_entry_iter *iter,
812 struct addr_location *al)
813{
814 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300815 struct hists *hists = evsel__hists(evsel);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900816 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900817 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900818 struct hist_entry *he;
819 int err = 0;
820
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300821 he = __hists__add_entry(hists, al, iter->parent, NULL, NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900822 sample, true);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900823 if (he == NULL)
824 return -ENOMEM;
825
826 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900827 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900828
Namhyung Kim82aa0192014-12-22 13:44:14 +0900829 hist_entry__append_callchain(he, sample);
Namhyung Kimbe7f8552013-12-26 17:44:10 +0900830
831 /*
832 * We need to re-initialize the cursor since callchain_append()
833 * advanced the cursor to the end.
834 */
835 callchain_cursor_commit(&callchain_cursor);
836
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300837 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900838
839 return err;
840}
841
842static int
843iter_next_cumulative_entry(struct hist_entry_iter *iter,
844 struct addr_location *al)
845{
846 struct callchain_cursor_node *node;
847
848 node = callchain_cursor_current(&callchain_cursor);
849 if (node == NULL)
850 return 0;
851
Namhyung Kimc7405d82013-10-31 13:58:30 +0900852 return fill_callchain_info(al, node, iter->hide_unresolved);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900853}
854
855static int
856iter_add_next_cumulative_entry(struct hist_entry_iter *iter,
857 struct addr_location *al)
858{
859 struct perf_evsel *evsel = iter->evsel;
860 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900861 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900862 struct hist_entry *he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900863 struct hist_entry he_tmp = {
Arnaldo Carvalho de Melo5cef8972015-08-10 15:45:55 -0300864 .hists = evsel__hists(evsel),
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900865 .cpu = al->cpu,
866 .thread = al->thread,
867 .comm = thread__comm(al->thread),
868 .ip = al->addr,
869 .ms = {
870 .map = al->map,
871 .sym = al->sym,
872 },
873 .parent = iter->parent,
Namhyung Kim72392832015-12-24 11:16:17 +0900874 .raw_data = sample->raw_data,
875 .raw_size = sample->raw_size,
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900876 };
877 int i;
Namhyung Kimbe7f8552013-12-26 17:44:10 +0900878 struct callchain_cursor cursor;
879
880 callchain_cursor_snapshot(&cursor, &callchain_cursor);
881
882 callchain_cursor_advance(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900883
884 /*
885 * Check if there's duplicate entries in the callchain.
886 * It's possible that it has cycles or recursive calls.
887 */
888 for (i = 0; i < iter->curr; i++) {
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900889 if (hist_entry__cmp(he_cache[i], &he_tmp) == 0) {
890 /* to avoid calling callback function */
891 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900892 return 0;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900893 }
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900894 }
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900895
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300896 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900897 sample, false);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900898 if (he == NULL)
899 return -ENOMEM;
900
901 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900902 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900903
Namhyung Kim82aa0192014-12-22 13:44:14 +0900904 if (symbol_conf.use_callchain)
905 callchain_append(he->callchain, &cursor, sample->period);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900906 return 0;
907}
908
909static int
910iter_finish_cumulative_entry(struct hist_entry_iter *iter,
911 struct addr_location *al __maybe_unused)
912{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900913 zfree(&iter->priv);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900914 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900915
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900916 return 0;
917}
918
Namhyung Kim69bcb012013-10-30 09:40:34 +0900919const struct hist_iter_ops hist_iter_mem = {
920 .prepare_entry = iter_prepare_mem_entry,
921 .add_single_entry = iter_add_single_mem_entry,
922 .next_entry = iter_next_nop_entry,
923 .add_next_entry = iter_add_next_nop_entry,
924 .finish_entry = iter_finish_mem_entry,
925};
926
927const struct hist_iter_ops hist_iter_branch = {
928 .prepare_entry = iter_prepare_branch_entry,
929 .add_single_entry = iter_add_single_branch_entry,
930 .next_entry = iter_next_branch_entry,
931 .add_next_entry = iter_add_next_branch_entry,
932 .finish_entry = iter_finish_branch_entry,
933};
934
935const struct hist_iter_ops hist_iter_normal = {
936 .prepare_entry = iter_prepare_normal_entry,
937 .add_single_entry = iter_add_single_normal_entry,
938 .next_entry = iter_next_nop_entry,
939 .add_next_entry = iter_add_next_nop_entry,
940 .finish_entry = iter_finish_normal_entry,
941};
942
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900943const struct hist_iter_ops hist_iter_cumulative = {
944 .prepare_entry = iter_prepare_cumulative_entry,
945 .add_single_entry = iter_add_single_cumulative_entry,
946 .next_entry = iter_next_cumulative_entry,
947 .add_next_entry = iter_add_next_cumulative_entry,
948 .finish_entry = iter_finish_cumulative_entry,
949};
950
Namhyung Kim69bcb012013-10-30 09:40:34 +0900951int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900952 int max_stack_depth, void *arg)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900953{
954 int err, err2;
955
Namhyung Kim063bd932015-05-19 17:04:10 +0900956 err = sample__resolve_callchain(iter->sample, &iter->parent,
957 iter->evsel, al, max_stack_depth);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900958 if (err)
959 return err;
960
Adrian Hunter96b40f32015-09-25 16:15:47 +0300961 iter->max_stack = max_stack_depth;
962
Namhyung Kim69bcb012013-10-30 09:40:34 +0900963 err = iter->ops->prepare_entry(iter, al);
964 if (err)
965 goto out;
966
967 err = iter->ops->add_single_entry(iter, al);
968 if (err)
969 goto out;
970
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900971 if (iter->he && iter->add_entry_cb) {
972 err = iter->add_entry_cb(iter, al, true, arg);
973 if (err)
974 goto out;
975 }
976
Namhyung Kim69bcb012013-10-30 09:40:34 +0900977 while (iter->ops->next_entry(iter, al)) {
978 err = iter->ops->add_next_entry(iter, al);
979 if (err)
980 break;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900981
982 if (iter->he && iter->add_entry_cb) {
983 err = iter->add_entry_cb(iter, al, false, arg);
984 if (err)
985 goto out;
986 }
Namhyung Kim69bcb012013-10-30 09:40:34 +0900987 }
988
989out:
990 err2 = iter->ops->finish_entry(iter, al);
991 if (!err)
992 err = err2;
993
994 return err;
995}
996
John Kacur3d1d07e2009-09-28 15:32:55 +0200997int64_t
998hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
999{
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001000 struct hists *hists = left->hists;
Namhyung Kim093f0ef32014-03-03 12:07:47 +09001001 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +02001002 int64_t cmp = 0;
1003
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001004 hists__for_each_sort_list(hists, fmt) {
Namhyung Kim84b6ee82016-02-27 03:52:43 +09001005 if (perf_hpp__is_dynamic_entry(fmt) &&
1006 !perf_hpp__defined_dynamic_entry(fmt, hists))
1007 continue;
1008
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001009 cmp = fmt->cmp(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +02001010 if (cmp)
1011 break;
1012 }
1013
1014 return cmp;
1015}
1016
1017int64_t
1018hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
1019{
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001020 struct hists *hists = left->hists;
Namhyung Kim093f0ef32014-03-03 12:07:47 +09001021 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +02001022 int64_t cmp = 0;
1023
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001024 hists__for_each_sort_list(hists, fmt) {
Namhyung Kim84b6ee82016-02-27 03:52:43 +09001025 if (perf_hpp__is_dynamic_entry(fmt) &&
1026 !perf_hpp__defined_dynamic_entry(fmt, hists))
1027 continue;
1028
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001029 cmp = fmt->collapse(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +02001030 if (cmp)
1031 break;
1032 }
1033
1034 return cmp;
1035}
1036
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -03001037void hist_entry__delete(struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +02001038{
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001039 thread__zput(he->thread);
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -03001040 map__zput(he->ms.map);
1041
1042 if (he->branch_info) {
1043 map__zput(he->branch_info->from.map);
1044 map__zput(he->branch_info->to.map);
1045 zfree(&he->branch_info);
1046 }
1047
1048 if (he->mem_info) {
1049 map__zput(he->mem_info->iaddr.map);
1050 map__zput(he->mem_info->daddr.map);
1051 zfree(&he->mem_info);
1052 }
1053
Namhyung Kimf8be1c82012-09-11 13:15:07 +09001054 zfree(&he->stat_acc);
Namhyung Kimf048d542013-09-11 14:09:28 +09001055 free_srcline(he->srcline);
Andi Kleen31191a82015-08-07 15:54:24 -07001056 if (he->srcfile && he->srcfile[0])
1057 free(he->srcfile);
Namhyung Kimd1149602014-12-30 14:38:13 +09001058 free_callchain(he->callchain);
Namhyung Kim60517d22015-12-23 02:07:03 +09001059 free(he->trace_output);
Namhyung Kim72392832015-12-24 11:16:17 +09001060 free(he->raw_data);
John Kacur3d1d07e2009-09-28 15:32:55 +02001061 free(he);
1062}
1063
1064/*
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -03001065 * If this is not the last column, then we need to pad it according to the
1066 * pre-calculated max lenght for this column, otherwise don't bother adding
1067 * spaces because that would break viewing this with, for instance, 'less',
1068 * that would show tons of trailing spaces when a long C++ demangled method
1069 * names is sampled.
1070*/
1071int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
1072 struct perf_hpp_fmt *fmt, int printed)
1073{
1074 if (!list_is_last(&fmt->list, &he->hists->hpp_list->fields)) {
1075 const int width = fmt->width(fmt, hpp, hists_to_evsel(he->hists));
1076 if (printed < width) {
1077 advance_hpp(hpp, printed);
1078 printed = scnprintf(hpp->buf, hpp->size, "%-*s", width - printed, " ");
1079 }
1080 }
1081
1082 return printed;
1083}
1084
1085/*
John Kacur3d1d07e2009-09-28 15:32:55 +02001086 * collapse the histogram
1087 */
1088
Namhyung Kimaef810e2016-02-25 00:13:34 +09001089static void hists__apply_filters(struct hists *hists, struct hist_entry *he);
1090
1091static struct hist_entry *hierarchy_insert_entry(struct hists *hists,
1092 struct rb_root *root,
1093 struct hist_entry *he,
1094 struct perf_hpp_fmt *fmt)
1095{
1096 struct rb_node **p = &root->rb_node;
1097 struct rb_node *parent = NULL;
1098 struct hist_entry *iter, *new;
1099 int64_t cmp;
1100
1101 while (*p != NULL) {
1102 parent = *p;
1103 iter = rb_entry(parent, struct hist_entry, rb_node_in);
1104
1105 cmp = fmt->collapse(fmt, iter, he);
1106 if (!cmp) {
1107 he_stat__add_stat(&iter->stat, &he->stat);
1108 return iter;
1109 }
1110
1111 if (cmp < 0)
1112 p = &parent->rb_left;
1113 else
1114 p = &parent->rb_right;
1115 }
1116
1117 new = hist_entry__new(he, true);
1118 if (new == NULL)
1119 return NULL;
1120
1121 hists__apply_filters(hists, new);
1122 hists->nr_entries++;
1123
1124 /* save related format for output */
1125 new->fmt = fmt;
1126
1127 /* some fields are now passed to 'new' */
Namhyung Kime049d4a2016-02-27 03:52:46 +09001128 if (perf_hpp__is_trace_entry(fmt) || perf_hpp__is_dynamic_entry(fmt))
Namhyung Kimaef810e2016-02-25 00:13:34 +09001129 he->trace_output = NULL;
1130 else
1131 new->trace_output = NULL;
1132
1133 if (perf_hpp__is_srcline_entry(fmt))
1134 he->srcline = NULL;
1135 else
1136 new->srcline = NULL;
1137
1138 if (perf_hpp__is_srcfile_entry(fmt))
1139 he->srcfile = NULL;
1140 else
1141 new->srcfile = NULL;
1142
1143 rb_link_node(&new->rb_node_in, parent, p);
1144 rb_insert_color(&new->rb_node_in, root);
1145 return new;
1146}
1147
1148static int hists__hierarchy_insert_entry(struct hists *hists,
1149 struct rb_root *root,
1150 struct hist_entry *he)
1151{
1152 struct perf_hpp_fmt *fmt;
1153 struct hist_entry *new_he = NULL;
1154 struct hist_entry *parent = NULL;
1155 int depth = 0;
1156 int ret = 0;
1157
1158 hists__for_each_sort_list(hists, fmt) {
1159 if (!perf_hpp__is_sort_entry(fmt) &&
1160 !perf_hpp__is_dynamic_entry(fmt))
1161 continue;
1162 if (perf_hpp__should_skip(fmt, hists))
1163 continue;
1164
1165 /* insert copy of 'he' for each fmt into the hierarchy */
1166 new_he = hierarchy_insert_entry(hists, root, he, fmt);
1167 if (new_he == NULL) {
1168 ret = -1;
1169 break;
1170 }
1171
1172 root = &new_he->hroot_in;
1173 new_he->parent_he = parent;
1174 new_he->depth = depth++;
1175 parent = new_he;
1176 }
1177
1178 if (new_he) {
1179 new_he->leaf = true;
1180
1181 if (symbol_conf.use_callchain) {
1182 callchain_cursor_reset(&callchain_cursor);
1183 if (callchain_merge(&callchain_cursor,
1184 new_he->callchain,
1185 he->callchain) < 0)
1186 ret = -1;
1187 }
1188 }
1189
1190 /* 'he' is no longer used */
1191 hist_entry__delete(he);
1192
1193 /* return 0 (or -1) since it already applied filters */
1194 return ret;
1195}
1196
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001197int hists__collapse_insert_entry(struct hists *hists, struct rb_root *root,
1198 struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +02001199{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -02001200 struct rb_node **p = &root->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001201 struct rb_node *parent = NULL;
1202 struct hist_entry *iter;
1203 int64_t cmp;
1204
Namhyung Kimaef810e2016-02-25 00:13:34 +09001205 if (symbol_conf.report_hierarchy)
1206 return hists__hierarchy_insert_entry(hists, root, he);
1207
John Kacur3d1d07e2009-09-28 15:32:55 +02001208 while (*p != NULL) {
1209 parent = *p;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001210 iter = rb_entry(parent, struct hist_entry, rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001211
1212 cmp = hist_entry__collapse(iter, he);
1213
1214 if (!cmp) {
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001215 int ret = 0;
1216
Namhyung Kim139c0812012-10-04 21:49:43 +09001217 he_stat__add_stat(&iter->stat, &he->stat);
Namhyung Kimf8be1c82012-09-11 13:15:07 +09001218 if (symbol_conf.cumulate_callchain)
1219 he_stat__add_stat(iter->stat_acc, he->stat_acc);
Namhyung Kim9ec60972012-09-26 16:47:28 +09001220
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +01001221 if (symbol_conf.use_callchain) {
Namhyung Kim47260642012-05-31 14:43:26 +09001222 callchain_cursor_reset(&callchain_cursor);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001223 if (callchain_merge(&callchain_cursor,
1224 iter->callchain,
1225 he->callchain) < 0)
1226 ret = -1;
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +01001227 }
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -03001228 hist_entry__delete(he);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001229 return ret;
John Kacur3d1d07e2009-09-28 15:32:55 +02001230 }
1231
1232 if (cmp < 0)
1233 p = &(*p)->rb_left;
1234 else
1235 p = &(*p)->rb_right;
1236 }
Namhyung Kim740b97f2014-12-22 13:44:10 +09001237 hists->nr_entries++;
John Kacur3d1d07e2009-09-28 15:32:55 +02001238
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001239 rb_link_node(&he->rb_node_in, parent, p);
1240 rb_insert_color(&he->rb_node_in, root);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001241 return 1;
John Kacur3d1d07e2009-09-28 15:32:55 +02001242}
1243
Namhyung Kimfc284be2016-01-07 10:14:10 +01001244struct rb_root *hists__get_rotate_entries_in(struct hists *hists)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001245{
1246 struct rb_root *root;
1247
1248 pthread_mutex_lock(&hists->lock);
1249
1250 root = hists->entries_in;
1251 if (++hists->entries_in > &hists->entries_in_array[1])
1252 hists->entries_in = &hists->entries_in_array[0];
1253
1254 pthread_mutex_unlock(&hists->lock);
1255
1256 return root;
1257}
1258
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001259static void hists__apply_filters(struct hists *hists, struct hist_entry *he)
1260{
1261 hists__filter_entry_by_dso(hists, he);
1262 hists__filter_entry_by_thread(hists, he);
Namhyung Kime94d53e2012-03-16 17:50:51 +09001263 hists__filter_entry_by_symbol(hists, he);
Kan Liang21394d92015-09-04 10:45:44 -04001264 hists__filter_entry_by_socket(hists, he);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001265}
1266
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001267int hists__collapse_resort(struct hists *hists, struct ui_progress *prog)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001268{
1269 struct rb_root *root;
1270 struct rb_node *next;
1271 struct hist_entry *n;
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001272 int ret;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001273
Namhyung Kim3a5714f2013-05-14 11:09:01 +09001274 if (!sort__need_collapse)
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001275 return 0;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001276
Namhyung Kim740b97f2014-12-22 13:44:10 +09001277 hists->nr_entries = 0;
1278
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001279 root = hists__get_rotate_entries_in(hists);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001280
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001281 next = rb_first(root);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001282
1283 while (next) {
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001284 if (session_done())
1285 break;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001286 n = rb_entry(next, struct hist_entry, rb_node_in);
1287 next = rb_next(&n->rb_node_in);
1288
1289 rb_erase(&n->rb_node_in, root);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001290 ret = hists__collapse_insert_entry(hists, &hists->entries_collapsed, n);
1291 if (ret < 0)
1292 return -1;
1293
1294 if (ret) {
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001295 /*
1296 * If it wasn't combined with one of the entries already
1297 * collapsed, we need to apply the filters that may have
1298 * been set by, say, the hist_browser.
1299 */
1300 hists__apply_filters(hists, n);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001301 }
Namhyung Kimc1fb5652013-10-11 14:15:38 +09001302 if (prog)
1303 ui_progress__update(prog, 1);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001304 }
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001305 return 0;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001306}
1307
Namhyung Kim043ca3892014-03-03 14:18:00 +09001308static int hist_entry__sort(struct hist_entry *a, struct hist_entry *b)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001309{
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001310 struct hists *hists = a->hists;
Namhyung Kim043ca3892014-03-03 14:18:00 +09001311 struct perf_hpp_fmt *fmt;
1312 int64_t cmp = 0;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001313
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001314 hists__for_each_sort_list(hists, fmt) {
Namhyung Kim361459f2015-12-23 02:07:08 +09001315 if (perf_hpp__should_skip(fmt, a->hists))
Namhyung Kime67d49a2014-03-18 13:00:59 +09001316 continue;
1317
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001318 cmp = fmt->sort(fmt, a, b);
Namhyung Kim043ca3892014-03-03 14:18:00 +09001319 if (cmp)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001320 break;
1321 }
1322
Namhyung Kim043ca3892014-03-03 14:18:00 +09001323 return cmp;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001324}
1325
Namhyung Kim9283ba92014-04-24 16:37:26 +09001326static void hists__reset_filter_stats(struct hists *hists)
1327{
1328 hists->nr_non_filtered_entries = 0;
1329 hists->stats.total_non_filtered_period = 0;
1330}
1331
1332void hists__reset_stats(struct hists *hists)
1333{
1334 hists->nr_entries = 0;
1335 hists->stats.total_period = 0;
1336
1337 hists__reset_filter_stats(hists);
1338}
1339
1340static void hists__inc_filter_stats(struct hists *hists, struct hist_entry *h)
1341{
1342 hists->nr_non_filtered_entries++;
1343 hists->stats.total_non_filtered_period += h->stat.period;
1344}
1345
1346void hists__inc_stats(struct hists *hists, struct hist_entry *h)
1347{
1348 if (!h->filtered)
1349 hists__inc_filter_stats(hists, h);
1350
1351 hists->nr_entries++;
1352 hists->stats.total_period += h->stat.period;
1353}
1354
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001355static void hierarchy_insert_output_entry(struct rb_root *root,
1356 struct hist_entry *he)
1357{
1358 struct rb_node **p = &root->rb_node;
1359 struct rb_node *parent = NULL;
1360 struct hist_entry *iter;
1361
1362 while (*p != NULL) {
1363 parent = *p;
1364 iter = rb_entry(parent, struct hist_entry, rb_node);
1365
1366 if (hist_entry__sort(he, iter) > 0)
1367 p = &parent->rb_left;
1368 else
1369 p = &parent->rb_right;
1370 }
1371
1372 rb_link_node(&he->rb_node, parent, p);
1373 rb_insert_color(&he->rb_node, root);
Namhyung Kimabab5e72016-02-27 03:52:47 +09001374
1375 /* update column width of dynamic entry */
1376 if (perf_hpp__is_dynamic_entry(he->fmt))
1377 he->fmt->sort(he->fmt, he, NULL);
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001378}
1379
1380static void hists__hierarchy_output_resort(struct hists *hists,
1381 struct ui_progress *prog,
1382 struct rb_root *root_in,
1383 struct rb_root *root_out,
1384 u64 min_callchain_hits,
1385 bool use_callchain)
1386{
1387 struct rb_node *node;
1388 struct hist_entry *he;
1389
1390 *root_out = RB_ROOT;
1391 node = rb_first(root_in);
1392
1393 while (node) {
1394 he = rb_entry(node, struct hist_entry, rb_node_in);
1395 node = rb_next(node);
1396
1397 hierarchy_insert_output_entry(root_out, he);
1398
1399 if (prog)
1400 ui_progress__update(prog, 1);
1401
1402 if (!he->leaf) {
1403 hists__hierarchy_output_resort(hists, prog,
1404 &he->hroot_in,
1405 &he->hroot_out,
1406 min_callchain_hits,
1407 use_callchain);
1408 hists->nr_entries++;
1409 if (!he->filtered) {
1410 hists->nr_non_filtered_entries++;
1411 hists__calc_col_len(hists, he);
1412 }
1413
1414 continue;
1415 }
1416
1417 /* only update stat for leaf entries to avoid duplication */
1418 hists__inc_stats(hists, he);
1419 if (!he->filtered)
1420 hists__calc_col_len(hists, he);
1421
1422 if (!use_callchain)
1423 continue;
1424
1425 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1426 u64 total = he->stat.period;
1427
1428 if (symbol_conf.cumulate_callchain)
1429 total = he->stat_acc->period;
1430
1431 min_callchain_hits = total * (callchain_param.min_percent / 100);
1432 }
1433
1434 callchain_param.sort(&he->sorted_chain, he->callchain,
1435 min_callchain_hits, &callchain_param);
1436 }
1437}
1438
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001439static void __hists__insert_output_entry(struct rb_root *entries,
1440 struct hist_entry *he,
Kan Liangf9db0d02015-08-11 06:30:48 -04001441 u64 min_callchain_hits,
1442 bool use_callchain)
John Kacur3d1d07e2009-09-28 15:32:55 +02001443{
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001444 struct rb_node **p = &entries->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001445 struct rb_node *parent = NULL;
1446 struct hist_entry *iter;
Namhyung Kimabab5e72016-02-27 03:52:47 +09001447 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +02001448
Namhyung Kim744070e2016-01-28 00:40:48 +09001449 if (use_callchain) {
1450 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1451 u64 total = he->stat.period;
1452
1453 if (symbol_conf.cumulate_callchain)
1454 total = he->stat_acc->period;
1455
1456 min_callchain_hits = total * (callchain_param.min_percent / 100);
1457 }
Arnaldo Carvalho de Melob9fb9302010-04-02 09:50:42 -03001458 callchain_param.sort(&he->sorted_chain, he->callchain,
John Kacur3d1d07e2009-09-28 15:32:55 +02001459 min_callchain_hits, &callchain_param);
Namhyung Kim744070e2016-01-28 00:40:48 +09001460 }
John Kacur3d1d07e2009-09-28 15:32:55 +02001461
1462 while (*p != NULL) {
1463 parent = *p;
1464 iter = rb_entry(parent, struct hist_entry, rb_node);
1465
Namhyung Kim043ca3892014-03-03 14:18:00 +09001466 if (hist_entry__sort(he, iter) > 0)
John Kacur3d1d07e2009-09-28 15:32:55 +02001467 p = &(*p)->rb_left;
1468 else
1469 p = &(*p)->rb_right;
1470 }
1471
1472 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001473 rb_insert_color(&he->rb_node, entries);
Namhyung Kimabab5e72016-02-27 03:52:47 +09001474
1475 perf_hpp_list__for_each_sort_list(&perf_hpp_list, fmt) {
1476 if (perf_hpp__is_dynamic_entry(fmt) &&
1477 perf_hpp__defined_dynamic_entry(fmt, he->hists))
1478 fmt->sort(fmt, he, NULL); /* update column width */
1479 }
John Kacur3d1d07e2009-09-28 15:32:55 +02001480}
1481
Jiri Olsa01441af2016-01-18 10:23:59 +01001482static void output_resort(struct hists *hists, struct ui_progress *prog,
1483 bool use_callchain)
John Kacur3d1d07e2009-09-28 15:32:55 +02001484{
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001485 struct rb_root *root;
John Kacur3d1d07e2009-09-28 15:32:55 +02001486 struct rb_node *next;
1487 struct hist_entry *n;
Namhyung Kim467ef102016-02-16 23:08:19 +09001488 u64 callchain_total;
John Kacur3d1d07e2009-09-28 15:32:55 +02001489 u64 min_callchain_hits;
1490
Namhyung Kim467ef102016-02-16 23:08:19 +09001491 callchain_total = hists->callchain_period;
1492 if (symbol_conf.filter_relative)
1493 callchain_total = hists->callchain_non_filtered_period;
1494
1495 min_callchain_hits = callchain_total * (callchain_param.min_percent / 100);
John Kacur3d1d07e2009-09-28 15:32:55 +02001496
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001497 hists__reset_stats(hists);
1498 hists__reset_col_len(hists);
1499
1500 if (symbol_conf.report_hierarchy) {
1501 return hists__hierarchy_output_resort(hists, prog,
1502 &hists->entries_collapsed,
1503 &hists->entries,
1504 min_callchain_hits,
1505 use_callchain);
1506 }
1507
Namhyung Kim3a5714f2013-05-14 11:09:01 +09001508 if (sort__need_collapse)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001509 root = &hists->entries_collapsed;
1510 else
1511 root = hists->entries_in;
1512
1513 next = rb_first(root);
1514 hists->entries = RB_ROOT;
John Kacur3d1d07e2009-09-28 15:32:55 +02001515
1516 while (next) {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001517 n = rb_entry(next, struct hist_entry, rb_node_in);
1518 next = rb_next(&n->rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001519
Kan Liangf9db0d02015-08-11 06:30:48 -04001520 __hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain);
Namhyung Kim62638352014-04-24 16:21:46 +09001521 hists__inc_stats(hists, n);
Namhyung Kimae993ef2014-04-24 16:25:19 +09001522
1523 if (!n->filtered)
1524 hists__calc_col_len(hists, n);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001525
1526 if (prog)
1527 ui_progress__update(prog, 1);
John Kacur3d1d07e2009-09-28 15:32:55 +02001528 }
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001529}
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -02001530
Jiri Olsa452ce032016-01-18 10:24:00 +01001531void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog)
Jiri Olsa01441af2016-01-18 10:23:59 +01001532{
Jiri Olsa01441af2016-01-18 10:23:59 +01001533 bool use_callchain;
1534
1535 if (evsel && symbol_conf.use_callchain && !symbol_conf.show_ref_callgraph)
1536 use_callchain = evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN;
1537 else
1538 use_callchain = symbol_conf.use_callchain;
1539
Jiri Olsa452ce032016-01-18 10:24:00 +01001540 output_resort(evsel__hists(evsel), prog, use_callchain);
1541}
1542
1543void hists__output_resort(struct hists *hists, struct ui_progress *prog)
1544{
1545 output_resort(hists, prog, symbol_conf.use_callchain);
Jiri Olsa01441af2016-01-18 10:23:59 +01001546}
1547
Namhyung Kim8c018722016-02-25 00:13:36 +09001548static bool can_goto_child(struct hist_entry *he, enum hierarchy_move_dir hmd)
1549{
1550 if (he->leaf || hmd == HMD_FORCE_SIBLING)
1551 return false;
1552
1553 if (he->unfolded || hmd == HMD_FORCE_CHILD)
1554 return true;
1555
1556 return false;
1557}
1558
1559struct rb_node *rb_hierarchy_last(struct rb_node *node)
1560{
1561 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1562
1563 while (can_goto_child(he, HMD_NORMAL)) {
1564 node = rb_last(&he->hroot_out);
1565 he = rb_entry(node, struct hist_entry, rb_node);
1566 }
1567 return node;
1568}
1569
1570struct rb_node *__rb_hierarchy_next(struct rb_node *node, enum hierarchy_move_dir hmd)
1571{
1572 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1573
1574 if (can_goto_child(he, hmd))
1575 node = rb_first(&he->hroot_out);
1576 else
1577 node = rb_next(node);
1578
1579 while (node == NULL) {
1580 he = he->parent_he;
1581 if (he == NULL)
1582 break;
1583
1584 node = rb_next(&he->rb_node);
1585 }
1586 return node;
1587}
1588
1589struct rb_node *rb_hierarchy_prev(struct rb_node *node)
1590{
1591 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1592
1593 node = rb_prev(node);
1594 if (node)
1595 return rb_hierarchy_last(node);
1596
1597 he = he->parent_he;
1598 if (he == NULL)
1599 return NULL;
1600
1601 return &he->rb_node;
1602}
1603
Namhyung Kima7b58952016-02-26 21:13:16 +09001604bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit)
1605{
1606 struct rb_node *node;
1607 struct hist_entry *child;
1608 float percent;
1609
1610 if (he->leaf)
1611 return false;
1612
1613 node = rb_first(&he->hroot_out);
1614 child = rb_entry(node, struct hist_entry, rb_node);
1615
1616 while (node && child->filtered) {
1617 node = rb_next(node);
1618 child = rb_entry(node, struct hist_entry, rb_node);
1619 }
1620
1621 if (node)
1622 percent = hist_entry__get_percent_limit(child);
1623 else
1624 percent = 0;
1625
1626 return node && percent >= limit;
1627}
1628
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001629static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h,
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001630 enum hist_filter filter)
1631{
1632 h->filtered &= ~(1 << filter);
Namhyung Kim155e9af2016-02-25 00:13:38 +09001633
1634 if (symbol_conf.report_hierarchy) {
1635 struct hist_entry *parent = h->parent_he;
1636
1637 while (parent) {
1638 he_stat__add_stat(&parent->stat, &h->stat);
1639
1640 parent->filtered &= ~(1 << filter);
1641
1642 if (parent->filtered)
1643 goto next;
1644
1645 /* force fold unfiltered entry for simplicity */
1646 parent->unfolded = false;
Namhyung Kim79dded82016-02-26 21:13:19 +09001647 parent->has_no_entry = false;
Namhyung Kim155e9af2016-02-25 00:13:38 +09001648 parent->row_offset = 0;
1649 parent->nr_rows = 0;
1650next:
1651 parent = parent->parent_he;
1652 }
1653 }
1654
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001655 if (h->filtered)
1656 return;
1657
Namhyung Kim87e90f42014-04-24 16:44:16 +09001658 /* force fold unfiltered entry for simplicity */
Namhyung Kim3698dab2015-05-05 23:55:46 +09001659 h->unfolded = false;
Namhyung Kim79dded82016-02-26 21:13:19 +09001660 h->has_no_entry = false;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -03001661 h->row_offset = 0;
He Kuanga8cd1f42015-03-11 20:36:03 +08001662 h->nr_rows = 0;
Namhyung Kim9283ba92014-04-24 16:37:26 +09001663
Namhyung Kim1ab1fa52013-12-26 15:11:52 +09001664 hists->stats.nr_non_filtered_samples += h->stat.nr_events;
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001665
Namhyung Kim9283ba92014-04-24 16:37:26 +09001666 hists__inc_filter_stats(hists, h);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001667 hists__calc_col_len(hists, h);
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001668}
1669
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001670
1671static bool hists__filter_entry_by_dso(struct hists *hists,
1672 struct hist_entry *he)
1673{
1674 if (hists->dso_filter != NULL &&
1675 (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) {
1676 he->filtered |= (1 << HIST_FILTER__DSO);
1677 return true;
1678 }
1679
1680 return false;
1681}
1682
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001683static bool hists__filter_entry_by_thread(struct hists *hists,
1684 struct hist_entry *he)
1685{
1686 if (hists->thread_filter != NULL &&
1687 he->thread != hists->thread_filter) {
1688 he->filtered |= (1 << HIST_FILTER__THREAD);
1689 return true;
1690 }
1691
1692 return false;
1693}
1694
Namhyung Kime94d53e2012-03-16 17:50:51 +09001695static bool hists__filter_entry_by_symbol(struct hists *hists,
1696 struct hist_entry *he)
1697{
1698 if (hists->symbol_filter_str != NULL &&
1699 (!he->ms.sym || strstr(he->ms.sym->name,
1700 hists->symbol_filter_str) == NULL)) {
1701 he->filtered |= (1 << HIST_FILTER__SYMBOL);
1702 return true;
1703 }
1704
1705 return false;
1706}
1707
Kan Liang21394d92015-09-04 10:45:44 -04001708static bool hists__filter_entry_by_socket(struct hists *hists,
1709 struct hist_entry *he)
1710{
1711 if ((hists->socket_filter > -1) &&
1712 (he->socket != hists->socket_filter)) {
1713 he->filtered |= (1 << HIST_FILTER__SOCKET);
1714 return true;
1715 }
1716
1717 return false;
1718}
1719
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001720typedef bool (*filter_fn_t)(struct hists *hists, struct hist_entry *he);
1721
1722static void hists__filter_by_type(struct hists *hists, int type, filter_fn_t filter)
Kan Liang84734b02015-09-04 10:45:45 -04001723{
1724 struct rb_node *nd;
1725
1726 hists->stats.nr_non_filtered_samples = 0;
1727
1728 hists__reset_filter_stats(hists);
1729 hists__reset_col_len(hists);
1730
1731 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
1732 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1733
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001734 if (filter(hists, h))
Kan Liang84734b02015-09-04 10:45:45 -04001735 continue;
1736
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001737 hists__remove_entry_filter(hists, h, type);
Kan Liang84734b02015-09-04 10:45:45 -04001738 }
1739}
1740
Namhyung Kim70642852016-02-25 00:13:39 +09001741static void resort_filtered_entry(struct rb_root *root, struct hist_entry *he)
1742{
1743 struct rb_node **p = &root->rb_node;
1744 struct rb_node *parent = NULL;
1745 struct hist_entry *iter;
1746 struct rb_root new_root = RB_ROOT;
1747 struct rb_node *nd;
1748
1749 while (*p != NULL) {
1750 parent = *p;
1751 iter = rb_entry(parent, struct hist_entry, rb_node);
1752
1753 if (hist_entry__sort(he, iter) > 0)
1754 p = &(*p)->rb_left;
1755 else
1756 p = &(*p)->rb_right;
1757 }
1758
1759 rb_link_node(&he->rb_node, parent, p);
1760 rb_insert_color(&he->rb_node, root);
1761
1762 if (he->leaf || he->filtered)
1763 return;
1764
1765 nd = rb_first(&he->hroot_out);
1766 while (nd) {
1767 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1768
1769 nd = rb_next(nd);
1770 rb_erase(&h->rb_node, &he->hroot_out);
1771
1772 resort_filtered_entry(&new_root, h);
1773 }
1774
1775 he->hroot_out = new_root;
1776}
1777
Namhyung Kim155e9af2016-02-25 00:13:38 +09001778static void hists__filter_hierarchy(struct hists *hists, int type, const void *arg)
1779{
1780 struct rb_node *nd;
Namhyung Kim70642852016-02-25 00:13:39 +09001781 struct rb_root new_root = RB_ROOT;
Namhyung Kim155e9af2016-02-25 00:13:38 +09001782
1783 hists->stats.nr_non_filtered_samples = 0;
1784
1785 hists__reset_filter_stats(hists);
1786 hists__reset_col_len(hists);
1787
1788 nd = rb_first(&hists->entries);
1789 while (nd) {
1790 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1791 int ret;
1792
1793 ret = hist_entry__filter(h, type, arg);
1794
1795 /*
1796 * case 1. non-matching type
1797 * zero out the period, set filter marker and move to child
1798 */
1799 if (ret < 0) {
1800 memset(&h->stat, 0, sizeof(h->stat));
1801 h->filtered |= (1 << type);
1802
1803 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_CHILD);
1804 }
1805 /*
1806 * case 2. matched type (filter out)
1807 * set filter marker and move to next
1808 */
1809 else if (ret == 1) {
1810 h->filtered |= (1 << type);
1811
1812 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_SIBLING);
1813 }
1814 /*
1815 * case 3. ok (not filtered)
1816 * add period to hists and parents, erase the filter marker
1817 * and move to next sibling
1818 */
1819 else {
1820 hists__remove_entry_filter(hists, h, type);
1821
1822 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_SIBLING);
1823 }
1824 }
Namhyung Kim70642852016-02-25 00:13:39 +09001825
1826 /*
1827 * resort output after applying a new filter since filter in a lower
1828 * hierarchy can change periods in a upper hierarchy.
1829 */
1830 nd = rb_first(&hists->entries);
1831 while (nd) {
1832 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1833
1834 nd = rb_next(nd);
1835 rb_erase(&h->rb_node, &hists->entries);
1836
1837 resort_filtered_entry(&new_root, h);
1838 }
1839
1840 hists->entries = new_root;
Namhyung Kim155e9af2016-02-25 00:13:38 +09001841}
1842
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001843void hists__filter_by_thread(struct hists *hists)
1844{
Namhyung Kim155e9af2016-02-25 00:13:38 +09001845 if (symbol_conf.report_hierarchy)
1846 hists__filter_hierarchy(hists, HIST_FILTER__THREAD,
1847 hists->thread_filter);
1848 else
1849 hists__filter_by_type(hists, HIST_FILTER__THREAD,
1850 hists__filter_entry_by_thread);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001851}
1852
1853void hists__filter_by_dso(struct hists *hists)
1854{
Namhyung Kim155e9af2016-02-25 00:13:38 +09001855 if (symbol_conf.report_hierarchy)
1856 hists__filter_hierarchy(hists, HIST_FILTER__DSO,
1857 hists->dso_filter);
1858 else
1859 hists__filter_by_type(hists, HIST_FILTER__DSO,
1860 hists__filter_entry_by_dso);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001861}
1862
1863void hists__filter_by_symbol(struct hists *hists)
1864{
Namhyung Kim155e9af2016-02-25 00:13:38 +09001865 if (symbol_conf.report_hierarchy)
1866 hists__filter_hierarchy(hists, HIST_FILTER__SYMBOL,
1867 hists->symbol_filter_str);
1868 else
1869 hists__filter_by_type(hists, HIST_FILTER__SYMBOL,
1870 hists__filter_entry_by_symbol);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001871}
1872
1873void hists__filter_by_socket(struct hists *hists)
1874{
Namhyung Kim155e9af2016-02-25 00:13:38 +09001875 if (symbol_conf.report_hierarchy)
1876 hists__filter_hierarchy(hists, HIST_FILTER__SOCKET,
1877 &hists->socket_filter);
1878 else
1879 hists__filter_by_type(hists, HIST_FILTER__SOCKET,
1880 hists__filter_entry_by_socket);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001881}
1882
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03001883void events_stats__inc(struct events_stats *stats, u32 type)
1884{
1885 ++stats->nr_events[0];
1886 ++stats->nr_events[type];
1887}
1888
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001889void hists__inc_nr_events(struct hists *hists, u32 type)
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03001890{
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03001891 events_stats__inc(&hists->stats, type);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03001892}
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001893
Namhyung Kim1844dbc2014-05-28 14:12:18 +09001894void hists__inc_nr_samples(struct hists *hists, bool filtered)
1895{
1896 events_stats__inc(&hists->stats, PERF_RECORD_SAMPLE);
1897 if (!filtered)
1898 hists->stats.nr_non_filtered_samples++;
1899}
1900
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001901static struct hist_entry *hists__add_dummy_entry(struct hists *hists,
1902 struct hist_entry *pair)
1903{
Namhyung Kimce74f602012-12-10 17:29:55 +09001904 struct rb_root *root;
1905 struct rb_node **p;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001906 struct rb_node *parent = NULL;
1907 struct hist_entry *he;
Andi Kleen354cc402013-10-01 07:22:15 -07001908 int64_t cmp;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001909
Namhyung Kimce74f602012-12-10 17:29:55 +09001910 if (sort__need_collapse)
1911 root = &hists->entries_collapsed;
1912 else
1913 root = hists->entries_in;
1914
1915 p = &root->rb_node;
1916
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001917 while (*p != NULL) {
1918 parent = *p;
Namhyung Kimce74f602012-12-10 17:29:55 +09001919 he = rb_entry(parent, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001920
Namhyung Kimce74f602012-12-10 17:29:55 +09001921 cmp = hist_entry__collapse(he, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001922
1923 if (!cmp)
1924 goto out;
1925
1926 if (cmp < 0)
1927 p = &(*p)->rb_left;
1928 else
1929 p = &(*p)->rb_right;
1930 }
1931
Namhyung Kima0b51af2012-09-11 13:34:27 +09001932 he = hist_entry__new(pair, true);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001933 if (he) {
Arnaldo Carvalho de Melo30193d72012-11-12 13:20:03 -03001934 memset(&he->stat, 0, sizeof(he->stat));
1935 he->hists = hists;
Namhyung Kimce74f602012-12-10 17:29:55 +09001936 rb_link_node(&he->rb_node_in, parent, p);
1937 rb_insert_color(&he->rb_node_in, root);
Namhyung Kim62638352014-04-24 16:21:46 +09001938 hists__inc_stats(hists, he);
Jiri Olsae0af43d2012-12-01 21:18:20 +01001939 he->dummy = true;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001940 }
1941out:
1942 return he;
1943}
1944
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001945static struct hist_entry *hists__find_entry(struct hists *hists,
1946 struct hist_entry *he)
1947{
Namhyung Kimce74f602012-12-10 17:29:55 +09001948 struct rb_node *n;
1949
1950 if (sort__need_collapse)
1951 n = hists->entries_collapsed.rb_node;
1952 else
1953 n = hists->entries_in->rb_node;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001954
1955 while (n) {
Namhyung Kimce74f602012-12-10 17:29:55 +09001956 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node_in);
1957 int64_t cmp = hist_entry__collapse(iter, he);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001958
1959 if (cmp < 0)
1960 n = n->rb_left;
1961 else if (cmp > 0)
1962 n = n->rb_right;
1963 else
1964 return iter;
1965 }
1966
1967 return NULL;
1968}
1969
1970/*
1971 * Look for pairs to link to the leader buckets (hist_entries):
1972 */
1973void hists__match(struct hists *leader, struct hists *other)
1974{
Namhyung Kimce74f602012-12-10 17:29:55 +09001975 struct rb_root *root;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001976 struct rb_node *nd;
1977 struct hist_entry *pos, *pair;
1978
Namhyung Kimce74f602012-12-10 17:29:55 +09001979 if (sort__need_collapse)
1980 root = &leader->entries_collapsed;
1981 else
1982 root = leader->entries_in;
1983
1984 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
1985 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001986 pair = hists__find_entry(other, pos);
1987
1988 if (pair)
Namhyung Kim5fa90412012-11-29 15:38:34 +09001989 hist_entry__add_pair(pair, pos);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001990 }
1991}
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001992
1993/*
1994 * Look for entries in the other hists that are not present in the leader, if
1995 * we find them, just add a dummy entry on the leader hists, with period=0,
1996 * nr_events=0, to serve as the list header.
1997 */
1998int hists__link(struct hists *leader, struct hists *other)
1999{
Namhyung Kimce74f602012-12-10 17:29:55 +09002000 struct rb_root *root;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002001 struct rb_node *nd;
2002 struct hist_entry *pos, *pair;
2003
Namhyung Kimce74f602012-12-10 17:29:55 +09002004 if (sort__need_collapse)
2005 root = &other->entries_collapsed;
2006 else
2007 root = other->entries_in;
2008
2009 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
2010 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002011
2012 if (!hist_entry__has_pairs(pos)) {
2013 pair = hists__add_dummy_entry(leader, pos);
2014 if (pair == NULL)
2015 return -1;
Namhyung Kim5fa90412012-11-29 15:38:34 +09002016 hist_entry__add_pair(pos, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002017 }
2018 }
2019
2020 return 0;
2021}
Namhyung Kimf2148332014-01-14 11:52:48 +09002022
Andi Kleen578499982015-07-18 08:24:49 -07002023void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
2024 struct perf_sample *sample, bool nonany_branch_mode)
2025{
2026 struct branch_info *bi;
2027
2028 /* If we have branch cycles always annotate them. */
2029 if (bs && bs->nr && bs->entries[0].flags.cycles) {
2030 int i;
2031
2032 bi = sample__resolve_bstack(sample, al);
2033 if (bi) {
2034 struct addr_map_symbol *prev = NULL;
2035
2036 /*
2037 * Ignore errors, still want to process the
2038 * other entries.
2039 *
2040 * For non standard branch modes always
2041 * force no IPC (prev == NULL)
2042 *
2043 * Note that perf stores branches reversed from
2044 * program order!
2045 */
2046 for (i = bs->nr - 1; i >= 0; i--) {
2047 addr_map_symbol__account_cycles(&bi[i].from,
2048 nonany_branch_mode ? NULL : prev,
2049 bi[i].flags.cycles);
2050 prev = &bi[i].to;
2051 }
2052 free(bi);
2053 }
2054 }
2055}
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03002056
2057size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp)
2058{
2059 struct perf_evsel *pos;
2060 size_t ret = 0;
2061
2062 evlist__for_each(evlist, pos) {
2063 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
2064 ret += events_stats__fprintf(&evsel__hists(pos)->stats, fp);
2065 }
2066
2067 return ret;
2068}
2069
2070
Namhyung Kimf2148332014-01-14 11:52:48 +09002071u64 hists__total_period(struct hists *hists)
2072{
2073 return symbol_conf.filter_relative ? hists->stats.total_non_filtered_period :
2074 hists->stats.total_period;
2075}
Namhyung Kim33db4562014-02-07 12:06:07 +09002076
2077int parse_filter_percentage(const struct option *opt __maybe_unused,
2078 const char *arg, int unset __maybe_unused)
2079{
2080 if (!strcmp(arg, "relative"))
2081 symbol_conf.filter_relative = true;
2082 else if (!strcmp(arg, "absolute"))
2083 symbol_conf.filter_relative = false;
2084 else
2085 return -1;
2086
2087 return 0;
2088}
Namhyung Kim0b93da12014-01-14 12:02:15 +09002089
2090int perf_hist_config(const char *var, const char *value)
2091{
2092 if (!strcmp(var, "hist.percentage"))
2093 return parse_filter_percentage(NULL, value, 0);
2094
2095 return 0;
2096}
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002097
Jiri Olsa5b658552016-01-18 10:24:22 +01002098int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list)
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002099{
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002100 memset(hists, 0, sizeof(*hists));
2101 hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT;
2102 hists->entries_in = &hists->entries_in_array[0];
2103 hists->entries_collapsed = RB_ROOT;
2104 hists->entries = RB_ROOT;
2105 pthread_mutex_init(&hists->lock, NULL);
Kan Liang21394d92015-09-04 10:45:44 -04002106 hists->socket_filter = -1;
Jiri Olsa5b658552016-01-18 10:24:22 +01002107 hists->hpp_list = hpp_list;
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002108 return 0;
2109}
2110
Namhyung Kim61fa0e92015-12-10 16:53:20 +09002111static void hists__delete_remaining_entries(struct rb_root *root)
2112{
2113 struct rb_node *node;
2114 struct hist_entry *he;
2115
2116 while (!RB_EMPTY_ROOT(root)) {
2117 node = rb_first(root);
2118 rb_erase(node, root);
2119
2120 he = rb_entry(node, struct hist_entry, rb_node_in);
2121 hist_entry__delete(he);
2122 }
2123}
2124
2125static void hists__delete_all_entries(struct hists *hists)
2126{
2127 hists__delete_entries(hists);
2128 hists__delete_remaining_entries(&hists->entries_in_array[0]);
2129 hists__delete_remaining_entries(&hists->entries_in_array[1]);
2130 hists__delete_remaining_entries(&hists->entries_collapsed);
2131}
2132
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002133static void hists_evsel__exit(struct perf_evsel *evsel)
2134{
2135 struct hists *hists = evsel__hists(evsel);
2136
Namhyung Kim61fa0e92015-12-10 16:53:20 +09002137 hists__delete_all_entries(hists);
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002138}
2139
Namhyung Kimfc284be2016-01-07 10:14:10 +01002140static int hists_evsel__init(struct perf_evsel *evsel)
2141{
2142 struct hists *hists = evsel__hists(evsel);
2143
Jiri Olsa5b658552016-01-18 10:24:22 +01002144 __hists__init(hists, &perf_hpp_list);
Namhyung Kimfc284be2016-01-07 10:14:10 +01002145 return 0;
2146}
2147
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002148/*
2149 * XXX We probably need a hists_evsel__exit() to free the hist_entries
2150 * stored in the rbtree...
2151 */
2152
2153int hists__init(void)
2154{
2155 int err = perf_evsel__object_config(sizeof(struct hists_evsel),
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002156 hists_evsel__init,
2157 hists_evsel__exit);
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002158 if (err)
2159 fputs("FATAL ERROR: Couldn't setup hists class\n", stderr);
2160
2161 return err;
2162}
Jiri Olsa94b3dc32016-01-18 10:24:13 +01002163
2164void perf_hpp_list__init(struct perf_hpp_list *list)
2165{
2166 INIT_LIST_HEAD(&list->fields);
2167 INIT_LIST_HEAD(&list->sorts);
2168}