]> bbs.cooldavid.org Git - net-next-2.6.git/blame - tools/perf/builtin-report.c
perf symbols: Look for vmlinux in more places
[net-next-2.6.git] / tools / perf / builtin-report.c
CommitLineData
bf9e1876
IM
1/*
2 * builtin-report.c
3 *
4 * Builtin report command: Analyze the perf.data input file,
5 * look up and read DSOs and symbol information and display
6 * a histogram of results, along various sorting keys.
7 */
16f762a2 8#include "builtin.h"
53cb8bc2 9
bf9e1876
IM
10#include "util/util.h"
11
8fc0321f 12#include "util/color.h"
5da50258 13#include <linux/list.h>
a930d2c0 14#include "util/cache.h"
43cbcd8a 15#include <linux/rbtree.h>
a2928c42 16#include "util/symbol.h"
a0055ae2 17#include "util/string.h"
f55c5552 18#include "util/callchain.h"
25903407 19#include "util/strlist.h"
8d513270 20#include "util/values.h"
8fa66bdc 21
53cb8bc2 22#include "perf.h"
8f28827a 23#include "util/debug.h"
7c6a1c65 24#include "util/header.h"
53cb8bc2
IM
25
26#include "util/parse-options.h"
27#include "util/parse-events.h"
28
016e92fb 29#include "util/data_map.h"
6baa0a5a 30#include "util/thread.h"
dd68ada2 31#include "util/sort.h"
3d1d07ec 32#include "util/hist.h"
6baa0a5a 33
23ac9cbe 34static char const *input_name = "perf.data";
bd74137e 35
52d422de
ACM
36static char *dso_list_str, *comm_list_str, *sym_list_str,
37 *col_width_list_str;
7bec7a91 38static struct strlist *dso_list, *comm_list, *sym_list;
bd74137e 39
fa6963b2 40static int force;
6671cb16 41static bool use_modules;
8fa66bdc 42
b78c07d4 43static int full_paths;
e3d7e183 44static int show_nr_samples;
97b07b69 45
8d513270
BG
46static int show_threads;
47static struct perf_read_values show_threads_values;
48
9f866697
BG
49static char default_pretty_printing_style[] = "normal";
50static char *pretty_printing_style = default_pretty_printing_style;
51
b8e6d829 52static int exclude_other = 1;
be903885 53
805d127d 54static char callchain_default_opt[] = "fractal,0.5";
cc612d81 55const char *vmlinux_name;
805d127d 56
016e92fb 57static char *cwd;
66e274f3
FW
58static int cwdlen;
59
0d3a5c88
FW
60static struct perf_header *header;
61
e6e18ec7
PZ
62static u64 sample_type;
63
a4fb581b
FW
64
65static size_t
66callchain__fprintf_left_margin(FILE *fp, int left_margin)
67{
68 int i;
69 int ret;
70
71 ret = fprintf(fp, " ");
72
73 for (i = 0; i < left_margin; i++)
74 ret += fprintf(fp, " ");
75
76 return ret;
77}
78
79static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask,
80 int left_margin)
4eb3e478
FW
81{
82 int i;
83 size_t ret = 0;
84
a4fb581b 85 ret += callchain__fprintf_left_margin(fp, left_margin);
4eb3e478
FW
86
87 for (i = 0; i < depth; i++)
88 if (depth_mask & (1 << i))
89 ret += fprintf(fp, "| ");
90 else
91 ret += fprintf(fp, " ");
92
93 ret += fprintf(fp, "\n");
94
95 return ret;
96}
f55c5552 97static size_t
4eb3e478
FW
98ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain, int depth,
99 int depth_mask, int count, u64 total_samples,
a4fb581b 100 int hits, int left_margin)
4eb3e478
FW
101{
102 int i;
103 size_t ret = 0;
104
a4fb581b 105 ret += callchain__fprintf_left_margin(fp, left_margin);
4eb3e478
FW
106 for (i = 0; i < depth; i++) {
107 if (depth_mask & (1 << i))
108 ret += fprintf(fp, "|");
109 else
110 ret += fprintf(fp, " ");
111 if (!count && i == depth - 1) {
112 double percent;
113
114 percent = hits * 100.0 / total_samples;
24b57c69 115 ret += percent_color_fprintf(fp, "--%2.2f%%-- ", percent);
4eb3e478
FW
116 } else
117 ret += fprintf(fp, "%s", " ");
118 }
119 if (chain->sym)
120 ret += fprintf(fp, "%s\n", chain->sym->name);
121 else
122 ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);
123
124 return ret;
125}
126
25446036
FW
127static struct symbol *rem_sq_bracket;
128static struct callchain_list rem_hits;
129
130static void init_rem_hits(void)
131{
132 rem_sq_bracket = malloc(sizeof(*rem_sq_bracket) + 6);
133 if (!rem_sq_bracket) {
134 fprintf(stderr, "Not enough memory to display remaining hits\n");
135 return;
136 }
137
138 strcpy(rem_sq_bracket->name, "[...]");
139 rem_hits.sym = rem_sq_bracket;
140}
141
4eb3e478 142static size_t
af0a6fa4 143__callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
a4fb581b
FW
144 u64 total_samples, int depth, int depth_mask,
145 int left_margin)
4eb3e478
FW
146{
147 struct rb_node *node, *next;
148 struct callchain_node *child;
149 struct callchain_list *chain;
150 int new_depth_mask = depth_mask;
805d127d 151 u64 new_total;
25446036 152 u64 remaining;
4eb3e478
FW
153 size_t ret = 0;
154 int i;
155
805d127d 156 if (callchain_param.mode == CHAIN_GRAPH_REL)
1953287b 157 new_total = self->children_hit;
805d127d
FW
158 else
159 new_total = total_samples;
160
25446036
FW
161 remaining = new_total;
162
4eb3e478
FW
163 node = rb_first(&self->rb_root);
164 while (node) {
25446036
FW
165 u64 cumul;
166
4eb3e478 167 child = rb_entry(node, struct callchain_node, rb_node);
25446036
FW
168 cumul = cumul_hits(child);
169 remaining -= cumul;
4eb3e478
FW
170
171 /*
172 * The depth mask manages the output of pipes that show
173 * the depth. We don't want to keep the pipes of the current
25446036
FW
174 * level for the last child of this depth.
175 * Except if we have remaining filtered hits. They will
176 * supersede the last child
4eb3e478
FW
177 */
178 next = rb_next(node);
25446036 179 if (!next && (callchain_param.mode != CHAIN_GRAPH_REL || !remaining))
4eb3e478
FW
180 new_depth_mask &= ~(1 << (depth - 1));
181
182 /*
183 * But we keep the older depth mask for the line seperator
184 * to keep the level link until we reach the last child
185 */
a4fb581b
FW
186 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask,
187 left_margin);
4eb3e478
FW
188 i = 0;
189 list_for_each_entry(chain, &child->val, list) {
190 if (chain->ip >= PERF_CONTEXT_MAX)
191 continue;
192 ret += ipchain__fprintf_graph(fp, chain, depth,
193 new_depth_mask, i++,
805d127d 194 new_total,
a4fb581b
FW
195 cumul,
196 left_margin);
4eb3e478 197 }
af0a6fa4
FW
198 ret += __callchain__fprintf_graph(fp, child, new_total,
199 depth + 1,
a4fb581b
FW
200 new_depth_mask | (1 << depth),
201 left_margin);
4eb3e478
FW
202 node = next;
203 }
204
25446036
FW
205 if (callchain_param.mode == CHAIN_GRAPH_REL &&
206 remaining && remaining != new_total) {
207
208 if (!rem_sq_bracket)
209 return ret;
210
211 new_depth_mask &= ~(1 << (depth - 1));
212
213 ret += ipchain__fprintf_graph(fp, &rem_hits, depth,
214 new_depth_mask, 0, new_total,
a4fb581b 215 remaining, left_margin);
25446036
FW
216 }
217
4eb3e478
FW
218 return ret;
219}
220
a4fb581b 221
af0a6fa4
FW
222static size_t
223callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
a4fb581b 224 u64 total_samples, int left_margin)
af0a6fa4
FW
225{
226 struct callchain_list *chain;
a4fb581b 227 bool printed = false;
af0a6fa4
FW
228 int i = 0;
229 int ret = 0;
230
231 list_for_each_entry(chain, &self->val, list) {
232 if (chain->ip >= PERF_CONTEXT_MAX)
233 continue;
234
a4fb581b 235 if (!i++ && sort__first_dimension == SORT_SYM)
af0a6fa4
FW
236 continue;
237
a4fb581b
FW
238 if (!printed) {
239 ret += callchain__fprintf_left_margin(fp, left_margin);
240 ret += fprintf(fp, "|\n");
241 ret += callchain__fprintf_left_margin(fp, left_margin);
242 ret += fprintf(fp, "---");
243
244 left_margin += 3;
245 printed = true;
246 } else
247 ret += callchain__fprintf_left_margin(fp, left_margin);
248
af0a6fa4 249 if (chain->sym)
a4fb581b 250 ret += fprintf(fp, " %s\n", chain->sym->name);
af0a6fa4 251 else
a4fb581b 252 ret += fprintf(fp, " %p\n", (void *)(long)chain->ip);
af0a6fa4
FW
253 }
254
a4fb581b 255 ret += __callchain__fprintf_graph(fp, self, total_samples, 1, 1, left_margin);
af0a6fa4
FW
256
257 return ret;
258}
259
4eb3e478
FW
260static size_t
261callchain__fprintf_flat(FILE *fp, struct callchain_node *self,
262 u64 total_samples)
f55c5552
FW
263{
264 struct callchain_list *chain;
265 size_t ret = 0;
266
267 if (!self)
268 return 0;
269
4eb3e478 270 ret += callchain__fprintf_flat(fp, self->parent, total_samples);
f55c5552
FW
271
272
4424961a
FW
273 list_for_each_entry(chain, &self->val, list) {
274 if (chain->ip >= PERF_CONTEXT_MAX)
275 continue;
276 if (chain->sym)
277 ret += fprintf(fp, " %s\n", chain->sym->name);
278 else
279 ret += fprintf(fp, " %p\n",
f37a291c 280 (void *)(long)chain->ip);
4424961a 281 }
f55c5552
FW
282
283 return ret;
284}
285
286static size_t
287hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
a4fb581b 288 u64 total_samples, int left_margin)
f55c5552
FW
289{
290 struct rb_node *rb_node;
291 struct callchain_node *chain;
292 size_t ret = 0;
293
294 rb_node = rb_first(&self->sorted_chain);
295 while (rb_node) {
296 double percent;
297
298 chain = rb_entry(rb_node, struct callchain_node, rb_node);
299 percent = chain->hit * 100.0 / total_samples;
805d127d
FW
300 switch (callchain_param.mode) {
301 case CHAIN_FLAT:
24b57c69
FW
302 ret += percent_color_fprintf(fp, " %6.2f%%\n",
303 percent);
4eb3e478 304 ret += callchain__fprintf_flat(fp, chain, total_samples);
805d127d
FW
305 break;
306 case CHAIN_GRAPH_ABS: /* Falldown */
307 case CHAIN_GRAPH_REL:
a4fb581b
FW
308 ret += callchain__fprintf_graph(fp, chain, total_samples,
309 left_margin);
83a0944f 310 case CHAIN_NONE:
805d127d
FW
311 default:
312 break;
4eb3e478 313 }
f55c5552
FW
314 ret += fprintf(fp, "\n");
315 rb_node = rb_next(rb_node);
316 }
317
318 return ret;
319}
320
1aa16738 321static size_t
9cffa8d5 322hist_entry__fprintf(FILE *fp, struct hist_entry *self, u64 total_samples)
1aa16738
PZ
323{
324 struct sort_entry *se;
325 size_t ret;
326
b8e6d829
IM
327 if (exclude_other && !self->parent)
328 return 0;
329
1e11fd82 330 if (total_samples)
52d422de
ACM
331 ret = percent_color_fprintf(fp,
332 field_sep ? "%.2f" : " %6.2f%%",
333 (self->count * 100.0) / total_samples);
1e11fd82 334 else
52d422de 335 ret = fprintf(fp, field_sep ? "%lld" : "%12lld ", self->count);
1aa16738 336
e3d7e183
ACM
337 if (show_nr_samples) {
338 if (field_sep)
339 fprintf(fp, "%c%lld", *field_sep, self->count);
340 else
341 fprintf(fp, "%11lld", self->count);
342 }
1aa16738 343
71dd8945 344 list_for_each_entry(se, &hist_entry__sort_list, list) {
021191b3 345 if (se->elide)
b8e6d829
IM
346 continue;
347
52d422de
ACM
348 fprintf(fp, "%s", field_sep ?: " ");
349 ret += se->print(fp, self, se->width ? *se->width : 0);
71dd8945 350 }
1aa16738
PZ
351
352 ret += fprintf(fp, "\n");
353
a4fb581b
FW
354 if (callchain) {
355 int left_margin = 0;
356
357 if (sort__first_dimension == SORT_COMM) {
358 se = list_first_entry(&hist_entry__sort_list, typeof(*se),
359 list);
360 left_margin = se->width ? *se->width : 0;
361 left_margin -= thread__comm_len(self->thread);
362 }
363
364 hist_entry_callchain__fprintf(fp, self, total_samples,
365 left_margin);
366 }
f55c5552 367
1aa16738
PZ
368 return ret;
369}
370
6e7d6fdc
PZ
371/*
372 *
373 */
374
52d422de
ACM
375static void dso__calc_col_width(struct dso *self)
376{
377 if (!col_width_list_str && !field_sep &&
378 (!dso_list || strlist__has_entry(dso_list, self->name))) {
379 unsigned int slen = strlen(self->name);
380 if (slen > dsos__col_width)
381 dsos__col_width = slen;
382 }
383
384 self->slen_calculated = 1;
385}
386
5b447a6a 387static void thread__comm_adjust(struct thread *self)
4273b005 388{
5b447a6a 389 char *comm = self->comm;
4273b005
FW
390
391 if (!col_width_list_str && !field_sep &&
392 (!comm_list || strlist__has_entry(comm_list, comm))) {
393 unsigned int slen = strlen(comm);
394
395 if (slen > comms__col_width) {
396 comms__col_width = slen;
397 threads__col_width = slen + 6;
398 }
399 }
5b447a6a
FW
400}
401
402static int thread__set_comm_adjust(struct thread *self, const char *comm)
403{
404 int ret = thread__set_comm(self, comm);
405
406 if (ret)
407 return ret;
408
409 thread__comm_adjust(self);
4273b005
FW
410
411 return 0;
412}
413
414
6e7d6fdc 415static struct symbol *
439d473b 416resolve_symbol(struct thread *thread, struct map **mapp, u64 *ipp)
6e7d6fdc 417{
6e7d6fdc 418 struct map *map = mapp ? *mapp : NULL;
520f2c34 419 u64 ip = *ipp;
6e7d6fdc 420
6e7d6fdc
PZ
421 if (map)
422 goto got_map;
423
439d473b
ACM
424 if (!thread)
425 return NULL;
426
6e7d6fdc
PZ
427 map = thread__find_map(thread, ip);
428 if (map != NULL) {
52d422de
ACM
429 /*
430 * We have to do this here as we may have a dso
431 * with no symbol hit that has a name longer than
432 * the ones with symbols sampled.
433 */
021191b3 434 if (!sort_dso.elide && !map->dso->slen_calculated)
52d422de
ACM
435 dso__calc_col_width(map->dso);
436
6e7d6fdc
PZ
437 if (mapp)
438 *mapp = map;
439got_map:
440 ip = map->map_ip(map, ip);
6e7d6fdc
PZ
441 } else {
442 /*
443 * If this is outside of all known maps,
444 * and is a negative address, try to look it
445 * up in the kernel dso, as it might be a
439d473b
ACM
446 * vsyscall or vdso (which executes in user-mode).
447 *
448 * XXX This is nasty, we should have a symbol list in
449 * the "[vdso]" dso, but for now lets use the old
450 * trick of looking in the whole kernel symbol list.
6e7d6fdc 451 */
c3b32fcb 452 if ((long long)ip < 0)
c338aee8 453 return kernel_maps__find_symbol(ip, mapp, NULL);
6e7d6fdc 454 }
439d473b
ACM
455 dump_printf(" ...... dso: %s\n",
456 map ? map->dso->long_name : "<not found>");
2cec19d9 457 dump_printf(" ...... map: %Lx -> %Lx\n", *ipp, ip);
520f2c34 458 *ipp = ip;
6e7d6fdc 459
66bd8424 460 return map ? map__find_symbol(map, ip, NULL) : NULL;
6e7d6fdc
PZ
461}
462
2a0a50fe 463static int call__match(struct symbol *sym)
6e7d6fdc 464{
b25bcf2f 465 if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
2a0a50fe 466 return 1;
6e7d6fdc 467
2a0a50fe 468 return 0;
6e7d6fdc
PZ
469}
470
50e5095a 471static struct symbol **resolve_callchain(struct thread *thread,
9735abf1
ACM
472 struct ip_callchain *chain,
473 struct symbol **parent)
4424961a 474{
4424961a 475 u64 context = PERF_CONTEXT_MAX;
029e5b16 476 struct symbol **syms = NULL;
f37a291c 477 unsigned int i;
4424961a
FW
478
479 if (callchain) {
480 syms = calloc(chain->nr, sizeof(*syms));
481 if (!syms) {
482 fprintf(stderr, "Can't allocate memory for symbols\n");
483 exit(-1);
484 }
485 }
486
487 for (i = 0; i < chain->nr; i++) {
488 u64 ip = chain->ips[i];
439d473b 489 struct symbol *sym = NULL;
4424961a
FW
490
491 if (ip >= PERF_CONTEXT_MAX) {
492 context = ip;
493 continue;
494 }
495
496 switch (context) {
88a69dfb 497 case PERF_CONTEXT_HV:
88a69dfb 498 break;
4424961a 499 case PERF_CONTEXT_KERNEL:
50e5095a 500 sym = kernel_maps__find_symbol(ip, NULL, NULL);
4424961a
FW
501 break;
502 default:
50e5095a 503 sym = resolve_symbol(thread, NULL, &ip);
4424961a
FW
504 break;
505 }
506
4424961a 507 if (sym) {
9735abf1
ACM
508 if (sort__has_parent && !*parent && call__match(sym))
509 *parent = sym;
4424961a
FW
510 if (!callchain)
511 break;
512 syms[i] = sym;
513 }
514 }
515
516 return syms;
517}
518
1aa16738
PZ
519/*
520 * collect histogram counts
521 */
522
e7fb08b1 523static int
439d473b 524hist_entry__add(struct thread *thread, struct map *map,
9cffa8d5
PM
525 struct symbol *sym, u64 ip, struct ip_callchain *chain,
526 char level, u64 count)
8fa66bdc 527{
9735abf1
ACM
528 struct symbol **syms = NULL, *parent = NULL;
529 bool hit;
e7fb08b1 530 struct hist_entry *he;
e7fb08b1 531
4424961a 532 if ((sort__has_parent || callchain) && chain)
50e5095a 533 syms = resolve_callchain(thread, chain, &parent);
e7fb08b1 534
9735abf1
ACM
535 he = __hist_entry__add(thread, map, sym, parent,
536 ip, count, level, &hit);
537 if (he == NULL)
538 return -ENOMEM;
e7fb08b1 539
9735abf1
ACM
540 if (hit)
541 he->count += count;
e7fb08b1 542
f55c5552 543 if (callchain) {
9735abf1
ACM
544 if (!hit)
545 callchain_init(&he->callchain);
4424961a
FW
546 append_chain(&he->callchain, chain, syms);
547 free(syms);
f55c5552 548 }
e7fb08b1
PZ
549
550 return 0;
8fa66bdc
ACM
551}
552
9cffa8d5 553static size_t output__fprintf(FILE *fp, u64 total_samples)
3a4b8cc7 554{
e7fb08b1 555 struct hist_entry *pos;
2d65537e 556 struct sort_entry *se;
3a4b8cc7
ACM
557 struct rb_node *nd;
558 size_t ret = 0;
52d422de
ACM
559 unsigned int width;
560 char *col_width = col_width_list_str;
9f866697
BG
561 int raw_printing_style;
562
563 raw_printing_style = !strcmp(pretty_printing_style, "raw");
3a4b8cc7 564
25446036
FW
565 init_rem_hits();
566
021191b3 567 fprintf(fp, "# Samples: %Ld\n", (u64)total_samples);
ca8cdeef
PZ
568 fprintf(fp, "#\n");
569
570 fprintf(fp, "# Overhead");
e3d7e183
ACM
571 if (show_nr_samples) {
572 if (field_sep)
573 fprintf(fp, "%cSamples", *field_sep);
574 else
575 fputs(" Samples ", fp);
576 }
b8e6d829 577 list_for_each_entry(se, &hist_entry__sort_list, list) {
021191b3 578 if (se->elide)
b8e6d829 579 continue;
52d422de
ACM
580 if (field_sep) {
581 fprintf(fp, "%c%s", *field_sep, se->header);
b8e6d829 582 continue;
52d422de
ACM
583 }
584 width = strlen(se->header);
585 if (se->width) {
586 if (col_width_list_str) {
587 if (col_width) {
588 *se->width = atoi(col_width);
589 col_width = strchr(col_width, ',');
590 if (col_width)
591 ++col_width;
592 }
593 }
594 width = *se->width = max(*se->width, width);
595 }
596 fprintf(fp, " %*s", width, se->header);
b8e6d829 597 }
ca8cdeef
PZ
598 fprintf(fp, "\n");
599
52d422de
ACM
600 if (field_sep)
601 goto print_entries;
602
ca8cdeef 603 fprintf(fp, "# ........");
e3d7e183
ACM
604 if (show_nr_samples)
605 fprintf(fp, " ..........");
2d65537e 606 list_for_each_entry(se, &hist_entry__sort_list, list) {
f37a291c 607 unsigned int i;
ca8cdeef 608
021191b3 609 if (se->elide)
b8e6d829
IM
610 continue;
611
4593bba8 612 fprintf(fp, " ");
52d422de
ACM
613 if (se->width)
614 width = *se->width;
615 else
616 width = strlen(se->header);
617 for (i = 0; i < width; i++)
ca8cdeef 618 fprintf(fp, ".");
2d65537e 619 }
ca8cdeef
PZ
620 fprintf(fp, "\n");
621
622 fprintf(fp, "#\n");
2d65537e 623
52d422de 624print_entries:
e7fb08b1
PZ
625 for (nd = rb_first(&output_hists); nd; nd = rb_next(nd)) {
626 pos = rb_entry(nd, struct hist_entry, rb_node);
627 ret += hist_entry__fprintf(fp, pos, total_samples);
3a4b8cc7
ACM
628 }
629
b8e6d829
IM
630 if (sort_order == default_sort_order &&
631 parent_pattern == default_parent_pattern) {
bd74137e 632 fprintf(fp, "#\n");
114cfab2 633 fprintf(fp, "# (For a higher level overview, try: perf report --sort comm,dso)\n");
bd74137e
IM
634 fprintf(fp, "#\n");
635 }
71dd8945 636 fprintf(fp, "\n");
bd74137e 637
25446036
FW
638 free(rem_sq_bracket);
639
8d513270 640 if (show_threads)
9f866697
BG
641 perf_read_values_display(fp, &show_threads_values,
642 raw_printing_style);
8d513270 643
3a4b8cc7
ACM
644 return ret;
645}
646
2a0a50fe 647static int validate_chain(struct ip_callchain *chain, event_t *event)
7522060c
IM
648{
649 unsigned int chain_size;
650
7522060c
IM
651 chain_size = event->header.size;
652 chain_size -= (unsigned long)&event->ip.__more_data - (unsigned long)event;
653
9cffa8d5 654 if (chain->nr*sizeof(u64) > chain_size)
7522060c
IM
655 return -1;
656
657 return 0;
658}
659
d80d338d 660static int
e6e18ec7 661process_sample_event(event_t *event, unsigned long offset, unsigned long head)
75051724
IM
662{
663 char level;
439d473b 664 struct symbol *sym = NULL;
9cffa8d5
PM
665 u64 ip = event->ip.ip;
666 u64 period = 1;
75051724 667 struct map *map = NULL;
3efa1cc9 668 void *more_data = event->ip.__more_data;
2a0a50fe 669 struct ip_callchain *chain = NULL;
d8db1b57 670 int cpumode;
d5b889f2 671 struct thread *thread = threads__findnew(event->ip.pid);
6baa0a5a 672
e6e18ec7 673 if (sample_type & PERF_SAMPLE_PERIOD) {
9cffa8d5
PM
674 period = *(u64 *)more_data;
675 more_data += sizeof(u64);
3efa1cc9 676 }
ea1900e5 677
cdd6c482 678 dump_printf("%p [%p]: PERF_RECORD_SAMPLE (IP, %d): %d/%d: %p period: %Ld\n",
75051724
IM
679 (void *)(offset + head),
680 (void *)(long)(event->header.size),
681 event->header.misc,
94a24752 682 event->ip.pid, event->ip.tid,
4502d77c 683 (void *)(long)ip,
ea1900e5 684 (long long)period);
75051724 685
e6e18ec7 686 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
f37a291c 687 unsigned int i;
3efa1cc9
IM
688
689 chain = (void *)more_data;
690
2cec19d9 691 dump_printf("... chain: nr:%Lu\n", chain->nr);
3efa1cc9 692
7522060c 693 if (validate_chain(chain, event) < 0) {
6beba7ad
ACM
694 pr_debug("call-chain problem with event, "
695 "skipping it.\n");
7522060c
IM
696 return 0;
697 }
698
699 if (dump_trace) {
3efa1cc9 700 for (i = 0; i < chain->nr; i++)
2cec19d9 701 dump_printf("..... %2d: %016Lx\n", i, chain->ips[i]);
3efa1cc9
IM
702 }
703 }
704
75051724 705 if (thread == NULL) {
6beba7ad 706 pr_debug("problem processing %d event, skipping it.\n",
75051724
IM
707 event->header.type);
708 return -1;
709 }
e7fb08b1 710
f39cdf25
JL
711 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
712
cc8b88b1
ACM
713 if (comm_list && !strlist__has_entry(comm_list, thread->comm))
714 return 0;
715
cdd6c482 716 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
d8db1b57 717
cdd6c482 718 if (cpumode == PERF_RECORD_MISC_KERNEL) {
75051724 719 level = 'k';
c338aee8 720 sym = kernel_maps__find_symbol(ip, &map, NULL);
439d473b
ACM
721 dump_printf(" ...... dso: %s\n",
722 map ? map->dso->long_name : "<not found>");
cdd6c482 723 } else if (cpumode == PERF_RECORD_MISC_USER) {
75051724 724 level = '.';
439d473b 725 sym = resolve_symbol(thread, &map, &ip);
e7fb08b1 726
75051724 727 } else {
75051724 728 level = 'H';
2cec19d9 729 dump_printf(" ...... dso: [hypervisor]\n");
75051724 730 }
8fa66bdc 731
ec218fc4
ACM
732 if (dso_list &&
733 (!map || !map->dso ||
734 !(strlist__has_entry(dso_list, map->dso->short_name) ||
735 (map->dso->short_name != map->dso->long_name &&
736 strlist__has_entry(dso_list, map->dso->long_name)))))
737 return 0;
25903407 738
ec218fc4
ACM
739 if (sym_list && sym && !strlist__has_entry(sym_list, sym->name))
740 return 0;
7bec7a91 741
ec218fc4
ACM
742 if (hist_entry__add(thread, map, sym, ip,
743 chain, level, period)) {
6beba7ad 744 pr_debug("problem incrementing symbol count, skipping event\n");
ec218fc4 745 return -1;
8fa66bdc 746 }
ec218fc4 747
ea1900e5 748 total += period;
8fa66bdc 749
75051724
IM
750 return 0;
751}
3502973d 752
75051724
IM
753static int
754process_mmap_event(event_t *event, unsigned long offset, unsigned long head)
755{
00a192b3 756 struct map *map = map__new(&event->mmap, cwd, cwdlen);
d5b889f2 757 struct thread *thread = threads__findnew(event->mmap.pid);
6baa0a5a 758
cdd6c482 759 dump_printf("%p [%p]: PERF_RECORD_MMAP %d/%d: [%p(%p) @ %p]: %s\n",
75051724
IM
760 (void *)(offset + head),
761 (void *)(long)(event->header.size),
62fc4453 762 event->mmap.pid,
94a24752 763 event->mmap.tid,
75051724
IM
764 (void *)(long)event->mmap.start,
765 (void *)(long)event->mmap.len,
766 (void *)(long)event->mmap.pgoff,
767 event->mmap.filename);
768
769 if (thread == NULL || map == NULL) {
cdd6c482 770 dump_printf("problem processing PERF_RECORD_MMAP, skipping event.\n");
df97992c 771 return 0;
75051724
IM
772 }
773
774 thread__insert_map(thread, map);
775 total_mmap++;
776
777 return 0;
778}
779
780static int
781process_comm_event(event_t *event, unsigned long offset, unsigned long head)
782{
d5b889f2 783 struct thread *thread = threads__findnew(event->comm.pid);
75051724 784
cdd6c482 785 dump_printf("%p [%p]: PERF_RECORD_COMM: %s:%d\n",
75051724
IM
786 (void *)(offset + head),
787 (void *)(long)(event->header.size),
788 event->comm.comm, event->comm.pid);
789
790 if (thread == NULL ||
4273b005 791 thread__set_comm_adjust(thread, event->comm.comm)) {
cdd6c482 792 dump_printf("problem processing PERF_RECORD_COMM, skipping event.\n");
75051724 793 return -1;
8fa66bdc 794 }
75051724
IM
795 total_comm++;
796
797 return 0;
798}
799
62fc4453 800static int
27d028de 801process_task_event(event_t *event, unsigned long offset, unsigned long head)
62fc4453 802{
d5b889f2
ACM
803 struct thread *thread = threads__findnew(event->fork.pid);
804 struct thread *parent = threads__findnew(event->fork.ppid);
62fc4453 805
cdd6c482 806 dump_printf("%p [%p]: PERF_RECORD_%s: (%d:%d):(%d:%d)\n",
62fc4453
PZ
807 (void *)(offset + head),
808 (void *)(long)(event->header.size),
cdd6c482 809 event->header.type == PERF_RECORD_FORK ? "FORK" : "EXIT",
27d028de
PZ
810 event->fork.pid, event->fork.tid,
811 event->fork.ppid, event->fork.ptid);
812
813 /*
814 * A thread clone will have the same PID for both
815 * parent and child.
816 */
817 if (thread == parent)
818 return 0;
819
cdd6c482 820 if (event->header.type == PERF_RECORD_EXIT)
27d028de 821 return 0;
62fc4453
PZ
822
823 if (!thread || !parent || thread__fork(thread, parent)) {
cdd6c482 824 dump_printf("problem processing PERF_RECORD_FORK, skipping event.\n");
62fc4453
PZ
825 return -1;
826 }
827 total_fork++;
828
829 return 0;
830}
831
9d91a6f7
PZ
832static int
833process_lost_event(event_t *event, unsigned long offset, unsigned long head)
834{
cdd6c482 835 dump_printf("%p [%p]: PERF_RECORD_LOST: id:%Ld: lost:%Ld\n",
9d91a6f7
PZ
836 (void *)(offset + head),
837 (void *)(long)(event->header.size),
838 event->lost.id,
839 event->lost.lost);
840
841 total_lost += event->lost.lost;
842
843 return 0;
844}
845
e9ea2fde
PZ
846static int
847process_read_event(event_t *event, unsigned long offset, unsigned long head)
848{
cdd6c482 849 struct perf_event_attr *attr;
0d3a5c88
FW
850
851 attr = perf_header__find_attr(event->read.id, header);
8f18aec5 852
8d513270 853 if (show_threads) {
83a0944f 854 const char *name = attr ? __event_name(attr->type, attr->config)
8d513270
BG
855 : "unknown";
856 perf_read_values_add_value(&show_threads_values,
857 event->read.pid, event->read.tid,
858 event->read.id,
859 name,
860 event->read.value);
861 }
862
cdd6c482 863 dump_printf("%p [%p]: PERF_RECORD_READ: %d %d %s %Lu\n",
e9ea2fde
PZ
864 (void *)(offset + head),
865 (void *)(long)(event->header.size),
866 event->read.pid,
867 event->read.tid,
8f18aec5
PZ
868 attr ? __event_name(attr->type, attr->config)
869 : "FAIL",
e9ea2fde
PZ
870 event->read.value);
871
872 return 0;
873}
874
016e92fb 875static int sample_type_check(u64 type)
d80d338d 876{
016e92fb 877 sample_type = type;
e6e18ec7 878
91b4eaea
FW
879 if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
880 if (sort__has_parent) {
881 fprintf(stderr, "selected --sort parent, but no"
882 " callchain data. Did you call"
883 " perf record without -g?\n");
016e92fb 884 return -1;
91b4eaea
FW
885 }
886 if (callchain) {
6ede59c4 887 fprintf(stderr, "selected -g but no callchain data."
91b4eaea
FW
888 " Did you call perf record without"
889 " -g?\n");
016e92fb 890 return -1;
91b4eaea 891 }
b1a88349
FW
892 } else if (callchain_param.mode != CHAIN_NONE && !callchain) {
893 callchain = 1;
894 if (register_callchain_param(&callchain_param) < 0) {
895 fprintf(stderr, "Can't register callchain"
896 " params\n");
016e92fb 897 return -1;
b1a88349 898 }
f5970550
PZ
899 }
900
016e92fb
FW
901 return 0;
902}
6142f9ec 903
016e92fb
FW
904static struct perf_file_handler file_handler = {
905 .process_sample_event = process_sample_event,
906 .process_mmap_event = process_mmap_event,
907 .process_comm_event = process_comm_event,
908 .process_exit_event = process_task_event,
909 .process_fork_event = process_task_event,
910 .process_lost_event = process_lost_event,
911 .process_read_event = process_read_event,
912 .sample_type_check = sample_type_check,
913};
6142f9ec 914
6142f9ec 915
016e92fb
FW
916static int __cmd_report(void)
917{
918 struct thread *idle;
919 int ret;
8fa66bdc 920
d5b889f2 921 idle = register_idle_thread();
016e92fb 922 thread__comm_adjust(idle);
f49515b1 923
016e92fb
FW
924 if (show_threads)
925 perf_read_values_init(&show_threads_values);
f5970550 926
016e92fb 927 register_perf_file_handler(&file_handler);
8fa66bdc 928
cc612d81
ACM
929 ret = mmap_dispatch_perf_file(&header, input_name, vmlinux_name,
930 !vmlinux_name, force,
931 full_paths, &cwdlen, &cwd);
016e92fb
FW
932 if (ret)
933 return ret;
97b07b69 934
2cec19d9
FW
935 dump_printf(" IP events: %10ld\n", total);
936 dump_printf(" mmap events: %10ld\n", total_mmap);
937 dump_printf(" comm events: %10ld\n", total_comm);
938 dump_printf(" fork events: %10ld\n", total_fork);
939 dump_printf(" lost events: %10ld\n", total_lost);
016e92fb 940 dump_printf(" unknown events: %10ld\n", file_handler.total_unknown);
97b07b69 941
3502973d 942 if (dump_trace)
97b07b69 943 return 0;
97b07b69 944
da21d1b5 945 if (verbose > 3)
d5b889f2 946 threads__fprintf(stdout);
9ac99545 947
da21d1b5 948 if (verbose > 2)
16f762a2 949 dsos__fprintf(stdout);
16f762a2 950
8229289b 951 collapse__resort();
c20ab37e 952 output__resort(total);
e7fb08b1 953 output__fprintf(stdout, total);
8fa66bdc 954
8d513270
BG
955 if (show_threads)
956 perf_read_values_destroy(&show_threads_values);
957
016e92fb 958 return ret;
8fa66bdc
ACM
959}
960
4eb3e478
FW
961static int
962parse_callchain_opt(const struct option *opt __used, const char *arg,
963 int unset __used)
964{
c20ab37e
FW
965 char *tok;
966 char *endptr;
967
4eb3e478
FW
968 callchain = 1;
969
970 if (!arg)
971 return 0;
972
c20ab37e
FW
973 tok = strtok((char *)arg, ",");
974 if (!tok)
975 return -1;
976
977 /* get the output mode */
978 if (!strncmp(tok, "graph", strlen(arg)))
805d127d 979 callchain_param.mode = CHAIN_GRAPH_ABS;
4eb3e478 980
c20ab37e 981 else if (!strncmp(tok, "flat", strlen(arg)))
805d127d
FW
982 callchain_param.mode = CHAIN_FLAT;
983
984 else if (!strncmp(tok, "fractal", strlen(arg)))
985 callchain_param.mode = CHAIN_GRAPH_REL;
986
b1a88349
FW
987 else if (!strncmp(tok, "none", strlen(arg))) {
988 callchain_param.mode = CHAIN_NONE;
989 callchain = 0;
990
991 return 0;
992 }
993
4eb3e478
FW
994 else
995 return -1;
996
c20ab37e
FW
997 /* get the min percentage */
998 tok = strtok(NULL, ",");
999 if (!tok)
805d127d 1000 goto setup;
c20ab37e 1001
805d127d 1002 callchain_param.min_percent = strtod(tok, &endptr);
c20ab37e
FW
1003 if (tok == endptr)
1004 return -1;
1005
805d127d
FW
1006setup:
1007 if (register_callchain_param(&callchain_param) < 0) {
1008 fprintf(stderr, "Can't register callchain params\n");
1009 return -1;
1010 }
4eb3e478
FW
1011 return 0;
1012}
1013
dd68ada2
JK
1014//static const char * const report_usage[] = {
1015const char * const report_usage[] = {
53cb8bc2
IM
1016 "perf report [<options>] <command>",
1017 NULL
1018};
1019
1020static const struct option options[] = {
1021 OPT_STRING('i', "input", &input_name, "file",
1022 "input file name"),
815e777f
ACM
1023 OPT_BOOLEAN('v', "verbose", &verbose,
1024 "be more verbose (show symbol address, etc)"),
97b07b69
IM
1025 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1026 "dump raw trace in ASCII"),
83a0944f 1027 OPT_STRING('k', "vmlinux", &vmlinux_name, "file", "vmlinux pathname"),
fa6963b2 1028 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
6671cb16 1029 OPT_BOOLEAN('m', "modules", &use_modules,
42976487 1030 "load module symbols - WARNING: use only with -k and LIVE kernel"),
e3d7e183
ACM
1031 OPT_BOOLEAN('n', "show-nr-samples", &show_nr_samples,
1032 "Show a column with the number of samples"),
8d513270
BG
1033 OPT_BOOLEAN('T', "threads", &show_threads,
1034 "Show per-thread event counters"),
9f866697
BG
1035 OPT_STRING(0, "pretty", &pretty_printing_style, "key",
1036 "pretty printing style key: normal raw"),
63299f05 1037 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b25bcf2f 1038 "sort by key(s): pid, comm, dso, symbol, parent"),
b78c07d4
ACM
1039 OPT_BOOLEAN('P', "full-paths", &full_paths,
1040 "Don't shorten the pathnames taking into account the cwd"),
b25bcf2f
IM
1041 OPT_STRING('p', "parent", &parent_pattern, "regex",
1042 "regex filter to identify parent, see: '--sort parent'"),
b8e6d829
IM
1043 OPT_BOOLEAN('x', "exclude-other", &exclude_other,
1044 "Only display entries with parent-match"),
1483b19f 1045 OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent",
c20ab37e 1046 "Display callchains using output_type and min percent threshold. "
1483b19f 1047 "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt),
25903407
ACM
1048 OPT_STRING('d', "dsos", &dso_list_str, "dso[,dso...]",
1049 "only consider symbols in these dsos"),
cc8b88b1
ACM
1050 OPT_STRING('C', "comms", &comm_list_str, "comm[,comm...]",
1051 "only consider symbols in these comms"),
7bec7a91
ACM
1052 OPT_STRING('S', "symbols", &sym_list_str, "symbol[,symbol...]",
1053 "only consider these symbols"),
52d422de
ACM
1054 OPT_STRING('w', "column-widths", &col_width_list_str,
1055 "width[,width...]",
1056 "don't try to adjust column width, use these fixed values"),
1057 OPT_STRING('t', "field-separator", &field_sep, "separator",
1058 "separator for columns, no spaces will be added between "
1059 "columns '.' is reserved."),
53cb8bc2
IM
1060 OPT_END()
1061};
1062
5352f35d
IM
1063static void setup_sorting(void)
1064{
1065 char *tmp, *tok, *str = strdup(sort_order);
1066
1067 for (tok = strtok_r(str, ", ", &tmp);
1068 tok; tok = strtok_r(NULL, ", ", &tmp)) {
1069 if (sort_dimension__add(tok) < 0) {
1070 error("Unknown --sort key: `%s'", tok);
1071 usage_with_options(report_usage, options);
1072 }
1073 }
1074
1075 free(str);
1076}
1077
cc8b88b1 1078static void setup_list(struct strlist **list, const char *list_str,
021191b3
ACM
1079 struct sort_entry *se, const char *list_name,
1080 FILE *fp)
cc8b88b1
ACM
1081{
1082 if (list_str) {
1083 *list = strlist__new(true, list_str);
1084 if (!*list) {
1085 fprintf(stderr, "problems parsing %s list\n",
1086 list_name);
1087 exit(129);
1088 }
021191b3
ACM
1089 if (strlist__nr_entries(*list) == 1) {
1090 fprintf(fp, "# %s: %s\n", list_name,
1091 strlist__entry(*list, 0)->s);
1092 se->elide = true;
1093 }
cc8b88b1
ACM
1094 }
1095}
1096
f37a291c 1097int cmd_report(int argc, const char **argv, const char *prefix __used)
53cb8bc2 1098{
00a192b3 1099 symbol__init(0);
53cb8bc2 1100
edc52dea 1101 argc = parse_options(argc, argv, options, report_usage, 0);
53cb8bc2 1102
1aa16738
PZ
1103 setup_sorting();
1104
021191b3 1105 if (parent_pattern != default_parent_pattern) {
b8e6d829 1106 sort_dimension__add("parent");
021191b3
ACM
1107 sort_parent.elide = 1;
1108 } else
b8e6d829
IM
1109 exclude_other = 0;
1110
edc52dea
IM
1111 /*
1112 * Any (unrecognized) arguments left?
1113 */
1114 if (argc)
1115 usage_with_options(report_usage, options);
1116
a930d2c0
IM
1117 setup_pager();
1118
021191b3
ACM
1119 setup_list(&dso_list, dso_list_str, &sort_dso, "dso", stdout);
1120 setup_list(&comm_list, comm_list_str, &sort_comm, "comm", stdout);
1121 setup_list(&sym_list, sym_list_str, &sort_sym, "symbol", stdout);
25903407 1122
52d422de
ACM
1123 if (field_sep && *field_sep == '.') {
1124 fputs("'.' is the only non valid --field-separator argument\n",
1125 stderr);
1126 exit(129);
1127 }
1128
53cb8bc2
IM
1129 return __cmd_report();
1130}