blob: 627a02e03c57ab381d97cf2be9756997851d752d [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,
17 .min_percent = 0.5
18};
19
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030020u16 hists__col_len(struct hists *self, enum hist_column col)
21{
22 return self->col_len[col];
23}
24
25void hists__set_col_len(struct hists *self, enum hist_column col, u16 len)
26{
27 self->col_len[col] = len;
28}
29
30bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len)
31{
32 if (len > hists__col_len(self, col)) {
33 hists__set_col_len(self, col, len);
34 return true;
35 }
36 return false;
37}
38
39static void hists__reset_col_len(struct hists *self)
40{
41 enum hist_column col;
42
43 for (col = 0; col < HISTC_NR_COLS; ++col)
44 hists__set_col_len(self, col, 0);
45}
46
47static void hists__calc_col_len(struct hists *self, struct hist_entry *h)
48{
49 u16 len;
50
51 if (h->ms.sym)
52 hists__new_col_len(self, HISTC_SYMBOL, h->ms.sym->namelen);
Arnaldo Carvalho de Melod7603d52011-03-04 14:51:33 -030053 else {
54 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
55
56 if (hists__col_len(self, HISTC_DSO) < unresolved_col_width &&
57 !symbol_conf.col_width_list_str && !symbol_conf.field_sep &&
58 !symbol_conf.dso_list)
59 hists__set_col_len(self, HISTC_DSO,
60 unresolved_col_width);
61 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030062
63 len = thread__comm_len(h->thread);
64 if (hists__new_col_len(self, HISTC_COMM, len))
65 hists__set_col_len(self, HISTC_THREAD, len + 6);
66
67 if (h->ms.map) {
68 len = dso__name_len(h->ms.map->dso);
69 hists__new_col_len(self, HISTC_DSO, len);
70 }
71}
72
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030073static void hist_entry__add_cpumode_period(struct hist_entry *self,
74 unsigned int cpumode, u64 period)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080075{
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -030076 switch (cpumode) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080077 case PERF_RECORD_MISC_KERNEL:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030078 self->period_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080079 break;
80 case PERF_RECORD_MISC_USER:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030081 self->period_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080082 break;
83 case PERF_RECORD_MISC_GUEST_KERNEL:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030084 self->period_guest_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080085 break;
86 case PERF_RECORD_MISC_GUEST_USER:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030087 self->period_guest_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080088 break;
89 default:
90 break;
91 }
92}
93
John Kacur3d1d07e2009-09-28 15:32:55 +020094/*
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030095 * histogram, sorted on item, collects periods
John Kacur3d1d07e2009-09-28 15:32:55 +020096 */
97
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -030098static struct hist_entry *hist_entry__new(struct hist_entry *template)
99{
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200100 size_t callchain_size = symbol_conf.use_callchain ? sizeof(struct callchain_root) : 0;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300101 struct hist_entry *self = malloc(sizeof(*self) + callchain_size);
102
103 if (self != NULL) {
104 *self = *template;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300105 self->nr_events = 1;
Arnaldo Carvalho de Melo0a1eae32010-08-02 19:45:23 -0300106 if (self->ms.map)
107 self->ms.map->referenced = true;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300108 if (symbol_conf.use_callchain)
109 callchain_init(self->callchain);
110 }
111
112 return self;
113}
114
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300115static void hists__inc_nr_entries(struct hists *self, struct hist_entry *h)
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300116{
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300117 if (!h->filtered) {
118 hists__calc_col_len(self, h);
119 ++self->nr_entries;
120 }
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300121}
122
Arnaldo Carvalho de Melo7a007ca2010-07-21 09:19:41 -0300123static u8 symbol__parent_filter(const struct symbol *parent)
124{
125 if (symbol_conf.exclude_other && parent == NULL)
126 return 1 << HIST_FILTER__PARENT;
127 return 0;
128}
129
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300130struct hist_entry *__hists__add_entry(struct hists *self,
131 struct addr_location *al,
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300132 struct symbol *sym_parent, u64 period)
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300133{
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300134 struct rb_node **p = &self->entries.rb_node;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300135 struct rb_node *parent = NULL;
136 struct hist_entry *he;
137 struct hist_entry entry = {
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200138 .thread = al->thread,
Arnaldo Carvalho de Melo59fd5302010-03-24 16:40:17 -0300139 .ms = {
140 .map = al->map,
141 .sym = al->sym,
142 },
Arun Sharmaf60f3592010-06-04 11:27:10 -0300143 .cpu = al->cpu,
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200144 .ip = al->addr,
145 .level = al->level,
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300146 .period = period,
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300147 .parent = sym_parent,
Arnaldo Carvalho de Melo7a007ca2010-07-21 09:19:41 -0300148 .filtered = symbol__parent_filter(sym_parent),
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300149 };
150 int cmp;
151
152 while (*p != NULL) {
153 parent = *p;
154 he = rb_entry(parent, struct hist_entry, rb_node);
155
156 cmp = hist_entry__cmp(&entry, he);
157
158 if (!cmp) {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300159 he->period += period;
160 ++he->nr_events;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300161 goto out;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300162 }
163
164 if (cmp < 0)
165 p = &(*p)->rb_left;
166 else
167 p = &(*p)->rb_right;
168 }
169
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300170 he = hist_entry__new(&entry);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300171 if (!he)
172 return NULL;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300173 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300174 rb_insert_color(&he->rb_node, &self->entries);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300175 hists__inc_nr_entries(self, he);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300176out:
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300177 hist_entry__add_cpumode_period(he, al->cpumode, period);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300178 return he;
179}
180
John Kacur3d1d07e2009-09-28 15:32:55 +0200181int64_t
182hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
183{
184 struct sort_entry *se;
185 int64_t cmp = 0;
186
187 list_for_each_entry(se, &hist_entry__sort_list, list) {
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200188 cmp = se->se_cmp(left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +0200189 if (cmp)
190 break;
191 }
192
193 return cmp;
194}
195
196int64_t
197hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
198{
199 struct sort_entry *se;
200 int64_t cmp = 0;
201
202 list_for_each_entry(se, &hist_entry__sort_list, list) {
203 int64_t (*f)(struct hist_entry *, struct hist_entry *);
204
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200205 f = se->se_collapse ?: se->se_cmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200206
207 cmp = f(left, right);
208 if (cmp)
209 break;
210 }
211
212 return cmp;
213}
214
215void hist_entry__free(struct hist_entry *he)
216{
217 free(he);
218}
219
220/*
221 * collapse the histogram
222 */
223
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100224static bool hists__collapse_insert_entry(struct hists *self,
225 struct rb_root *root,
226 struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +0200227{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200228 struct rb_node **p = &root->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +0200229 struct rb_node *parent = NULL;
230 struct hist_entry *iter;
231 int64_t cmp;
232
233 while (*p != NULL) {
234 parent = *p;
235 iter = rb_entry(parent, struct hist_entry, rb_node);
236
237 cmp = hist_entry__collapse(iter, he);
238
239 if (!cmp) {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300240 iter->period += he->period;
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100241 if (symbol_conf.use_callchain) {
242 callchain_cursor_reset(&self->callchain_cursor);
243 callchain_merge(&self->callchain_cursor, iter->callchain,
244 he->callchain);
245 }
John Kacur3d1d07e2009-09-28 15:32:55 +0200246 hist_entry__free(he);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300247 return false;
John Kacur3d1d07e2009-09-28 15:32:55 +0200248 }
249
250 if (cmp < 0)
251 p = &(*p)->rb_left;
252 else
253 p = &(*p)->rb_right;
254 }
255
256 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200257 rb_insert_color(&he->rb_node, root);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300258 return true;
John Kacur3d1d07e2009-09-28 15:32:55 +0200259}
260
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300261void hists__collapse_resort(struct hists *self)
John Kacur3d1d07e2009-09-28 15:32:55 +0200262{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200263 struct rb_root tmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200264 struct rb_node *next;
265 struct hist_entry *n;
266
267 if (!sort__need_collapse)
268 return;
269
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200270 tmp = RB_ROOT;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300271 next = rb_first(&self->entries);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300272 self->nr_entries = 0;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300273 hists__reset_col_len(self);
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200274
John Kacur3d1d07e2009-09-28 15:32:55 +0200275 while (next) {
276 n = rb_entry(next, struct hist_entry, rb_node);
277 next = rb_next(&n->rb_node);
278
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300279 rb_erase(&n->rb_node, &self->entries);
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100280 if (hists__collapse_insert_entry(self, &tmp, n))
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300281 hists__inc_nr_entries(self, n);
John Kacur3d1d07e2009-09-28 15:32:55 +0200282 }
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200283
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300284 self->entries = tmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200285}
286
287/*
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300288 * reverse the map, sort on period.
John Kacur3d1d07e2009-09-28 15:32:55 +0200289 */
290
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300291static void __hists__insert_output_entry(struct rb_root *entries,
292 struct hist_entry *he,
293 u64 min_callchain_hits)
John Kacur3d1d07e2009-09-28 15:32:55 +0200294{
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300295 struct rb_node **p = &entries->rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +0200296 struct rb_node *parent = NULL;
297 struct hist_entry *iter;
298
Arnaldo Carvalho de Melod599db32009-12-15 20:04:42 -0200299 if (symbol_conf.use_callchain)
Arnaldo Carvalho de Melob9fb9302010-04-02 09:50:42 -0300300 callchain_param.sort(&he->sorted_chain, he->callchain,
John Kacur3d1d07e2009-09-28 15:32:55 +0200301 min_callchain_hits, &callchain_param);
302
303 while (*p != NULL) {
304 parent = *p;
305 iter = rb_entry(parent, struct hist_entry, rb_node);
306
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300307 if (he->period > iter->period)
John Kacur3d1d07e2009-09-28 15:32:55 +0200308 p = &(*p)->rb_left;
309 else
310 p = &(*p)->rb_right;
311 }
312
313 rb_link_node(&he->rb_node, parent, p);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300314 rb_insert_color(&he->rb_node, entries);
John Kacur3d1d07e2009-09-28 15:32:55 +0200315}
316
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300317void hists__output_resort(struct hists *self)
John Kacur3d1d07e2009-09-28 15:32:55 +0200318{
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200319 struct rb_root tmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200320 struct rb_node *next;
321 struct hist_entry *n;
John Kacur3d1d07e2009-09-28 15:32:55 +0200322 u64 min_callchain_hits;
323
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300324 min_callchain_hits = self->stats.total_period * (callchain_param.min_percent / 100);
John Kacur3d1d07e2009-09-28 15:32:55 +0200325
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200326 tmp = RB_ROOT;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300327 next = rb_first(&self->entries);
John Kacur3d1d07e2009-09-28 15:32:55 +0200328
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300329 self->nr_entries = 0;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300330 hists__reset_col_len(self);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300331
John Kacur3d1d07e2009-09-28 15:32:55 +0200332 while (next) {
333 n = rb_entry(next, struct hist_entry, rb_node);
334 next = rb_next(&n->rb_node);
335
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300336 rb_erase(&n->rb_node, &self->entries);
337 __hists__insert_output_entry(&tmp, n, min_callchain_hits);
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -0300338 hists__inc_nr_entries(self, n);
John Kacur3d1d07e2009-09-28 15:32:55 +0200339 }
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -0200340
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300341 self->entries = tmp;
John Kacur3d1d07e2009-09-28 15:32:55 +0200342}
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200343
344static size_t callchain__fprintf_left_margin(FILE *fp, int left_margin)
345{
346 int i;
347 int ret = fprintf(fp, " ");
348
349 for (i = 0; i < left_margin; i++)
350 ret += fprintf(fp, " ");
351
352 return ret;
353}
354
355static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask,
356 int left_margin)
357{
358 int i;
359 size_t ret = callchain__fprintf_left_margin(fp, left_margin);
360
361 for (i = 0; i < depth; i++)
362 if (depth_mask & (1 << i))
363 ret += fprintf(fp, "| ");
364 else
365 ret += fprintf(fp, " ");
366
367 ret += fprintf(fp, "\n");
368
369 return ret;
370}
371
372static size_t ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain,
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300373 int depth, int depth_mask, int period,
Frederic Weisbeckerd425de52011-01-03 16:13:11 +0100374 u64 total_samples, u64 hits,
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200375 int left_margin)
376{
377 int i;
378 size_t ret = 0;
379
380 ret += callchain__fprintf_left_margin(fp, left_margin);
381 for (i = 0; i < depth; i++) {
382 if (depth_mask & (1 << i))
383 ret += fprintf(fp, "|");
384 else
385 ret += fprintf(fp, " ");
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300386 if (!period && i == depth - 1) {
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200387 double percent;
388
389 percent = hits * 100.0 / total_samples;
390 ret += percent_color_fprintf(fp, "--%2.2f%%-- ", percent);
391 } else
392 ret += fprintf(fp, "%s", " ");
393 }
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300394 if (chain->ms.sym)
395 ret += fprintf(fp, "%s\n", chain->ms.sym->name);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200396 else
397 ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);
398
399 return ret;
400}
401
402static struct symbol *rem_sq_bracket;
403static struct callchain_list rem_hits;
404
405static void init_rem_hits(void)
406{
407 rem_sq_bracket = malloc(sizeof(*rem_sq_bracket) + 6);
408 if (!rem_sq_bracket) {
409 fprintf(stderr, "Not enough memory to display remaining hits\n");
410 return;
411 }
412
413 strcpy(rem_sq_bracket->name, "[...]");
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300414 rem_hits.ms.sym = rem_sq_bracket;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200415}
416
417static size_t __callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
418 u64 total_samples, int depth,
419 int depth_mask, int left_margin)
420{
421 struct rb_node *node, *next;
422 struct callchain_node *child;
423 struct callchain_list *chain;
424 int new_depth_mask = depth_mask;
425 u64 new_total;
426 u64 remaining;
427 size_t ret = 0;
428 int i;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300429 uint entries_printed = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200430
431 if (callchain_param.mode == CHAIN_GRAPH_REL)
432 new_total = self->children_hit;
433 else
434 new_total = total_samples;
435
436 remaining = new_total;
437
438 node = rb_first(&self->rb_root);
439 while (node) {
440 u64 cumul;
441
442 child = rb_entry(node, struct callchain_node, rb_node);
Frederic Weisbeckerf08c3152011-01-14 04:51:59 +0100443 cumul = callchain_cumul_hits(child);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200444 remaining -= cumul;
445
446 /*
447 * The depth mask manages the output of pipes that show
448 * the depth. We don't want to keep the pipes of the current
449 * level for the last child of this depth.
450 * Except if we have remaining filtered hits. They will
451 * supersede the last child
452 */
453 next = rb_next(node);
454 if (!next && (callchain_param.mode != CHAIN_GRAPH_REL || !remaining))
455 new_depth_mask &= ~(1 << (depth - 1));
456
457 /*
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800458 * But we keep the older depth mask for the line separator
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200459 * to keep the level link until we reach the last child
460 */
461 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask,
462 left_margin);
463 i = 0;
464 list_for_each_entry(chain, &child->val, list) {
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200465 ret += ipchain__fprintf_graph(fp, chain, depth,
466 new_depth_mask, i++,
467 new_total,
468 cumul,
469 left_margin);
470 }
471 ret += __callchain__fprintf_graph(fp, child, new_total,
472 depth + 1,
473 new_depth_mask | (1 << depth),
474 left_margin);
475 node = next;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300476 if (++entries_printed == callchain_param.print_limit)
477 break;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200478 }
479
480 if (callchain_param.mode == CHAIN_GRAPH_REL &&
481 remaining && remaining != new_total) {
482
483 if (!rem_sq_bracket)
484 return ret;
485
486 new_depth_mask &= ~(1 << (depth - 1));
487
488 ret += ipchain__fprintf_graph(fp, &rem_hits, depth,
489 new_depth_mask, 0, new_total,
490 remaining, left_margin);
491 }
492
493 return ret;
494}
495
496static size_t callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
497 u64 total_samples, int left_margin)
498{
499 struct callchain_list *chain;
500 bool printed = false;
501 int i = 0;
502 int ret = 0;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300503 u32 entries_printed = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200504
505 list_for_each_entry(chain, &self->val, list) {
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200506 if (!i++ && sort__first_dimension == SORT_SYM)
507 continue;
508
509 if (!printed) {
510 ret += callchain__fprintf_left_margin(fp, left_margin);
511 ret += fprintf(fp, "|\n");
512 ret += callchain__fprintf_left_margin(fp, left_margin);
513 ret += fprintf(fp, "---");
514
515 left_margin += 3;
516 printed = true;
517 } else
518 ret += callchain__fprintf_left_margin(fp, left_margin);
519
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300520 if (chain->ms.sym)
521 ret += fprintf(fp, " %s\n", chain->ms.sym->name);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200522 else
523 ret += fprintf(fp, " %p\n", (void *)(long)chain->ip);
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300524
525 if (++entries_printed == callchain_param.print_limit)
526 break;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200527 }
528
529 ret += __callchain__fprintf_graph(fp, self, total_samples, 1, 1, left_margin);
530
531 return ret;
532}
533
534static size_t callchain__fprintf_flat(FILE *fp, struct callchain_node *self,
535 u64 total_samples)
536{
537 struct callchain_list *chain;
538 size_t ret = 0;
539
540 if (!self)
541 return 0;
542
543 ret += callchain__fprintf_flat(fp, self->parent, total_samples);
544
545
546 list_for_each_entry(chain, &self->val, list) {
547 if (chain->ip >= PERF_CONTEXT_MAX)
548 continue;
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300549 if (chain->ms.sym)
550 ret += fprintf(fp, " %s\n", chain->ms.sym->name);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200551 else
552 ret += fprintf(fp, " %p\n",
553 (void *)(long)chain->ip);
554 }
555
556 return ret;
557}
558
559static size_t hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
560 u64 total_samples, int left_margin)
561{
562 struct rb_node *rb_node;
563 struct callchain_node *chain;
564 size_t ret = 0;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300565 u32 entries_printed = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200566
567 rb_node = rb_first(&self->sorted_chain);
568 while (rb_node) {
569 double percent;
570
571 chain = rb_entry(rb_node, struct callchain_node, rb_node);
572 percent = chain->hit * 100.0 / total_samples;
573 switch (callchain_param.mode) {
574 case CHAIN_FLAT:
575 ret += percent_color_fprintf(fp, " %6.2f%%\n",
576 percent);
577 ret += callchain__fprintf_flat(fp, chain, total_samples);
578 break;
579 case CHAIN_GRAPH_ABS: /* Falldown */
580 case CHAIN_GRAPH_REL:
581 ret += callchain__fprintf_graph(fp, chain, total_samples,
582 left_margin);
583 case CHAIN_NONE:
584 default:
585 break;
586 }
587 ret += fprintf(fp, "\n");
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -0300588 if (++entries_printed == callchain_param.print_limit)
589 break;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200590 rb_node = rb_next(rb_node);
591 }
592
593 return ret;
594}
595
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300596int hist_entry__snprintf(struct hist_entry *self, char *s, size_t size,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300597 struct hists *hists, struct hists *pair_hists,
598 bool show_displacement, long displacement,
599 bool color, u64 session_total)
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200600{
601 struct sort_entry *se;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300602 u64 period, total, period_sys, period_us, period_guest_sys, period_guest_us;
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200603 u64 nr_events;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200604 const char *sep = symbol_conf.field_sep;
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300605 int ret;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200606
607 if (symbol_conf.exclude_other && !self->parent)
608 return 0;
609
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300610 if (pair_hists) {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300611 period = self->pair ? self->pair->period : 0;
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200612 nr_events = self->pair ? self->pair->nr_events : 0;
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300613 total = pair_hists->stats.total_period;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300614 period_sys = self->pair ? self->pair->period_sys : 0;
615 period_us = self->pair ? self->pair->period_us : 0;
616 period_guest_sys = self->pair ? self->pair->period_guest_sys : 0;
617 period_guest_us = self->pair ? self->pair->period_guest_us : 0;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200618 } else {
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300619 period = self->period;
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200620 nr_events = self->nr_events;
Eric B Munsoneefc4652010-03-05 12:51:08 -0300621 total = session_total;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300622 period_sys = self->period_sys;
623 period_us = self->period_us;
624 period_guest_sys = self->period_guest_sys;
625 period_guest_us = self->period_guest_us;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200626 }
627
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300628 if (total) {
629 if (color)
630 ret = percent_color_snprintf(s, size,
631 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300632 (period * 100.0) / total);
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300633 else
634 ret = snprintf(s, size, sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300635 (period * 100.0) / total);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800636 if (symbol_conf.show_cpu_utilization) {
637 ret += percent_color_snprintf(s + ret, size - ret,
638 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300639 (period_sys * 100.0) / total);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800640 ret += percent_color_snprintf(s + ret, size - ret,
641 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300642 (period_us * 100.0) / total);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800643 if (perf_guest) {
644 ret += percent_color_snprintf(s + ret,
645 size - ret,
646 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300647 (period_guest_sys * 100.0) /
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800648 total);
649 ret += percent_color_snprintf(s + ret,
650 size - ret,
651 sep ? "%.2f" : " %6.2f%%",
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300652 (period_guest_us * 100.0) /
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800653 total);
654 }
655 }
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300656 } else
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200657 ret = snprintf(s, size, sep ? "%" PRIu64 : "%12" PRIu64 " ", period);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200658
659 if (symbol_conf.show_nr_samples) {
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200660 if (sep)
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200661 ret += snprintf(s + ret, size - ret, "%c%" PRIu64, *sep, nr_events);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200662 else
Arnaldo Carvalho de Melofec9cbd2011-02-17 10:37:23 -0200663 ret += snprintf(s + ret, size - ret, "%11" PRIu64, nr_events);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200664 }
665
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300666 if (pair_hists) {
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200667 char bf[32];
668 double old_percent = 0, new_percent = 0, diff;
669
670 if (total > 0)
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300671 old_percent = (period * 100.0) / total;
Eric B Munsoneefc4652010-03-05 12:51:08 -0300672 if (session_total > 0)
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300673 new_percent = (self->period * 100.0) / session_total;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200674
Arnaldo Carvalho de Melo9b338272009-12-16 14:31:49 -0200675 diff = new_percent - old_percent;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200676
Arnaldo Carvalho de Melo9b338272009-12-16 14:31:49 -0200677 if (fabs(diff) >= 0.01)
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200678 snprintf(bf, sizeof(bf), "%+4.2F%%", diff);
679 else
680 snprintf(bf, sizeof(bf), " ");
681
682 if (sep)
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300683 ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200684 else
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300685 ret += snprintf(s + ret, size - ret, "%11.11s", bf);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200686
687 if (show_displacement) {
688 if (displacement)
689 snprintf(bf, sizeof(bf), "%+4ld", displacement);
690 else
691 snprintf(bf, sizeof(bf), " ");
692
693 if (sep)
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300694 ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200695 else
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300696 ret += snprintf(s + ret, size - ret, "%6.6s", bf);
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200697 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200698 }
699
700 list_for_each_entry(se, &hist_entry__sort_list, list) {
701 if (se->elide)
702 continue;
703
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300704 ret += snprintf(s + ret, size - ret, "%s", sep ?: " ");
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200705 ret += se->se_snprintf(self, s + ret, size - ret,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300706 hists__col_len(hists, se->se_width_idx));
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200707 }
708
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300709 return ret;
710}
711
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300712int hist_entry__fprintf(struct hist_entry *self, struct hists *hists,
713 struct hists *pair_hists, bool show_displacement,
714 long displacement, FILE *fp, u64 session_total)
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300715{
716 char bf[512];
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300717 hist_entry__snprintf(self, bf, sizeof(bf), hists, pair_hists,
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300718 show_displacement, displacement,
719 true, session_total);
720 return fprintf(fp, "%s\n", bf);
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300721}
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200722
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300723static size_t hist_entry__fprintf_callchain(struct hist_entry *self,
724 struct hists *hists, FILE *fp,
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300725 u64 session_total)
726{
727 int left_margin = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200728
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300729 if (sort__first_dimension == SORT_COMM) {
730 struct sort_entry *se = list_first_entry(&hist_entry__sort_list,
731 typeof(*se), list);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300732 left_margin = hists__col_len(hists, se->se_width_idx);
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300733 left_margin -= thread__comm_len(self->thread);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200734 }
735
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300736 return hist_entry_callchain__fprintf(fp, self, session_total,
737 left_margin);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200738}
739
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300740size_t hists__fprintf(struct hists *self, struct hists *pair,
741 bool show_displacement, FILE *fp)
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200742{
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200743 struct sort_entry *se;
744 struct rb_node *nd;
745 size_t ret = 0;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200746 unsigned long position = 1;
747 long displacement = 0;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200748 unsigned int width;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200749 const char *sep = symbol_conf.field_sep;
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -0300750 const char *col_width = symbol_conf.col_width_list_str;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200751
752 init_rem_hits();
753
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200754 fprintf(fp, "# %s", pair ? "Baseline" : "Overhead");
755
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200756 if (symbol_conf.show_nr_samples) {
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200757 if (sep)
758 fprintf(fp, "%cSamples", *sep);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200759 else
760 fputs(" Samples ", fp);
761 }
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200762
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800763 if (symbol_conf.show_cpu_utilization) {
764 if (sep) {
765 ret += fprintf(fp, "%csys", *sep);
766 ret += fprintf(fp, "%cus", *sep);
767 if (perf_guest) {
768 ret += fprintf(fp, "%cguest sys", *sep);
769 ret += fprintf(fp, "%cguest us", *sep);
770 }
771 } else {
772 ret += fprintf(fp, " sys ");
773 ret += fprintf(fp, " us ");
774 if (perf_guest) {
775 ret += fprintf(fp, " guest sys ");
776 ret += fprintf(fp, " guest us ");
777 }
778 }
779 }
780
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200781 if (pair) {
782 if (sep)
783 ret += fprintf(fp, "%cDelta", *sep);
784 else
785 ret += fprintf(fp, " Delta ");
786
787 if (show_displacement) {
788 if (sep)
789 ret += fprintf(fp, "%cDisplacement", *sep);
790 else
791 ret += fprintf(fp, " Displ");
792 }
793 }
794
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200795 list_for_each_entry(se, &hist_entry__sort_list, list) {
796 if (se->elide)
797 continue;
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200798 if (sep) {
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200799 fprintf(fp, "%c%s", *sep, se->se_header);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200800 continue;
801 }
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200802 width = strlen(se->se_header);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300803 if (symbol_conf.col_width_list_str) {
804 if (col_width) {
805 hists__set_col_len(self, se->se_width_idx,
806 atoi(col_width));
807 col_width = strchr(col_width, ',');
808 if (col_width)
809 ++col_width;
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200810 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200811 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300812 if (!hists__new_col_len(self, se->se_width_idx, width))
813 width = hists__col_len(self, se->se_width_idx);
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200814 fprintf(fp, " %*s", width, se->se_header);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200815 }
816 fprintf(fp, "\n");
817
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200818 if (sep)
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200819 goto print_entries;
820
821 fprintf(fp, "# ........");
822 if (symbol_conf.show_nr_samples)
823 fprintf(fp, " ..........");
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200824 if (pair) {
825 fprintf(fp, " ..........");
826 if (show_displacement)
827 fprintf(fp, " .....");
828 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200829 list_for_each_entry(se, &hist_entry__sort_list, list) {
830 unsigned int i;
831
832 if (se->elide)
833 continue;
834
835 fprintf(fp, " ");
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300836 width = hists__col_len(self, se->se_width_idx);
837 if (width == 0)
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200838 width = strlen(se->se_header);
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200839 for (i = 0; i < width; i++)
840 fprintf(fp, ".");
841 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200842
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200843 fprintf(fp, "\n#\n");
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200844
845print_entries:
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300846 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200847 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
848
849 if (show_displacement) {
850 if (h->pair != NULL)
851 displacement = ((long)h->pair->position -
852 (long)position);
853 else
854 displacement = 0;
855 ++position;
856 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300857 ret += hist_entry__fprintf(h, self, pair, show_displacement,
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300858 displacement, fp, self->stats.total_period);
Arnaldo Carvalho de Melo3997d372010-03-12 12:46:48 -0300859
860 if (symbol_conf.use_callchain)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300861 ret += hist_entry__fprintf_callchain(h, self, fp,
862 self->stats.total_period);
Arnaldo Carvalho de Melo59fd5302010-03-24 16:40:17 -0300863 if (h->ms.map == NULL && verbose > 1) {
Arnaldo Carvalho de Melo65f2ed22010-03-09 15:58:17 -0300864 __map_groups__fprintf_maps(&h->thread->mg,
Arnaldo Carvalho de Meloc6e718f2010-03-26 12:11:06 -0300865 MAP__FUNCTION, verbose, fp);
Arnaldo Carvalho de Melo65f2ed22010-03-09 15:58:17 -0300866 fprintf(fp, "%.10s end\n", graph_dotted_line);
867 }
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200868 }
869
Arnaldo Carvalho de Melo4ecf84d02009-12-16 12:27:09 -0200870 free(rem_sq_bracket);
871
872 return ret;
873}
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300874
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300875/*
876 * See hists__fprintf to match the column widths
877 */
878unsigned int hists__sort_list_width(struct hists *self)
879{
880 struct sort_entry *se;
881 int ret = 9; /* total % */
882
883 if (symbol_conf.show_cpu_utilization) {
884 ret += 7; /* count_sys % */
885 ret += 6; /* count_us % */
886 if (perf_guest) {
887 ret += 13; /* count_guest_sys % */
888 ret += 12; /* count_guest_us % */
889 }
890 }
891
892 if (symbol_conf.show_nr_samples)
893 ret += 11;
894
895 list_for_each_entry(se, &hist_entry__sort_list, list)
896 if (!se->elide)
897 ret += 2 + hists__col_len(self, se->se_width_idx);
898
Arnaldo Carvalho de Melo903cce62010-08-05 19:15:48 -0300899 if (verbose) /* Addr + origin */
900 ret += 3 + BITS_PER_LONG / 4;
901
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300902 return ret;
903}
904
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300905static void hists__remove_entry_filter(struct hists *self, struct hist_entry *h,
906 enum hist_filter filter)
907{
908 h->filtered &= ~(1 << filter);
909 if (h->filtered)
910 return;
911
912 ++self->nr_entries;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -0300913 if (h->ms.unfolded)
914 self->nr_entries += h->nr_rows;
915 h->row_offset = 0;
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300916 self->stats.total_period += h->period;
917 self->stats.nr_events[PERF_RECORD_SAMPLE] += h->nr_events;
918
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300919 hists__calc_col_len(self, h);
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300920}
921
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300922void hists__filter_by_dso(struct hists *self, const struct dso *dso)
923{
924 struct rb_node *nd;
925
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300926 self->nr_entries = self->stats.total_period = 0;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300927 self->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300928 hists__reset_col_len(self);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300929
930 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
931 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
932
933 if (symbol_conf.exclude_other && !h->parent)
934 continue;
935
936 if (dso != NULL && (h->ms.map == NULL || h->ms.map->dso != dso)) {
937 h->filtered |= (1 << HIST_FILTER__DSO);
938 continue;
939 }
940
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300941 hists__remove_entry_filter(self, h, HIST_FILTER__DSO);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300942 }
943}
944
945void hists__filter_by_thread(struct hists *self, const struct thread *thread)
946{
947 struct rb_node *nd;
948
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300949 self->nr_entries = self->stats.total_period = 0;
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300950 self->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300951 hists__reset_col_len(self);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300952
953 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
954 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
955
956 if (thread != NULL && h->thread != thread) {
957 h->filtered |= (1 << HIST_FILTER__THREAD);
958 continue;
959 }
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -0300960
961 hists__remove_entry_filter(self, h, HIST_FILTER__THREAD);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300962 }
963}
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300964
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200965int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 ip)
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300966{
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200967 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip);
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300968}
969
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200970int hist_entry__annotate(struct hist_entry *he, size_t privsize)
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300971{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200972 return symbol__annotate(he->ms.sym, he->ms.map, privsize);
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300973}
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300974
975void hists__inc_nr_events(struct hists *self, u32 type)
976{
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -0300977 ++self->stats.nr_events[0];
978 ++self->stats.nr_events[type];
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300979}
980
981size_t hists__fprintf_nr_events(struct hists *self, FILE *fp)
982{
983 int i;
984 size_t ret = 0;
985
986 for (i = 0; i < PERF_RECORD_HEADER_MAX; ++i) {
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300987 const char *name;
Thomas Gleixner3835bc02010-12-07 12:48:42 +0000988
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300989 if (self->stats.nr_events[i] == 0)
990 continue;
991
992 name = perf_event__name(i);
Thomas Gleixner3835bc02010-12-07 12:48:42 +0000993 if (!strcmp(name, "UNKNOWN"))
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300994 continue;
Thomas Gleixner3835bc02010-12-07 12:48:42 +0000995
996 ret += fprintf(fp, "%16s events: %10d\n", name,
997 self->stats.nr_events[i]);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300998 }
999
1000 return ret;
1001}