blob: b762ecc31505456825c3683bb917972ac14a2866 [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());
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300182}
183
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900184void hists__output_recalc_col_len(struct hists *hists, int max_rows)
185{
186 struct rb_node *next = rb_first(&hists->entries);
187 struct hist_entry *n;
188 int row = 0;
189
190 hists__reset_col_len(hists);
191
192 while (next && row++ < max_rows) {
193 n = rb_entry(next, struct hist_entry, rb_node);
194 if (!n->filtered)
195 hists__calc_col_len(hists, n);
196 next = rb_next(&n->rb_node);
197 }
198}
199
Namhyung Kimf39056f2014-01-14 14:25:37 +0900200static void he_stat__add_cpumode_period(struct he_stat *he_stat,
201 unsigned int cpumode, u64 period)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800202{
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300203 switch (cpumode) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800204 case PERF_RECORD_MISC_KERNEL:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900205 he_stat->period_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800206 break;
207 case PERF_RECORD_MISC_USER:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900208 he_stat->period_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800209 break;
210 case PERF_RECORD_MISC_GUEST_KERNEL:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900211 he_stat->period_guest_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800212 break;
213 case PERF_RECORD_MISC_GUEST_USER:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900214 he_stat->period_guest_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800215 break;
216 default:
217 break;
218 }
219}
220
Andi Kleen05484292013-01-24 16:10:29 +0100221static void he_stat__add_period(struct he_stat *he_stat, u64 period,
222 u64 weight)
Namhyung Kim139c0812012-10-04 21:49:43 +0900223{
Stephane Eranian98a3b322013-01-24 16:10:35 +0100224
Namhyung Kim139c0812012-10-04 21:49:43 +0900225 he_stat->period += period;
Andi Kleen05484292013-01-24 16:10:29 +0100226 he_stat->weight += weight;
Namhyung Kim139c0812012-10-04 21:49:43 +0900227 he_stat->nr_events += 1;
228}
229
230static void he_stat__add_stat(struct he_stat *dest, struct he_stat *src)
231{
232 dest->period += src->period;
233 dest->period_sys += src->period_sys;
234 dest->period_us += src->period_us;
235 dest->period_guest_sys += src->period_guest_sys;
236 dest->period_guest_us += src->period_guest_us;
237 dest->nr_events += src->nr_events;
Andi Kleen05484292013-01-24 16:10:29 +0100238 dest->weight += src->weight;
Namhyung Kim139c0812012-10-04 21:49:43 +0900239}
240
Namhyung Kimf39056f2014-01-14 14:25:37 +0900241static void he_stat__decay(struct he_stat *he_stat)
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300242{
Namhyung Kimf39056f2014-01-14 14:25:37 +0900243 he_stat->period = (he_stat->period * 7) / 8;
244 he_stat->nr_events = (he_stat->nr_events * 7) / 8;
Andi Kleen05484292013-01-24 16:10:29 +0100245 /* XXX need decay for weight too? */
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300246}
247
248static bool hists__decay_entry(struct hists *hists, struct hist_entry *he)
249{
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900250 u64 prev_period = he->stat.period;
Namhyung Kim3186b682014-04-22 13:44:23 +0900251 u64 diff;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200252
253 if (prev_period == 0)
Arnaldo Carvalho de Melodf71d952011-10-13 08:01:33 -0300254 return true;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200255
Namhyung Kimf39056f2014-01-14 14:25:37 +0900256 he_stat__decay(&he->stat);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900257 if (symbol_conf.cumulate_callchain)
258 he_stat__decay(he->stat_acc);
Namhyung Kim42b276a2016-01-05 12:06:00 +0900259 decay_callchain(he->callchain);
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200260
Namhyung Kim3186b682014-04-22 13:44:23 +0900261 diff = prev_period - he->stat.period;
262
263 hists->stats.total_period -= diff;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200264 if (!he->filtered)
Namhyung Kim3186b682014-04-22 13:44:23 +0900265 hists->stats.total_non_filtered_period -= diff;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200266
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900267 return he->stat.period == 0;
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300268}
269
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300270static void hists__delete_entry(struct hists *hists, struct hist_entry *he)
271{
272 rb_erase(&he->rb_node, &hists->entries);
273
274 if (sort__need_collapse)
275 rb_erase(&he->rb_node_in, &hists->entries_collapsed);
Namhyung Kim61fa0e92015-12-10 16:53:20 +0900276 else
277 rb_erase(&he->rb_node_in, hists->entries_in);
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300278
279 --hists->nr_entries;
280 if (!he->filtered)
281 --hists->nr_non_filtered_entries;
282
283 hist_entry__delete(he);
284}
285
Namhyung Kim3a5714f2013-05-14 11:09:01 +0900286void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel)
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300287{
288 struct rb_node *next = rb_first(&hists->entries);
289 struct hist_entry *n;
290
291 while (next) {
292 n = rb_entry(next, struct hist_entry, rb_node);
293 next = rb_next(&n->rb_node);
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -0200294 if (((zap_user && n->level == '.') ||
295 (zap_kernel && n->level != '.') ||
Arnaldo Carvalho de Melo4c47f4f2015-03-17 17:18:58 -0300296 hists__decay_entry(hists, n))) {
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300297 hists__delete_entry(hists, n);
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300298 }
299 }
300}
301
Namhyung Kim701937b2014-08-12 17:16:05 +0900302void hists__delete_entries(struct hists *hists)
303{
304 struct rb_node *next = rb_first(&hists->entries);
305 struct hist_entry *n;
306
307 while (next) {
308 n = rb_entry(next, struct hist_entry, rb_node);
309 next = rb_next(&n->rb_node);
310
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300311 hists__delete_entry(hists, n);
Namhyung Kim701937b2014-08-12 17:16:05 +0900312 }
313}
314
John Kacur3d1d07e2009-09-28 15:32:55 +0200315/*
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300316 * histogram, sorted on item, collects periods
John Kacur3d1d07e2009-09-28 15:32:55 +0200317 */
318
Namhyung Kima0b51af2012-09-11 13:34:27 +0900319static struct hist_entry *hist_entry__new(struct hist_entry *template,
320 bool sample_self)
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300321{
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900322 size_t callchain_size = 0;
323 struct hist_entry *he;
324
Namhyung Kim82aa0192014-12-22 13:44:14 +0900325 if (symbol_conf.use_callchain)
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900326 callchain_size = sizeof(struct callchain_root);
327
328 he = zalloc(sizeof(*he) + callchain_size);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300329
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200330 if (he != NULL) {
331 *he = *template;
Namhyung Kimc4b35352012-10-04 21:49:42 +0900332
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900333 if (symbol_conf.cumulate_callchain) {
334 he->stat_acc = malloc(sizeof(he->stat));
335 if (he->stat_acc == NULL) {
336 free(he);
337 return NULL;
338 }
339 memcpy(he->stat_acc, &he->stat, sizeof(he->stat));
Namhyung Kima0b51af2012-09-11 13:34:27 +0900340 if (!sample_self)
341 memset(&he->stat, 0, sizeof(he->stat));
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900342 }
343
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300344 map__get(he->ms.map);
Stephane Eranian3cf0cb12013-01-14 15:02:45 +0100345
346 if (he->branch_info) {
Namhyung Kim26353a62013-04-01 20:35:17 +0900347 /*
348 * This branch info is (a part of) allocated from
Arnaldo Carvalho de Melo644f2df2014-01-22 13:15:36 -0300349 * sample__resolve_bstack() and will be freed after
Namhyung Kim26353a62013-04-01 20:35:17 +0900350 * adding new entries. So we need to save a copy.
351 */
352 he->branch_info = malloc(sizeof(*he->branch_info));
353 if (he->branch_info == NULL) {
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300354 map__zput(he->ms.map);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900355 free(he->stat_acc);
Namhyung Kim26353a62013-04-01 20:35:17 +0900356 free(he);
357 return NULL;
358 }
359
360 memcpy(he->branch_info, template->branch_info,
361 sizeof(*he->branch_info));
362
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300363 map__get(he->branch_info->from.map);
364 map__get(he->branch_info->to.map);
Stephane Eranian3cf0cb12013-01-14 15:02:45 +0100365 }
366
Stephane Eranian98a3b322013-01-24 16:10:35 +0100367 if (he->mem_info) {
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300368 map__get(he->mem_info->iaddr.map);
369 map__get(he->mem_info->daddr.map);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100370 }
371
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300372 if (symbol_conf.use_callchain)
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200373 callchain_init(he->callchain);
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200374
Namhyung Kim72392832015-12-24 11:16:17 +0900375 if (he->raw_data) {
376 he->raw_data = memdup(he->raw_data, he->raw_size);
377
378 if (he->raw_data == NULL) {
379 map__put(he->ms.map);
380 if (he->branch_info) {
381 map__put(he->branch_info->from.map);
382 map__put(he->branch_info->to.map);
383 free(he->branch_info);
384 }
385 if (he->mem_info) {
386 map__put(he->mem_info->iaddr.map);
387 map__put(he->mem_info->daddr.map);
388 }
389 free(he->stat_acc);
390 free(he);
391 return NULL;
392 }
393 }
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200394 INIT_LIST_HEAD(&he->pairs.node);
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300395 thread__get(he->thread);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300396 }
397
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200398 return he;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300399}
400
Arnaldo Carvalho de Melo7a007ca2010-07-21 09:19:41 -0300401static u8 symbol__parent_filter(const struct symbol *parent)
402{
403 if (symbol_conf.exclude_other && parent == NULL)
404 return 1 << HIST_FILTER__PARENT;
405 return 0;
406}
407
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300408static struct hist_entry *hists__findnew_entry(struct hists *hists,
409 struct hist_entry *entry,
410 struct addr_location *al,
411 bool sample_self)
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300412{
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300413 struct rb_node **p;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300414 struct rb_node *parent = NULL;
415 struct hist_entry *he;
Andi Kleen354cc402013-10-01 07:22:15 -0700416 int64_t cmp;
Namhyung Kimf1cbf782013-12-18 14:21:11 +0900417 u64 period = entry->stat.period;
418 u64 weight = entry->stat.weight;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300419
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300420 p = &hists->entries_in->rb_node;
421
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300422 while (*p != NULL) {
423 parent = *p;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300424 he = rb_entry(parent, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300425
Namhyung Kim9afcf932012-12-10 17:29:54 +0900426 /*
427 * Make sure that it receives arguments in a same order as
428 * hist_entry__collapse() so that we can use an appropriate
429 * function when searching an entry regardless which sort
430 * keys were used.
431 */
432 cmp = hist_entry__cmp(he, entry);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300433
434 if (!cmp) {
Namhyung Kim0f584742016-01-28 00:40:49 +0900435 if (sample_self) {
Namhyung Kima0b51af2012-09-11 13:34:27 +0900436 he_stat__add_period(&he->stat, period, weight);
Namhyung Kim0f584742016-01-28 00:40:49 +0900437 hists->stats.total_period += period;
438 if (!he->filtered)
439 hists->stats.total_non_filtered_period += period;
440 }
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900441 if (symbol_conf.cumulate_callchain)
442 he_stat__add_period(he->stat_acc, period, weight);
David Miller63fa4712012-03-27 03:14:18 -0400443
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900444 /*
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -0300445 * This mem info was allocated from sample__resolve_mem
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900446 * and will not be used anymore.
447 */
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300448 zfree(&entry->mem_info);
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900449
David Miller63fa4712012-03-27 03:14:18 -0400450 /* If the map of an existing hist_entry has
451 * become out-of-date due to an exec() or
452 * similar, update it. Otherwise we will
453 * mis-adjust symbol addresses when computing
454 * the history counter to increment.
455 */
456 if (he->ms.map != entry->ms.map) {
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300457 map__put(he->ms.map);
458 he->ms.map = map__get(entry->ms.map);
David Miller63fa4712012-03-27 03:14:18 -0400459 }
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300460 goto out;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300461 }
462
463 if (cmp < 0)
464 p = &(*p)->rb_left;
465 else
466 p = &(*p)->rb_right;
467 }
468
Namhyung Kima0b51af2012-09-11 13:34:27 +0900469 he = hist_entry__new(entry, sample_self);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300470 if (!he)
Namhyung Kim27a0dcb2013-05-14 11:09:02 +0900471 return NULL;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300472
Namhyung Kim0f584742016-01-28 00:40:49 +0900473 if (sample_self)
474 hists__inc_stats(hists, he);
475 else
476 hists->nr_entries++;
Namhyung Kim590cd342014-12-22 13:44:09 +0900477
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300478 rb_link_node(&he->rb_node_in, parent, p);
479 rb_insert_color(&he->rb_node_in, hists->entries_in);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300480out:
Namhyung Kima0b51af2012-09-11 13:34:27 +0900481 if (sample_self)
482 he_stat__add_cpumode_period(&he->stat, al->cpumode, period);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900483 if (symbol_conf.cumulate_callchain)
484 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300485 return he;
486}
487
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300488struct hist_entry *__hists__add_entry(struct hists *hists,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100489 struct addr_location *al,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900490 struct symbol *sym_parent,
491 struct branch_info *bi,
492 struct mem_info *mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900493 struct perf_sample *sample,
Namhyung Kima0b51af2012-09-11 13:34:27 +0900494 bool sample_self)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100495{
496 struct hist_entry entry = {
497 .thread = al->thread,
Namhyung Kim4dfced32013-09-13 16:28:57 +0900498 .comm = thread__comm(al->thread),
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100499 .ms = {
500 .map = al->map,
501 .sym = al->sym,
502 },
Kan Liang0c4c4deb2015-09-04 10:45:42 -0400503 .socket = al->socket,
Don Zickus7365be52014-05-27 12:28:05 -0400504 .cpu = al->cpu,
505 .cpumode = al->cpumode,
506 .ip = al->addr,
507 .level = al->level,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900508 .stat = {
Namhyung Kimc4b35352012-10-04 21:49:42 +0900509 .nr_events = 1,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900510 .period = sample->period,
511 .weight = sample->weight,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900512 },
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100513 .parent = sym_parent,
Namhyung Kim2c86c7c2014-03-17 18:18:54 -0300514 .filtered = symbol__parent_filter(sym_parent) | al->filtered,
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300515 .hists = hists,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900516 .branch_info = bi,
517 .mem_info = mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900518 .transaction = sample->transaction,
Namhyung Kim72392832015-12-24 11:16:17 +0900519 .raw_data = sample->raw_data,
520 .raw_size = sample->raw_size,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100521 };
522
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300523 return hists__findnew_entry(hists, &entry, al, sample_self);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100524}
525
Namhyung Kim69bcb012013-10-30 09:40:34 +0900526static int
527iter_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
528 struct addr_location *al __maybe_unused)
529{
530 return 0;
531}
532
533static int
534iter_add_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
535 struct addr_location *al __maybe_unused)
536{
537 return 0;
538}
539
540static int
541iter_prepare_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
542{
543 struct perf_sample *sample = iter->sample;
544 struct mem_info *mi;
545
546 mi = sample__resolve_mem(sample, al);
547 if (mi == NULL)
548 return -ENOMEM;
549
550 iter->priv = mi;
551 return 0;
552}
553
554static int
555iter_add_single_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
556{
557 u64 cost;
558 struct mem_info *mi = iter->priv;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300559 struct hists *hists = evsel__hists(iter->evsel);
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900560 struct perf_sample *sample = iter->sample;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900561 struct hist_entry *he;
562
563 if (mi == NULL)
564 return -EINVAL;
565
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900566 cost = sample->weight;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900567 if (!cost)
568 cost = 1;
569
570 /*
571 * must pass period=weight in order to get the correct
572 * sorting from hists__collapse_resort() which is solely
573 * based on periods. We want sorting be done on nr_events * weight
574 * and this is indirectly achieved by passing period=weight here
575 * and the he_stat__add_period() function.
576 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900577 sample->period = cost;
578
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300579 he = __hists__add_entry(hists, al, iter->parent, NULL, mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900580 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900581 if (!he)
582 return -ENOMEM;
583
584 iter->he = he;
585 return 0;
586}
587
588static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900589iter_finish_mem_entry(struct hist_entry_iter *iter,
590 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900591{
592 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300593 struct hists *hists = evsel__hists(evsel);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900594 struct hist_entry *he = iter->he;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900595 int err = -EINVAL;
596
597 if (he == NULL)
598 goto out;
599
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300600 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900601
602 err = hist_entry__append_callchain(he, iter->sample);
603
604out:
605 /*
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300606 * We don't need to free iter->priv (mem_info) here since the mem info
607 * was either already freed in hists__findnew_entry() or passed to a
608 * new hist entry by hist_entry__new().
Namhyung Kim69bcb012013-10-30 09:40:34 +0900609 */
610 iter->priv = NULL;
611
612 iter->he = NULL;
613 return err;
614}
615
616static int
617iter_prepare_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
618{
619 struct branch_info *bi;
620 struct perf_sample *sample = iter->sample;
621
622 bi = sample__resolve_bstack(sample, al);
623 if (!bi)
624 return -ENOMEM;
625
626 iter->curr = 0;
627 iter->total = sample->branch_stack->nr;
628
629 iter->priv = bi;
630 return 0;
631}
632
633static int
634iter_add_single_branch_entry(struct hist_entry_iter *iter __maybe_unused,
635 struct addr_location *al __maybe_unused)
636{
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900637 /* to avoid calling callback function */
638 iter->he = NULL;
639
Namhyung Kim69bcb012013-10-30 09:40:34 +0900640 return 0;
641}
642
643static int
644iter_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
645{
646 struct branch_info *bi = iter->priv;
647 int i = iter->curr;
648
649 if (bi == NULL)
650 return 0;
651
652 if (iter->curr >= iter->total)
653 return 0;
654
655 al->map = bi[i].to.map;
656 al->sym = bi[i].to.sym;
657 al->addr = bi[i].to.addr;
658 return 1;
659}
660
661static int
662iter_add_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
663{
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900664 struct branch_info *bi;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900665 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300666 struct hists *hists = evsel__hists(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 = NULL;
669 int i = iter->curr;
670 int err = 0;
671
672 bi = iter->priv;
673
674 if (iter->hide_unresolved && !(bi[i].from.sym && bi[i].to.sym))
675 goto out;
676
677 /*
678 * The report shows the percentage of total branches captured
679 * and not events sampled. Thus we use a pseudo period of 1.
680 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900681 sample->period = 1;
682 sample->weight = bi->flags.cycles ? bi->flags.cycles : 1;
683
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300684 he = __hists__add_entry(hists, al, iter->parent, &bi[i], NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900685 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900686 if (he == NULL)
687 return -ENOMEM;
688
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300689 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900690
691out:
692 iter->he = he;
693 iter->curr++;
694 return err;
695}
696
697static int
698iter_finish_branch_entry(struct hist_entry_iter *iter,
699 struct addr_location *al __maybe_unused)
700{
701 zfree(&iter->priv);
702 iter->he = NULL;
703
704 return iter->curr >= iter->total ? 0 : -1;
705}
706
707static int
708iter_prepare_normal_entry(struct hist_entry_iter *iter __maybe_unused,
709 struct addr_location *al __maybe_unused)
710{
711 return 0;
712}
713
714static int
715iter_add_single_normal_entry(struct hist_entry_iter *iter, struct addr_location *al)
716{
717 struct perf_evsel *evsel = iter->evsel;
718 struct perf_sample *sample = iter->sample;
719 struct hist_entry *he;
720
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300721 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900722 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900723 if (he == NULL)
724 return -ENOMEM;
725
726 iter->he = he;
727 return 0;
728}
729
730static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900731iter_finish_normal_entry(struct hist_entry_iter *iter,
732 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900733{
Namhyung Kim69bcb012013-10-30 09:40:34 +0900734 struct hist_entry *he = iter->he;
735 struct perf_evsel *evsel = iter->evsel;
736 struct perf_sample *sample = iter->sample;
737
738 if (he == NULL)
739 return 0;
740
741 iter->he = NULL;
742
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300743 hists__inc_nr_samples(evsel__hists(evsel), he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900744
745 return hist_entry__append_callchain(he, sample);
746}
747
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900748static int
Adrian Hunter96b40f32015-09-25 16:15:47 +0300749iter_prepare_cumulative_entry(struct hist_entry_iter *iter,
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900750 struct addr_location *al __maybe_unused)
751{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900752 struct hist_entry **he_cache;
753
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900754 callchain_cursor_commit(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900755
756 /*
757 * This is for detecting cycles or recursions so that they're
758 * cumulated only one time to prevent entries more than 100%
759 * overhead.
760 */
Adrian Hunter96b40f32015-09-25 16:15:47 +0300761 he_cache = malloc(sizeof(*he_cache) * (iter->max_stack + 1));
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900762 if (he_cache == NULL)
763 return -ENOMEM;
764
765 iter->priv = he_cache;
766 iter->curr = 0;
767
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900768 return 0;
769}
770
771static int
772iter_add_single_cumulative_entry(struct hist_entry_iter *iter,
773 struct addr_location *al)
774{
775 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300776 struct hists *hists = evsel__hists(evsel);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900777 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900778 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900779 struct hist_entry *he;
780 int err = 0;
781
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300782 he = __hists__add_entry(hists, al, iter->parent, NULL, NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900783 sample, true);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900784 if (he == NULL)
785 return -ENOMEM;
786
787 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900788 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900789
Namhyung Kim82aa0192014-12-22 13:44:14 +0900790 hist_entry__append_callchain(he, sample);
Namhyung Kimbe7f8552013-12-26 17:44:10 +0900791
792 /*
793 * We need to re-initialize the cursor since callchain_append()
794 * advanced the cursor to the end.
795 */
796 callchain_cursor_commit(&callchain_cursor);
797
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300798 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900799
800 return err;
801}
802
803static int
804iter_next_cumulative_entry(struct hist_entry_iter *iter,
805 struct addr_location *al)
806{
807 struct callchain_cursor_node *node;
808
809 node = callchain_cursor_current(&callchain_cursor);
810 if (node == NULL)
811 return 0;
812
Namhyung Kimc7405d82013-10-31 13:58:30 +0900813 return fill_callchain_info(al, node, iter->hide_unresolved);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900814}
815
816static int
817iter_add_next_cumulative_entry(struct hist_entry_iter *iter,
818 struct addr_location *al)
819{
820 struct perf_evsel *evsel = iter->evsel;
821 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900822 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900823 struct hist_entry *he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900824 struct hist_entry he_tmp = {
Arnaldo Carvalho de Melo5cef8972015-08-10 15:45:55 -0300825 .hists = evsel__hists(evsel),
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900826 .cpu = al->cpu,
827 .thread = al->thread,
828 .comm = thread__comm(al->thread),
829 .ip = al->addr,
830 .ms = {
831 .map = al->map,
832 .sym = al->sym,
833 },
834 .parent = iter->parent,
Namhyung Kim72392832015-12-24 11:16:17 +0900835 .raw_data = sample->raw_data,
836 .raw_size = sample->raw_size,
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900837 };
838 int i;
Namhyung Kimbe7f8552013-12-26 17:44:10 +0900839 struct callchain_cursor cursor;
840
841 callchain_cursor_snapshot(&cursor, &callchain_cursor);
842
843 callchain_cursor_advance(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900844
845 /*
846 * Check if there's duplicate entries in the callchain.
847 * It's possible that it has cycles or recursive calls.
848 */
849 for (i = 0; i < iter->curr; i++) {
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900850 if (hist_entry__cmp(he_cache[i], &he_tmp) == 0) {
851 /* to avoid calling callback function */
852 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900853 return 0;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900854 }
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900855 }
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900856
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300857 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900858 sample, false);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900859 if (he == NULL)
860 return -ENOMEM;
861
862 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900863 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900864
Namhyung Kim82aa0192014-12-22 13:44:14 +0900865 if (symbol_conf.use_callchain)
866 callchain_append(he->callchain, &cursor, sample->period);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900867 return 0;
868}
869
870static int
871iter_finish_cumulative_entry(struct hist_entry_iter *iter,
872 struct addr_location *al __maybe_unused)
873{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900874 zfree(&iter->priv);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900875 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900876
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900877 return 0;
878}
879
Namhyung Kim69bcb012013-10-30 09:40:34 +0900880const struct hist_iter_ops hist_iter_mem = {
881 .prepare_entry = iter_prepare_mem_entry,
882 .add_single_entry = iter_add_single_mem_entry,
883 .next_entry = iter_next_nop_entry,
884 .add_next_entry = iter_add_next_nop_entry,
885 .finish_entry = iter_finish_mem_entry,
886};
887
888const struct hist_iter_ops hist_iter_branch = {
889 .prepare_entry = iter_prepare_branch_entry,
890 .add_single_entry = iter_add_single_branch_entry,
891 .next_entry = iter_next_branch_entry,
892 .add_next_entry = iter_add_next_branch_entry,
893 .finish_entry = iter_finish_branch_entry,
894};
895
896const struct hist_iter_ops hist_iter_normal = {
897 .prepare_entry = iter_prepare_normal_entry,
898 .add_single_entry = iter_add_single_normal_entry,
899 .next_entry = iter_next_nop_entry,
900 .add_next_entry = iter_add_next_nop_entry,
901 .finish_entry = iter_finish_normal_entry,
902};
903
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900904const struct hist_iter_ops hist_iter_cumulative = {
905 .prepare_entry = iter_prepare_cumulative_entry,
906 .add_single_entry = iter_add_single_cumulative_entry,
907 .next_entry = iter_next_cumulative_entry,
908 .add_next_entry = iter_add_next_cumulative_entry,
909 .finish_entry = iter_finish_cumulative_entry,
910};
911
Namhyung Kim69bcb012013-10-30 09:40:34 +0900912int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900913 int max_stack_depth, void *arg)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900914{
915 int err, err2;
916
Namhyung Kim063bd932015-05-19 17:04:10 +0900917 err = sample__resolve_callchain(iter->sample, &iter->parent,
918 iter->evsel, al, max_stack_depth);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900919 if (err)
920 return err;
921
Adrian Hunter96b40f32015-09-25 16:15:47 +0300922 iter->max_stack = max_stack_depth;
923
Namhyung Kim69bcb012013-10-30 09:40:34 +0900924 err = iter->ops->prepare_entry(iter, al);
925 if (err)
926 goto out;
927
928 err = iter->ops->add_single_entry(iter, al);
929 if (err)
930 goto out;
931
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900932 if (iter->he && iter->add_entry_cb) {
933 err = iter->add_entry_cb(iter, al, true, arg);
934 if (err)
935 goto out;
936 }
937
Namhyung Kim69bcb012013-10-30 09:40:34 +0900938 while (iter->ops->next_entry(iter, al)) {
939 err = iter->ops->add_next_entry(iter, al);
940 if (err)
941 break;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900942
943 if (iter->he && iter->add_entry_cb) {
944 err = iter->add_entry_cb(iter, al, false, arg);
945 if (err)
946 goto out;
947 }
Namhyung Kim69bcb012013-10-30 09:40:34 +0900948 }
949
950out:
951 err2 = iter->ops->finish_entry(iter, al);
952 if (!err)
953 err = err2;
954
955 return err;
956}
957
John Kacur3d1d07e2009-09-28 15:32:55 +0200958int64_t
959hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
960{
Namhyung Kim093f0ef32014-03-03 12:07:47 +0900961 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +0200962 int64_t cmp = 0;
963
Namhyung Kim093f0ef32014-03-03 12:07:47 +0900964 perf_hpp__for_each_sort_list(fmt) {
Namhyung Kim87bbdf72015-01-08 09:45:46 +0900965 cmp = fmt->cmp(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +0200966 if (cmp)
967 break;
968 }
969
970 return cmp;
971}
972
973int64_t
974hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
975{
Namhyung Kim093f0ef32014-03-03 12:07:47 +0900976 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +0200977 int64_t cmp = 0;
978
Namhyung Kim093f0ef32014-03-03 12:07:47 +0900979 perf_hpp__for_each_sort_list(fmt) {
Namhyung Kim87bbdf72015-01-08 09:45:46 +0900980 cmp = fmt->collapse(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +0200981 if (cmp)
982 break;
983 }
984
985 return cmp;
986}
987
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -0300988void hist_entry__delete(struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +0200989{
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300990 thread__zput(he->thread);
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300991 map__zput(he->ms.map);
992
993 if (he->branch_info) {
994 map__zput(he->branch_info->from.map);
995 map__zput(he->branch_info->to.map);
996 zfree(&he->branch_info);
997 }
998
999 if (he->mem_info) {
1000 map__zput(he->mem_info->iaddr.map);
1001 map__zput(he->mem_info->daddr.map);
1002 zfree(&he->mem_info);
1003 }
1004
Namhyung Kimf8be1c82012-09-11 13:15:07 +09001005 zfree(&he->stat_acc);
Namhyung Kimf048d542013-09-11 14:09:28 +09001006 free_srcline(he->srcline);
Andi Kleen31191a82015-08-07 15:54:24 -07001007 if (he->srcfile && he->srcfile[0])
1008 free(he->srcfile);
Namhyung Kimd1149602014-12-30 14:38:13 +09001009 free_callchain(he->callchain);
Namhyung Kim60517d22015-12-23 02:07:03 +09001010 free(he->trace_output);
Namhyung Kim72392832015-12-24 11:16:17 +09001011 free(he->raw_data);
John Kacur3d1d07e2009-09-28 15:32:55 +02001012 free(he);
1013}
1014
1015/*
1016 * collapse the histogram
1017 */
1018
Namhyung Kimfc284be2016-01-07 10:14:10 +01001019bool hists__collapse_insert_entry(struct hists *hists __maybe_unused,
1020 struct rb_root *root, struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +02001021{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -02001022 struct rb_node **p = &root->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001023 struct rb_node *parent = NULL;
1024 struct hist_entry *iter;
1025 int64_t cmp;
1026
1027 while (*p != NULL) {
1028 parent = *p;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001029 iter = rb_entry(parent, struct hist_entry, rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001030
1031 cmp = hist_entry__collapse(iter, he);
1032
1033 if (!cmp) {
Namhyung Kim139c0812012-10-04 21:49:43 +09001034 he_stat__add_stat(&iter->stat, &he->stat);
Namhyung Kimf8be1c82012-09-11 13:15:07 +09001035 if (symbol_conf.cumulate_callchain)
1036 he_stat__add_stat(iter->stat_acc, he->stat_acc);
Namhyung Kim9ec60972012-09-26 16:47:28 +09001037
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +01001038 if (symbol_conf.use_callchain) {
Namhyung Kim47260642012-05-31 14:43:26 +09001039 callchain_cursor_reset(&callchain_cursor);
1040 callchain_merge(&callchain_cursor,
1041 iter->callchain,
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +01001042 he->callchain);
1043 }
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -03001044 hist_entry__delete(he);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -03001045 return false;
John Kacur3d1d07e2009-09-28 15:32:55 +02001046 }
1047
1048 if (cmp < 0)
1049 p = &(*p)->rb_left;
1050 else
1051 p = &(*p)->rb_right;
1052 }
Namhyung Kim740b97f2014-12-22 13:44:10 +09001053 hists->nr_entries++;
John Kacur3d1d07e2009-09-28 15:32:55 +02001054
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001055 rb_link_node(&he->rb_node_in, parent, p);
1056 rb_insert_color(&he->rb_node_in, root);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -03001057 return true;
John Kacur3d1d07e2009-09-28 15:32:55 +02001058}
1059
Namhyung Kimfc284be2016-01-07 10:14:10 +01001060struct rb_root *hists__get_rotate_entries_in(struct hists *hists)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001061{
1062 struct rb_root *root;
1063
1064 pthread_mutex_lock(&hists->lock);
1065
1066 root = hists->entries_in;
1067 if (++hists->entries_in > &hists->entries_in_array[1])
1068 hists->entries_in = &hists->entries_in_array[0];
1069
1070 pthread_mutex_unlock(&hists->lock);
1071
1072 return root;
1073}
1074
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001075static void hists__apply_filters(struct hists *hists, struct hist_entry *he)
1076{
1077 hists__filter_entry_by_dso(hists, he);
1078 hists__filter_entry_by_thread(hists, he);
Namhyung Kime94d53e2012-03-16 17:50:51 +09001079 hists__filter_entry_by_symbol(hists, he);
Kan Liang21394d92015-09-04 10:45:44 -04001080 hists__filter_entry_by_socket(hists, he);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001081}
1082
Namhyung Kimc1fb5652013-10-11 14:15:38 +09001083void hists__collapse_resort(struct hists *hists, struct ui_progress *prog)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001084{
1085 struct rb_root *root;
1086 struct rb_node *next;
1087 struct hist_entry *n;
1088
Namhyung Kim3a5714f2013-05-14 11:09:01 +09001089 if (!sort__need_collapse)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001090 return;
1091
Namhyung Kim740b97f2014-12-22 13:44:10 +09001092 hists->nr_entries = 0;
1093
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001094 root = hists__get_rotate_entries_in(hists);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001095
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001096 next = rb_first(root);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001097
1098 while (next) {
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001099 if (session_done())
1100 break;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001101 n = rb_entry(next, struct hist_entry, rb_node_in);
1102 next = rb_next(&n->rb_node_in);
1103
1104 rb_erase(&n->rb_node_in, root);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001105 if (hists__collapse_insert_entry(hists, &hists->entries_collapsed, n)) {
1106 /*
1107 * If it wasn't combined with one of the entries already
1108 * collapsed, we need to apply the filters that may have
1109 * been set by, say, the hist_browser.
1110 */
1111 hists__apply_filters(hists, n);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001112 }
Namhyung Kimc1fb5652013-10-11 14:15:38 +09001113 if (prog)
1114 ui_progress__update(prog, 1);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001115 }
1116}
1117
Namhyung Kim043ca3892014-03-03 14:18:00 +09001118static int hist_entry__sort(struct hist_entry *a, struct hist_entry *b)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001119{
Namhyung Kim043ca3892014-03-03 14:18:00 +09001120 struct perf_hpp_fmt *fmt;
1121 int64_t cmp = 0;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001122
Namhyung Kim26d8b332014-03-03 16:16:20 +09001123 perf_hpp__for_each_sort_list(fmt) {
Namhyung Kim361459f2015-12-23 02:07:08 +09001124 if (perf_hpp__should_skip(fmt, a->hists))
Namhyung Kime67d49a2014-03-18 13:00:59 +09001125 continue;
1126
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001127 cmp = fmt->sort(fmt, a, b);
Namhyung Kim043ca3892014-03-03 14:18:00 +09001128 if (cmp)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001129 break;
1130 }
1131
Namhyung Kim043ca3892014-03-03 14:18:00 +09001132 return cmp;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001133}
1134
Namhyung Kim9283ba92014-04-24 16:37:26 +09001135static void hists__reset_filter_stats(struct hists *hists)
1136{
1137 hists->nr_non_filtered_entries = 0;
1138 hists->stats.total_non_filtered_period = 0;
1139}
1140
1141void hists__reset_stats(struct hists *hists)
1142{
1143 hists->nr_entries = 0;
1144 hists->stats.total_period = 0;
1145
1146 hists__reset_filter_stats(hists);
1147}
1148
1149static void hists__inc_filter_stats(struct hists *hists, struct hist_entry *h)
1150{
1151 hists->nr_non_filtered_entries++;
1152 hists->stats.total_non_filtered_period += h->stat.period;
1153}
1154
1155void hists__inc_stats(struct hists *hists, struct hist_entry *h)
1156{
1157 if (!h->filtered)
1158 hists__inc_filter_stats(hists, h);
1159
1160 hists->nr_entries++;
1161 hists->stats.total_period += h->stat.period;
1162}
1163
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001164static void __hists__insert_output_entry(struct rb_root *entries,
1165 struct hist_entry *he,
Kan Liangf9db0d02015-08-11 06:30:48 -04001166 u64 min_callchain_hits,
1167 bool use_callchain)
John Kacur3d1d07e2009-09-28 15:32:55 +02001168{
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001169 struct rb_node **p = &entries->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001170 struct rb_node *parent = NULL;
1171 struct hist_entry *iter;
1172
Namhyung Kim744070e2016-01-28 00:40:48 +09001173 if (use_callchain) {
1174 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1175 u64 total = he->stat.period;
1176
1177 if (symbol_conf.cumulate_callchain)
1178 total = he->stat_acc->period;
1179
1180 min_callchain_hits = total * (callchain_param.min_percent / 100);
1181 }
Arnaldo Carvalho de Melob9fb9302010-04-02 09:50:42 -03001182 callchain_param.sort(&he->sorted_chain, he->callchain,
John Kacur3d1d07e2009-09-28 15:32:55 +02001183 min_callchain_hits, &callchain_param);
Namhyung Kim744070e2016-01-28 00:40:48 +09001184 }
John Kacur3d1d07e2009-09-28 15:32:55 +02001185
1186 while (*p != NULL) {
1187 parent = *p;
1188 iter = rb_entry(parent, struct hist_entry, rb_node);
1189
Namhyung Kim043ca3892014-03-03 14:18:00 +09001190 if (hist_entry__sort(he, iter) > 0)
John Kacur3d1d07e2009-09-28 15:32:55 +02001191 p = &(*p)->rb_left;
1192 else
1193 p = &(*p)->rb_right;
1194 }
1195
1196 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001197 rb_insert_color(&he->rb_node, entries);
John Kacur3d1d07e2009-09-28 15:32:55 +02001198}
1199
Jiri Olsa01441af2016-01-18 10:23:59 +01001200static void output_resort(struct hists *hists, struct ui_progress *prog,
1201 bool use_callchain)
John Kacur3d1d07e2009-09-28 15:32:55 +02001202{
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001203 struct rb_root *root;
John Kacur3d1d07e2009-09-28 15:32:55 +02001204 struct rb_node *next;
1205 struct hist_entry *n;
John Kacur3d1d07e2009-09-28 15:32:55 +02001206 u64 min_callchain_hits;
1207
Namhyung Kim744070e2016-01-28 00:40:48 +09001208 min_callchain_hits = hists__total_period(hists) * (callchain_param.min_percent / 100);
John Kacur3d1d07e2009-09-28 15:32:55 +02001209
Namhyung Kim3a5714f2013-05-14 11:09:01 +09001210 if (sort__need_collapse)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001211 root = &hists->entries_collapsed;
1212 else
1213 root = hists->entries_in;
1214
1215 next = rb_first(root);
1216 hists->entries = RB_ROOT;
John Kacur3d1d07e2009-09-28 15:32:55 +02001217
Namhyung Kim9283ba92014-04-24 16:37:26 +09001218 hists__reset_stats(hists);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001219 hists__reset_col_len(hists);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -03001220
John Kacur3d1d07e2009-09-28 15:32:55 +02001221 while (next) {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001222 n = rb_entry(next, struct hist_entry, rb_node_in);
1223 next = rb_next(&n->rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001224
Kan Liangf9db0d02015-08-11 06:30:48 -04001225 __hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain);
Namhyung Kim62638352014-04-24 16:21:46 +09001226 hists__inc_stats(hists, n);
Namhyung Kimae993ef2014-04-24 16:25:19 +09001227
1228 if (!n->filtered)
1229 hists__calc_col_len(hists, n);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001230
1231 if (prog)
1232 ui_progress__update(prog, 1);
John Kacur3d1d07e2009-09-28 15:32:55 +02001233 }
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001234}
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -02001235
Jiri Olsa452ce032016-01-18 10:24:00 +01001236void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog)
Jiri Olsa01441af2016-01-18 10:23:59 +01001237{
Jiri Olsa01441af2016-01-18 10:23:59 +01001238 bool use_callchain;
1239
1240 if (evsel && symbol_conf.use_callchain && !symbol_conf.show_ref_callgraph)
1241 use_callchain = evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN;
1242 else
1243 use_callchain = symbol_conf.use_callchain;
1244
Jiri Olsa452ce032016-01-18 10:24:00 +01001245 output_resort(evsel__hists(evsel), prog, use_callchain);
1246}
1247
1248void hists__output_resort(struct hists *hists, struct ui_progress *prog)
1249{
1250 output_resort(hists, prog, symbol_conf.use_callchain);
Jiri Olsa01441af2016-01-18 10:23:59 +01001251}
1252
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001253static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h,
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001254 enum hist_filter filter)
1255{
1256 h->filtered &= ~(1 << filter);
1257 if (h->filtered)
1258 return;
1259
Namhyung Kim87e90f42014-04-24 16:44:16 +09001260 /* force fold unfiltered entry for simplicity */
Namhyung Kim3698dab2015-05-05 23:55:46 +09001261 h->unfolded = false;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -03001262 h->row_offset = 0;
He Kuanga8cd1f42015-03-11 20:36:03 +08001263 h->nr_rows = 0;
Namhyung Kim9283ba92014-04-24 16:37:26 +09001264
Namhyung Kim1ab1fa52013-12-26 15:11:52 +09001265 hists->stats.nr_non_filtered_samples += h->stat.nr_events;
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001266
Namhyung Kim9283ba92014-04-24 16:37:26 +09001267 hists__inc_filter_stats(hists, h);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001268 hists__calc_col_len(hists, h);
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001269}
1270
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001271
1272static bool hists__filter_entry_by_dso(struct hists *hists,
1273 struct hist_entry *he)
1274{
1275 if (hists->dso_filter != NULL &&
1276 (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) {
1277 he->filtered |= (1 << HIST_FILTER__DSO);
1278 return true;
1279 }
1280
1281 return false;
1282}
1283
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001284static bool hists__filter_entry_by_thread(struct hists *hists,
1285 struct hist_entry *he)
1286{
1287 if (hists->thread_filter != NULL &&
1288 he->thread != hists->thread_filter) {
1289 he->filtered |= (1 << HIST_FILTER__THREAD);
1290 return true;
1291 }
1292
1293 return false;
1294}
1295
Namhyung Kime94d53e2012-03-16 17:50:51 +09001296static bool hists__filter_entry_by_symbol(struct hists *hists,
1297 struct hist_entry *he)
1298{
1299 if (hists->symbol_filter_str != NULL &&
1300 (!he->ms.sym || strstr(he->ms.sym->name,
1301 hists->symbol_filter_str) == NULL)) {
1302 he->filtered |= (1 << HIST_FILTER__SYMBOL);
1303 return true;
1304 }
1305
1306 return false;
1307}
1308
Kan Liang21394d92015-09-04 10:45:44 -04001309static bool hists__filter_entry_by_socket(struct hists *hists,
1310 struct hist_entry *he)
1311{
1312 if ((hists->socket_filter > -1) &&
1313 (he->socket != hists->socket_filter)) {
1314 he->filtered |= (1 << HIST_FILTER__SOCKET);
1315 return true;
1316 }
1317
1318 return false;
1319}
1320
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001321typedef bool (*filter_fn_t)(struct hists *hists, struct hist_entry *he);
1322
1323static void hists__filter_by_type(struct hists *hists, int type, filter_fn_t filter)
Kan Liang84734b02015-09-04 10:45:45 -04001324{
1325 struct rb_node *nd;
1326
1327 hists->stats.nr_non_filtered_samples = 0;
1328
1329 hists__reset_filter_stats(hists);
1330 hists__reset_col_len(hists);
1331
1332 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
1333 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1334
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001335 if (filter(hists, h))
Kan Liang84734b02015-09-04 10:45:45 -04001336 continue;
1337
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001338 hists__remove_entry_filter(hists, h, type);
Kan Liang84734b02015-09-04 10:45:45 -04001339 }
1340}
1341
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001342void hists__filter_by_thread(struct hists *hists)
1343{
1344 hists__filter_by_type(hists, HIST_FILTER__THREAD,
1345 hists__filter_entry_by_thread);
1346}
1347
1348void hists__filter_by_dso(struct hists *hists)
1349{
1350 hists__filter_by_type(hists, HIST_FILTER__DSO,
1351 hists__filter_entry_by_dso);
1352}
1353
1354void hists__filter_by_symbol(struct hists *hists)
1355{
1356 hists__filter_by_type(hists, HIST_FILTER__SYMBOL,
1357 hists__filter_entry_by_symbol);
1358}
1359
1360void hists__filter_by_socket(struct hists *hists)
1361{
1362 hists__filter_by_type(hists, HIST_FILTER__SOCKET,
1363 hists__filter_entry_by_socket);
1364}
1365
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03001366void events_stats__inc(struct events_stats *stats, u32 type)
1367{
1368 ++stats->nr_events[0];
1369 ++stats->nr_events[type];
1370}
1371
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001372void hists__inc_nr_events(struct hists *hists, u32 type)
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03001373{
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03001374 events_stats__inc(&hists->stats, type);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03001375}
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001376
Namhyung Kim1844dbc2014-05-28 14:12:18 +09001377void hists__inc_nr_samples(struct hists *hists, bool filtered)
1378{
1379 events_stats__inc(&hists->stats, PERF_RECORD_SAMPLE);
1380 if (!filtered)
1381 hists->stats.nr_non_filtered_samples++;
1382}
1383
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001384static struct hist_entry *hists__add_dummy_entry(struct hists *hists,
1385 struct hist_entry *pair)
1386{
Namhyung Kimce74f602012-12-10 17:29:55 +09001387 struct rb_root *root;
1388 struct rb_node **p;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001389 struct rb_node *parent = NULL;
1390 struct hist_entry *he;
Andi Kleen354cc402013-10-01 07:22:15 -07001391 int64_t cmp;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001392
Namhyung Kimce74f602012-12-10 17:29:55 +09001393 if (sort__need_collapse)
1394 root = &hists->entries_collapsed;
1395 else
1396 root = hists->entries_in;
1397
1398 p = &root->rb_node;
1399
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001400 while (*p != NULL) {
1401 parent = *p;
Namhyung Kimce74f602012-12-10 17:29:55 +09001402 he = rb_entry(parent, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001403
Namhyung Kimce74f602012-12-10 17:29:55 +09001404 cmp = hist_entry__collapse(he, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001405
1406 if (!cmp)
1407 goto out;
1408
1409 if (cmp < 0)
1410 p = &(*p)->rb_left;
1411 else
1412 p = &(*p)->rb_right;
1413 }
1414
Namhyung Kima0b51af2012-09-11 13:34:27 +09001415 he = hist_entry__new(pair, true);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001416 if (he) {
Arnaldo Carvalho de Melo30193d72012-11-12 13:20:03 -03001417 memset(&he->stat, 0, sizeof(he->stat));
1418 he->hists = hists;
Namhyung Kimce74f602012-12-10 17:29:55 +09001419 rb_link_node(&he->rb_node_in, parent, p);
1420 rb_insert_color(&he->rb_node_in, root);
Namhyung Kim62638352014-04-24 16:21:46 +09001421 hists__inc_stats(hists, he);
Jiri Olsae0af43d2012-12-01 21:18:20 +01001422 he->dummy = true;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001423 }
1424out:
1425 return he;
1426}
1427
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001428static struct hist_entry *hists__find_entry(struct hists *hists,
1429 struct hist_entry *he)
1430{
Namhyung Kimce74f602012-12-10 17:29:55 +09001431 struct rb_node *n;
1432
1433 if (sort__need_collapse)
1434 n = hists->entries_collapsed.rb_node;
1435 else
1436 n = hists->entries_in->rb_node;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001437
1438 while (n) {
Namhyung Kimce74f602012-12-10 17:29:55 +09001439 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node_in);
1440 int64_t cmp = hist_entry__collapse(iter, he);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001441
1442 if (cmp < 0)
1443 n = n->rb_left;
1444 else if (cmp > 0)
1445 n = n->rb_right;
1446 else
1447 return iter;
1448 }
1449
1450 return NULL;
1451}
1452
1453/*
1454 * Look for pairs to link to the leader buckets (hist_entries):
1455 */
1456void hists__match(struct hists *leader, struct hists *other)
1457{
Namhyung Kimce74f602012-12-10 17:29:55 +09001458 struct rb_root *root;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001459 struct rb_node *nd;
1460 struct hist_entry *pos, *pair;
1461
Namhyung Kimce74f602012-12-10 17:29:55 +09001462 if (sort__need_collapse)
1463 root = &leader->entries_collapsed;
1464 else
1465 root = leader->entries_in;
1466
1467 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
1468 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001469 pair = hists__find_entry(other, pos);
1470
1471 if (pair)
Namhyung Kim5fa90412012-11-29 15:38:34 +09001472 hist_entry__add_pair(pair, pos);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001473 }
1474}
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001475
1476/*
1477 * Look for entries in the other hists that are not present in the leader, if
1478 * we find them, just add a dummy entry on the leader hists, with period=0,
1479 * nr_events=0, to serve as the list header.
1480 */
1481int hists__link(struct hists *leader, struct hists *other)
1482{
Namhyung Kimce74f602012-12-10 17:29:55 +09001483 struct rb_root *root;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001484 struct rb_node *nd;
1485 struct hist_entry *pos, *pair;
1486
Namhyung Kimce74f602012-12-10 17:29:55 +09001487 if (sort__need_collapse)
1488 root = &other->entries_collapsed;
1489 else
1490 root = other->entries_in;
1491
1492 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
1493 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001494
1495 if (!hist_entry__has_pairs(pos)) {
1496 pair = hists__add_dummy_entry(leader, pos);
1497 if (pair == NULL)
1498 return -1;
Namhyung Kim5fa90412012-11-29 15:38:34 +09001499 hist_entry__add_pair(pos, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001500 }
1501 }
1502
1503 return 0;
1504}
Namhyung Kimf2148332014-01-14 11:52:48 +09001505
Andi Kleen578499982015-07-18 08:24:49 -07001506void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
1507 struct perf_sample *sample, bool nonany_branch_mode)
1508{
1509 struct branch_info *bi;
1510
1511 /* If we have branch cycles always annotate them. */
1512 if (bs && bs->nr && bs->entries[0].flags.cycles) {
1513 int i;
1514
1515 bi = sample__resolve_bstack(sample, al);
1516 if (bi) {
1517 struct addr_map_symbol *prev = NULL;
1518
1519 /*
1520 * Ignore errors, still want to process the
1521 * other entries.
1522 *
1523 * For non standard branch modes always
1524 * force no IPC (prev == NULL)
1525 *
1526 * Note that perf stores branches reversed from
1527 * program order!
1528 */
1529 for (i = bs->nr - 1; i >= 0; i--) {
1530 addr_map_symbol__account_cycles(&bi[i].from,
1531 nonany_branch_mode ? NULL : prev,
1532 bi[i].flags.cycles);
1533 prev = &bi[i].to;
1534 }
1535 free(bi);
1536 }
1537 }
1538}
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03001539
1540size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp)
1541{
1542 struct perf_evsel *pos;
1543 size_t ret = 0;
1544
1545 evlist__for_each(evlist, pos) {
1546 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
1547 ret += events_stats__fprintf(&evsel__hists(pos)->stats, fp);
1548 }
1549
1550 return ret;
1551}
1552
1553
Namhyung Kimf2148332014-01-14 11:52:48 +09001554u64 hists__total_period(struct hists *hists)
1555{
1556 return symbol_conf.filter_relative ? hists->stats.total_non_filtered_period :
1557 hists->stats.total_period;
1558}
Namhyung Kim33db4562014-02-07 12:06:07 +09001559
1560int parse_filter_percentage(const struct option *opt __maybe_unused,
1561 const char *arg, int unset __maybe_unused)
1562{
1563 if (!strcmp(arg, "relative"))
1564 symbol_conf.filter_relative = true;
1565 else if (!strcmp(arg, "absolute"))
1566 symbol_conf.filter_relative = false;
1567 else
1568 return -1;
1569
1570 return 0;
1571}
Namhyung Kim0b93da12014-01-14 12:02:15 +09001572
1573int perf_hist_config(const char *var, const char *value)
1574{
1575 if (!strcmp(var, "hist.percentage"))
1576 return parse_filter_percentage(NULL, value, 0);
1577
1578 return 0;
1579}
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001580
Namhyung Kimfc284be2016-01-07 10:14:10 +01001581int __hists__init(struct hists *hists)
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001582{
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001583 memset(hists, 0, sizeof(*hists));
1584 hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT;
1585 hists->entries_in = &hists->entries_in_array[0];
1586 hists->entries_collapsed = RB_ROOT;
1587 hists->entries = RB_ROOT;
1588 pthread_mutex_init(&hists->lock, NULL);
Kan Liang21394d92015-09-04 10:45:44 -04001589 hists->socket_filter = -1;
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001590 return 0;
1591}
1592
Namhyung Kim61fa0e92015-12-10 16:53:20 +09001593static void hists__delete_remaining_entries(struct rb_root *root)
1594{
1595 struct rb_node *node;
1596 struct hist_entry *he;
1597
1598 while (!RB_EMPTY_ROOT(root)) {
1599 node = rb_first(root);
1600 rb_erase(node, root);
1601
1602 he = rb_entry(node, struct hist_entry, rb_node_in);
1603 hist_entry__delete(he);
1604 }
1605}
1606
1607static void hists__delete_all_entries(struct hists *hists)
1608{
1609 hists__delete_entries(hists);
1610 hists__delete_remaining_entries(&hists->entries_in_array[0]);
1611 hists__delete_remaining_entries(&hists->entries_in_array[1]);
1612 hists__delete_remaining_entries(&hists->entries_collapsed);
1613}
1614
Masami Hiramatsu17577de2015-12-09 11:11:29 +09001615static void hists_evsel__exit(struct perf_evsel *evsel)
1616{
1617 struct hists *hists = evsel__hists(evsel);
1618
Namhyung Kim61fa0e92015-12-10 16:53:20 +09001619 hists__delete_all_entries(hists);
Masami Hiramatsu17577de2015-12-09 11:11:29 +09001620}
1621
Namhyung Kimfc284be2016-01-07 10:14:10 +01001622static int hists_evsel__init(struct perf_evsel *evsel)
1623{
1624 struct hists *hists = evsel__hists(evsel);
1625
1626 __hists__init(hists);
1627 return 0;
1628}
1629
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001630/*
1631 * XXX We probably need a hists_evsel__exit() to free the hist_entries
1632 * stored in the rbtree...
1633 */
1634
1635int hists__init(void)
1636{
1637 int err = perf_evsel__object_config(sizeof(struct hists_evsel),
Masami Hiramatsu17577de2015-12-09 11:11:29 +09001638 hists_evsel__init,
1639 hists_evsel__exit);
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001640 if (err)
1641 fputs("FATAL ERROR: Couldn't setup hists class\n", stderr);
1642
1643 return err;
1644}
Jiri Olsa94b3dc32016-01-18 10:24:13 +01001645
1646void perf_hpp_list__init(struct perf_hpp_list *list)
1647{
1648 INIT_LIST_HEAD(&list->fields);
1649 INIT_LIST_HEAD(&list->sorts);
1650}