perf tools: Do not disable members of group event
[linux-2.6-block.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
90cf1fb5
ACM
9static bool hists__filter_entry_by_dso(struct hists *hists,
10 struct hist_entry *he);
11static bool hists__filter_entry_by_thread(struct hists *hists,
12 struct hist_entry *he);
13
7a007ca9
ACM
14enum hist_filter {
15 HIST_FILTER__DSO,
16 HIST_FILTER__THREAD,
17 HIST_FILTER__PARENT,
18};
19
3d1d07ec
JK
20struct callchain_param callchain_param = {
21 .mode = CHAIN_GRAPH_REL,
d797fdc5
SL
22 .min_percent = 0.5,
23 .order = ORDER_CALLEE
3d1d07ec
JK
24};
25
42b28ac0 26u16 hists__col_len(struct hists *hists, enum hist_column col)
8a6c5b26 27{
42b28ac0 28 return hists->col_len[col];
8a6c5b26
ACM
29}
30
42b28ac0 31void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len)
8a6c5b26 32{
42b28ac0 33 hists->col_len[col] = len;
8a6c5b26
ACM
34}
35
42b28ac0 36bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len)
8a6c5b26 37{
42b28ac0
ACM
38 if (len > hists__col_len(hists, col)) {
39 hists__set_col_len(hists, col, len);
8a6c5b26
ACM
40 return true;
41 }
42 return false;
43}
44
42b28ac0 45static void hists__reset_col_len(struct hists *hists)
8a6c5b26
ACM
46{
47 enum hist_column col;
48
49 for (col = 0; col < HISTC_NR_COLS; ++col)
42b28ac0 50 hists__set_col_len(hists, col, 0);
8a6c5b26
ACM
51}
52
b5387528
RAV
53static void hists__set_unres_dso_col_len(struct hists *hists, int dso)
54{
55 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
56
57 if (hists__col_len(hists, 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(hists, dso, unresolved_col_width);
61}
62
42b28ac0 63static void hists__calc_col_len(struct hists *hists, struct hist_entry *h)
8a6c5b26 64{
b5387528 65 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
8a6c5b26
ACM
66 u16 len;
67
68 if (h->ms.sym)
b5387528
RAV
69 hists__new_col_len(hists, HISTC_SYMBOL, h->ms.sym->namelen + 4);
70 else
71 hists__set_unres_dso_col_len(hists, HISTC_DSO);
8a6c5b26
ACM
72
73 len = thread__comm_len(h->thread);
42b28ac0
ACM
74 if (hists__new_col_len(hists, HISTC_COMM, len))
75 hists__set_col_len(hists, HISTC_THREAD, len + 6);
8a6c5b26
ACM
76
77 if (h->ms.map) {
78 len = dso__name_len(h->ms.map->dso);
42b28ac0 79 hists__new_col_len(hists, HISTC_DSO, len);
8a6c5b26 80 }
b5387528
RAV
81
82 if (h->branch_info) {
83 int symlen;
84 /*
85 * +4 accounts for '[x] ' priv level info
86 * +2 account of 0x prefix on raw addresses
87 */
88 if (h->branch_info->from.sym) {
89 symlen = (int)h->branch_info->from.sym->namelen + 4;
90 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
91
92 symlen = dso__name_len(h->branch_info->from.map->dso);
93 hists__new_col_len(hists, HISTC_DSO_FROM, symlen);
94 } else {
95 symlen = unresolved_col_width + 4 + 2;
96 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
97 hists__set_unres_dso_col_len(hists, HISTC_DSO_FROM);
98 }
99
100 if (h->branch_info->to.sym) {
101 symlen = (int)h->branch_info->to.sym->namelen + 4;
102 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
103
104 symlen = dso__name_len(h->branch_info->to.map->dso);
105 hists__new_col_len(hists, HISTC_DSO_TO, symlen);
106 } else {
107 symlen = unresolved_col_width + 4 + 2;
108 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
109 hists__set_unres_dso_col_len(hists, HISTC_DSO_TO);
110 }
111 }
8a6c5b26
ACM
112}
113
12c14278 114static void hist_entry__add_cpumode_period(struct hist_entry *he,
c82ee828 115 unsigned int cpumode, u64 period)
a1645ce1 116{
28e2a106 117 switch (cpumode) {
a1645ce1 118 case PERF_RECORD_MISC_KERNEL:
12c14278 119 he->period_sys += period;
a1645ce1
ZY
120 break;
121 case PERF_RECORD_MISC_USER:
12c14278 122 he->period_us += period;
a1645ce1
ZY
123 break;
124 case PERF_RECORD_MISC_GUEST_KERNEL:
12c14278 125 he->period_guest_sys += period;
a1645ce1
ZY
126 break;
127 case PERF_RECORD_MISC_GUEST_USER:
12c14278 128 he->period_guest_us += period;
a1645ce1
ZY
129 break;
130 default:
131 break;
132 }
133}
134
ab81f3fd
ACM
135static void hist_entry__decay(struct hist_entry *he)
136{
137 he->period = (he->period * 7) / 8;
138 he->nr_events = (he->nr_events * 7) / 8;
139}
140
141static bool hists__decay_entry(struct hists *hists, struct hist_entry *he)
142{
c64550cf
ACM
143 u64 prev_period = he->period;
144
145 if (prev_period == 0)
df71d95f 146 return true;
c64550cf 147
ab81f3fd 148 hist_entry__decay(he);
c64550cf
ACM
149
150 if (!he->filtered)
151 hists->stats.total_period -= prev_period - he->period;
152
ab81f3fd
ACM
153 return he->period == 0;
154}
155
b079d4e9
ACM
156static void __hists__decay_entries(struct hists *hists, bool zap_user,
157 bool zap_kernel, bool threaded)
ab81f3fd
ACM
158{
159 struct rb_node *next = rb_first(&hists->entries);
160 struct hist_entry *n;
161
162 while (next) {
163 n = rb_entry(next, struct hist_entry, rb_node);
164 next = rb_next(&n->rb_node);
df71d95f
ACM
165 /*
166 * We may be annotating this, for instance, so keep it here in
167 * case some it gets new samples, we'll eventually free it when
168 * the user stops browsing and it agains gets fully decayed.
169 */
b079d4e9
ACM
170 if (((zap_user && n->level == '.') ||
171 (zap_kernel && n->level != '.') ||
172 hists__decay_entry(hists, n)) &&
173 !n->used) {
ab81f3fd
ACM
174 rb_erase(&n->rb_node, &hists->entries);
175
e345fa18 176 if (sort__need_collapse || threaded)
ab81f3fd
ACM
177 rb_erase(&n->rb_node_in, &hists->entries_collapsed);
178
179 hist_entry__free(n);
180 --hists->nr_entries;
181 }
182 }
183}
184
b079d4e9 185void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel)
e345fa18 186{
b079d4e9 187 return __hists__decay_entries(hists, zap_user, zap_kernel, false);
e345fa18
ACM
188}
189
b079d4e9
ACM
190void hists__decay_entries_threaded(struct hists *hists,
191 bool zap_user, bool zap_kernel)
e345fa18 192{
b079d4e9 193 return __hists__decay_entries(hists, zap_user, zap_kernel, true);
e345fa18
ACM
194}
195
3d1d07ec 196/*
c82ee828 197 * histogram, sorted on item, collects periods
3d1d07ec
JK
198 */
199
28e2a106
ACM
200static struct hist_entry *hist_entry__new(struct hist_entry *template)
201{
d2009c51 202 size_t callchain_size = symbol_conf.use_callchain ? sizeof(struct callchain_root) : 0;
12c14278 203 struct hist_entry *he = malloc(sizeof(*he) + callchain_size);
28e2a106 204
12c14278
ACM
205 if (he != NULL) {
206 *he = *template;
207 he->nr_events = 1;
208 if (he->ms.map)
209 he->ms.map->referenced = true;
28e2a106 210 if (symbol_conf.use_callchain)
12c14278 211 callchain_init(he->callchain);
28e2a106
ACM
212 }
213
12c14278 214 return he;
28e2a106
ACM
215}
216
42b28ac0 217static void hists__inc_nr_entries(struct hists *hists, struct hist_entry *h)
fefb0b94 218{
8a6c5b26 219 if (!h->filtered) {
42b28ac0
ACM
220 hists__calc_col_len(hists, h);
221 ++hists->nr_entries;
1980c2eb 222 hists->stats.total_period += h->period;
8a6c5b26 223 }
fefb0b94
ACM
224}
225
7a007ca9
ACM
226static u8 symbol__parent_filter(const struct symbol *parent)
227{
228 if (symbol_conf.exclude_other && parent == NULL)
229 return 1 << HIST_FILTER__PARENT;
230 return 0;
231}
232
b5387528
RAV
233static struct hist_entry *add_hist_entry(struct hists *hists,
234 struct hist_entry *entry,
1c02c4d2 235 struct addr_location *al,
b5387528 236 u64 period)
9735abf1 237{
1980c2eb 238 struct rb_node **p;
9735abf1
ACM
239 struct rb_node *parent = NULL;
240 struct hist_entry *he;
9735abf1
ACM
241 int cmp;
242
1980c2eb
ACM
243 pthread_mutex_lock(&hists->lock);
244
245 p = &hists->entries_in->rb_node;
246
9735abf1
ACM
247 while (*p != NULL) {
248 parent = *p;
1980c2eb 249 he = rb_entry(parent, struct hist_entry, rb_node_in);
9735abf1 250
b5387528 251 cmp = hist_entry__cmp(entry, he);
9735abf1
ACM
252
253 if (!cmp) {
c82ee828
ACM
254 he->period += period;
255 ++he->nr_events;
28e2a106 256 goto out;
9735abf1
ACM
257 }
258
259 if (cmp < 0)
260 p = &(*p)->rb_left;
261 else
262 p = &(*p)->rb_right;
263 }
264
b5387528 265 he = hist_entry__new(entry);
9735abf1 266 if (!he)
1980c2eb
ACM
267 goto out_unlock;
268
269 rb_link_node(&he->rb_node_in, parent, p);
270 rb_insert_color(&he->rb_node_in, hists->entries_in);
28e2a106 271out:
c82ee828 272 hist_entry__add_cpumode_period(he, al->cpumode, period);
1980c2eb
ACM
273out_unlock:
274 pthread_mutex_unlock(&hists->lock);
9735abf1
ACM
275 return he;
276}
277
b5387528
RAV
278struct hist_entry *__hists__add_branch_entry(struct hists *self,
279 struct addr_location *al,
280 struct symbol *sym_parent,
281 struct branch_info *bi,
282 u64 period)
283{
284 struct hist_entry entry = {
285 .thread = al->thread,
286 .ms = {
287 .map = bi->to.map,
288 .sym = bi->to.sym,
289 },
290 .cpu = al->cpu,
291 .ip = bi->to.addr,
292 .level = al->level,
293 .period = period,
294 .parent = sym_parent,
295 .filtered = symbol__parent_filter(sym_parent),
296 .branch_info = bi,
297 };
298
299 return add_hist_entry(self, &entry, al, period);
300}
301
302struct hist_entry *__hists__add_entry(struct hists *self,
303 struct addr_location *al,
304 struct symbol *sym_parent, u64 period)
305{
306 struct hist_entry entry = {
307 .thread = al->thread,
308 .ms = {
309 .map = al->map,
310 .sym = al->sym,
311 },
312 .cpu = al->cpu,
313 .ip = al->addr,
314 .level = al->level,
315 .period = period,
316 .parent = sym_parent,
317 .filtered = symbol__parent_filter(sym_parent),
318 };
319
320 return add_hist_entry(self, &entry, al, period);
321}
322
3d1d07ec
JK
323int64_t
324hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
325{
326 struct sort_entry *se;
327 int64_t cmp = 0;
328
329 list_for_each_entry(se, &hist_entry__sort_list, list) {
fcd14984 330 cmp = se->se_cmp(left, right);
3d1d07ec
JK
331 if (cmp)
332 break;
333 }
334
335 return cmp;
336}
337
338int64_t
339hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
340{
341 struct sort_entry *se;
342 int64_t cmp = 0;
343
344 list_for_each_entry(se, &hist_entry__sort_list, list) {
345 int64_t (*f)(struct hist_entry *, struct hist_entry *);
346
fcd14984 347 f = se->se_collapse ?: se->se_cmp;
3d1d07ec
JK
348
349 cmp = f(left, right);
350 if (cmp)
351 break;
352 }
353
354 return cmp;
355}
356
357void hist_entry__free(struct hist_entry *he)
358{
359 free(he);
360}
361
362/*
363 * collapse the histogram
364 */
365
42b28ac0 366static bool hists__collapse_insert_entry(struct hists *hists,
1b3a0e95
FW
367 struct rb_root *root,
368 struct hist_entry *he)
3d1d07ec 369{
b9bf0892 370 struct rb_node **p = &root->rb_node;
3d1d07ec
JK
371 struct rb_node *parent = NULL;
372 struct hist_entry *iter;
373 int64_t cmp;
374
375 while (*p != NULL) {
376 parent = *p;
1980c2eb 377 iter = rb_entry(parent, struct hist_entry, rb_node_in);
3d1d07ec
JK
378
379 cmp = hist_entry__collapse(iter, he);
380
381 if (!cmp) {
c82ee828 382 iter->period += he->period;
e39622ce 383 iter->nr_events += he->nr_events;
1b3a0e95 384 if (symbol_conf.use_callchain) {
42b28ac0
ACM
385 callchain_cursor_reset(&hists->callchain_cursor);
386 callchain_merge(&hists->callchain_cursor, iter->callchain,
1b3a0e95
FW
387 he->callchain);
388 }
3d1d07ec 389 hist_entry__free(he);
fefb0b94 390 return false;
3d1d07ec
JK
391 }
392
393 if (cmp < 0)
394 p = &(*p)->rb_left;
395 else
396 p = &(*p)->rb_right;
397 }
398
1980c2eb
ACM
399 rb_link_node(&he->rb_node_in, parent, p);
400 rb_insert_color(&he->rb_node_in, root);
fefb0b94 401 return true;
3d1d07ec
JK
402}
403
1980c2eb 404static struct rb_root *hists__get_rotate_entries_in(struct hists *hists)
3d1d07ec 405{
1980c2eb
ACM
406 struct rb_root *root;
407
408 pthread_mutex_lock(&hists->lock);
409
410 root = hists->entries_in;
411 if (++hists->entries_in > &hists->entries_in_array[1])
412 hists->entries_in = &hists->entries_in_array[0];
413
414 pthread_mutex_unlock(&hists->lock);
415
416 return root;
417}
418
90cf1fb5
ACM
419static void hists__apply_filters(struct hists *hists, struct hist_entry *he)
420{
421 hists__filter_entry_by_dso(hists, he);
422 hists__filter_entry_by_thread(hists, he);
423}
424
1980c2eb
ACM
425static void __hists__collapse_resort(struct hists *hists, bool threaded)
426{
427 struct rb_root *root;
3d1d07ec
JK
428 struct rb_node *next;
429 struct hist_entry *n;
430
1980c2eb 431 if (!sort__need_collapse && !threaded)
3d1d07ec
JK
432 return;
433
1980c2eb
ACM
434 root = hists__get_rotate_entries_in(hists);
435 next = rb_first(root);
b9bf0892 436
3d1d07ec 437 while (next) {
1980c2eb
ACM
438 n = rb_entry(next, struct hist_entry, rb_node_in);
439 next = rb_next(&n->rb_node_in);
3d1d07ec 440
1980c2eb 441 rb_erase(&n->rb_node_in, root);
90cf1fb5
ACM
442 if (hists__collapse_insert_entry(hists, &hists->entries_collapsed, n)) {
443 /*
444 * If it wasn't combined with one of the entries already
445 * collapsed, we need to apply the filters that may have
446 * been set by, say, the hist_browser.
447 */
448 hists__apply_filters(hists, n);
90cf1fb5 449 }
3d1d07ec 450 }
1980c2eb 451}
b9bf0892 452
1980c2eb
ACM
453void hists__collapse_resort(struct hists *hists)
454{
455 return __hists__collapse_resort(hists, false);
456}
457
458void hists__collapse_resort_threaded(struct hists *hists)
459{
460 return __hists__collapse_resort(hists, true);
3d1d07ec
JK
461}
462
463/*
c82ee828 464 * reverse the map, sort on period.
3d1d07ec
JK
465 */
466
1c02c4d2
ACM
467static void __hists__insert_output_entry(struct rb_root *entries,
468 struct hist_entry *he,
469 u64 min_callchain_hits)
3d1d07ec 470{
1c02c4d2 471 struct rb_node **p = &entries->rb_node;
3d1d07ec
JK
472 struct rb_node *parent = NULL;
473 struct hist_entry *iter;
474
d599db3f 475 if (symbol_conf.use_callchain)
b9fb9304 476 callchain_param.sort(&he->sorted_chain, he->callchain,
3d1d07ec
JK
477 min_callchain_hits, &callchain_param);
478
479 while (*p != NULL) {
480 parent = *p;
481 iter = rb_entry(parent, struct hist_entry, rb_node);
482
c82ee828 483 if (he->period > iter->period)
3d1d07ec
JK
484 p = &(*p)->rb_left;
485 else
486 p = &(*p)->rb_right;
487 }
488
489 rb_link_node(&he->rb_node, parent, p);
1c02c4d2 490 rb_insert_color(&he->rb_node, entries);
3d1d07ec
JK
491}
492
1980c2eb 493static void __hists__output_resort(struct hists *hists, bool threaded)
3d1d07ec 494{
1980c2eb 495 struct rb_root *root;
3d1d07ec
JK
496 struct rb_node *next;
497 struct hist_entry *n;
3d1d07ec
JK
498 u64 min_callchain_hits;
499
42b28ac0 500 min_callchain_hits = hists->stats.total_period * (callchain_param.min_percent / 100);
3d1d07ec 501
1980c2eb
ACM
502 if (sort__need_collapse || threaded)
503 root = &hists->entries_collapsed;
504 else
505 root = hists->entries_in;
506
507 next = rb_first(root);
508 hists->entries = RB_ROOT;
3d1d07ec 509
42b28ac0 510 hists->nr_entries = 0;
7928631a 511 hists->stats.total_period = 0;
42b28ac0 512 hists__reset_col_len(hists);
fefb0b94 513
3d1d07ec 514 while (next) {
1980c2eb
ACM
515 n = rb_entry(next, struct hist_entry, rb_node_in);
516 next = rb_next(&n->rb_node_in);
3d1d07ec 517
1980c2eb 518 __hists__insert_output_entry(&hists->entries, n, min_callchain_hits);
42b28ac0 519 hists__inc_nr_entries(hists, n);
3d1d07ec 520 }
1980c2eb 521}
b9bf0892 522
1980c2eb
ACM
523void hists__output_resort(struct hists *hists)
524{
525 return __hists__output_resort(hists, false);
526}
527
528void hists__output_resort_threaded(struct hists *hists)
529{
530 return __hists__output_resort(hists, true);
3d1d07ec 531}
4ecf84d0
ACM
532
533static size_t callchain__fprintf_left_margin(FILE *fp, int left_margin)
534{
535 int i;
536 int ret = fprintf(fp, " ");
537
538 for (i = 0; i < left_margin; i++)
539 ret += fprintf(fp, " ");
540
541 return ret;
542}
543
544static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask,
545 int left_margin)
546{
547 int i;
548 size_t ret = callchain__fprintf_left_margin(fp, left_margin);
549
550 for (i = 0; i < depth; i++)
551 if (depth_mask & (1 << i))
552 ret += fprintf(fp, "| ");
553 else
554 ret += fprintf(fp, " ");
555
556 ret += fprintf(fp, "\n");
557
558 return ret;
559}
560
561static size_t ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain,
c82ee828 562 int depth, int depth_mask, int period,
d425de54 563 u64 total_samples, u64 hits,
4ecf84d0
ACM
564 int left_margin)
565{
566 int i;
567 size_t ret = 0;
568
569 ret += callchain__fprintf_left_margin(fp, left_margin);
570 for (i = 0; i < depth; i++) {
571 if (depth_mask & (1 << i))
572 ret += fprintf(fp, "|");
573 else
574 ret += fprintf(fp, " ");
c82ee828 575 if (!period && i == depth - 1) {
4ecf84d0
ACM
576 double percent;
577
578 percent = hits * 100.0 / total_samples;
579 ret += percent_color_fprintf(fp, "--%2.2f%%-- ", percent);
580 } else
581 ret += fprintf(fp, "%s", " ");
582 }
b3c9ac08
ACM
583 if (chain->ms.sym)
584 ret += fprintf(fp, "%s\n", chain->ms.sym->name);
4ecf84d0
ACM
585 else
586 ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);
587
588 return ret;
589}
590
591static struct symbol *rem_sq_bracket;
592static struct callchain_list rem_hits;
593
594static void init_rem_hits(void)
595{
596 rem_sq_bracket = malloc(sizeof(*rem_sq_bracket) + 6);
597 if (!rem_sq_bracket) {
598 fprintf(stderr, "Not enough memory to display remaining hits\n");
599 return;
600 }
601
602 strcpy(rem_sq_bracket->name, "[...]");
b3c9ac08 603 rem_hits.ms.sym = rem_sq_bracket;
4ecf84d0
ACM
604}
605
606static size_t __callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
607 u64 total_samples, int depth,
608 int depth_mask, int left_margin)
609{
610 struct rb_node *node, *next;
611 struct callchain_node *child;
612 struct callchain_list *chain;
613 int new_depth_mask = depth_mask;
614 u64 new_total;
615 u64 remaining;
616 size_t ret = 0;
617 int i;
232a5c94 618 uint entries_printed = 0;
4ecf84d0
ACM
619
620 if (callchain_param.mode == CHAIN_GRAPH_REL)
621 new_total = self->children_hit;
622 else
623 new_total = total_samples;
624
625 remaining = new_total;
626
627 node = rb_first(&self->rb_root);
628 while (node) {
629 u64 cumul;
630
631 child = rb_entry(node, struct callchain_node, rb_node);
f08c3154 632 cumul = callchain_cumul_hits(child);
4ecf84d0
ACM
633 remaining -= cumul;
634
635 /*
636 * The depth mask manages the output of pipes that show
637 * the depth. We don't want to keep the pipes of the current
638 * level for the last child of this depth.
639 * Except if we have remaining filtered hits. They will
640 * supersede the last child
641 */
642 next = rb_next(node);
643 if (!next && (callchain_param.mode != CHAIN_GRAPH_REL || !remaining))
644 new_depth_mask &= ~(1 << (depth - 1));
645
646 /*
3ad2f3fb 647 * But we keep the older depth mask for the line separator
4ecf84d0
ACM
648 * to keep the level link until we reach the last child
649 */
650 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask,
651 left_margin);
652 i = 0;
653 list_for_each_entry(chain, &child->val, list) {
4ecf84d0
ACM
654 ret += ipchain__fprintf_graph(fp, chain, depth,
655 new_depth_mask, i++,
656 new_total,
657 cumul,
658 left_margin);
659 }
660 ret += __callchain__fprintf_graph(fp, child, new_total,
661 depth + 1,
662 new_depth_mask | (1 << depth),
663 left_margin);
664 node = next;
232a5c94
ACM
665 if (++entries_printed == callchain_param.print_limit)
666 break;
4ecf84d0
ACM
667 }
668
669 if (callchain_param.mode == CHAIN_GRAPH_REL &&
670 remaining && remaining != new_total) {
671
672 if (!rem_sq_bracket)
673 return ret;
674
675 new_depth_mask &= ~(1 << (depth - 1));
676
677 ret += ipchain__fprintf_graph(fp, &rem_hits, depth,
678 new_depth_mask, 0, new_total,
679 remaining, left_margin);
680 }
681
682 return ret;
683}
684
685static size_t callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
686 u64 total_samples, int left_margin)
687{
688 struct callchain_list *chain;
689 bool printed = false;
690 int i = 0;
691 int ret = 0;
232a5c94 692 u32 entries_printed = 0;
4ecf84d0
ACM
693
694 list_for_each_entry(chain, &self->val, list) {
4ecf84d0
ACM
695 if (!i++ && sort__first_dimension == SORT_SYM)
696 continue;
697
698 if (!printed) {
699 ret += callchain__fprintf_left_margin(fp, left_margin);
700 ret += fprintf(fp, "|\n");
701 ret += callchain__fprintf_left_margin(fp, left_margin);
702 ret += fprintf(fp, "---");
703
704 left_margin += 3;
705 printed = true;
706 } else
707 ret += callchain__fprintf_left_margin(fp, left_margin);
708
b3c9ac08
ACM
709 if (chain->ms.sym)
710 ret += fprintf(fp, " %s\n", chain->ms.sym->name);
4ecf84d0
ACM
711 else
712 ret += fprintf(fp, " %p\n", (void *)(long)chain->ip);
232a5c94
ACM
713
714 if (++entries_printed == callchain_param.print_limit)
715 break;
4ecf84d0
ACM
716 }
717
718 ret += __callchain__fprintf_graph(fp, self, total_samples, 1, 1, left_margin);
719
720 return ret;
721}
722
723static size_t callchain__fprintf_flat(FILE *fp, struct callchain_node *self,
724 u64 total_samples)
725{
726 struct callchain_list *chain;
727 size_t ret = 0;
728
729 if (!self)
730 return 0;
731
732 ret += callchain__fprintf_flat(fp, self->parent, total_samples);
733
734
735 list_for_each_entry(chain, &self->val, list) {
736 if (chain->ip >= PERF_CONTEXT_MAX)
737 continue;
b3c9ac08
ACM
738 if (chain->ms.sym)
739 ret += fprintf(fp, " %s\n", chain->ms.sym->name);
4ecf84d0
ACM
740 else
741 ret += fprintf(fp, " %p\n",
742 (void *)(long)chain->ip);
743 }
744
745 return ret;
746}
747
12c14278
ACM
748static size_t hist_entry_callchain__fprintf(struct hist_entry *he,
749 u64 total_samples, int left_margin,
750 FILE *fp)
4ecf84d0
ACM
751{
752 struct rb_node *rb_node;
753 struct callchain_node *chain;
754 size_t ret = 0;
232a5c94 755 u32 entries_printed = 0;
4ecf84d0 756
12c14278 757 rb_node = rb_first(&he->sorted_chain);
4ecf84d0
ACM
758 while (rb_node) {
759 double percent;
760
761 chain = rb_entry(rb_node, struct callchain_node, rb_node);
762 percent = chain->hit * 100.0 / total_samples;
763 switch (callchain_param.mode) {
764 case CHAIN_FLAT:
765 ret += percent_color_fprintf(fp, " %6.2f%%\n",
766 percent);
767 ret += callchain__fprintf_flat(fp, chain, total_samples);
768 break;
769 case CHAIN_GRAPH_ABS: /* Falldown */
770 case CHAIN_GRAPH_REL:
771 ret += callchain__fprintf_graph(fp, chain, total_samples,
772 left_margin);
773 case CHAIN_NONE:
774 default:
775 break;
776 }
777 ret += fprintf(fp, "\n");
232a5c94
ACM
778 if (++entries_printed == callchain_param.print_limit)
779 break;
4ecf84d0
ACM
780 rb_node = rb_next(rb_node);
781 }
782
783 return ret;
784}
785
ab81f3fd
ACM
786void hists__output_recalc_col_len(struct hists *hists, int max_rows)
787{
788 struct rb_node *next = rb_first(&hists->entries);
789 struct hist_entry *n;
790 int row = 0;
791
792 hists__reset_col_len(hists);
793
794 while (next && row++ < max_rows) {
795 n = rb_entry(next, struct hist_entry, rb_node);
d197fd5d
ACM
796 if (!n->filtered)
797 hists__calc_col_len(hists, n);
ab81f3fd
ACM
798 next = rb_next(&n->rb_node);
799 }
800}
801
12c14278 802static int hist_entry__pcnt_snprintf(struct hist_entry *he, char *s,
f1cf602c
ACM
803 size_t size, struct hists *pair_hists,
804 bool show_displacement, long displacement,
13d3ee54 805 bool color, u64 total_period)
4ecf84d0 806{
c82ee828 807 u64 period, total, period_sys, period_us, period_guest_sys, period_guest_us;
fec9cbd1 808 u64 nr_events;
c351c281 809 const char *sep = symbol_conf.field_sep;
a4e3b956 810 int ret;
4ecf84d0 811
12c14278 812 if (symbol_conf.exclude_other && !he->parent)
4ecf84d0
ACM
813 return 0;
814
1c02c4d2 815 if (pair_hists) {
12c14278
ACM
816 period = he->pair ? he->pair->period : 0;
817 nr_events = he->pair ? he->pair->nr_events : 0;
cee75ac7 818 total = pair_hists->stats.total_period;
12c14278
ACM
819 period_sys = he->pair ? he->pair->period_sys : 0;
820 period_us = he->pair ? he->pair->period_us : 0;
821 period_guest_sys = he->pair ? he->pair->period_guest_sys : 0;
822 period_guest_us = he->pair ? he->pair->period_guest_us : 0;
c351c281 823 } else {
12c14278
ACM
824 period = he->period;
825 nr_events = he->nr_events;
13d3ee54 826 total = total_period;
12c14278
ACM
827 period_sys = he->period_sys;
828 period_us = he->period_us;
829 period_guest_sys = he->period_guest_sys;
830 period_guest_us = he->period_guest_us;
c351c281
ACM
831 }
832
a4e3b956
ACM
833 if (total) {
834 if (color)
835 ret = percent_color_snprintf(s, size,
836 sep ? "%.2f" : " %6.2f%%",
c82ee828 837 (period * 100.0) / total);
a4e3b956
ACM
838 else
839 ret = snprintf(s, size, sep ? "%.2f" : " %6.2f%%",
c82ee828 840 (period * 100.0) / total);
a1645ce1
ZY
841 if (symbol_conf.show_cpu_utilization) {
842 ret += percent_color_snprintf(s + ret, size - ret,
843 sep ? "%.2f" : " %6.2f%%",
c82ee828 844 (period_sys * 100.0) / total);
a1645ce1
ZY
845 ret += percent_color_snprintf(s + ret, size - ret,
846 sep ? "%.2f" : " %6.2f%%",
c82ee828 847 (period_us * 100.0) / total);
a1645ce1
ZY
848 if (perf_guest) {
849 ret += percent_color_snprintf(s + ret,
850 size - ret,
851 sep ? "%.2f" : " %6.2f%%",
c82ee828 852 (period_guest_sys * 100.0) /
a1645ce1
ZY
853 total);
854 ret += percent_color_snprintf(s + ret,
855 size - ret,
856 sep ? "%.2f" : " %6.2f%%",
c82ee828 857 (period_guest_us * 100.0) /
a1645ce1
ZY
858 total);
859 }
860 }
a4e3b956 861 } else
9486aa38 862 ret = snprintf(s, size, sep ? "%" PRIu64 : "%12" PRIu64 " ", period);
4ecf84d0
ACM
863
864 if (symbol_conf.show_nr_samples) {
c351c281 865 if (sep)
fec9cbd1 866 ret += snprintf(s + ret, size - ret, "%c%" PRIu64, *sep, nr_events);
4ecf84d0 867 else
fec9cbd1 868 ret += snprintf(s + ret, size - ret, "%11" PRIu64, nr_events);
c351c281
ACM
869 }
870
3f2728bd
ACM
871 if (symbol_conf.show_total_period) {
872 if (sep)
873 ret += snprintf(s + ret, size - ret, "%c%" PRIu64, *sep, period);
874 else
875 ret += snprintf(s + ret, size - ret, " %12" PRIu64, period);
876 }
877
1c02c4d2 878 if (pair_hists) {
c351c281
ACM
879 char bf[32];
880 double old_percent = 0, new_percent = 0, diff;
881
882 if (total > 0)
c82ee828 883 old_percent = (period * 100.0) / total;
13d3ee54 884 if (total_period > 0)
12c14278 885 new_percent = (he->period * 100.0) / total_period;
c351c281 886
9b33827d 887 diff = new_percent - old_percent;
c351c281 888
9b33827d 889 if (fabs(diff) >= 0.01)
c351c281
ACM
890 snprintf(bf, sizeof(bf), "%+4.2F%%", diff);
891 else
892 snprintf(bf, sizeof(bf), " ");
893
894 if (sep)
a4e3b956 895 ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
c351c281 896 else
a4e3b956 897 ret += snprintf(s + ret, size - ret, "%11.11s", bf);
c351c281
ACM
898
899 if (show_displacement) {
900 if (displacement)
901 snprintf(bf, sizeof(bf), "%+4ld", displacement);
902 else
903 snprintf(bf, sizeof(bf), " ");
904
905 if (sep)
a4e3b956 906 ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
c351c281 907 else
a4e3b956 908 ret += snprintf(s + ret, size - ret, "%6.6s", bf);
c351c281 909 }
4ecf84d0
ACM
910 }
911
f1cf602c
ACM
912 return ret;
913}
914
915int hist_entry__snprintf(struct hist_entry *he, char *s, size_t size,
916 struct hists *hists)
917{
918 const char *sep = symbol_conf.field_sep;
919 struct sort_entry *se;
920 int ret = 0;
921
4ecf84d0
ACM
922 list_for_each_entry(se, &hist_entry__sort_list, list) {
923 if (se->elide)
924 continue;
925
a4e3b956 926 ret += snprintf(s + ret, size - ret, "%s", sep ?: " ");
f1cf602c 927 ret += se->se_snprintf(he, s + ret, size - ret,
8a6c5b26 928 hists__col_len(hists, se->se_width_idx));
4ecf84d0
ACM
929 }
930
a4e3b956
ACM
931 return ret;
932}
933
12c14278
ACM
934static int hist_entry__fprintf(struct hist_entry *he, size_t size,
935 struct hists *hists, struct hists *pair_hists,
936 bool show_displacement, long displacement,
937 u64 total_period, FILE *fp)
a4e3b956
ACM
938{
939 char bf[512];
f1cf602c 940 int ret;
ef9dfe6e
ACM
941
942 if (size == 0 || size > sizeof(bf))
943 size = sizeof(bf);
944
f1cf602c
ACM
945 ret = hist_entry__pcnt_snprintf(he, bf, size, pair_hists,
946 show_displacement, displacement,
13d3ee54 947 true, total_period);
f1cf602c 948 hist_entry__snprintf(he, bf + ret, size - ret, hists);
a4e3b956 949 return fprintf(fp, "%s\n", bf);
3997d377 950}
4ecf84d0 951
12c14278
ACM
952static size_t hist_entry__fprintf_callchain(struct hist_entry *he,
953 struct hists *hists,
954 u64 total_period, FILE *fp)
3997d377
ACM
955{
956 int left_margin = 0;
4ecf84d0 957
3997d377
ACM
958 if (sort__first_dimension == SORT_COMM) {
959 struct sort_entry *se = list_first_entry(&hist_entry__sort_list,
960 typeof(*se), list);
8a6c5b26 961 left_margin = hists__col_len(hists, se->se_width_idx);
12c14278 962 left_margin -= thread__comm_len(he->thread);
4ecf84d0
ACM
963 }
964
12c14278 965 return hist_entry_callchain__fprintf(he, total_period, left_margin, fp);
4ecf84d0
ACM
966}
967
42b28ac0 968size_t hists__fprintf(struct hists *hists, struct hists *pair,
ef9dfe6e
ACM
969 bool show_displacement, bool show_header, int max_rows,
970 int max_cols, FILE *fp)
4ecf84d0 971{
4ecf84d0
ACM
972 struct sort_entry *se;
973 struct rb_node *nd;
974 size_t ret = 0;
12c14278 975 u64 total_period;
c351c281
ACM
976 unsigned long position = 1;
977 long displacement = 0;
4ecf84d0 978 unsigned int width;
c351c281 979 const char *sep = symbol_conf.field_sep;
edb7c60e 980 const char *col_width = symbol_conf.col_width_list_str;
ef9dfe6e 981 int nr_rows = 0;
4ecf84d0
ACM
982
983 init_rem_hits();
984
ef9dfe6e
ACM
985 if (!show_header)
986 goto print_entries;
987
c351c281
ACM
988 fprintf(fp, "# %s", pair ? "Baseline" : "Overhead");
989
a1645ce1
ZY
990 if (symbol_conf.show_cpu_utilization) {
991 if (sep) {
992 ret += fprintf(fp, "%csys", *sep);
993 ret += fprintf(fp, "%cus", *sep);
994 if (perf_guest) {
995 ret += fprintf(fp, "%cguest sys", *sep);
996 ret += fprintf(fp, "%cguest us", *sep);
997 }
998 } else {
0ed35abc
NK
999 ret += fprintf(fp, " sys ");
1000 ret += fprintf(fp, " us ");
a1645ce1
ZY
1001 if (perf_guest) {
1002 ret += fprintf(fp, " guest sys ");
1003 ret += fprintf(fp, " guest us ");
1004 }
1005 }
1006 }
1007
0ed35abc
NK
1008 if (symbol_conf.show_nr_samples) {
1009 if (sep)
1010 fprintf(fp, "%cSamples", *sep);
1011 else
1012 fputs(" Samples ", fp);
1013 }
1014
1015 if (symbol_conf.show_total_period) {
1016 if (sep)
1017 ret += fprintf(fp, "%cPeriod", *sep);
1018 else
1019 ret += fprintf(fp, " Period ");
1020 }
1021
c351c281
ACM
1022 if (pair) {
1023 if (sep)
1024 ret += fprintf(fp, "%cDelta", *sep);
1025 else
1026 ret += fprintf(fp, " Delta ");
1027
1028 if (show_displacement) {
1029 if (sep)
1030 ret += fprintf(fp, "%cDisplacement", *sep);
1031 else
1032 ret += fprintf(fp, " Displ");
1033 }
1034 }
1035
4ecf84d0
ACM
1036 list_for_each_entry(se, &hist_entry__sort_list, list) {
1037 if (se->elide)
1038 continue;
c351c281 1039 if (sep) {
fcd14984 1040 fprintf(fp, "%c%s", *sep, se->se_header);
4ecf84d0
ACM
1041 continue;
1042 }
fcd14984 1043 width = strlen(se->se_header);
8a6c5b26
ACM
1044 if (symbol_conf.col_width_list_str) {
1045 if (col_width) {
42b28ac0 1046 hists__set_col_len(hists, se->se_width_idx,
8a6c5b26
ACM
1047 atoi(col_width));
1048 col_width = strchr(col_width, ',');
1049 if (col_width)
1050 ++col_width;
4ecf84d0 1051 }
4ecf84d0 1052 }
42b28ac0
ACM
1053 if (!hists__new_col_len(hists, se->se_width_idx, width))
1054 width = hists__col_len(hists, se->se_width_idx);
fcd14984 1055 fprintf(fp, " %*s", width, se->se_header);
4ecf84d0 1056 }
ef9dfe6e 1057
4ecf84d0 1058 fprintf(fp, "\n");
ef9dfe6e
ACM
1059 if (max_rows && ++nr_rows >= max_rows)
1060 goto out;
4ecf84d0 1061
c351c281 1062 if (sep)
4ecf84d0
ACM
1063 goto print_entries;
1064
1065 fprintf(fp, "# ........");
0ed35abc
NK
1066 if (symbol_conf.show_cpu_utilization)
1067 fprintf(fp, " ....... .......");
4ecf84d0
ACM
1068 if (symbol_conf.show_nr_samples)
1069 fprintf(fp, " ..........");
3f2728bd
ACM
1070 if (symbol_conf.show_total_period)
1071 fprintf(fp, " ............");
c351c281
ACM
1072 if (pair) {
1073 fprintf(fp, " ..........");
1074 if (show_displacement)
1075 fprintf(fp, " .....");
1076 }
4ecf84d0
ACM
1077 list_for_each_entry(se, &hist_entry__sort_list, list) {
1078 unsigned int i;
1079
1080 if (se->elide)
1081 continue;
1082
1083 fprintf(fp, " ");
42b28ac0 1084 width = hists__col_len(hists, se->se_width_idx);
8a6c5b26 1085 if (width == 0)
fcd14984 1086 width = strlen(se->se_header);
4ecf84d0
ACM
1087 for (i = 0; i < width; i++)
1088 fprintf(fp, ".");
1089 }
4ecf84d0 1090
ef9dfe6e
ACM
1091 fprintf(fp, "\n");
1092 if (max_rows && ++nr_rows >= max_rows)
1093 goto out;
1094
1095 fprintf(fp, "#\n");
1096 if (max_rows && ++nr_rows >= max_rows)
1097 goto out;
4ecf84d0
ACM
1098
1099print_entries:
12c14278
ACM
1100 total_period = hists->stats.total_period;
1101
42b28ac0 1102 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
c351c281
ACM
1103 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1104
e84d2122
FW
1105 if (h->filtered)
1106 continue;
1107
c351c281
ACM
1108 if (show_displacement) {
1109 if (h->pair != NULL)
1110 displacement = ((long)h->pair->position -
1111 (long)position);
1112 else
1113 displacement = 0;
1114 ++position;
1115 }
ef9dfe6e 1116 ret += hist_entry__fprintf(h, max_cols, hists, pair, show_displacement,
12c14278 1117 displacement, total_period, fp);
3997d377
ACM
1118
1119 if (symbol_conf.use_callchain)
12c14278 1120 ret += hist_entry__fprintf_callchain(h, hists, total_period, fp);
ef9dfe6e
ACM
1121 if (max_rows && ++nr_rows >= max_rows)
1122 goto out;
1123
59fd5306 1124 if (h->ms.map == NULL && verbose > 1) {
65f2ed2b 1125 __map_groups__fprintf_maps(&h->thread->mg,
c6e718ff 1126 MAP__FUNCTION, verbose, fp);
65f2ed2b
ACM
1127 fprintf(fp, "%.10s end\n", graph_dotted_line);
1128 }
4ecf84d0 1129 }
ef9dfe6e 1130out:
4ecf84d0
ACM
1131 free(rem_sq_bracket);
1132
1133 return ret;
1134}
b09e0190 1135
06daaaba
ACM
1136/*
1137 * See hists__fprintf to match the column widths
1138 */
42b28ac0 1139unsigned int hists__sort_list_width(struct hists *hists)
06daaaba
ACM
1140{
1141 struct sort_entry *se;
1142 int ret = 9; /* total % */
1143
1144 if (symbol_conf.show_cpu_utilization) {
1145 ret += 7; /* count_sys % */
1146 ret += 6; /* count_us % */
1147 if (perf_guest) {
1148 ret += 13; /* count_guest_sys % */
1149 ret += 12; /* count_guest_us % */
1150 }
1151 }
1152
1153 if (symbol_conf.show_nr_samples)
1154 ret += 11;
1155
3f2728bd
ACM
1156 if (symbol_conf.show_total_period)
1157 ret += 13;
1158
06daaaba
ACM
1159 list_for_each_entry(se, &hist_entry__sort_list, list)
1160 if (!se->elide)
42b28ac0 1161 ret += 2 + hists__col_len(hists, se->se_width_idx);
06daaaba 1162
903cce6e
ACM
1163 if (verbose) /* Addr + origin */
1164 ret += 3 + BITS_PER_LONG / 4;
1165
06daaaba
ACM
1166 return ret;
1167}
1168
42b28ac0 1169static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h,
cc5edb0e
ACM
1170 enum hist_filter filter)
1171{
1172 h->filtered &= ~(1 << filter);
1173 if (h->filtered)
1174 return;
1175
42b28ac0 1176 ++hists->nr_entries;
0f0cbf7a 1177 if (h->ms.unfolded)
42b28ac0 1178 hists->nr_entries += h->nr_rows;
0f0cbf7a 1179 h->row_offset = 0;
42b28ac0
ACM
1180 hists->stats.total_period += h->period;
1181 hists->stats.nr_events[PERF_RECORD_SAMPLE] += h->nr_events;
cc5edb0e 1182
42b28ac0 1183 hists__calc_col_len(hists, h);
cc5edb0e
ACM
1184}
1185
90cf1fb5
ACM
1186
1187static bool hists__filter_entry_by_dso(struct hists *hists,
1188 struct hist_entry *he)
1189{
1190 if (hists->dso_filter != NULL &&
1191 (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) {
1192 he->filtered |= (1 << HIST_FILTER__DSO);
1193 return true;
1194 }
1195
1196 return false;
1197}
1198
d7b76f09 1199void hists__filter_by_dso(struct hists *hists)
b09e0190
ACM
1200{
1201 struct rb_node *nd;
1202
42b28ac0
ACM
1203 hists->nr_entries = hists->stats.total_period = 0;
1204 hists->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
1205 hists__reset_col_len(hists);
b09e0190 1206
42b28ac0 1207 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
b09e0190
ACM
1208 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1209
1210 if (symbol_conf.exclude_other && !h->parent)
1211 continue;
1212
90cf1fb5 1213 if (hists__filter_entry_by_dso(hists, h))
b09e0190 1214 continue;
b09e0190 1215
42b28ac0 1216 hists__remove_entry_filter(hists, h, HIST_FILTER__DSO);
b09e0190
ACM
1217 }
1218}
1219
90cf1fb5
ACM
1220static bool hists__filter_entry_by_thread(struct hists *hists,
1221 struct hist_entry *he)
1222{
1223 if (hists->thread_filter != NULL &&
1224 he->thread != hists->thread_filter) {
1225 he->filtered |= (1 << HIST_FILTER__THREAD);
1226 return true;
1227 }
1228
1229 return false;
1230}
1231
d7b76f09 1232void hists__filter_by_thread(struct hists *hists)
b09e0190
ACM
1233{
1234 struct rb_node *nd;
1235
42b28ac0
ACM
1236 hists->nr_entries = hists->stats.total_period = 0;
1237 hists->stats.nr_events[PERF_RECORD_SAMPLE] = 0;
1238 hists__reset_col_len(hists);
b09e0190 1239
42b28ac0 1240 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
b09e0190
ACM
1241 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
1242
90cf1fb5 1243 if (hists__filter_entry_by_thread(hists, h))
b09e0190 1244 continue;
cc5edb0e 1245
42b28ac0 1246 hists__remove_entry_filter(hists, h, HIST_FILTER__THREAD);
b09e0190
ACM
1247 }
1248}
ef7b93a1 1249
2f525d01 1250int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 ip)
ef7b93a1 1251{
2f525d01 1252 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip);
ef7b93a1
ACM
1253}
1254
ce6f4fab 1255int hist_entry__annotate(struct hist_entry *he, size_t privsize)
ef7b93a1 1256{
ce6f4fab 1257 return symbol__annotate(he->ms.sym, he->ms.map, privsize);
ef7b93a1 1258}
c8446b9b 1259
42b28ac0 1260void hists__inc_nr_events(struct hists *hists, u32 type)
c8446b9b 1261{
42b28ac0
ACM
1262 ++hists->stats.nr_events[0];
1263 ++hists->stats.nr_events[type];
c8446b9b
ACM
1264}
1265
42b28ac0 1266size_t hists__fprintf_nr_events(struct hists *hists, FILE *fp)
c8446b9b
ACM
1267{
1268 int i;
1269 size_t ret = 0;
1270
1271 for (i = 0; i < PERF_RECORD_HEADER_MAX; ++i) {
e248de33 1272 const char *name;
3835bc00 1273
42b28ac0 1274 if (hists->stats.nr_events[i] == 0)
e248de33
ACM
1275 continue;
1276
1277 name = perf_event__name(i);
3835bc00 1278 if (!strcmp(name, "UNKNOWN"))
c8446b9b 1279 continue;
3835bc00
TG
1280
1281 ret += fprintf(fp, "%16s events: %10d\n", name,
42b28ac0 1282 hists->stats.nr_events[i]);
c8446b9b
ACM
1283 }
1284
1285 return ret;
1286}