blob: 677e1da6bb3eae6d688cd7e1afc51070e55810ea [file] [log] [blame]
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001#include "annotate.h"
Frederic Weisbecker8a0ecfb2010-05-13 19:47:16 +02002#include "util.h"
Frederic Weisbecker598357e2010-05-21 12:48:39 +02003#include "build-id.h"
John Kacur3d1d07e2009-09-28 15:32:55 +02004#include "hist.h"
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -02005#include "session.h"
6#include "sort.h"
Arnaldo Carvalho de Melo9b338272009-12-16 14:31:49 -02007#include <math.h>
John Kacur3d1d07e2009-09-28 15:32:55 +02008
Arnaldo Carvalho de Melo7a007ca2010-07-21 09:19:41 -03009enum hist_filter {
10 HIST_FILTER__DSO,
11 HIST_FILTER__THREAD,
12 HIST_FILTER__PARENT,
13};
14
John Kacur3d1d07e2009-09-28 15:32:55 +020015struct callchain_param callchain_param = {
16 .mode = CHAIN_GRAPH_REL,
Sam Liaod797fdc2011-06-07 23:49:46 +080017 .min_percent = 0.5,
18 .order = ORDER_CALLEE
John Kacur3d1d07e2009-09-28 15:32:55 +020019};
20
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030021u16 hists__col_len(struct hists *self, enum hist_column col)
22{
23 return self->col_len[col];
24}
25
26void hists__set_col_len(struct hists *self, enum hist_column col, u16 len)
27{
28 self->col_len[col] = len;
29}
30
31bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len)
32{
33 if (len > hists__col_len(self, col)) {
34 hists__set_col_len(self, col, len);
35 return true;
36 }
37 return false;
38}
39
40static void hists__reset_col_len(struct hists *self)
41{
42 enum hist_column col;
43
44 for (col = 0; col < HISTC_NR_COLS; ++col)
45 hists__set_col_len(self, col, 0);
46}
47
48static void hists__calc_col_len(struct hists *self, struct hist_entry *h)
49{
50 u16 len;
51
52 if (h->ms.sym)
53 hists__new_col_len(self, HISTC_SYMBOL, h->ms.sym->namelen);
Arnaldo Carvalho de Melod7603d52011-03-04 14:51:33 -030054 else {
55 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
56
57 if (hists__col_len(self, HISTC_DSO) < unresolved_col_width &&
58 !symbol_conf.col_width_list_str && !symbol_conf.field_sep &&
59 !symbol_conf.dso_list)
60 hists__set_col_len(self, HISTC_DSO,
61 unresolved_col_width);
62 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030063
64 len = thread__comm_len(h->thread);
65 if (hists__new_col_len(self, HISTC_COMM, len))
66 hists__set_col_len(self, HISTC_THREAD, len + 6);
67
68 if (h->ms.map) {
69 len = dso__name_len(h->ms.map->dso);
70 hists__new_col_len(self, HISTC_DSO, len);
71 }
72}
73
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030074static void hist_entry__add_cpumode_period(struct hist_entry *self,
75 unsigned int cpumode, u64 period)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080076{
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -030077 switch (cpumode) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080078 case PERF_RECORD_MISC_KERNEL:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030079 self->period_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080080 break;
81 case PERF_RECORD_MISC_USER:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030082 self->period_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080083 break;
84 case PERF_RECORD_MISC_GUEST_KERNEL:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030085 self->period_guest_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080086 break;
87 case PERF_RECORD_MISC_GUEST_USER:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030088 self->period_guest_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080089 break;
90 default:
91 break;
92 }
93}
94
John Kacur3d1d07e2009-09-28 15:32:55 +020095/*
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030096 * histogram, sorted on item, collects periods
John Kacur3d1d07e2009-09-28 15:32:55 +020097 */
98
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -030099static struct hist_entry *hist_entry__new(struct hist_entry *template)
100{
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200101 size_t callchain_size = symbol_conf.use_callchain ? sizeof(struct callchain_root) : 0;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300102 struct hist_entry *self = malloc(sizeof(*self) + callchain_size);
103
104 if (self != NULL) {
105 *self = *template;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300106 self->nr_events = 1;
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300107 if (self->ms.map)
108 self->ms.map->referenced = true;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300109 if (symbol_conf.use_callchain)
110 callchain_init(self->callchain);
111 }
112
113 return self;
114}
115
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300116static void hists__inc_nr_entries(struct hists *self, struct hist_entry *h)
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300117{
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300118 if (!h->filtered) {
119 hists__calc_col_len(self, h);
120 ++self->nr_entries;
121 }
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300122}
123
Arnaldo Carvalho de Melo7a007ca2010-07-21 09:19:41 -0300124static u8 symbol__parent_filter(const struct symbol *parent)
125{
126 if (symbol_conf.exclude_other && parent == NULL)
127 return 1 << HIST_FILTER__PARENT;
128 return 0;
129}
130
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300131struct hist_entry *__hists__add_entry(struct hists *self,
132 struct addr_location *al,
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300133 struct symbol *sym_parent, u64 period)
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300134{
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300135 struct rb_node **p = &self->entries.rb_node;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300136 struct rb_node *parent = NULL;
137 struct hist_entry *he;
138 struct hist_entry entry = {
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200139 .thread = al->thread,
Arnaldo Carvalho de Melo59fd5302010-03-24 16:40:17 -0300140 .ms = {
141 .map = al->map,
142 .sym = al->sym,
143 },
Arun Sharmaf60f3592010-06-04 11:27:10 -0300144 .cpu = al->cpu,
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200145 .ip = al->addr,
146 .level = al->level,
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300147 .period = period,
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300148 .parent = sym_parent,
Arnaldo Carvalho de Melo7a007ca2010-07-21 09:19:41 -0300149 .filtered = symbol__parent_filter(sym_parent),
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300150 };
151 int cmp;
152
153 while (*p != NULL) {
154 parent = *p;
155 he = rb_entry(parent, struct hist_entry, rb_node);
156
157 cmp = hist_entry__cmp(&entry, he);
158
159 if (!cmp) {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300160 he->period += period;
161 ++he->nr_events;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300162 goto out;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300163 }
164
165 if (cmp < 0)
166 p = &(*p)->rb_left;
167 else
168 p = &(*p)->rb_right;
169 }
170
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300171 he = hist_entry__new(&entry);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300172 if (!he)
173 return NULL;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300174 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300175 rb_insert_color(&he->rb_node, &self->entries);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300176 hists__inc_nr_entries(self, he);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300177out:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300178 hist_entry__add_cpumode_period(he, al->cpumode, period);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300179 return he;
180}
181
John Kacur3d1d07e2009-09-28 15:32:55 +0200182int64_t
183hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
184{
185 struct sort_entry *se;
186 int64_t cmp = 0;
187
188 list_for_each_entry(se, &hist_entry__sort_list, list) {
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200189 cmp = se->se_cmp(left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +0200190 if (cmp)
191 break;
192 }
193
194 return cmp;
195}
196
197int64_t
198hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
199{
200 struct sort_entry *se;
201 int64_t cmp = 0;
202
203 list_for_each_entry(se, &hist_entry__sort_list, list) {
204 int64_t (*f)(struct hist_entry *, struct hist_entry *);
205
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200206 f = se->se_collapse ?: se->se_cmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200207
208 cmp = f(left, right);
209 if (cmp)
210 break;
211 }
212
213 return cmp;
214}
215
216void hist_entry__free(struct hist_entry *he)
217{
218 free(he);
219}
220
221/*
222 * collapse the histogram
223 */
224
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100225static bool hists__collapse_insert_entry(struct hists *self,
226 struct rb_root *root,
227 struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +0200228{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200229 struct rb_node **p = &root->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +0200230 struct rb_node *parent = NULL;
231 struct hist_entry *iter;
232 int64_t cmp;
233
234 while (*p != NULL) {
235 parent = *p;
236 iter = rb_entry(parent, struct hist_entry, rb_node);
237
238 cmp = hist_entry__collapse(iter, he);
239
240 if (!cmp) {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300241 iter->period += he->period;
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100242 if (symbol_conf.use_callchain) {
243 callchain_cursor_reset(&self->callchain_cursor);
244 callchain_merge(&self->callchain_cursor, iter->callchain,
245 he->callchain);
246 }
John Kacur3d1d07e2009-09-28 15:32:55 +0200247 hist_entry__free(he);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300248 return false;
John Kacur3d1d07e2009-09-28 15:32:55 +0200249 }
250
251 if (cmp < 0)
252 p = &(*p)->rb_left;
253 else
254 p = &(*p)->rb_right;
255 }
256
257 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200258 rb_insert_color(&he->rb_node, root);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300259 return true;
John Kacur3d1d07e2009-09-28 15:32:55 +0200260}
261
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300262void hists__collapse_resort(struct hists *self)
John Kacur3d1d07e2009-09-28 15:32:55 +0200263{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200264 struct rb_root tmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200265 struct rb_node *next;
266 struct hist_entry *n;
267
268 if (!sort__need_collapse)
269 return;
270
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200271 tmp = RB_ROOT;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300272 next = rb_first(&self->entries);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300273 self->nr_entries = 0;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300274 hists__reset_col_len(self);
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200275
John Kacur3d1d07e2009-09-28 15:32:55 +0200276 while (next) {
277 n = rb_entry(next, struct hist_entry, rb_node);
278 next = rb_next(&n->rb_node);
279
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300280 rb_erase(&n->rb_node, &self->entries);
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100281 if (hists__collapse_insert_entry(self, &tmp, n))
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300282 hists__inc_nr_entries(self, n);
John Kacur3d1d07e2009-09-28 15:32:55 +0200283 }
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200284
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300285 self->entries = tmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200286}
287
288/*
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300289 * reverse the map, sort on period.
John Kacur3d1d07e2009-09-28 15:32:55 +0200290 */
291
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300292static void __hists__insert_output_entry(struct rb_root *entries,
293 struct hist_entry *he,
294 u64 min_callchain_hits)
John Kacur3d1d07e2009-09-28 15:32:55 +0200295{
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300296 struct rb_node **p = &entries->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +0200297 struct rb_node *parent = NULL;
298 struct hist_entry *iter;
299
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200300 if (symbol_conf.use_callchain)
Arnaldo Carvalho de Melob9fb9302010-04-02 09:50:42 -0300301 callchain_param.sort(&he->sorted_chain, he->callchain,
John Kacur3d1d07e2009-09-28 15:32:55 +0200302 min_callchain_hits, &callchain_param);
303
304 while (*p != NULL) {
305 parent = *p;
306 iter = rb_entry(parent, struct hist_entry, rb_node);
307
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300308 if (he->period > iter->period)
John Kacur3d1d07e2009-09-28 15:32:55 +0200309 p = &(*p)->rb_left;
310 else
311 p = &(*p)->rb_right;
312 }
313
314 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300315 rb_insert_color(&he->rb_node, entries);
John Kacur3d1d07e2009-09-28 15:32:55 +0200316}
317
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300318void hists__output_resort(struct hists *self)
John Kacur3d1d07e2009-09-28 15:32:55 +0200319{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200320 struct rb_root tmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200321 struct rb_node *next;
322 struct hist_entry *n;
John Kacur3d1d07e2009-09-28 15:32:55 +0200323 u64 min_callchain_hits;
324
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300325 min_callchain_hits = self->stats.total_period * (callchain_param.min_percent / 100);
John Kacur3d1d07e2009-09-28 15:32:55 +0200326
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200327 tmp = RB_ROOT;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300328 next = rb_first(&self->entries);
John Kacur3d1d07e2009-09-28 15:32:55 +0200329
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300330 self->nr_entries = 0;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300331 hists__reset_col_len(self);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300332
John Kacur3d1d07e2009-09-28 15:32:55 +0200333 while (next) {
334 n = rb_entry(next, struct hist_entry, rb_node);
335 next = rb_next(&n->rb_node);
336
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300337 rb_erase(&n->rb_node, &self->entries);
338 __hists__insert_output_entry(&tmp, n, min_callchain_hits);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300339 hists__inc_nr_entries(self, n);
John Kacur3d1d07e2009-09-28 15:32:55 +0200340 }
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200341
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300342 self->entries = tmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200343}
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200344
345static size_t callchain__fprintf_left_margin(FILE *fp, int left_margin)
346{
347 int i;
348 int ret = fprintf(fp, " ");
349
350 for (i = 0; i < left_margin; i++)
351 ret += fprintf(fp, " ");
352
353 return ret;
354}
355
356static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask,
357 int left_margin)
358{
359 int i;
360 size_t ret = callchain__fprintf_left_margin(fp, left_margin);
361
362 for (i = 0; i < depth; i++)
363 if (depth_mask & (1 << i))
364 ret += fprintf(fp, "| ");
365 else
366 ret += fprintf(fp, " ");
367
368 ret += fprintf(fp, "\n");
369
370 return ret;
371}
372
373static size_t ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain,
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300374 int depth, int depth_mask, int period,
Frederic Weisbeckerd425de52011-01-03 16:13:11 +0100375 u64 total_samples, u64 hits,
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200376 int left_margin)
377{
378 int i;
379 size_t ret = 0;
380
381 ret += callchain__fprintf_left_margin(fp, left_margin);
382 for (i = 0; i < depth; i++) {
383 if (depth_mask & (1 << i))
384 ret += fprintf(fp, "|");
385 else
386 ret += fprintf(fp, " ");
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300387 if (!period && i == depth - 1) {
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200388 double percent;
389
390 percent = hits * 100.0 / total_samples;
391 ret += percent_color_fprintf(fp, "--%2.2f%%-- ", percent);
392 } else
393 ret += fprintf(fp, "%s", " ");
394 }
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300395 if (chain->ms.sym)
396 ret += fprintf(fp, "%s\n", chain->ms.sym->name);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200397 else
398 ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);
399
400 return ret;
401}
402
403static struct symbol *rem_sq_bracket;
404static struct callchain_list rem_hits;
405
406static void init_rem_hits(void)
407{
408 rem_sq_bracket = malloc(sizeof(*rem_sq_bracket) + 6);
409 if (!rem_sq_bracket) {
410 fprintf(stderr, "Not enough memory to display remaining hits\n");
411 return;
412 }
413
414 strcpy(rem_sq_bracket->name, "[...]");
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300415 rem_hits.ms.sym = rem_sq_bracket;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200416}
417
418static size_t __callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
419 u64 total_samples, int depth,
420 int depth_mask, int left_margin)
421{
422 struct rb_node *node, *next;
423 struct callchain_node *child;
424 struct callchain_list *chain;
425 int new_depth_mask = depth_mask;
426 u64 new_total;
427 u64 remaining;
428 size_t ret = 0;
429 int i;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300430 uint entries_printed = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200431
432 if (callchain_param.mode == CHAIN_GRAPH_REL)
433 new_total = self->children_hit;
434 else
435 new_total = total_samples;
436
437 remaining = new_total;
438
439 node = rb_first(&self->rb_root);
440 while (node) {
441 u64 cumul;
442
443 child = rb_entry(node, struct callchain_node, rb_node);
Frederic Weisbeckerf08c3152011-01-14 04:51:59 +0100444 cumul = callchain_cumul_hits(child);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200445 remaining -= cumul;
446
447 /*
448 * The depth mask manages the output of pipes that show
449 * the depth. We don't want to keep the pipes of the current
450 * level for the last child of this depth.
451 * Except if we have remaining filtered hits. They will
452 * supersede the last child
453 */
454 next = rb_next(node);
455 if (!next && (callchain_param.mode != CHAIN_GRAPH_REL || !remaining))
456 new_depth_mask &= ~(1 << (depth - 1));
457
458 /*
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800459 * But we keep the older depth mask for the line separator
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200460 * to keep the level link until we reach the last child
461 */
462 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask,
463 left_margin);
464 i = 0;
465 list_for_each_entry(chain, &child->val, list) {
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200466 ret += ipchain__fprintf_graph(fp, chain, depth,
467 new_depth_mask, i++,
468 new_total,
469 cumul,
470 left_margin);
471 }
472 ret += __callchain__fprintf_graph(fp, child, new_total,
473 depth + 1,
474 new_depth_mask | (1 << depth),
475 left_margin);
476 node = next;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300477 if (++entries_printed == callchain_param.print_limit)
478 break;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200479 }
480
481 if (callchain_param.mode == CHAIN_GRAPH_REL &&
482 remaining && remaining != new_total) {
483
484 if (!rem_sq_bracket)
485 return ret;
486
487 new_depth_mask &= ~(1 << (depth - 1));
488
489 ret += ipchain__fprintf_graph(fp, &rem_hits, depth,
490 new_depth_mask, 0, new_total,
491 remaining, left_margin);
492 }
493
494 return ret;
495}
496
497static size_t callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
498 u64 total_samples, int left_margin)
499{
500 struct callchain_list *chain;
501 bool printed = false;
502 int i = 0;
503 int ret = 0;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300504 u32 entries_printed = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200505
506 list_for_each_entry(chain, &self->val, list) {
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200507 if (!i++ && sort__first_dimension == SORT_SYM)
508 continue;
509
510 if (!printed) {
511 ret += callchain__fprintf_left_margin(fp, left_margin);
512 ret += fprintf(fp, "|\n");
513 ret += callchain__fprintf_left_margin(fp, left_margin);
514 ret += fprintf(fp, "---");
515
516 left_margin += 3;
517 printed = true;
518 } else
519 ret += callchain__fprintf_left_margin(fp, left_margin);
520
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300521 if (chain->ms.sym)
522 ret += fprintf(fp, " %s\n", chain->ms.sym->name);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200523 else
524 ret += fprintf(fp, " %p\n", (void *)(long)chain->ip);
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300525
526 if (++entries_printed == callchain_param.print_limit)
527 break;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200528 }
529
530 ret += __callchain__fprintf_graph(fp, self, total_samples, 1, 1, left_margin);
531
532 return ret;
533}
534
535static size_t callchain__fprintf_flat(FILE *fp, struct callchain_node *self,
536 u64 total_samples)
537{
538 struct callchain_list *chain;
539 size_t ret = 0;
540
541 if (!self)
542 return 0;
543
544 ret += callchain__fprintf_flat(fp, self->parent, total_samples);
545
546
547 list_for_each_entry(chain, &self->val, list) {
548 if (chain->ip >= PERF_CONTEXT_MAX)
549 continue;
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300550 if (chain->ms.sym)
551 ret += fprintf(fp, " %s\n", chain->ms.sym->name);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200552 else
553 ret += fprintf(fp, " %p\n",
554 (void *)(long)chain->ip);
555 }
556
557 return ret;
558}
559
560static size_t hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
561 u64 total_samples, int left_margin)
562{
563 struct rb_node *rb_node;
564 struct callchain_node *chain;
565 size_t ret = 0;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300566 u32 entries_printed = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200567
568 rb_node = rb_first(&self->sorted_chain);
569 while (rb_node) {
570 double percent;
571
572 chain = rb_entry(rb_node, struct callchain_node, rb_node);
573 percent = chain->hit * 100.0 / total_samples;
574 switch (callchain_param.mode) {
575 case CHAIN_FLAT:
576 ret += percent_color_fprintf(fp, " %6.2f%%\n",
577 percent);
578 ret += callchain__fprintf_flat(fp, chain, total_samples);
579 break;
580 case CHAIN_GRAPH_ABS: /* Falldown */
581 case CHAIN_GRAPH_REL:
582 ret += callchain__fprintf_graph(fp, chain, total_samples,
583 left_margin);
584 case CHAIN_NONE:
585 default:
586 break;
587 }
588 ret += fprintf(fp, "\n");
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300589 if (++entries_printed == callchain_param.print_limit)
590 break;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200591 rb_node = rb_next(rb_node);
592 }
593
594 return ret;
595}
596
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300597int hist_entry__snprintf(struct hist_entry *self, char *s, size_t size,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300598 struct hists *hists, struct hists *pair_hists,
599 bool show_displacement, long displacement,
600 bool color, u64 session_total)
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200601{
602 struct sort_entry *se;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300603 u64 period, total, period_sys, period_us, period_guest_sys, period_guest_us;
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200604 u64 nr_events;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200605 const char *sep = symbol_conf.field_sep;
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300606 int ret;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200607
608 if (symbol_conf.exclude_other && !self->parent)
609 return 0;
610
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300611 if (pair_hists) {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300612 period = self->pair ? self->pair->period : 0;
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200613 nr_events = self->pair ? self->pair->nr_events : 0;
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300614 total = pair_hists->stats.total_period;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300615 period_sys = self->pair ? self->pair->period_sys : 0;
616 period_us = self->pair ? self->pair->period_us : 0;
617 period_guest_sys = self->pair ? self->pair->period_guest_sys : 0;
618 period_guest_us = self->pair ? self->pair->period_guest_us : 0;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200619 } else {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300620 period = self->period;
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200621 nr_events = self->nr_events;
Eric B Munsoneefc4652010-03-05 12:51:08 -0300622 total = session_total;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300623 period_sys = self->period_sys;
624 period_us = self->period_us;
625 period_guest_sys = self->period_guest_sys;
626 period_guest_us = self->period_guest_us;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200627 }
628
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300629 if (total) {
630 if (color)
631 ret = percent_color_snprintf(s, size,
632 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300633 (period * 100.0) / total);
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300634 else
635 ret = snprintf(s, size, sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300636 (period * 100.0) / total);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800637 if (symbol_conf.show_cpu_utilization) {
638 ret += percent_color_snprintf(s + ret, size - ret,
639 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300640 (period_sys * 100.0) / total);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800641 ret += percent_color_snprintf(s + ret, size - ret,
642 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300643 (period_us * 100.0) / total);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800644 if (perf_guest) {
645 ret += percent_color_snprintf(s + ret,
646 size - ret,
647 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300648 (period_guest_sys * 100.0) /
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800649 total);
650 ret += percent_color_snprintf(s + ret,
651 size - ret,
652 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300653 (period_guest_us * 100.0) /
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800654 total);
655 }
656 }
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300657 } else
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200658 ret = snprintf(s, size, sep ? "%" PRIu64 : "%12" PRIu64 " ", period);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200659
660 if (symbol_conf.show_nr_samples) {
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200661 if (sep)
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200662 ret += snprintf(s + ret, size - ret, "%c%" PRIu64, *sep, nr_events);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200663 else
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200664 ret += snprintf(s + ret, size - ret, "%11" PRIu64, nr_events);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200665 }
666
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300667 if (pair_hists) {
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200668 char bf[32];
669 double old_percent = 0, new_percent = 0, diff;
670
671 if (total > 0)
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300672 old_percent = (period * 100.0) / total;
Eric B Munsoneefc4652010-03-05 12:51:08 -0300673 if (session_total > 0)
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300674 new_percent = (self->period * 100.0) / session_total;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200675
Arnaldo Carvalho de Melo9b338272009-12-16 14:31:49 -0200676 diff = new_percent - old_percent;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200677
Arnaldo Carvalho de Melo9b338272009-12-16 14:31:49 -0200678 if (fabs(diff) >= 0.01)
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200679 snprintf(bf, sizeof(bf), "%+4.2F%%", diff);
680 else
681 snprintf(bf, sizeof(bf), " ");
682
683 if (sep)
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300684 ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200685 else
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300686 ret += snprintf(s + ret, size - ret, "%11.11s", bf);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200687
688 if (show_displacement) {
689 if (displacement)
690 snprintf(bf, sizeof(bf), "%+4ld", displacement);
691 else
692 snprintf(bf, sizeof(bf), " ");
693
694 if (sep)
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300695 ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200696 else
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300697 ret += snprintf(s + ret, size - ret, "%6.6s", bf);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200698 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200699 }
700
701 list_for_each_entry(se, &hist_entry__sort_list, list) {
702 if (se->elide)
703 continue;
704
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300705 ret += snprintf(s + ret, size - ret, "%s", sep ?: " ");
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200706 ret += se->se_snprintf(self, s + ret, size - ret,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300707 hists__col_len(hists, se->se_width_idx));
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200708 }
709
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300710 return ret;
711}
712
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300713int hist_entry__fprintf(struct hist_entry *self, struct hists *hists,
714 struct hists *pair_hists, bool show_displacement,
715 long displacement, FILE *fp, u64 session_total)
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300716{
717 char bf[512];
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300718 hist_entry__snprintf(self, bf, sizeof(bf), hists, pair_hists,
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300719 show_displacement, displacement,
720 true, session_total);
721 return fprintf(fp, "%s\n", bf);
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300722}
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200723
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300724static size_t hist_entry__fprintf_callchain(struct hist_entry *self,
725 struct hists *hists, FILE *fp,
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300726 u64 session_total)
727{
728 int left_margin = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200729
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300730 if (sort__first_dimension == SORT_COMM) {
731 struct sort_entry *se = list_first_entry(&hist_entry__sort_list,
732 typeof(*se), list);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300733 left_margin = hists__col_len(hists, se->se_width_idx);
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300734 left_margin -= thread__comm_len(self->thread);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200735 }
736
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300737 return hist_entry_callchain__fprintf(fp, self, session_total,
738 left_margin);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200739}
740
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300741size_t hists__fprintf(struct hists *self, struct hists *pair,
742 bool show_displacement, FILE *fp)
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200743{
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200744 struct sort_entry *se;
745 struct rb_node *nd;
746 size_t ret = 0;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200747 unsigned long position = 1;
748 long displacement = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200749 unsigned int width;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200750 const char *sep = symbol_conf.field_sep;
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -0300751 const char *col_width = symbol_conf.col_width_list_str;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200752
753 init_rem_hits();
754
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200755 fprintf(fp, "# %s", pair ? "Baseline" : "Overhead");
756
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200757 if (symbol_conf.show_nr_samples) {
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200758 if (sep)
759 fprintf(fp, "%cSamples", *sep);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200760 else
761 fputs(" Samples ", fp);
762 }
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200763
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800764 if (symbol_conf.show_cpu_utilization) {
765 if (sep) {
766 ret += fprintf(fp, "%csys", *sep);
767 ret += fprintf(fp, "%cus", *sep);
768 if (perf_guest) {
769 ret += fprintf(fp, "%cguest sys", *sep);
770 ret += fprintf(fp, "%cguest us", *sep);
771 }
772 } else {
773 ret += fprintf(fp, " sys ");
774 ret += fprintf(fp, " us ");
775 if (perf_guest) {
776 ret += fprintf(fp, " guest sys ");
777 ret += fprintf(fp, " guest us ");
778 }
779 }
780 }
781
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200782 if (pair) {
783 if (sep)
784 ret += fprintf(fp, "%cDelta", *sep);
785 else
786 ret += fprintf(fp, " Delta ");
787
788 if (show_displacement) {
789 if (sep)
790 ret += fprintf(fp, "%cDisplacement", *sep);
791 else
792 ret += fprintf(fp, " Displ");
793 }
794 }
795
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200796 list_for_each_entry(se, &hist_entry__sort_list, list) {
797 if (se->elide)
798 continue;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200799 if (sep) {
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200800 fprintf(fp, "%c%s", *sep, se->se_header);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200801 continue;
802 }
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200803 width = strlen(se->se_header);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300804 if (symbol_conf.col_width_list_str) {
805 if (col_width) {
806 hists__set_col_len(self, se->se_width_idx,
807 atoi(col_width));
808 col_width = strchr(col_width, ',');
809 if (col_width)
810 ++col_width;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200811 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200812 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300813 if (!hists__new_col_len(self, se->se_width_idx, width))
814 width = hists__col_len(self, se->se_width_idx);
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200815 fprintf(fp, " %*s", width, se->se_header);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200816 }
817 fprintf(fp, "\n");
818
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200819 if (sep)
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200820 goto print_entries;
821
822 fprintf(fp, "# ........");
823 if (symbol_conf.show_nr_samples)
824 fprintf(fp, " ..........");
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200825 if (pair) {
826 fprintf(fp, " ..........");
827 if (show_displacement)
828 fprintf(fp, " .....");
829 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200830 list_for_each_entry(se, &hist_entry__sort_list, list) {
831 unsigned int i;
832
833 if (se->elide)
834 continue;
835
836 fprintf(fp, " ");
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300837 width = hists__col_len(self, se->se_width_idx);
838 if (width == 0)
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200839 width = strlen(se->se_header);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200840 for (i = 0; i < width; i++)
841 fprintf(fp, ".");
842 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200843
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200844 fprintf(fp, "\n#\n");
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200845
846print_entries:
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300847 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200848 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
849
Frederic Weisbeckere84d2122011-06-29 22:23:03 +0200850 if (h->filtered)
851 continue;
852
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200853 if (show_displacement) {
854 if (h->pair != NULL)
855 displacement = ((long)h->pair->position -
856 (long)position);
857 else
858 displacement = 0;
859 ++position;
860 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300861 ret += hist_entry__fprintf(h, self, pair, show_displacement,
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300862 displacement, fp, self->stats.total_period);
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300863
864 if (symbol_conf.use_callchain)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300865 ret += hist_entry__fprintf_callchain(h, self, fp,
866 self->stats.total_period);
Arnaldo Carvalho de Melo59fd5302010-03-24 16:40:17 -0300867 if (h->ms.map == NULL && verbose > 1) {
Arnaldo Carvalho de Melo65f2ed22010-03-09 15:58:17 -0300868 __map_groups__fprintf_maps(&h->thread->mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300869 MAP__FUNCTION, verbose, fp);
Arnaldo Carvalho de Melo65f2ed22010-03-09 15:58:17 -0300870 fprintf(fp, "%.10s end\n", graph_dotted_line);
871 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200872 }
873
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200874 free(rem_sq_bracket);
875
876 return ret;
877}
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300878
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300879/*
880 * See hists__fprintf to match the column widths
881 */
882unsigned int hists__sort_list_width(struct hists *self)
883{
884 struct sort_entry *se;
885 int ret = 9; /* total % */
886
887 if (symbol_conf.show_cpu_utilization) {
888 ret += 7; /* count_sys % */
889 ret += 6; /* count_us % */
890 if (perf_guest) {
891 ret += 13; /* count_guest_sys % */
892 ret += 12; /* count_guest_us % */
893 }
894 }
895
896 if (symbol_conf.show_nr_samples)
897 ret += 11;
898
899 list_for_each_entry(se, &hist_entry__sort_list, list)
900 if (!se->elide)
901 ret += 2 + hists__col_len(self, se->se_width_idx);
902
Arnaldo Carvalho de Melo903cce62010-08-05 19:15:48 -0300903 if (verbose) /* Addr + origin */
904 ret += 3 + BITS_PER_LONG / 4;
905
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300906 return ret;
907}
908
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300909static void hists__remove_entry_filter(struct hists *self, struct hist_entry *h,
910 enum hist_filter filter)
911{
912 h->filtered &= ~(1 << filter);
913 if (h->filtered)
914 return;
915
916 ++self->nr_entries;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -0300917 if (h->ms.unfolded)
918 self->nr_entries += h->nr_rows;
919 h->row_offset = 0;
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300920 self->stats.total_period += h->period;
921 self->stats.nr_events[PERF_RECORD_SAMPLE] += h->nr_events;
922
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300923 hists__calc_col_len(self, h);
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300924}
925
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300926void hists__filter_by_dso(struct hists *self, const struct dso *dso)
927{
928 struct rb_node *nd;
929
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300930 self->nr_entries = self->stats.total_period = 0;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300931 self->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300932 hists__reset_col_len(self);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300933
934 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
935 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
936
937 if (symbol_conf.exclude_other && !h->parent)
938 continue;
939
940 if (dso != NULL && (h->ms.map == NULL || h->ms.map->dso != dso)) {
941 h->filtered |= (1 << HIST_FILTER__DSO);
942 continue;
943 }
944
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300945 hists__remove_entry_filter(self, h, HIST_FILTER__DSO);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300946 }
947}
948
949void hists__filter_by_thread(struct hists *self, const struct thread *thread)
950{
951 struct rb_node *nd;
952
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300953 self->nr_entries = self->stats.total_period = 0;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300954 self->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300955 hists__reset_col_len(self);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300956
957 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
958 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
959
960 if (thread != NULL && h->thread != thread) {
961 h->filtered |= (1 << HIST_FILTER__THREAD);
962 continue;
963 }
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300964
965 hists__remove_entry_filter(self, h, HIST_FILTER__THREAD);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300966 }
967}
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300968
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200969int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 ip)
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300970{
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200971 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip);
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300972}
973
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200974int hist_entry__annotate(struct hist_entry *he, size_t privsize)
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300975{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200976 return symbol__annotate(he->ms.sym, he->ms.map, privsize);
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300977}
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300978
979void hists__inc_nr_events(struct hists *self, u32 type)
980{
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300981 ++self->stats.nr_events[0];
982 ++self->stats.nr_events[type];
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300983}
984
985size_t hists__fprintf_nr_events(struct hists *self, FILE *fp)
986{
987 int i;
988 size_t ret = 0;
989
990 for (i = 0; i < PERF_RECORD_HEADER_MAX; ++i) {
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300991 const char *name;
Thomas Gleixner3835bc02010-12-07 12:48:42 +0000992
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300993 if (self->stats.nr_events[i] == 0)
994 continue;
995
996 name = perf_event__name(i);
Thomas Gleixner3835bc02010-12-07 12:48:42 +0000997 if (!strcmp(name, "UNKNOWN"))
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300998 continue;
Thomas Gleixner3835bc02010-12-07 12:48:42 +0000999
1000 ret += fprintf(fp, "%16s events: %10d\n", name,
1001 self->stats.nr_events[i]);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03001002 }
1003
1004 return ret;
1005}