perf annotate: Move annotate functions to util/
[deliverable/linux.git] / tools / perf / util / hist.c
CommitLineData
78f7defe 1#include "annotate.h"
8a0ecfb8 2#include "util.h"
598357eb 3#include "build-id.h"
3d1d07ec 4#include "hist.h"
4e4f06e4
ACM
5#include "session.h"
6#include "sort.h"
9b33827d 7#include <math.h>
3d1d07ec 8
7a007ca9
ACM
9enum hist_filter {
10 HIST_FILTER__DSO,
11 HIST_FILTER__THREAD,
12 HIST_FILTER__PARENT,
13};
14
3d1d07ec
JK
15struct callchain_param callchain_param = {
16 .mode = CHAIN_GRAPH_REL,
17 .min_percent = 0.5
18};
19
8a6c5b26
ACM
20u16 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);
53
54 len = thread__comm_len(h->thread);
55 if (hists__new_col_len(self, HISTC_COMM, len))
56 hists__set_col_len(self, HISTC_THREAD, len + 6);
57
58 if (h->ms.map) {
59 len = dso__name_len(h->ms.map->dso);
60 hists__new_col_len(self, HISTC_DSO, len);
61 }
62}
63
c82ee828
ACM
64static void hist_entry__add_cpumode_period(struct hist_entry *self,
65 unsigned int cpumode, u64 period)
a1645ce1 66{
28e2a106 67 switch (cpumode) {
a1645ce1 68 case PERF_RECORD_MISC_KERNEL:
c82ee828 69 self->period_sys += period;
a1645ce1
ZY
70 break;
71 case PERF_RECORD_MISC_USER:
c82ee828 72 self->period_us += period;
a1645ce1
ZY
73 break;
74 case PERF_RECORD_MISC_GUEST_KERNEL:
c82ee828 75 self->period_guest_sys += period;
a1645ce1
ZY
76 break;
77 case PERF_RECORD_MISC_GUEST_USER:
c82ee828 78 self->period_guest_us += period;
a1645ce1
ZY
79 break;
80 default:
81 break;
82 }
83}
84
3d1d07ec 85/*
c82ee828 86 * histogram, sorted on item, collects periods
3d1d07ec
JK
87 */
88
28e2a106
ACM
89static struct hist_entry *hist_entry__new(struct hist_entry *template)
90{
d2009c51 91 size_t callchain_size = symbol_conf.use_callchain ? sizeof(struct callchain_root) : 0;
28e2a106
ACM
92 struct hist_entry *self = malloc(sizeof(*self) + callchain_size);
93
94 if (self != NULL) {
95 *self = *template;
c82ee828 96 self->nr_events = 1;
0a1eae39
ACM
97 if (self->ms.map)
98 self->ms.map->referenced = true;
28e2a106
ACM
99 if (symbol_conf.use_callchain)
100 callchain_init(self->callchain);
101 }
102
103 return self;
104}
105
8a6c5b26 106static void hists__inc_nr_entries(struct hists *self, struct hist_entry *h)
fefb0b94 107{
8a6c5b26
ACM
108 if (!h->filtered) {
109 hists__calc_col_len(self, h);
110 ++self->nr_entries;
111 }
fefb0b94
ACM
112}
113
7a007ca9
ACM
114static u8 symbol__parent_filter(const struct symbol *parent)
115{
116 if (symbol_conf.exclude_other && parent == NULL)
117 return 1 << HIST_FILTER__PARENT;
118 return 0;
119}
120
1c02c4d2
ACM
121struct hist_entry *__hists__add_entry(struct hists *self,
122 struct addr_location *al,
c82ee828 123 struct symbol *sym_parent, u64 period)
9735abf1 124{
1c02c4d2 125 struct rb_node **p = &self->entries.rb_node;
9735abf1
ACM
126 struct rb_node *parent = NULL;
127 struct hist_entry *he;
128 struct hist_entry entry = {
1ed091c4 129 .thread = al->thread,
59fd5306
ACM
130 .ms = {
131 .map = al->map,
132 .sym = al->sym,
133 },
f60f3593 134 .cpu = al->cpu,
1ed091c4
ACM
135 .ip = al->addr,
136 .level = al->level,
c82ee828 137 .period = period,
9735abf1 138 .parent = sym_parent,
7a007ca9 139 .filtered = symbol__parent_filter(sym_parent),
9735abf1
ACM
140 };
141 int cmp;
142
143 while (*p != NULL) {
144 parent = *p;
145 he = rb_entry(parent, struct hist_entry, rb_node);
146
147 cmp = hist_entry__cmp(&entry, he);
148
149 if (!cmp) {
c82ee828
ACM
150 he->period += period;
151 ++he->nr_events;
28e2a106 152 goto out;
9735abf1
ACM
153 }
154
155 if (cmp < 0)
156 p = &(*p)->rb_left;
157 else
158 p = &(*p)->rb_right;
159 }
160
28e2a106 161 he = hist_entry__new(&entry);
9735abf1
ACM
162 if (!he)
163 return NULL;
9735abf1 164 rb_link_node(&he->rb_node, parent, p);
1c02c4d2 165 rb_insert_color(&he->rb_node, &self->entries);
fefb0b94 166 hists__inc_nr_entries(self, he);
28e2a106 167out:
c82ee828 168 hist_entry__add_cpumode_period(he, al->cpumode, period);
9735abf1
ACM
169 return he;
170}
171
3d1d07ec
JK
172int64_t
173hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
174{
175 struct sort_entry *se;
176 int64_t cmp = 0;
177
178 list_for_each_entry(se, &hist_entry__sort_list, list) {
fcd14984 179 cmp = se->se_cmp(left, right);
3d1d07ec
JK
180 if (cmp)
181 break;
182 }
183
184 return cmp;
185}
186
187int64_t
188hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
189{
190 struct sort_entry *se;
191 int64_t cmp = 0;
192
193 list_for_each_entry(se, &hist_entry__sort_list, list) {
194 int64_t (*f)(struct hist_entry *, struct hist_entry *);
195
fcd14984 196 f = se->se_collapse ?: se->se_cmp;
3d1d07ec
JK
197
198 cmp = f(left, right);
199 if (cmp)
200 break;
201 }
202
203 return cmp;
204}
205
206void hist_entry__free(struct hist_entry *he)
207{
208 free(he);
209}
210
211/*
212 * collapse the histogram
213 */
214
1b3a0e95
FW
215static bool hists__collapse_insert_entry(struct hists *self,
216 struct rb_root *root,
217 struct hist_entry *he)
3d1d07ec 218{
b9bf0892 219 struct rb_node **p = &root->rb_node;
3d1d07ec
JK
220 struct rb_node *parent = NULL;
221 struct hist_entry *iter;
222 int64_t cmp;
223
224 while (*p != NULL) {
225 parent = *p;
226 iter = rb_entry(parent, struct hist_entry, rb_node);
227
228 cmp = hist_entry__collapse(iter, he);
229
230 if (!cmp) {
c82ee828 231 iter->period += he->period;
1b3a0e95
FW
232 if (symbol_conf.use_callchain) {
233 callchain_cursor_reset(&self->callchain_cursor);
234 callchain_merge(&self->callchain_cursor, iter->callchain,
235 he->callchain);
236 }
3d1d07ec 237 hist_entry__free(he);
fefb0b94 238 return false;
3d1d07ec
JK
239 }
240
241 if (cmp < 0)
242 p = &(*p)->rb_left;
243 else
244 p = &(*p)->rb_right;
245 }
246
247 rb_link_node(&he->rb_node, parent, p);
b9bf0892 248 rb_insert_color(&he->rb_node, root);
fefb0b94 249 return true;
3d1d07ec
JK
250}
251
1c02c4d2 252void hists__collapse_resort(struct hists *self)
3d1d07ec 253{
b9bf0892 254 struct rb_root tmp;
3d1d07ec
JK
255 struct rb_node *next;
256 struct hist_entry *n;
257
258 if (!sort__need_collapse)
259 return;
260
b9bf0892 261 tmp = RB_ROOT;
1c02c4d2 262 next = rb_first(&self->entries);
fefb0b94 263 self->nr_entries = 0;
8a6c5b26 264 hists__reset_col_len(self);
b9bf0892 265
3d1d07ec
JK
266 while (next) {
267 n = rb_entry(next, struct hist_entry, rb_node);
268 next = rb_next(&n->rb_node);
269
1c02c4d2 270 rb_erase(&n->rb_node, &self->entries);
1b3a0e95 271 if (hists__collapse_insert_entry(self, &tmp, n))
fefb0b94 272 hists__inc_nr_entries(self, n);
3d1d07ec 273 }
b9bf0892 274
1c02c4d2 275 self->entries = tmp;
3d1d07ec
JK
276}
277
278/*
c82ee828 279 * reverse the map, sort on period.
3d1d07ec
JK
280 */
281
1c02c4d2
ACM
282static void __hists__insert_output_entry(struct rb_root *entries,
283 struct hist_entry *he,
284 u64 min_callchain_hits)
3d1d07ec 285{
1c02c4d2 286 struct rb_node **p = &entries->rb_node;
3d1d07ec
JK
287 struct rb_node *parent = NULL;
288 struct hist_entry *iter;
289
d599db3f 290 if (symbol_conf.use_callchain)
b9fb9304 291 callchain_param.sort(&he->sorted_chain, he->callchain,
3d1d07ec
JK
292 min_callchain_hits, &callchain_param);
293
294 while (*p != NULL) {
295 parent = *p;
296 iter = rb_entry(parent, struct hist_entry, rb_node);
297
c82ee828 298 if (he->period > iter->period)
3d1d07ec
JK
299 p = &(*p)->rb_left;
300 else
301 p = &(*p)->rb_right;
302 }
303
304 rb_link_node(&he->rb_node, parent, p);
1c02c4d2 305 rb_insert_color(&he->rb_node, entries);
3d1d07ec
JK
306}
307
fefb0b94 308void hists__output_resort(struct hists *self)
3d1d07ec 309{
b9bf0892 310 struct rb_root tmp;
3d1d07ec
JK
311 struct rb_node *next;
312 struct hist_entry *n;
3d1d07ec
JK
313 u64 min_callchain_hits;
314
cee75ac7 315 min_callchain_hits = self->stats.total_period * (callchain_param.min_percent / 100);
3d1d07ec 316
b9bf0892 317 tmp = RB_ROOT;
1c02c4d2 318 next = rb_first(&self->entries);
3d1d07ec 319
fefb0b94 320 self->nr_entries = 0;
8a6c5b26 321 hists__reset_col_len(self);
fefb0b94 322
3d1d07ec
JK
323 while (next) {
324 n = rb_entry(next, struct hist_entry, rb_node);
325 next = rb_next(&n->rb_node);
326
1c02c4d2
ACM
327 rb_erase(&n->rb_node, &self->entries);
328 __hists__insert_output_entry(&tmp, n, min_callchain_hits);
fefb0b94 329 hists__inc_nr_entries(self, n);
3d1d07ec 330 }
b9bf0892 331
1c02c4d2 332 self->entries = tmp;
3d1d07ec 333}
4ecf84d0
ACM
334
335static size_t callchain__fprintf_left_margin(FILE *fp, int left_margin)
336{
337 int i;
338 int ret = fprintf(fp, " ");
339
340 for (i = 0; i < left_margin; i++)
341 ret += fprintf(fp, " ");
342
343 return ret;
344}
345
346static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask,
347 int left_margin)
348{
349 int i;
350 size_t ret = callchain__fprintf_left_margin(fp, left_margin);
351
352 for (i = 0; i < depth; i++)
353 if (depth_mask & (1 << i))
354 ret += fprintf(fp, "| ");
355 else
356 ret += fprintf(fp, " ");
357
358 ret += fprintf(fp, "\n");
359
360 return ret;
361}
362
363static size_t ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain,
c82ee828 364 int depth, int depth_mask, int period,
d425de54 365 u64 total_samples, u64 hits,
4ecf84d0
ACM
366 int left_margin)
367{
368 int i;
369 size_t ret = 0;
370
371 ret += callchain__fprintf_left_margin(fp, left_margin);
372 for (i = 0; i < depth; i++) {
373 if (depth_mask & (1 << i))
374 ret += fprintf(fp, "|");
375 else
376 ret += fprintf(fp, " ");
c82ee828 377 if (!period && i == depth - 1) {
4ecf84d0
ACM
378 double percent;
379
380 percent = hits * 100.0 / total_samples;
381 ret += percent_color_fprintf(fp, "--%2.2f%%-- ", percent);
382 } else
383 ret += fprintf(fp, "%s", " ");
384 }
b3c9ac08
ACM
385 if (chain->ms.sym)
386 ret += fprintf(fp, "%s\n", chain->ms.sym->name);
4ecf84d0
ACM
387 else
388 ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);
389
390 return ret;
391}
392
393static struct symbol *rem_sq_bracket;
394static struct callchain_list rem_hits;
395
396static void init_rem_hits(void)
397{
398 rem_sq_bracket = malloc(sizeof(*rem_sq_bracket) + 6);
399 if (!rem_sq_bracket) {
400 fprintf(stderr, "Not enough memory to display remaining hits\n");
401 return;
402 }
403
404 strcpy(rem_sq_bracket->name, "[...]");
b3c9ac08 405 rem_hits.ms.sym = rem_sq_bracket;
4ecf84d0
ACM
406}
407
408static size_t __callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
409 u64 total_samples, int depth,
410 int depth_mask, int left_margin)
411{
412 struct rb_node *node, *next;
413 struct callchain_node *child;
414 struct callchain_list *chain;
415 int new_depth_mask = depth_mask;
416 u64 new_total;
417 u64 remaining;
418 size_t ret = 0;
419 int i;
232a5c94 420 uint entries_printed = 0;
4ecf84d0
ACM
421
422 if (callchain_param.mode == CHAIN_GRAPH_REL)
423 new_total = self->children_hit;
424 else
425 new_total = total_samples;
426
427 remaining = new_total;
428
429 node = rb_first(&self->rb_root);
430 while (node) {
431 u64 cumul;
432
433 child = rb_entry(node, struct callchain_node, rb_node);
f08c3154 434 cumul = callchain_cumul_hits(child);
4ecf84d0
ACM
435 remaining -= cumul;
436
437 /*
438 * The depth mask manages the output of pipes that show
439 * the depth. We don't want to keep the pipes of the current
440 * level for the last child of this depth.
441 * Except if we have remaining filtered hits. They will
442 * supersede the last child
443 */
444 next = rb_next(node);
445 if (!next && (callchain_param.mode != CHAIN_GRAPH_REL || !remaining))
446 new_depth_mask &= ~(1 << (depth - 1));
447
448 /*
3ad2f3fb 449 * But we keep the older depth mask for the line separator
4ecf84d0
ACM
450 * to keep the level link until we reach the last child
451 */
452 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask,
453 left_margin);
454 i = 0;
455 list_for_each_entry(chain, &child->val, list) {
4ecf84d0
ACM
456 ret += ipchain__fprintf_graph(fp, chain, depth,
457 new_depth_mask, i++,
458 new_total,
459 cumul,
460 left_margin);
461 }
462 ret += __callchain__fprintf_graph(fp, child, new_total,
463 depth + 1,
464 new_depth_mask | (1 << depth),
465 left_margin);
466 node = next;
232a5c94
ACM
467 if (++entries_printed == callchain_param.print_limit)
468 break;
4ecf84d0
ACM
469 }
470
471 if (callchain_param.mode == CHAIN_GRAPH_REL &&
472 remaining && remaining != new_total) {
473
474 if (!rem_sq_bracket)
475 return ret;
476
477 new_depth_mask &= ~(1 << (depth - 1));
478
479 ret += ipchain__fprintf_graph(fp, &rem_hits, depth,
480 new_depth_mask, 0, new_total,
481 remaining, left_margin);
482 }
483
484 return ret;
485}
486
487static size_t callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
488 u64 total_samples, int left_margin)
489{
490 struct callchain_list *chain;
491 bool printed = false;
492 int i = 0;
493 int ret = 0;
232a5c94 494 u32 entries_printed = 0;
4ecf84d0
ACM
495
496 list_for_each_entry(chain, &self->val, list) {
4ecf84d0
ACM
497 if (!i++ && sort__first_dimension == SORT_SYM)
498 continue;
499
500 if (!printed) {
501 ret += callchain__fprintf_left_margin(fp, left_margin);
502 ret += fprintf(fp, "|\n");
503 ret += callchain__fprintf_left_margin(fp, left_margin);
504 ret += fprintf(fp, "---");
505
506 left_margin += 3;
507 printed = true;
508 } else
509 ret += callchain__fprintf_left_margin(fp, left_margin);
510
b3c9ac08
ACM
511 if (chain->ms.sym)
512 ret += fprintf(fp, " %s\n", chain->ms.sym->name);
4ecf84d0
ACM
513 else
514 ret += fprintf(fp, " %p\n", (void *)(long)chain->ip);
232a5c94
ACM
515
516 if (++entries_printed == callchain_param.print_limit)
517 break;
4ecf84d0
ACM
518 }
519
520 ret += __callchain__fprintf_graph(fp, self, total_samples, 1, 1, left_margin);
521
522 return ret;
523}
524
525static size_t callchain__fprintf_flat(FILE *fp, struct callchain_node *self,
526 u64 total_samples)
527{
528 struct callchain_list *chain;
529 size_t ret = 0;
530
531 if (!self)
532 return 0;
533
534 ret += callchain__fprintf_flat(fp, self->parent, total_samples);
535
536
537 list_for_each_entry(chain, &self->val, list) {
538 if (chain->ip >= PERF_CONTEXT_MAX)
539 continue;
b3c9ac08
ACM
540 if (chain->ms.sym)
541 ret += fprintf(fp, " %s\n", chain->ms.sym->name);
4ecf84d0
ACM
542 else
543 ret += fprintf(fp, " %p\n",
544 (void *)(long)chain->ip);
545 }
546
547 return ret;
548}
549
550static size_t hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
551 u64 total_samples, int left_margin)
552{
553 struct rb_node *rb_node;
554 struct callchain_node *chain;
555 size_t ret = 0;
232a5c94 556 u32 entries_printed = 0;
4ecf84d0
ACM
557
558 rb_node = rb_first(&self->sorted_chain);
559 while (rb_node) {
560 double percent;
561
562 chain = rb_entry(rb_node, struct callchain_node, rb_node);
563 percent = chain->hit * 100.0 / total_samples;
564 switch (callchain_param.mode) {
565 case CHAIN_FLAT:
566 ret += percent_color_fprintf(fp, " %6.2f%%\n",
567 percent);
568 ret += callchain__fprintf_flat(fp, chain, total_samples);
569 break;
570 case CHAIN_GRAPH_ABS: /* Falldown */
571 case CHAIN_GRAPH_REL:
572 ret += callchain__fprintf_graph(fp, chain, total_samples,
573 left_margin);
574 case CHAIN_NONE:
575 default:
576 break;
577 }
578 ret += fprintf(fp, "\n");
232a5c94
ACM
579 if (++entries_printed == callchain_param.print_limit)
580 break;
4ecf84d0
ACM
581 rb_node = rb_next(rb_node);
582 }
583
584 return ret;
585}
586
1c02c4d2 587int hist_entry__snprintf(struct hist_entry *self, char *s, size_t size,
8a6c5b26
ACM
588 struct hists *hists, struct hists *pair_hists,
589 bool show_displacement, long displacement,
590 bool color, u64 session_total)
4ecf84d0
ACM
591{
592 struct sort_entry *se;
c82ee828 593 u64 period, total, period_sys, period_us, period_guest_sys, period_guest_us;
c351c281 594 const char *sep = symbol_conf.field_sep;
a4e3b956 595 int ret;
4ecf84d0
ACM
596
597 if (symbol_conf.exclude_other && !self->parent)
598 return 0;
599
1c02c4d2 600 if (pair_hists) {
c82ee828 601 period = self->pair ? self->pair->period : 0;
cee75ac7 602 total = pair_hists->stats.total_period;
c82ee828
ACM
603 period_sys = self->pair ? self->pair->period_sys : 0;
604 period_us = self->pair ? self->pair->period_us : 0;
605 period_guest_sys = self->pair ? self->pair->period_guest_sys : 0;
606 period_guest_us = self->pair ? self->pair->period_guest_us : 0;
c351c281 607 } else {
c82ee828 608 period = self->period;
eefc465c 609 total = session_total;
c82ee828
ACM
610 period_sys = self->period_sys;
611 period_us = self->period_us;
612 period_guest_sys = self->period_guest_sys;
613 period_guest_us = self->period_guest_us;
c351c281
ACM
614 }
615
a4e3b956
ACM
616 if (total) {
617 if (color)
618 ret = percent_color_snprintf(s, size,
619 sep ? "%.2f" : " %6.2f%%",
c82ee828 620 (period * 100.0) / total);
a4e3b956
ACM
621 else
622 ret = snprintf(s, size, sep ? "%.2f" : " %6.2f%%",
c82ee828 623 (period * 100.0) / total);
a1645ce1
ZY
624 if (symbol_conf.show_cpu_utilization) {
625 ret += percent_color_snprintf(s + ret, size - ret,
626 sep ? "%.2f" : " %6.2f%%",
c82ee828 627 (period_sys * 100.0) / total);
a1645ce1
ZY
628 ret += percent_color_snprintf(s + ret, size - ret,
629 sep ? "%.2f" : " %6.2f%%",
c82ee828 630 (period_us * 100.0) / total);
a1645ce1
ZY
631 if (perf_guest) {
632 ret += percent_color_snprintf(s + ret,
633 size - ret,
634 sep ? "%.2f" : " %6.2f%%",
c82ee828 635 (period_guest_sys * 100.0) /
a1645ce1
ZY
636 total);
637 ret += percent_color_snprintf(s + ret,
638 size - ret,
639 sep ? "%.2f" : " %6.2f%%",
c82ee828 640 (period_guest_us * 100.0) /
a1645ce1
ZY
641 total);
642 }
643 }
a4e3b956 644 } else
9486aa38 645 ret = snprintf(s, size, sep ? "%" PRIu64 : "%12" PRIu64 " ", period);
4ecf84d0
ACM
646
647 if (symbol_conf.show_nr_samples) {
c351c281 648 if (sep)
9486aa38 649 ret += snprintf(s + ret, size - ret, "%c%" PRIu64, *sep, period);
4ecf84d0 650 else
9486aa38 651 ret += snprintf(s + ret, size - ret, "%11" PRIu64, period);
c351c281
ACM
652 }
653
1c02c4d2 654 if (pair_hists) {
c351c281
ACM
655 char bf[32];
656 double old_percent = 0, new_percent = 0, diff;
657
658 if (total > 0)
c82ee828 659 old_percent = (period * 100.0) / total;
eefc465c 660 if (session_total > 0)
c82ee828 661 new_percent = (self->period * 100.0) / session_total;
c351c281 662
9b33827d 663 diff = new_percent - old_percent;
c351c281 664
9b33827d 665 if (fabs(diff) >= 0.01)
c351c281
ACM
666 snprintf(bf, sizeof(bf), "%+4.2F%%", diff);
667 else
668 snprintf(bf, sizeof(bf), " ");
669
670 if (sep)
a4e3b956 671 ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
c351c281 672 else
a4e3b956 673 ret += snprintf(s + ret, size - ret, "%11.11s", bf);
c351c281
ACM
674
675 if (show_displacement) {
676 if (displacement)
677 snprintf(bf, sizeof(bf), "%+4ld", displacement);
678 else
679 snprintf(bf, sizeof(bf), " ");
680
681 if (sep)
a4e3b956 682 ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
c351c281 683 else
a4e3b956 684 ret += snprintf(s + ret, size - ret, "%6.6s", bf);
c351c281 685 }
4ecf84d0
ACM
686 }
687
688 list_for_each_entry(se, &hist_entry__sort_list, list) {
689 if (se->elide)
690 continue;
691
a4e3b956 692 ret += snprintf(s + ret, size - ret, "%s", sep ?: " ");
fcd14984 693 ret += se->se_snprintf(self, s + ret, size - ret,
8a6c5b26 694 hists__col_len(hists, se->se_width_idx));
4ecf84d0
ACM
695 }
696
a4e3b956
ACM
697 return ret;
698}
699
8a6c5b26
ACM
700int hist_entry__fprintf(struct hist_entry *self, struct hists *hists,
701 struct hists *pair_hists, bool show_displacement,
702 long displacement, FILE *fp, u64 session_total)
a4e3b956
ACM
703{
704 char bf[512];
8a6c5b26 705 hist_entry__snprintf(self, bf, sizeof(bf), hists, pair_hists,
a4e3b956
ACM
706 show_displacement, displacement,
707 true, session_total);
708 return fprintf(fp, "%s\n", bf);
3997d377 709}
4ecf84d0 710
8a6c5b26
ACM
711static size_t hist_entry__fprintf_callchain(struct hist_entry *self,
712 struct hists *hists, FILE *fp,
3997d377
ACM
713 u64 session_total)
714{
715 int left_margin = 0;
4ecf84d0 716
3997d377
ACM
717 if (sort__first_dimension == SORT_COMM) {
718 struct sort_entry *se = list_first_entry(&hist_entry__sort_list,
719 typeof(*se), list);
8a6c5b26 720 left_margin = hists__col_len(hists, se->se_width_idx);
3997d377 721 left_margin -= thread__comm_len(self->thread);
4ecf84d0
ACM
722 }
723
3997d377
ACM
724 return hist_entry_callchain__fprintf(fp, self, session_total,
725 left_margin);
4ecf84d0
ACM
726}
727
1c02c4d2
ACM
728size_t hists__fprintf(struct hists *self, struct hists *pair,
729 bool show_displacement, FILE *fp)
4ecf84d0 730{
4ecf84d0
ACM
731 struct sort_entry *se;
732 struct rb_node *nd;
733 size_t ret = 0;
c351c281
ACM
734 unsigned long position = 1;
735 long displacement = 0;
4ecf84d0 736 unsigned int width;
c351c281 737 const char *sep = symbol_conf.field_sep;
edb7c60e 738 const char *col_width = symbol_conf.col_width_list_str;
4ecf84d0
ACM
739
740 init_rem_hits();
741
c351c281
ACM
742 fprintf(fp, "# %s", pair ? "Baseline" : "Overhead");
743
4ecf84d0 744 if (symbol_conf.show_nr_samples) {
c351c281
ACM
745 if (sep)
746 fprintf(fp, "%cSamples", *sep);
4ecf84d0
ACM
747 else
748 fputs(" Samples ", fp);
749 }
c351c281 750
a1645ce1
ZY
751 if (symbol_conf.show_cpu_utilization) {
752 if (sep) {
753 ret += fprintf(fp, "%csys", *sep);
754 ret += fprintf(fp, "%cus", *sep);
755 if (perf_guest) {
756 ret += fprintf(fp, "%cguest sys", *sep);
757 ret += fprintf(fp, "%cguest us", *sep);
758 }
759 } else {
760 ret += fprintf(fp, " sys ");
761 ret += fprintf(fp, " us ");
762 if (perf_guest) {
763 ret += fprintf(fp, " guest sys ");
764 ret += fprintf(fp, " guest us ");
765 }
766 }
767 }
768
c351c281
ACM
769 if (pair) {
770 if (sep)
771 ret += fprintf(fp, "%cDelta", *sep);
772 else
773 ret += fprintf(fp, " Delta ");
774
775 if (show_displacement) {
776 if (sep)
777 ret += fprintf(fp, "%cDisplacement", *sep);
778 else
779 ret += fprintf(fp, " Displ");
780 }
781 }
782
4ecf84d0
ACM
783 list_for_each_entry(se, &hist_entry__sort_list, list) {
784 if (se->elide)
785 continue;
c351c281 786 if (sep) {
fcd14984 787 fprintf(fp, "%c%s", *sep, se->se_header);
4ecf84d0
ACM
788 continue;
789 }
fcd14984 790 width = strlen(se->se_header);
8a6c5b26
ACM
791 if (symbol_conf.col_width_list_str) {
792 if (col_width) {
793 hists__set_col_len(self, se->se_width_idx,
794 atoi(col_width));
795 col_width = strchr(col_width, ',');
796 if (col_width)
797 ++col_width;
4ecf84d0 798 }
4ecf84d0 799 }
8a6c5b26
ACM
800 if (!hists__new_col_len(self, se->se_width_idx, width))
801 width = hists__col_len(self, se->se_width_idx);
fcd14984 802 fprintf(fp, " %*s", width, se->se_header);
4ecf84d0
ACM
803 }
804 fprintf(fp, "\n");
805
c351c281 806 if (sep)
4ecf84d0
ACM
807 goto print_entries;
808
809 fprintf(fp, "# ........");
810 if (symbol_conf.show_nr_samples)
811 fprintf(fp, " ..........");
c351c281
ACM
812 if (pair) {
813 fprintf(fp, " ..........");
814 if (show_displacement)
815 fprintf(fp, " .....");
816 }
4ecf84d0
ACM
817 list_for_each_entry(se, &hist_entry__sort_list, list) {
818 unsigned int i;
819
820 if (se->elide)
821 continue;
822
823 fprintf(fp, " ");
8a6c5b26
ACM
824 width = hists__col_len(self, se->se_width_idx);
825 if (width == 0)
fcd14984 826 width = strlen(se->se_header);
4ecf84d0
ACM
827 for (i = 0; i < width; i++)
828 fprintf(fp, ".");
829 }
4ecf84d0 830
c351c281 831 fprintf(fp, "\n#\n");
4ecf84d0
ACM
832
833print_entries:
1c02c4d2 834 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
c351c281
ACM
835 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
836
837 if (show_displacement) {
838 if (h->pair != NULL)
839 displacement = ((long)h->pair->position -
840 (long)position);
841 else
842 displacement = 0;
843 ++position;
844 }
8a6c5b26 845 ret += hist_entry__fprintf(h, self, pair, show_displacement,
cee75ac7 846 displacement, fp, self->stats.total_period);
3997d377
ACM
847
848 if (symbol_conf.use_callchain)
8a6c5b26
ACM
849 ret += hist_entry__fprintf_callchain(h, self, fp,
850 self->stats.total_period);
59fd5306 851 if (h->ms.map == NULL && verbose > 1) {
65f2ed2b 852 __map_groups__fprintf_maps(&h->thread->mg,
c6e718ff 853 MAP__FUNCTION, verbose, fp);
65f2ed2b
ACM
854 fprintf(fp, "%.10s end\n", graph_dotted_line);
855 }
4ecf84d0
ACM
856 }
857
4ecf84d0
ACM
858 free(rem_sq_bracket);
859
860 return ret;
861}
b09e0190 862
06daaaba
ACM
863/*
864 * See hists__fprintf to match the column widths
865 */
866unsigned int hists__sort_list_width(struct hists *self)
867{
868 struct sort_entry *se;
869 int ret = 9; /* total % */
870
871 if (symbol_conf.show_cpu_utilization) {
872 ret += 7; /* count_sys % */
873 ret += 6; /* count_us % */
874 if (perf_guest) {
875 ret += 13; /* count_guest_sys % */
876 ret += 12; /* count_guest_us % */
877 }
878 }
879
880 if (symbol_conf.show_nr_samples)
881 ret += 11;
882
883 list_for_each_entry(se, &hist_entry__sort_list, list)
884 if (!se->elide)
885 ret += 2 + hists__col_len(self, se->se_width_idx);
886
903cce6e
ACM
887 if (verbose) /* Addr + origin */
888 ret += 3 + BITS_PER_LONG / 4;
889
06daaaba
ACM
890 return ret;
891}
892
cc5edb0e
ACM
893static void hists__remove_entry_filter(struct hists *self, struct hist_entry *h,
894 enum hist_filter filter)
895{
896 h->filtered &= ~(1 << filter);
897 if (h->filtered)
898 return;
899
900 ++self->nr_entries;
0f0cbf7a
ACM
901 if (h->ms.unfolded)
902 self->nr_entries += h->nr_rows;
903 h->row_offset = 0;
cc5edb0e
ACM
904 self->stats.total_period += h->period;
905 self->stats.nr_events[PERF_RECORD_SAMPLE] += h->nr_events;
906
8a6c5b26 907 hists__calc_col_len(self, h);
cc5edb0e
ACM
908}
909
b09e0190
ACM
910void hists__filter_by_dso(struct hists *self, const struct dso *dso)
911{
912 struct rb_node *nd;
913
cee75ac7 914 self->nr_entries = self->stats.total_period = 0;
c82ee828 915 self->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
8a6c5b26 916 hists__reset_col_len(self);
b09e0190
ACM
917
918 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
919 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
920
921 if (symbol_conf.exclude_other && !h->parent)
922 continue;
923
924 if (dso != NULL && (h->ms.map == NULL || h->ms.map->dso != dso)) {
925 h->filtered |= (1 << HIST_FILTER__DSO);
926 continue;
927 }
928
cc5edb0e 929 hists__remove_entry_filter(self, h, HIST_FILTER__DSO);
b09e0190
ACM
930 }
931}
932
933void hists__filter_by_thread(struct hists *self, const struct thread *thread)
934{
935 struct rb_node *nd;
936
cee75ac7 937 self->nr_entries = self->stats.total_period = 0;
c82ee828 938 self->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
8a6c5b26 939 hists__reset_col_len(self);
b09e0190
ACM
940
941 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
942 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
943
944 if (thread != NULL && h->thread != thread) {
945 h->filtered |= (1 << HIST_FILTER__THREAD);
946 continue;
947 }
cc5edb0e
ACM
948
949 hists__remove_entry_filter(self, h, HIST_FILTER__THREAD);
b09e0190
ACM
950 }
951}
ef7b93a1 952
78f7defe 953int hist_entry__inc_addr_samples(struct hist_entry *he, u64 ip)
ef7b93a1 954{
78f7defe 955 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, ip);
ef7b93a1
ACM
956}
957
78f7defe 958int hist_entry__annotate(struct hist_entry *he, struct list_head *head,
92221162 959 size_t privsize)
ef7b93a1 960{
78f7defe 961 return symbol__annotate(he->ms.sym, he->ms.map, head, privsize);
ef7b93a1 962}
c8446b9b
ACM
963
964void hists__inc_nr_events(struct hists *self, u32 type)
965{
cee75ac7
ACM
966 ++self->stats.nr_events[0];
967 ++self->stats.nr_events[type];
c8446b9b
ACM
968}
969
970size_t hists__fprintf_nr_events(struct hists *self, FILE *fp)
971{
972 int i;
973 size_t ret = 0;
974
975 for (i = 0; i < PERF_RECORD_HEADER_MAX; ++i) {
8115d60c 976 const char *name = perf_event__name(i);
3835bc00
TG
977
978 if (!strcmp(name, "UNKNOWN"))
c8446b9b 979 continue;
3835bc00
TG
980
981 ret += fprintf(fp, "%16s events: %10d\n", name,
982 self->stats.nr_events[i]);
c8446b9b
ACM
983 }
984
985 return ret;
986}
This page took 0.123337 seconds and 5 git commands to generate.