blob: 81ce0aff69d17c115dfbe65ac2db158d3e80a717 [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 Meloab81f3f2011-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 Meloab81f3f2011-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 Meloab81f3f2011-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 Meloab81f3f2011-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 Meloab81f3f2011-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 Kima0b51af2012-09-11 13:34:27 +0900435 if (sample_self)
436 he_stat__add_period(&he->stat, period, weight);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900437 if (symbol_conf.cumulate_callchain)
438 he_stat__add_period(he->stat_acc, period, weight);
David Miller63fa4712012-03-27 03:14:18 -0400439
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900440 /*
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -0300441 * This mem info was allocated from sample__resolve_mem
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900442 * and will not be used anymore.
443 */
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300444 zfree(&entry->mem_info);
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900445
David Miller63fa4712012-03-27 03:14:18 -0400446 /* If the map of an existing hist_entry has
447 * become out-of-date due to an exec() or
448 * similar, update it. Otherwise we will
449 * mis-adjust symbol addresses when computing
450 * the history counter to increment.
451 */
452 if (he->ms.map != entry->ms.map) {
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300453 map__put(he->ms.map);
454 he->ms.map = map__get(entry->ms.map);
David Miller63fa4712012-03-27 03:14:18 -0400455 }
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300456 goto out;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300457 }
458
459 if (cmp < 0)
460 p = &(*p)->rb_left;
461 else
462 p = &(*p)->rb_right;
463 }
464
Namhyung Kima0b51af2012-09-11 13:34:27 +0900465 he = hist_entry__new(entry, sample_self);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300466 if (!he)
Namhyung Kim27a0dcb2013-05-14 11:09:02 +0900467 return NULL;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300468
Namhyung Kim590cd342014-12-22 13:44:09 +0900469 hists->nr_entries++;
470
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300471 rb_link_node(&he->rb_node_in, parent, p);
472 rb_insert_color(&he->rb_node_in, hists->entries_in);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300473out:
Namhyung Kima0b51af2012-09-11 13:34:27 +0900474 if (sample_self)
475 he_stat__add_cpumode_period(&he->stat, al->cpumode, period);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900476 if (symbol_conf.cumulate_callchain)
477 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300478 return he;
479}
480
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300481struct hist_entry *__hists__add_entry(struct hists *hists,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100482 struct addr_location *al,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900483 struct symbol *sym_parent,
484 struct branch_info *bi,
485 struct mem_info *mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900486 struct perf_sample *sample,
Namhyung Kima0b51af2012-09-11 13:34:27 +0900487 bool sample_self)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100488{
489 struct hist_entry entry = {
490 .thread = al->thread,
Namhyung Kim4dfced32013-09-13 16:28:57 +0900491 .comm = thread__comm(al->thread),
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100492 .ms = {
493 .map = al->map,
494 .sym = al->sym,
495 },
Kan Liang0c4c4de2015-09-04 10:45:42 -0400496 .socket = al->socket,
Don Zickus7365be52014-05-27 12:28:05 -0400497 .cpu = al->cpu,
498 .cpumode = al->cpumode,
499 .ip = al->addr,
500 .level = al->level,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900501 .stat = {
Namhyung Kimc4b35352012-10-04 21:49:42 +0900502 .nr_events = 1,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900503 .period = sample->period,
504 .weight = sample->weight,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900505 },
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100506 .parent = sym_parent,
Namhyung Kim2c86c7c2014-03-17 18:18:54 -0300507 .filtered = symbol__parent_filter(sym_parent) | al->filtered,
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300508 .hists = hists,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900509 .branch_info = bi,
510 .mem_info = mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900511 .transaction = sample->transaction,
Namhyung Kim72392832015-12-24 11:16:17 +0900512 .raw_data = sample->raw_data,
513 .raw_size = sample->raw_size,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100514 };
515
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300516 return hists__findnew_entry(hists, &entry, al, sample_self);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100517}
518
Namhyung Kim69bcb012013-10-30 09:40:34 +0900519static int
520iter_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
521 struct addr_location *al __maybe_unused)
522{
523 return 0;
524}
525
526static int
527iter_add_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_prepare_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
535{
536 struct perf_sample *sample = iter->sample;
537 struct mem_info *mi;
538
539 mi = sample__resolve_mem(sample, al);
540 if (mi == NULL)
541 return -ENOMEM;
542
543 iter->priv = mi;
544 return 0;
545}
546
547static int
548iter_add_single_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
549{
550 u64 cost;
551 struct mem_info *mi = iter->priv;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300552 struct hists *hists = evsel__hists(iter->evsel);
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900553 struct perf_sample *sample = iter->sample;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900554 struct hist_entry *he;
555
556 if (mi == NULL)
557 return -EINVAL;
558
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900559 cost = sample->weight;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900560 if (!cost)
561 cost = 1;
562
563 /*
564 * must pass period=weight in order to get the correct
565 * sorting from hists__collapse_resort() which is solely
566 * based on periods. We want sorting be done on nr_events * weight
567 * and this is indirectly achieved by passing period=weight here
568 * and the he_stat__add_period() function.
569 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900570 sample->period = cost;
571
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300572 he = __hists__add_entry(hists, al, iter->parent, NULL, mi,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900573 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900574 if (!he)
575 return -ENOMEM;
576
577 iter->he = he;
578 return 0;
579}
580
581static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900582iter_finish_mem_entry(struct hist_entry_iter *iter,
583 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900584{
585 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300586 struct hists *hists = evsel__hists(evsel);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900587 struct hist_entry *he = iter->he;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900588 int err = -EINVAL;
589
590 if (he == NULL)
591 goto out;
592
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300593 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900594
595 err = hist_entry__append_callchain(he, iter->sample);
596
597out:
598 /*
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300599 * We don't need to free iter->priv (mem_info) here since the mem info
600 * was either already freed in hists__findnew_entry() or passed to a
601 * new hist entry by hist_entry__new().
Namhyung Kim69bcb012013-10-30 09:40:34 +0900602 */
603 iter->priv = NULL;
604
605 iter->he = NULL;
606 return err;
607}
608
609static int
610iter_prepare_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
611{
612 struct branch_info *bi;
613 struct perf_sample *sample = iter->sample;
614
615 bi = sample__resolve_bstack(sample, al);
616 if (!bi)
617 return -ENOMEM;
618
619 iter->curr = 0;
620 iter->total = sample->branch_stack->nr;
621
622 iter->priv = bi;
623 return 0;
624}
625
626static int
627iter_add_single_branch_entry(struct hist_entry_iter *iter __maybe_unused,
628 struct addr_location *al __maybe_unused)
629{
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900630 /* to avoid calling callback function */
631 iter->he = NULL;
632
Namhyung Kim69bcb012013-10-30 09:40:34 +0900633 return 0;
634}
635
636static int
637iter_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
638{
639 struct branch_info *bi = iter->priv;
640 int i = iter->curr;
641
642 if (bi == NULL)
643 return 0;
644
645 if (iter->curr >= iter->total)
646 return 0;
647
648 al->map = bi[i].to.map;
649 al->sym = bi[i].to.sym;
650 al->addr = bi[i].to.addr;
651 return 1;
652}
653
654static int
655iter_add_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
656{
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900657 struct branch_info *bi;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900658 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300659 struct hists *hists = evsel__hists(evsel);
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900660 struct perf_sample *sample = iter->sample;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900661 struct hist_entry *he = NULL;
662 int i = iter->curr;
663 int err = 0;
664
665 bi = iter->priv;
666
667 if (iter->hide_unresolved && !(bi[i].from.sym && bi[i].to.sym))
668 goto out;
669
670 /*
671 * The report shows the percentage of total branches captured
672 * and not events sampled. Thus we use a pseudo period of 1.
673 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900674 sample->period = 1;
675 sample->weight = bi->flags.cycles ? bi->flags.cycles : 1;
676
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300677 he = __hists__add_entry(hists, al, iter->parent, &bi[i], NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900678 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900679 if (he == NULL)
680 return -ENOMEM;
681
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300682 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900683
684out:
685 iter->he = he;
686 iter->curr++;
687 return err;
688}
689
690static int
691iter_finish_branch_entry(struct hist_entry_iter *iter,
692 struct addr_location *al __maybe_unused)
693{
694 zfree(&iter->priv);
695 iter->he = NULL;
696
697 return iter->curr >= iter->total ? 0 : -1;
698}
699
700static int
701iter_prepare_normal_entry(struct hist_entry_iter *iter __maybe_unused,
702 struct addr_location *al __maybe_unused)
703{
704 return 0;
705}
706
707static int
708iter_add_single_normal_entry(struct hist_entry_iter *iter, struct addr_location *al)
709{
710 struct perf_evsel *evsel = iter->evsel;
711 struct perf_sample *sample = iter->sample;
712 struct hist_entry *he;
713
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300714 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900715 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900716 if (he == NULL)
717 return -ENOMEM;
718
719 iter->he = he;
720 return 0;
721}
722
723static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900724iter_finish_normal_entry(struct hist_entry_iter *iter,
725 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900726{
Namhyung Kim69bcb012013-10-30 09:40:34 +0900727 struct hist_entry *he = iter->he;
728 struct perf_evsel *evsel = iter->evsel;
729 struct perf_sample *sample = iter->sample;
730
731 if (he == NULL)
732 return 0;
733
734 iter->he = NULL;
735
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300736 hists__inc_nr_samples(evsel__hists(evsel), he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900737
738 return hist_entry__append_callchain(he, sample);
739}
740
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900741static int
Adrian Hunter96b40f32015-09-25 16:15:47 +0300742iter_prepare_cumulative_entry(struct hist_entry_iter *iter,
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900743 struct addr_location *al __maybe_unused)
744{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900745 struct hist_entry **he_cache;
746
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900747 callchain_cursor_commit(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900748
749 /*
750 * This is for detecting cycles or recursions so that they're
751 * cumulated only one time to prevent entries more than 100%
752 * overhead.
753 */
Adrian Hunter96b40f32015-09-25 16:15:47 +0300754 he_cache = malloc(sizeof(*he_cache) * (iter->max_stack + 1));
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900755 if (he_cache == NULL)
756 return -ENOMEM;
757
758 iter->priv = he_cache;
759 iter->curr = 0;
760
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900761 return 0;
762}
763
764static int
765iter_add_single_cumulative_entry(struct hist_entry_iter *iter,
766 struct addr_location *al)
767{
768 struct perf_evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300769 struct hists *hists = evsel__hists(evsel);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900770 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900771 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900772 struct hist_entry *he;
773 int err = 0;
774
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300775 he = __hists__add_entry(hists, al, iter->parent, NULL, NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900776 sample, true);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900777 if (he == NULL)
778 return -ENOMEM;
779
780 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900781 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900782
Namhyung Kim82aa0192014-12-22 13:44:14 +0900783 hist_entry__append_callchain(he, sample);
Namhyung Kimbe7f8552013-12-26 17:44:10 +0900784
785 /*
786 * We need to re-initialize the cursor since callchain_append()
787 * advanced the cursor to the end.
788 */
789 callchain_cursor_commit(&callchain_cursor);
790
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300791 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900792
793 return err;
794}
795
796static int
797iter_next_cumulative_entry(struct hist_entry_iter *iter,
798 struct addr_location *al)
799{
800 struct callchain_cursor_node *node;
801
802 node = callchain_cursor_current(&callchain_cursor);
803 if (node == NULL)
804 return 0;
805
Namhyung Kimc7405d82013-10-31 13:58:30 +0900806 return fill_callchain_info(al, node, iter->hide_unresolved);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900807}
808
809static int
810iter_add_next_cumulative_entry(struct hist_entry_iter *iter,
811 struct addr_location *al)
812{
813 struct perf_evsel *evsel = iter->evsel;
814 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900815 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900816 struct hist_entry *he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900817 struct hist_entry he_tmp = {
Arnaldo Carvalho de Melo5cef8972015-08-10 15:45:55 -0300818 .hists = evsel__hists(evsel),
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900819 .cpu = al->cpu,
820 .thread = al->thread,
821 .comm = thread__comm(al->thread),
822 .ip = al->addr,
823 .ms = {
824 .map = al->map,
825 .sym = al->sym,
826 },
827 .parent = iter->parent,
Namhyung Kim72392832015-12-24 11:16:17 +0900828 .raw_data = sample->raw_data,
829 .raw_size = sample->raw_size,
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900830 };
831 int i;
Namhyung Kimbe7f8552013-12-26 17:44:10 +0900832 struct callchain_cursor cursor;
833
834 callchain_cursor_snapshot(&cursor, &callchain_cursor);
835
836 callchain_cursor_advance(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900837
838 /*
839 * Check if there's duplicate entries in the callchain.
840 * It's possible that it has cycles or recursive calls.
841 */
842 for (i = 0; i < iter->curr; i++) {
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900843 if (hist_entry__cmp(he_cache[i], &he_tmp) == 0) {
844 /* to avoid calling callback function */
845 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900846 return 0;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900847 }
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900848 }
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900849
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300850 he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900851 sample, false);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900852 if (he == NULL)
853 return -ENOMEM;
854
855 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900856 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900857
Namhyung Kim82aa0192014-12-22 13:44:14 +0900858 if (symbol_conf.use_callchain)
859 callchain_append(he->callchain, &cursor, sample->period);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900860 return 0;
861}
862
863static int
864iter_finish_cumulative_entry(struct hist_entry_iter *iter,
865 struct addr_location *al __maybe_unused)
866{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900867 zfree(&iter->priv);
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900868 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +0900869
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900870 return 0;
871}
872
Namhyung Kim69bcb012013-10-30 09:40:34 +0900873const struct hist_iter_ops hist_iter_mem = {
874 .prepare_entry = iter_prepare_mem_entry,
875 .add_single_entry = iter_add_single_mem_entry,
876 .next_entry = iter_next_nop_entry,
877 .add_next_entry = iter_add_next_nop_entry,
878 .finish_entry = iter_finish_mem_entry,
879};
880
881const struct hist_iter_ops hist_iter_branch = {
882 .prepare_entry = iter_prepare_branch_entry,
883 .add_single_entry = iter_add_single_branch_entry,
884 .next_entry = iter_next_branch_entry,
885 .add_next_entry = iter_add_next_branch_entry,
886 .finish_entry = iter_finish_branch_entry,
887};
888
889const struct hist_iter_ops hist_iter_normal = {
890 .prepare_entry = iter_prepare_normal_entry,
891 .add_single_entry = iter_add_single_normal_entry,
892 .next_entry = iter_next_nop_entry,
893 .add_next_entry = iter_add_next_nop_entry,
894 .finish_entry = iter_finish_normal_entry,
895};
896
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900897const struct hist_iter_ops hist_iter_cumulative = {
898 .prepare_entry = iter_prepare_cumulative_entry,
899 .add_single_entry = iter_add_single_cumulative_entry,
900 .next_entry = iter_next_cumulative_entry,
901 .add_next_entry = iter_add_next_cumulative_entry,
902 .finish_entry = iter_finish_cumulative_entry,
903};
904
Namhyung Kim69bcb012013-10-30 09:40:34 +0900905int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900906 int max_stack_depth, void *arg)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900907{
908 int err, err2;
909
Namhyung Kim063bd932015-05-19 17:04:10 +0900910 err = sample__resolve_callchain(iter->sample, &iter->parent,
911 iter->evsel, al, max_stack_depth);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900912 if (err)
913 return err;
914
Adrian Hunter96b40f32015-09-25 16:15:47 +0300915 iter->max_stack = max_stack_depth;
916
Namhyung Kim69bcb012013-10-30 09:40:34 +0900917 err = iter->ops->prepare_entry(iter, al);
918 if (err)
919 goto out;
920
921 err = iter->ops->add_single_entry(iter, al);
922 if (err)
923 goto out;
924
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900925 if (iter->he && iter->add_entry_cb) {
926 err = iter->add_entry_cb(iter, al, true, arg);
927 if (err)
928 goto out;
929 }
930
Namhyung Kim69bcb012013-10-30 09:40:34 +0900931 while (iter->ops->next_entry(iter, al)) {
932 err = iter->ops->add_next_entry(iter, al);
933 if (err)
934 break;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900935
936 if (iter->he && iter->add_entry_cb) {
937 err = iter->add_entry_cb(iter, al, false, arg);
938 if (err)
939 goto out;
940 }
Namhyung Kim69bcb012013-10-30 09:40:34 +0900941 }
942
943out:
944 err2 = iter->ops->finish_entry(iter, al);
945 if (!err)
946 err = err2;
947
948 return err;
949}
950
John Kacur3d1d07e2009-09-28 15:32:55 +0200951int64_t
952hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
953{
Namhyung Kim093f0ef32014-03-03 12:07:47 +0900954 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +0200955 int64_t cmp = 0;
956
Namhyung Kim093f0ef32014-03-03 12:07:47 +0900957 perf_hpp__for_each_sort_list(fmt) {
Namhyung Kim87bbdf72015-01-08 09:45:46 +0900958 cmp = fmt->cmp(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +0200959 if (cmp)
960 break;
961 }
962
963 return cmp;
964}
965
966int64_t
967hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
968{
Namhyung Kim093f0ef32014-03-03 12:07:47 +0900969 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +0200970 int64_t cmp = 0;
971
Namhyung Kim093f0ef32014-03-03 12:07:47 +0900972 perf_hpp__for_each_sort_list(fmt) {
Namhyung Kim87bbdf72015-01-08 09:45:46 +0900973 cmp = fmt->collapse(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +0200974 if (cmp)
975 break;
976 }
977
978 return cmp;
979}
980
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -0300981void hist_entry__delete(struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +0200982{
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300983 thread__zput(he->thread);
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300984 map__zput(he->ms.map);
985
986 if (he->branch_info) {
987 map__zput(he->branch_info->from.map);
988 map__zput(he->branch_info->to.map);
989 zfree(&he->branch_info);
990 }
991
992 if (he->mem_info) {
993 map__zput(he->mem_info->iaddr.map);
994 map__zput(he->mem_info->daddr.map);
995 zfree(&he->mem_info);
996 }
997
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900998 zfree(&he->stat_acc);
Namhyung Kimf048d542013-09-11 14:09:28 +0900999 free_srcline(he->srcline);
Andi Kleen31191a82015-08-07 15:54:24 -07001000 if (he->srcfile && he->srcfile[0])
1001 free(he->srcfile);
Namhyung Kimd1149602014-12-30 14:38:13 +09001002 free_callchain(he->callchain);
Namhyung Kim60517d22015-12-23 02:07:03 +09001003 free(he->trace_output);
Namhyung Kim72392832015-12-24 11:16:17 +09001004 free(he->raw_data);
John Kacur3d1d07e2009-09-28 15:32:55 +02001005 free(he);
1006}
1007
1008/*
1009 * collapse the histogram
1010 */
1011
Namhyung Kimfc284be2016-01-07 10:14:10 +01001012bool hists__collapse_insert_entry(struct hists *hists __maybe_unused,
1013 struct rb_root *root, struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +02001014{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -02001015 struct rb_node **p = &root->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001016 struct rb_node *parent = NULL;
1017 struct hist_entry *iter;
1018 int64_t cmp;
1019
1020 while (*p != NULL) {
1021 parent = *p;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001022 iter = rb_entry(parent, struct hist_entry, rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001023
1024 cmp = hist_entry__collapse(iter, he);
1025
1026 if (!cmp) {
Namhyung Kim139c0812012-10-04 21:49:43 +09001027 he_stat__add_stat(&iter->stat, &he->stat);
Namhyung Kimf8be1c82012-09-11 13:15:07 +09001028 if (symbol_conf.cumulate_callchain)
1029 he_stat__add_stat(iter->stat_acc, he->stat_acc);
Namhyung Kim9ec60972012-09-26 16:47:28 +09001030
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +01001031 if (symbol_conf.use_callchain) {
Namhyung Kim47260642012-05-31 14:43:26 +09001032 callchain_cursor_reset(&callchain_cursor);
1033 callchain_merge(&callchain_cursor,
1034 iter->callchain,
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +01001035 he->callchain);
1036 }
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -03001037 hist_entry__delete(he);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -03001038 return false;
John Kacur3d1d07e2009-09-28 15:32:55 +02001039 }
1040
1041 if (cmp < 0)
1042 p = &(*p)->rb_left;
1043 else
1044 p = &(*p)->rb_right;
1045 }
Namhyung Kim740b97f2014-12-22 13:44:10 +09001046 hists->nr_entries++;
John Kacur3d1d07e2009-09-28 15:32:55 +02001047
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001048 rb_link_node(&he->rb_node_in, parent, p);
1049 rb_insert_color(&he->rb_node_in, root);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -03001050 return true;
John Kacur3d1d07e2009-09-28 15:32:55 +02001051}
1052
Namhyung Kimfc284be2016-01-07 10:14:10 +01001053struct rb_root *hists__get_rotate_entries_in(struct hists *hists)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001054{
1055 struct rb_root *root;
1056
1057 pthread_mutex_lock(&hists->lock);
1058
1059 root = hists->entries_in;
1060 if (++hists->entries_in > &hists->entries_in_array[1])
1061 hists->entries_in = &hists->entries_in_array[0];
1062
1063 pthread_mutex_unlock(&hists->lock);
1064
1065 return root;
1066}
1067
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001068static void hists__apply_filters(struct hists *hists, struct hist_entry *he)
1069{
1070 hists__filter_entry_by_dso(hists, he);
1071 hists__filter_entry_by_thread(hists, he);
Namhyung Kime94d53e2012-03-16 17:50:51 +09001072 hists__filter_entry_by_symbol(hists, he);
Kan Liang21394d92015-09-04 10:45:44 -04001073 hists__filter_entry_by_socket(hists, he);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001074}
1075
Namhyung Kimc1fb5652013-10-11 14:15:38 +09001076void hists__collapse_resort(struct hists *hists, struct ui_progress *prog)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001077{
1078 struct rb_root *root;
1079 struct rb_node *next;
1080 struct hist_entry *n;
1081
Namhyung Kim3a5714f2013-05-14 11:09:01 +09001082 if (!sort__need_collapse)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001083 return;
1084
Namhyung Kim740b97f2014-12-22 13:44:10 +09001085 hists->nr_entries = 0;
1086
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001087 root = hists__get_rotate_entries_in(hists);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001088
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001089 next = rb_first(root);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001090
1091 while (next) {
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001092 if (session_done())
1093 break;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001094 n = rb_entry(next, struct hist_entry, rb_node_in);
1095 next = rb_next(&n->rb_node_in);
1096
1097 rb_erase(&n->rb_node_in, root);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001098 if (hists__collapse_insert_entry(hists, &hists->entries_collapsed, n)) {
1099 /*
1100 * If it wasn't combined with one of the entries already
1101 * collapsed, we need to apply the filters that may have
1102 * been set by, say, the hist_browser.
1103 */
1104 hists__apply_filters(hists, n);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001105 }
Namhyung Kimc1fb5652013-10-11 14:15:38 +09001106 if (prog)
1107 ui_progress__update(prog, 1);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001108 }
1109}
1110
Namhyung Kim043ca3892014-03-03 14:18:00 +09001111static int hist_entry__sort(struct hist_entry *a, struct hist_entry *b)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001112{
Namhyung Kim043ca3892014-03-03 14:18:00 +09001113 struct perf_hpp_fmt *fmt;
1114 int64_t cmp = 0;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001115
Namhyung Kim26d8b332014-03-03 16:16:20 +09001116 perf_hpp__for_each_sort_list(fmt) {
Namhyung Kim361459f2015-12-23 02:07:08 +09001117 if (perf_hpp__should_skip(fmt, a->hists))
Namhyung Kime67d49a2014-03-18 13:00:59 +09001118 continue;
1119
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001120 cmp = fmt->sort(fmt, a, b);
Namhyung Kim043ca3892014-03-03 14:18:00 +09001121 if (cmp)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001122 break;
1123 }
1124
Namhyung Kim043ca3892014-03-03 14:18:00 +09001125 return cmp;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001126}
1127
Namhyung Kim9283ba92014-04-24 16:37:26 +09001128static void hists__reset_filter_stats(struct hists *hists)
1129{
1130 hists->nr_non_filtered_entries = 0;
1131 hists->stats.total_non_filtered_period = 0;
1132}
1133
1134void hists__reset_stats(struct hists *hists)
1135{
1136 hists->nr_entries = 0;
1137 hists->stats.total_period = 0;
1138
1139 hists__reset_filter_stats(hists);
1140}
1141
1142static void hists__inc_filter_stats(struct hists *hists, struct hist_entry *h)
1143{
1144 hists->nr_non_filtered_entries++;
1145 hists->stats.total_non_filtered_period += h->stat.period;
1146}
1147
1148void hists__inc_stats(struct hists *hists, struct hist_entry *h)
1149{
1150 if (!h->filtered)
1151 hists__inc_filter_stats(hists, h);
1152
1153 hists->nr_entries++;
1154 hists->stats.total_period += h->stat.period;
1155}
1156
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001157static void __hists__insert_output_entry(struct rb_root *entries,
1158 struct hist_entry *he,
Kan Liangf9db0d02015-08-11 06:30:48 -04001159 u64 min_callchain_hits,
1160 bool use_callchain)
John Kacur3d1d07e2009-09-28 15:32:55 +02001161{
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001162 struct rb_node **p = &entries->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001163 struct rb_node *parent = NULL;
1164 struct hist_entry *iter;
1165
Kan Liangf9db0d02015-08-11 06:30:48 -04001166 if (use_callchain)
Arnaldo Carvalho de Melob9fb9302010-04-02 09:50:42 -03001167 callchain_param.sort(&he->sorted_chain, he->callchain,
John Kacur3d1d07e2009-09-28 15:32:55 +02001168 min_callchain_hits, &callchain_param);
1169
1170 while (*p != NULL) {
1171 parent = *p;
1172 iter = rb_entry(parent, struct hist_entry, rb_node);
1173
Namhyung Kim043ca3892014-03-03 14:18:00 +09001174 if (hist_entry__sort(he, iter) > 0)
John Kacur3d1d07e2009-09-28 15:32:55 +02001175 p = &(*p)->rb_left;
1176 else
1177 p = &(*p)->rb_right;
1178 }
1179
1180 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001181 rb_insert_color(&he->rb_node, entries);
John Kacur3d1d07e2009-09-28 15:32:55 +02001182}
1183
Namhyung Kim740b97f2014-12-22 13:44:10 +09001184void hists__output_resort(struct hists *hists, struct ui_progress *prog)
John Kacur3d1d07e2009-09-28 15:32:55 +02001185{
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001186 struct rb_root *root;
John Kacur3d1d07e2009-09-28 15:32:55 +02001187 struct rb_node *next;
1188 struct hist_entry *n;
John Kacur3d1d07e2009-09-28 15:32:55 +02001189 u64 min_callchain_hits;
Kan Liangf9db0d02015-08-11 06:30:48 -04001190 struct perf_evsel *evsel = hists_to_evsel(hists);
Kan Liang9e207dd2015-08-11 06:30:49 -04001191 bool use_callchain;
1192
Namhyung Kim208e7602015-09-30 13:34:00 +09001193 if (evsel && symbol_conf.use_callchain && !symbol_conf.show_ref_callgraph)
Kan Liang9e207dd2015-08-11 06:30:49 -04001194 use_callchain = evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN;
1195 else
1196 use_callchain = symbol_conf.use_callchain;
John Kacur3d1d07e2009-09-28 15:32:55 +02001197
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001198 min_callchain_hits = hists->stats.total_period * (callchain_param.min_percent / 100);
John Kacur3d1d07e2009-09-28 15:32:55 +02001199
Namhyung Kim3a5714f2013-05-14 11:09:01 +09001200 if (sort__need_collapse)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001201 root = &hists->entries_collapsed;
1202 else
1203 root = hists->entries_in;
1204
1205 next = rb_first(root);
1206 hists->entries = RB_ROOT;
John Kacur3d1d07e2009-09-28 15:32:55 +02001207
Namhyung Kim9283ba92014-04-24 16:37:26 +09001208 hists__reset_stats(hists);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001209 hists__reset_col_len(hists);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -03001210
John Kacur3d1d07e2009-09-28 15:32:55 +02001211 while (next) {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001212 n = rb_entry(next, struct hist_entry, rb_node_in);
1213 next = rb_next(&n->rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001214
Kan Liangf9db0d02015-08-11 06:30:48 -04001215 __hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain);
Namhyung Kim62638352014-04-24 16:21:46 +09001216 hists__inc_stats(hists, n);
Namhyung Kimae993ef2014-04-24 16:25:19 +09001217
1218 if (!n->filtered)
1219 hists__calc_col_len(hists, n);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001220
1221 if (prog)
1222 ui_progress__update(prog, 1);
John Kacur3d1d07e2009-09-28 15:32:55 +02001223 }
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001224}
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -02001225
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001226static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h,
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001227 enum hist_filter filter)
1228{
1229 h->filtered &= ~(1 << filter);
1230 if (h->filtered)
1231 return;
1232
Namhyung Kim87e90f42014-04-24 16:44:16 +09001233 /* force fold unfiltered entry for simplicity */
Namhyung Kim3698dab2015-05-05 23:55:46 +09001234 h->unfolded = false;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -03001235 h->row_offset = 0;
He Kuanga8cd1f42015-03-11 20:36:03 +08001236 h->nr_rows = 0;
Namhyung Kim9283ba92014-04-24 16:37:26 +09001237
Namhyung Kim1ab1fa52013-12-26 15:11:52 +09001238 hists->stats.nr_non_filtered_samples += h->stat.nr_events;
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001239
Namhyung Kim9283ba92014-04-24 16:37:26 +09001240 hists__inc_filter_stats(hists, h);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001241 hists__calc_col_len(hists, h);
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03001242}
1243
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001244
1245static bool hists__filter_entry_by_dso(struct hists *hists,
1246 struct hist_entry *he)
1247{
1248 if (hists->dso_filter != NULL &&
1249 (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) {
1250 he->filtered |= (1 << HIST_FILTER__DSO);
1251 return true;
1252 }
1253
1254 return false;
1255}
1256
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001257static bool hists__filter_entry_by_thread(struct hists *hists,
1258 struct hist_entry *he)
1259{
1260 if (hists->thread_filter != NULL &&
1261 he->thread != hists->thread_filter) {
1262 he->filtered |= (1 << HIST_FILTER__THREAD);
1263 return true;
1264 }
1265
1266 return false;
1267}
1268
Namhyung Kime94d53e2012-03-16 17:50:51 +09001269static bool hists__filter_entry_by_symbol(struct hists *hists,
1270 struct hist_entry *he)
1271{
1272 if (hists->symbol_filter_str != NULL &&
1273 (!he->ms.sym || strstr(he->ms.sym->name,
1274 hists->symbol_filter_str) == NULL)) {
1275 he->filtered |= (1 << HIST_FILTER__SYMBOL);
1276 return true;
1277 }
1278
1279 return false;
1280}
1281
Kan Liang21394d92015-09-04 10:45:44 -04001282static bool hists__filter_entry_by_socket(struct hists *hists,
1283 struct hist_entry *he)
1284{
1285 if ((hists->socket_filter > -1) &&
1286 (he->socket != hists->socket_filter)) {
1287 he->filtered |= (1 << HIST_FILTER__SOCKET);
1288 return true;
1289 }
1290
1291 return false;
1292}
1293
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001294typedef bool (*filter_fn_t)(struct hists *hists, struct hist_entry *he);
1295
1296static void hists__filter_by_type(struct hists *hists, int type, filter_fn_t filter)
Kan Liang84734b02015-09-04 10:45:45 -04001297{
1298 struct rb_node *nd;
1299
1300 hists->stats.nr_non_filtered_samples = 0;
1301
1302 hists__reset_filter_stats(hists);
1303 hists__reset_col_len(hists);
1304
1305 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
1306 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1307
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001308 if (filter(hists, h))
Kan Liang84734b02015-09-04 10:45:45 -04001309 continue;
1310
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001311 hists__remove_entry_filter(hists, h, type);
Kan Liang84734b02015-09-04 10:45:45 -04001312 }
1313}
1314
Namhyung Kim1f7c2542016-01-20 10:15:21 +09001315void hists__filter_by_thread(struct hists *hists)
1316{
1317 hists__filter_by_type(hists, HIST_FILTER__THREAD,
1318 hists__filter_entry_by_thread);
1319}
1320
1321void hists__filter_by_dso(struct hists *hists)
1322{
1323 hists__filter_by_type(hists, HIST_FILTER__DSO,
1324 hists__filter_entry_by_dso);
1325}
1326
1327void hists__filter_by_symbol(struct hists *hists)
1328{
1329 hists__filter_by_type(hists, HIST_FILTER__SYMBOL,
1330 hists__filter_entry_by_symbol);
1331}
1332
1333void hists__filter_by_socket(struct hists *hists)
1334{
1335 hists__filter_by_type(hists, HIST_FILTER__SOCKET,
1336 hists__filter_entry_by_socket);
1337}
1338
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03001339void events_stats__inc(struct events_stats *stats, u32 type)
1340{
1341 ++stats->nr_events[0];
1342 ++stats->nr_events[type];
1343}
1344
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03001345void hists__inc_nr_events(struct hists *hists, u32 type)
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03001346{
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03001347 events_stats__inc(&hists->stats, type);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03001348}
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001349
Namhyung Kim1844dbc2014-05-28 14:12:18 +09001350void hists__inc_nr_samples(struct hists *hists, bool filtered)
1351{
1352 events_stats__inc(&hists->stats, PERF_RECORD_SAMPLE);
1353 if (!filtered)
1354 hists->stats.nr_non_filtered_samples++;
1355}
1356
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001357static struct hist_entry *hists__add_dummy_entry(struct hists *hists,
1358 struct hist_entry *pair)
1359{
Namhyung Kimce74f602012-12-10 17:29:55 +09001360 struct rb_root *root;
1361 struct rb_node **p;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001362 struct rb_node *parent = NULL;
1363 struct hist_entry *he;
Andi Kleen354cc402013-10-01 07:22:15 -07001364 int64_t cmp;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001365
Namhyung Kimce74f602012-12-10 17:29:55 +09001366 if (sort__need_collapse)
1367 root = &hists->entries_collapsed;
1368 else
1369 root = hists->entries_in;
1370
1371 p = &root->rb_node;
1372
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001373 while (*p != NULL) {
1374 parent = *p;
Namhyung Kimce74f602012-12-10 17:29:55 +09001375 he = rb_entry(parent, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001376
Namhyung Kimce74f602012-12-10 17:29:55 +09001377 cmp = hist_entry__collapse(he, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001378
1379 if (!cmp)
1380 goto out;
1381
1382 if (cmp < 0)
1383 p = &(*p)->rb_left;
1384 else
1385 p = &(*p)->rb_right;
1386 }
1387
Namhyung Kima0b51af2012-09-11 13:34:27 +09001388 he = hist_entry__new(pair, true);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001389 if (he) {
Arnaldo Carvalho de Melo30193d72012-11-12 13:20:03 -03001390 memset(&he->stat, 0, sizeof(he->stat));
1391 he->hists = hists;
Namhyung Kimce74f602012-12-10 17:29:55 +09001392 rb_link_node(&he->rb_node_in, parent, p);
1393 rb_insert_color(&he->rb_node_in, root);
Namhyung Kim62638352014-04-24 16:21:46 +09001394 hists__inc_stats(hists, he);
Jiri Olsae0af43d2012-12-01 21:18:20 +01001395 he->dummy = true;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001396 }
1397out:
1398 return he;
1399}
1400
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001401static struct hist_entry *hists__find_entry(struct hists *hists,
1402 struct hist_entry *he)
1403{
Namhyung Kimce74f602012-12-10 17:29:55 +09001404 struct rb_node *n;
1405
1406 if (sort__need_collapse)
1407 n = hists->entries_collapsed.rb_node;
1408 else
1409 n = hists->entries_in->rb_node;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001410
1411 while (n) {
Namhyung Kimce74f602012-12-10 17:29:55 +09001412 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node_in);
1413 int64_t cmp = hist_entry__collapse(iter, he);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001414
1415 if (cmp < 0)
1416 n = n->rb_left;
1417 else if (cmp > 0)
1418 n = n->rb_right;
1419 else
1420 return iter;
1421 }
1422
1423 return NULL;
1424}
1425
1426/*
1427 * Look for pairs to link to the leader buckets (hist_entries):
1428 */
1429void hists__match(struct hists *leader, struct hists *other)
1430{
Namhyung Kimce74f602012-12-10 17:29:55 +09001431 struct rb_root *root;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001432 struct rb_node *nd;
1433 struct hist_entry *pos, *pair;
1434
Namhyung Kimce74f602012-12-10 17:29:55 +09001435 if (sort__need_collapse)
1436 root = &leader->entries_collapsed;
1437 else
1438 root = leader->entries_in;
1439
1440 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
1441 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001442 pair = hists__find_entry(other, pos);
1443
1444 if (pair)
Namhyung Kim5fa90412012-11-29 15:38:34 +09001445 hist_entry__add_pair(pair, pos);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03001446 }
1447}
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001448
1449/*
1450 * Look for entries in the other hists that are not present in the leader, if
1451 * we find them, just add a dummy entry on the leader hists, with period=0,
1452 * nr_events=0, to serve as the list header.
1453 */
1454int hists__link(struct hists *leader, struct hists *other)
1455{
Namhyung Kimce74f602012-12-10 17:29:55 +09001456 struct rb_root *root;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001457 struct rb_node *nd;
1458 struct hist_entry *pos, *pair;
1459
Namhyung Kimce74f602012-12-10 17:29:55 +09001460 if (sort__need_collapse)
1461 root = &other->entries_collapsed;
1462 else
1463 root = other->entries_in;
1464
1465 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
1466 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001467
1468 if (!hist_entry__has_pairs(pos)) {
1469 pair = hists__add_dummy_entry(leader, pos);
1470 if (pair == NULL)
1471 return -1;
Namhyung Kim5fa90412012-11-29 15:38:34 +09001472 hist_entry__add_pair(pos, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03001473 }
1474 }
1475
1476 return 0;
1477}
Namhyung Kimf2148332014-01-14 11:52:48 +09001478
Andi Kleen578499982015-07-18 08:24:49 -07001479void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
1480 struct perf_sample *sample, bool nonany_branch_mode)
1481{
1482 struct branch_info *bi;
1483
1484 /* If we have branch cycles always annotate them. */
1485 if (bs && bs->nr && bs->entries[0].flags.cycles) {
1486 int i;
1487
1488 bi = sample__resolve_bstack(sample, al);
1489 if (bi) {
1490 struct addr_map_symbol *prev = NULL;
1491
1492 /*
1493 * Ignore errors, still want to process the
1494 * other entries.
1495 *
1496 * For non standard branch modes always
1497 * force no IPC (prev == NULL)
1498 *
1499 * Note that perf stores branches reversed from
1500 * program order!
1501 */
1502 for (i = bs->nr - 1; i >= 0; i--) {
1503 addr_map_symbol__account_cycles(&bi[i].from,
1504 nonany_branch_mode ? NULL : prev,
1505 bi[i].flags.cycles);
1506 prev = &bi[i].to;
1507 }
1508 free(bi);
1509 }
1510 }
1511}
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03001512
1513size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp)
1514{
1515 struct perf_evsel *pos;
1516 size_t ret = 0;
1517
1518 evlist__for_each(evlist, pos) {
1519 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
1520 ret += events_stats__fprintf(&evsel__hists(pos)->stats, fp);
1521 }
1522
1523 return ret;
1524}
1525
1526
Namhyung Kimf2148332014-01-14 11:52:48 +09001527u64 hists__total_period(struct hists *hists)
1528{
1529 return symbol_conf.filter_relative ? hists->stats.total_non_filtered_period :
1530 hists->stats.total_period;
1531}
Namhyung Kim33db4562014-02-07 12:06:07 +09001532
1533int parse_filter_percentage(const struct option *opt __maybe_unused,
1534 const char *arg, int unset __maybe_unused)
1535{
1536 if (!strcmp(arg, "relative"))
1537 symbol_conf.filter_relative = true;
1538 else if (!strcmp(arg, "absolute"))
1539 symbol_conf.filter_relative = false;
1540 else
1541 return -1;
1542
1543 return 0;
1544}
Namhyung Kim0b93da12014-01-14 12:02:15 +09001545
1546int perf_hist_config(const char *var, const char *value)
1547{
1548 if (!strcmp(var, "hist.percentage"))
1549 return parse_filter_percentage(NULL, value, 0);
1550
1551 return 0;
1552}
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001553
Namhyung Kimfc284be2016-01-07 10:14:10 +01001554int __hists__init(struct hists *hists)
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001555{
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001556 memset(hists, 0, sizeof(*hists));
1557 hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT;
1558 hists->entries_in = &hists->entries_in_array[0];
1559 hists->entries_collapsed = RB_ROOT;
1560 hists->entries = RB_ROOT;
1561 pthread_mutex_init(&hists->lock, NULL);
Kan Liang21394d92015-09-04 10:45:44 -04001562 hists->socket_filter = -1;
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001563 return 0;
1564}
1565
Namhyung Kim61fa0e92015-12-10 16:53:20 +09001566static void hists__delete_remaining_entries(struct rb_root *root)
1567{
1568 struct rb_node *node;
1569 struct hist_entry *he;
1570
1571 while (!RB_EMPTY_ROOT(root)) {
1572 node = rb_first(root);
1573 rb_erase(node, root);
1574
1575 he = rb_entry(node, struct hist_entry, rb_node_in);
1576 hist_entry__delete(he);
1577 }
1578}
1579
1580static void hists__delete_all_entries(struct hists *hists)
1581{
1582 hists__delete_entries(hists);
1583 hists__delete_remaining_entries(&hists->entries_in_array[0]);
1584 hists__delete_remaining_entries(&hists->entries_in_array[1]);
1585 hists__delete_remaining_entries(&hists->entries_collapsed);
1586}
1587
Masami Hiramatsu17577de2015-12-09 11:11:29 +09001588static void hists_evsel__exit(struct perf_evsel *evsel)
1589{
1590 struct hists *hists = evsel__hists(evsel);
1591
Namhyung Kim61fa0e92015-12-10 16:53:20 +09001592 hists__delete_all_entries(hists);
Masami Hiramatsu17577de2015-12-09 11:11:29 +09001593}
1594
Namhyung Kimfc284be2016-01-07 10:14:10 +01001595static int hists_evsel__init(struct perf_evsel *evsel)
1596{
1597 struct hists *hists = evsel__hists(evsel);
1598
1599 __hists__init(hists);
1600 return 0;
1601}
1602
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001603/*
1604 * XXX We probably need a hists_evsel__exit() to free the hist_entries
1605 * stored in the rbtree...
1606 */
1607
1608int hists__init(void)
1609{
1610 int err = perf_evsel__object_config(sizeof(struct hists_evsel),
Masami Hiramatsu17577de2015-12-09 11:11:29 +09001611 hists_evsel__init,
1612 hists_evsel__exit);
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03001613 if (err)
1614 fputs("FATAL ERROR: Couldn't setup hists class\n", stderr);
1615
1616 return err;
1617}