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