]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - tools/perf/builtin-report.c
perf_counter tools: Set the minimum percent for callchains to be displayed
[mirror_ubuntu-zesty-kernel.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"
8fa66bdc 20
53cb8bc2 21#include "perf.h"
7c6a1c65 22#include "util/header.h"
53cb8bc2
IM
23
24#include "util/parse-options.h"
25#include "util/parse-events.h"
26
8fa66bdc
ACM
27#define SHOW_KERNEL 1
28#define SHOW_USER 2
29#define SHOW_HV 4
30
23ac9cbe 31static char const *input_name = "perf.data";
450aaa2b 32static char *vmlinux = NULL;
bd74137e
IM
33
34static char default_sort_order[] = "comm,dso";
35static char *sort_order = default_sort_order;
7bec7a91
ACM
36static char *dso_list_str, *comm_list_str, *sym_list_str;
37static struct strlist *dso_list, *comm_list, *sym_list;
bd74137e 38
8fa66bdc
ACM
39static int input;
40static int show_mask = SHOW_KERNEL | SHOW_USER | SHOW_HV;
41
97b07b69 42static int dump_trace = 0;
3502973d 43#define dprintf(x...) do { if (dump_trace) printf(x); } while (0)
3efa1cc9 44#define cdprintf(x...) do { if (dump_trace) color_fprintf(stdout, color, x); } while (0)
3502973d 45
16f762a2 46static int verbose;
7522060c
IM
47#define eprintf(x...) do { if (verbose) fprintf(stderr, x); } while (0)
48
42976487
MG
49static int modules;
50
b78c07d4 51static int full_paths;
97b07b69 52
8fa66bdc
ACM
53static unsigned long page_size;
54static unsigned long mmap_window = 32;
55
b8e6d829
IM
56static char default_parent_pattern[] = "^sys_|^do_page_fault";
57static char *parent_pattern = default_parent_pattern;
b25bcf2f 58static regex_t parent_regex;
6e7d6fdc 59
b8e6d829 60static int exclude_other = 1;
f55c5552 61static int callchain;
4eb3e478 62static enum chain_mode callchain_mode;
c20ab37e 63static double callchain_min_percent = 0.0;
b8e6d829 64
e6e18ec7
PZ
65static u64 sample_type;
66
8fa66bdc
ACM
67struct ip_event {
68 struct perf_event_header header;
9cffa8d5
PM
69 u64 ip;
70 u32 pid, tid;
3efa1cc9 71 unsigned char __more_data[];
8fa66bdc 72};
75051724 73
8fa66bdc
ACM
74struct mmap_event {
75 struct perf_event_header header;
9cffa8d5
PM
76 u32 pid, tid;
77 u64 start;
78 u64 len;
79 u64 pgoff;
8fa66bdc
ACM
80 char filename[PATH_MAX];
81};
75051724 82
8fa66bdc
ACM
83struct comm_event {
84 struct perf_event_header header;
9cffa8d5 85 u32 pid, tid;
8fa66bdc
ACM
86 char comm[16];
87};
88
62fc4453
PZ
89struct fork_event {
90 struct perf_event_header header;
9cffa8d5 91 u32 pid, ppid;
62fc4453
PZ
92};
93
b2fef076 94struct period_event {
8fa66bdc 95 struct perf_event_header header;
9cffa8d5
PM
96 u64 time;
97 u64 id;
98 u64 sample_period;
b2fef076
IM
99};
100
9d91a6f7
PZ
101struct lost_event {
102 struct perf_event_header header;
9cffa8d5
PM
103 u64 id;
104 u64 lost;
9d91a6f7
PZ
105};
106
e9ea2fde
PZ
107struct read_event {
108 struct perf_event_header header;
109 u32 pid,tid;
110 u64 value;
111 u64 format[3];
112};
113
b2fef076
IM
114typedef union event_union {
115 struct perf_event_header header;
116 struct ip_event ip;
117 struct mmap_event mmap;
118 struct comm_event comm;
119 struct fork_event fork;
120 struct period_event period;
9d91a6f7 121 struct lost_event lost;
e9ea2fde 122 struct read_event read;
8fa66bdc
ACM
123} event_t;
124
8fa66bdc
ACM
125static LIST_HEAD(dsos);
126static struct dso *kernel_dso;
fc54db51 127static struct dso *vdso;
fb9c8188 128static struct dso *hypervisor_dso;
8fa66bdc
ACM
129
130static void dsos__add(struct dso *dso)
131{
132 list_add_tail(&dso->node, &dsos);
133}
134
135static struct dso *dsos__find(const char *name)
136{
137 struct dso *pos;
138
139 list_for_each_entry(pos, &dsos, node)
140 if (strcmp(pos->name, name) == 0)
141 return pos;
142 return NULL;
143}
144
145static struct dso *dsos__findnew(const char *name)
146{
147 struct dso *dso = dsos__find(name);
b7a16eac 148 int nr;
8fa66bdc 149
4593bba8
IM
150 if (dso)
151 return dso;
152
153 dso = dso__new(name, 0);
154 if (!dso)
155 goto out_delete_dso;
8fa66bdc 156
bd74137e 157 nr = dso__load(dso, NULL, verbose);
4593bba8 158 if (nr < 0) {
7522060c 159 eprintf("Failed to open: %s\n", name);
4593bba8 160 goto out_delete_dso;
8fa66bdc 161 }
7522060c
IM
162 if (!nr)
163 eprintf("No symbols found in: %s, maybe install a debug package?\n", name);
4593bba8
IM
164
165 dsos__add(dso);
8fa66bdc
ACM
166
167 return dso;
168
169out_delete_dso:
170 dso__delete(dso);
171 return NULL;
172}
173
16f762a2 174static void dsos__fprintf(FILE *fp)
8fa66bdc
ACM
175{
176 struct dso *pos;
177
178 list_for_each_entry(pos, &dsos, node)
179 dso__fprintf(pos, fp);
180}
181
9cffa8d5 182static struct symbol *vdso__find_symbol(struct dso *dso, u64 ip)
fc54db51 183{
f37a291c 184 return dso__find_symbol(dso, ip);
fc54db51
PZ
185}
186
450aaa2b
PZ
187static int load_kernel(void)
188{
a827c875 189 int err;
450aaa2b 190
0085c954 191 kernel_dso = dso__new("[kernel]", 0);
450aaa2b 192 if (!kernel_dso)
a2928c42 193 return -1;
450aaa2b 194
42976487 195 err = dso__load_kernel(kernel_dso, vmlinux, NULL, verbose, modules);
9974f496 196 if (err <= 0) {
a2928c42
ACM
197 dso__delete(kernel_dso);
198 kernel_dso = NULL;
199 } else
200 dsos__add(kernel_dso);
450aaa2b 201
fc54db51
PZ
202 vdso = dso__new("[vdso]", 0);
203 if (!vdso)
204 return -1;
205
206 vdso->find_symbol = vdso__find_symbol;
207
208 dsos__add(vdso);
209
fb9c8188
AB
210 hypervisor_dso = dso__new("[hypervisor]", 0);
211 if (!hypervisor_dso)
212 return -1;
213 dsos__add(hypervisor_dso);
214
a2928c42 215 return err;
450aaa2b
PZ
216}
217
d80d338d
IM
218static char __cwd[PATH_MAX];
219static char *cwd = __cwd;
220static int cwdlen;
221
222static int strcommon(const char *pathname)
b78c07d4
ACM
223{
224 int n = 0;
225
226 while (pathname[n] == cwd[n] && n < cwdlen)
227 ++n;
228
229 return n;
230}
231
8fa66bdc
ACM
232struct map {
233 struct list_head node;
9cffa8d5
PM
234 u64 start;
235 u64 end;
236 u64 pgoff;
237 u64 (*map_ip)(struct map *, u64);
8fa66bdc
ACM
238 struct dso *dso;
239};
240
9cffa8d5 241static u64 map__map_ip(struct map *map, u64 ip)
fc54db51
PZ
242{
243 return ip - map->start + map->pgoff;
244}
245
f37a291c 246static u64 vdso__map_ip(struct map *map __used, u64 ip)
fc54db51
PZ
247{
248 return ip;
249}
250
80d496be
PE
251static inline int is_anon_memory(const char *filename)
252{
cc8b88b1 253 return strcmp(filename, "//anon") == 0;
80d496be
PE
254}
255
d80d338d 256static struct map *map__new(struct mmap_event *event)
8fa66bdc
ACM
257{
258 struct map *self = malloc(sizeof(*self));
259
260 if (self != NULL) {
b78c07d4
ACM
261 const char *filename = event->filename;
262 char newfilename[PATH_MAX];
80d496be 263 int anon;
b78c07d4
ACM
264
265 if (cwd) {
d80d338d
IM
266 int n = strcommon(filename);
267
b78c07d4
ACM
268 if (n == cwdlen) {
269 snprintf(newfilename, sizeof(newfilename),
270 ".%s", filename + n);
271 filename = newfilename;
272 }
273 }
274
80d496be
PE
275 anon = is_anon_memory(filename);
276
277 if (anon) {
278 snprintf(newfilename, sizeof(newfilename), "/tmp/perf-%d.map", event->pid);
279 filename = newfilename;
280 }
281
8fa66bdc
ACM
282 self->start = event->start;
283 self->end = event->start + event->len;
284 self->pgoff = event->pgoff;
285
b78c07d4 286 self->dso = dsos__findnew(filename);
8fa66bdc
ACM
287 if (self->dso == NULL)
288 goto out_delete;
fc54db51 289
80d496be 290 if (self->dso == vdso || anon)
fc54db51
PZ
291 self->map_ip = vdso__map_ip;
292 else
293 self->map_ip = map__map_ip;
8fa66bdc
ACM
294 }
295 return self;
296out_delete:
297 free(self);
298 return NULL;
299}
300
62fc4453
PZ
301static struct map *map__clone(struct map *self)
302{
303 struct map *map = malloc(sizeof(*self));
304
305 if (!map)
306 return NULL;
307
308 memcpy(map, self, sizeof(*self));
309
310 return map;
311}
312
313static int map__overlap(struct map *l, struct map *r)
314{
315 if (l->start > r->start) {
316 struct map *t = l;
317 l = r;
318 r = t;
319 }
320
321 if (l->end > r->start)
322 return 1;
323
324 return 0;
325}
3a4b8cc7 326
9ac99545
ACM
327static size_t map__fprintf(struct map *self, FILE *fp)
328{
729ff5e2 329 return fprintf(fp, " %Lx-%Lx %Lx %s\n",
9ac99545
ACM
330 self->start, self->end, self->pgoff, self->dso->name);
331}
332
333
8fa66bdc 334struct thread {
ce7e4365 335 struct rb_node rb_node;
8fa66bdc 336 struct list_head maps;
8fa66bdc
ACM
337 pid_t pid;
338 char *comm;
339};
340
341static struct thread *thread__new(pid_t pid)
342{
343 struct thread *self = malloc(sizeof(*self));
344
345 if (self != NULL) {
346 self->pid = pid;
8229289b 347 self->comm = malloc(32);
0a520c63 348 if (self->comm)
8229289b 349 snprintf(self->comm, 32, ":%d", self->pid);
8fa66bdc 350 INIT_LIST_HEAD(&self->maps);
8fa66bdc
ACM
351 }
352
353 return self;
354}
355
8fa66bdc
ACM
356static int thread__set_comm(struct thread *self, const char *comm)
357{
8229289b
PZ
358 if (self->comm)
359 free(self->comm);
8fa66bdc
ACM
360 self->comm = strdup(comm);
361 return self->comm ? 0 : -ENOMEM;
362}
363
9ac99545
ACM
364static size_t thread__fprintf(struct thread *self, FILE *fp)
365{
366 struct map *pos;
367 size_t ret = fprintf(fp, "Thread %d %s\n", self->pid, self->comm);
368
369 list_for_each_entry(pos, &self->maps, node)
370 ret += map__fprintf(pos, fp);
371
372 return ret;
373}
374
375
16f762a2 376static struct rb_root threads;
eed4dcd4 377static struct thread *last_match;
8fa66bdc 378
ce7e4365 379static struct thread *threads__findnew(pid_t pid)
8fa66bdc 380{
ce7e4365
ACM
381 struct rb_node **p = &threads.rb_node;
382 struct rb_node *parent = NULL;
383 struct thread *th;
8fa66bdc 384
eed4dcd4
IM
385 /*
386 * Font-end cache - PID lookups come in blocks,
387 * so most of the time we dont have to look up
388 * the full rbtree:
389 */
390 if (last_match && last_match->pid == pid)
391 return last_match;
392
ce7e4365
ACM
393 while (*p != NULL) {
394 parent = *p;
395 th = rb_entry(parent, struct thread, rb_node);
8fa66bdc 396
eed4dcd4
IM
397 if (th->pid == pid) {
398 last_match = th;
ce7e4365 399 return th;
eed4dcd4 400 }
8fa66bdc 401
ce7e4365
ACM
402 if (pid < th->pid)
403 p = &(*p)->rb_left;
404 else
405 p = &(*p)->rb_right;
8fa66bdc
ACM
406 }
407
ce7e4365
ACM
408 th = thread__new(pid);
409 if (th != NULL) {
410 rb_link_node(&th->rb_node, parent, p);
411 rb_insert_color(&th->rb_node, &threads);
eed4dcd4 412 last_match = th;
ce7e4365 413 }
eed4dcd4 414
ce7e4365 415 return th;
8fa66bdc
ACM
416}
417
418static void thread__insert_map(struct thread *self, struct map *map)
419{
62fc4453
PZ
420 struct map *pos, *tmp;
421
422 list_for_each_entry_safe(pos, tmp, &self->maps, node) {
423 if (map__overlap(pos, map)) {
3d906ef1
PZ
424 if (verbose >= 2) {
425 printf("overlapping maps:\n");
426 map__fprintf(map, stdout);
427 map__fprintf(pos, stdout);
428 }
429
430 if (map->start <= pos->start && map->end > pos->start)
431 pos->start = map->end;
432
433 if (map->end >= pos->end && map->start < pos->end)
434 pos->end = map->start;
435
436 if (verbose >= 2) {
437 printf("after collision:\n");
438 map__fprintf(pos, stdout);
439 }
440
441 if (pos->start >= pos->end) {
442 list_del_init(&pos->node);
443 free(pos);
444 }
62fc4453
PZ
445 }
446 }
447
8fa66bdc
ACM
448 list_add_tail(&map->node, &self->maps);
449}
450
62fc4453
PZ
451static int thread__fork(struct thread *self, struct thread *parent)
452{
453 struct map *map;
454
455 if (self->comm)
456 free(self->comm);
457 self->comm = strdup(parent->comm);
458 if (!self->comm)
459 return -ENOMEM;
460
461 list_for_each_entry(map, &parent->maps, node) {
462 struct map *new = map__clone(map);
463 if (!new)
464 return -ENOMEM;
465 thread__insert_map(self, new);
466 }
467
468 return 0;
469}
470
9cffa8d5 471static struct map *thread__find_map(struct thread *self, u64 ip)
8fa66bdc 472{
16f762a2
IM
473 struct map *pos;
474
8fa66bdc
ACM
475 if (self == NULL)
476 return NULL;
477
8fa66bdc
ACM
478 list_for_each_entry(pos, &self->maps, node)
479 if (ip >= pos->start && ip <= pos->end)
480 return pos;
481
482 return NULL;
483}
484
9ac99545
ACM
485static size_t threads__fprintf(FILE *fp)
486{
487 size_t ret = 0;
488 struct rb_node *nd;
489
490 for (nd = rb_first(&threads); nd; nd = rb_next(nd)) {
491 struct thread *pos = rb_entry(nd, struct thread, rb_node);
492
493 ret += thread__fprintf(pos, fp);
494 }
495
496 return ret;
497}
498
e7fb08b1
PZ
499/*
500 * histogram, sorted on item, collects counts
501 */
502
503static struct rb_root hist;
504
505struct hist_entry {
f55c5552
FW
506 struct rb_node rb_node;
507
508 struct thread *thread;
509 struct map *map;
510 struct dso *dso;
511 struct symbol *sym;
512 struct symbol *parent;
513 u64 ip;
514 char level;
515 struct callchain_node callchain;
516 struct rb_root sorted_chain;
517
518 u64 count;
e7fb08b1
PZ
519};
520
1aa16738
PZ
521/*
522 * configurable sorting bits
523 */
524
525struct sort_entry {
526 struct list_head list;
527
ca8cdeef
PZ
528 char *header;
529
1aa16738 530 int64_t (*cmp)(struct hist_entry *, struct hist_entry *);
8229289b 531 int64_t (*collapse)(struct hist_entry *, struct hist_entry *);
1aa16738
PZ
532 size_t (*print)(FILE *fp, struct hist_entry *);
533};
534
6e7d6fdc
PZ
535static int64_t cmp_null(void *l, void *r)
536{
537 if (!l && !r)
538 return 0;
539 else if (!l)
540 return -1;
541 else
542 return 1;
543}
544
8229289b
PZ
545/* --sort pid */
546
e7fb08b1 547static int64_t
1aa16738 548sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
e7fb08b1 549{
1aa16738
PZ
550 return right->thread->pid - left->thread->pid;
551}
552
553static size_t
554sort__thread_print(FILE *fp, struct hist_entry *self)
555{
71dd8945 556 return fprintf(fp, "%16s:%5d", self->thread->comm ?: "", self->thread->pid);
1aa16738 557}
e7fb08b1 558
1aa16738 559static struct sort_entry sort_thread = {
71dd8945 560 .header = " Command: Pid",
1aa16738
PZ
561 .cmp = sort__thread_cmp,
562 .print = sort__thread_print,
563};
564
8229289b
PZ
565/* --sort comm */
566
992444b1
PZ
567static int64_t
568sort__comm_cmp(struct hist_entry *left, struct hist_entry *right)
8229289b
PZ
569{
570 return right->thread->pid - left->thread->pid;
571}
572
573static int64_t
574sort__comm_collapse(struct hist_entry *left, struct hist_entry *right)
992444b1
PZ
575{
576 char *comm_l = left->thread->comm;
577 char *comm_r = right->thread->comm;
578
6e7d6fdc
PZ
579 if (!comm_l || !comm_r)
580 return cmp_null(comm_l, comm_r);
992444b1
PZ
581
582 return strcmp(comm_l, comm_r);
583}
584
585static size_t
586sort__comm_print(FILE *fp, struct hist_entry *self)
587{
71dd8945 588 return fprintf(fp, "%16s", self->thread->comm);
992444b1
PZ
589}
590
591static struct sort_entry sort_comm = {
8edd4286 592 .header = " Command",
8229289b
PZ
593 .cmp = sort__comm_cmp,
594 .collapse = sort__comm_collapse,
595 .print = sort__comm_print,
992444b1
PZ
596};
597
8229289b
PZ
598/* --sort dso */
599
55e5ec41
PZ
600static int64_t
601sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
602{
603 struct dso *dso_l = left->dso;
604 struct dso *dso_r = right->dso;
605
6e7d6fdc
PZ
606 if (!dso_l || !dso_r)
607 return cmp_null(dso_l, dso_r);
55e5ec41
PZ
608
609 return strcmp(dso_l->name, dso_r->name);
610}
611
612static size_t
613sort__dso_print(FILE *fp, struct hist_entry *self)
614{
0a520c63 615 if (self->dso)
71dd8945 616 return fprintf(fp, "%-25s", self->dso->name);
0a520c63 617
9cffa8d5 618 return fprintf(fp, "%016llx ", (u64)self->ip);
55e5ec41
PZ
619}
620
621static struct sort_entry sort_dso = {
71dd8945 622 .header = "Shared Object ",
55e5ec41
PZ
623 .cmp = sort__dso_cmp,
624 .print = sort__dso_print,
625};
626
8229289b
PZ
627/* --sort symbol */
628
1aa16738
PZ
629static int64_t
630sort__sym_cmp(struct hist_entry *left, struct hist_entry *right)
631{
9cffa8d5 632 u64 ip_l, ip_r;
e7fb08b1
PZ
633
634 if (left->sym == right->sym)
635 return 0;
636
637 ip_l = left->sym ? left->sym->start : left->ip;
638 ip_r = right->sym ? right->sym->start : right->ip;
639
640 return (int64_t)(ip_r - ip_l);
641}
642
1aa16738
PZ
643static size_t
644sort__sym_print(FILE *fp, struct hist_entry *self)
645{
646 size_t ret = 0;
647
1aa16738 648 if (verbose)
9cffa8d5 649 ret += fprintf(fp, "%#018llx ", (u64)self->ip);
0a520c63 650
8edd4286
IM
651 if (self->sym) {
652 ret += fprintf(fp, "[%c] %s",
fb9c8188
AB
653 self->dso == kernel_dso ? 'k' :
654 self->dso == hypervisor_dso ? 'h' : '.', self->sym->name);
42976487
MG
655
656 if (self->sym->module)
657 ret += fprintf(fp, "\t[%s]", self->sym->module->name);
8edd4286 658 } else {
9cffa8d5 659 ret += fprintf(fp, "%#016llx", (u64)self->ip);
8edd4286 660 }
1aa16738
PZ
661
662 return ret;
663}
664
665static struct sort_entry sort_sym = {
71dd8945 666 .header = "Symbol",
ca8cdeef
PZ
667 .cmp = sort__sym_cmp,
668 .print = sort__sym_print,
1aa16738
PZ
669};
670
b25bcf2f 671/* --sort parent */
6e7d6fdc
PZ
672
673static int64_t
b25bcf2f 674sort__parent_cmp(struct hist_entry *left, struct hist_entry *right)
6e7d6fdc 675{
b25bcf2f
IM
676 struct symbol *sym_l = left->parent;
677 struct symbol *sym_r = right->parent;
6e7d6fdc
PZ
678
679 if (!sym_l || !sym_r)
680 return cmp_null(sym_l, sym_r);
681
682 return strcmp(sym_l->name, sym_r->name);
683}
684
685static size_t
b25bcf2f 686sort__parent_print(FILE *fp, struct hist_entry *self)
6e7d6fdc
PZ
687{
688 size_t ret = 0;
689
b25bcf2f 690 ret += fprintf(fp, "%-20s", self->parent ? self->parent->name : "[other]");
6e7d6fdc
PZ
691
692 return ret;
693}
694
b25bcf2f
IM
695static struct sort_entry sort_parent = {
696 .header = "Parent symbol ",
697 .cmp = sort__parent_cmp,
698 .print = sort__parent_print,
6e7d6fdc
PZ
699};
700
8229289b 701static int sort__need_collapse = 0;
b25bcf2f 702static int sort__has_parent = 0;
8229289b 703
37f440cb 704struct sort_dimension {
8edd4286
IM
705 char *name;
706 struct sort_entry *entry;
707 int taken;
37f440cb
PZ
708};
709
710static struct sort_dimension sort_dimensions[] = {
711 { .name = "pid", .entry = &sort_thread, },
992444b1 712 { .name = "comm", .entry = &sort_comm, },
55e5ec41 713 { .name = "dso", .entry = &sort_dso, },
37f440cb 714 { .name = "symbol", .entry = &sort_sym, },
b25bcf2f 715 { .name = "parent", .entry = &sort_parent, },
37f440cb
PZ
716};
717
1aa16738
PZ
718static LIST_HEAD(hist_entry__sort_list);
719
37f440cb
PZ
720static int sort_dimension__add(char *tok)
721{
f37a291c 722 unsigned int i;
37f440cb
PZ
723
724 for (i = 0; i < ARRAY_SIZE(sort_dimensions); i++) {
725 struct sort_dimension *sd = &sort_dimensions[i];
726
727 if (sd->taken)
728 continue;
729
5352f35d 730 if (strncasecmp(tok, sd->name, strlen(tok)))
37f440cb
PZ
731 continue;
732
8229289b
PZ
733 if (sd->entry->collapse)
734 sort__need_collapse = 1;
735
b25bcf2f
IM
736 if (sd->entry == &sort_parent) {
737 int ret = regcomp(&parent_regex, parent_pattern, REG_EXTENDED);
6e7d6fdc
PZ
738 if (ret) {
739 char err[BUFSIZ];
740
b25bcf2f
IM
741 regerror(ret, &parent_regex, err, sizeof(err));
742 fprintf(stderr, "Invalid regex: %s\n%s",
743 parent_pattern, err);
6e7d6fdc
PZ
744 exit(-1);
745 }
b25bcf2f 746 sort__has_parent = 1;
6e7d6fdc
PZ
747 }
748
37f440cb
PZ
749 list_add_tail(&sd->entry->list, &hist_entry__sort_list);
750 sd->taken = 1;
5352f35d 751
37f440cb
PZ
752 return 0;
753 }
754
755 return -ESRCH;
756}
757
1aa16738
PZ
758static int64_t
759hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
760{
761 struct sort_entry *se;
762 int64_t cmp = 0;
763
764 list_for_each_entry(se, &hist_entry__sort_list, list) {
765 cmp = se->cmp(left, right);
766 if (cmp)
767 break;
768 }
769
770 return cmp;
771}
772
8229289b
PZ
773static int64_t
774hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
775{
776 struct sort_entry *se;
777 int64_t cmp = 0;
778
779 list_for_each_entry(se, &hist_entry__sort_list, list) {
780 int64_t (*f)(struct hist_entry *, struct hist_entry *);
781
782 f = se->collapse ?: se->cmp;
783
784 cmp = f(left, right);
785 if (cmp)
786 break;
787 }
788
789 return cmp;
790}
791
4eb3e478
FW
792static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask)
793{
794 int i;
795 size_t ret = 0;
796
797 ret += fprintf(fp, "%s", " ");
798
799 for (i = 0; i < depth; i++)
800 if (depth_mask & (1 << i))
801 ret += fprintf(fp, "| ");
802 else
803 ret += fprintf(fp, " ");
804
805 ret += fprintf(fp, "\n");
806
807 return ret;
808}
f55c5552 809static size_t
4eb3e478
FW
810ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain, int depth,
811 int depth_mask, int count, u64 total_samples,
812 int hits)
813{
814 int i;
815 size_t ret = 0;
816
817 ret += fprintf(fp, "%s", " ");
818 for (i = 0; i < depth; i++) {
819 if (depth_mask & (1 << i))
820 ret += fprintf(fp, "|");
821 else
822 ret += fprintf(fp, " ");
823 if (!count && i == depth - 1) {
824 double percent;
825
826 percent = hits * 100.0 / total_samples;
827 ret += fprintf(fp, "--%2.2f%%-- ", percent);
828 } else
829 ret += fprintf(fp, "%s", " ");
830 }
831 if (chain->sym)
832 ret += fprintf(fp, "%s\n", chain->sym->name);
833 else
834 ret += fprintf(fp, "%p\n", (void *)(long)chain->ip);
835
836 return ret;
837}
838
839static size_t
840callchain__fprintf_graph(FILE *fp, struct callchain_node *self,
841 u64 total_samples, int depth, int depth_mask)
842{
843 struct rb_node *node, *next;
844 struct callchain_node *child;
845 struct callchain_list *chain;
846 int new_depth_mask = depth_mask;
847 size_t ret = 0;
848 int i;
849
850 node = rb_first(&self->rb_root);
851 while (node) {
852 child = rb_entry(node, struct callchain_node, rb_node);
853
854 /*
855 * The depth mask manages the output of pipes that show
856 * the depth. We don't want to keep the pipes of the current
857 * level for the last child of this depth
858 */
859 next = rb_next(node);
860 if (!next)
861 new_depth_mask &= ~(1 << (depth - 1));
862
863 /*
864 * But we keep the older depth mask for the line seperator
865 * to keep the level link until we reach the last child
866 */
867 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask);
868 i = 0;
869 list_for_each_entry(chain, &child->val, list) {
870 if (chain->ip >= PERF_CONTEXT_MAX)
871 continue;
872 ret += ipchain__fprintf_graph(fp, chain, depth,
873 new_depth_mask, i++,
874 total_samples,
875 child->cumul_hit);
876 }
877 ret += callchain__fprintf_graph(fp, child, total_samples,
878 depth + 1,
879 new_depth_mask | (1 << depth));
880 node = next;
881 }
882
883 return ret;
884}
885
886static size_t
887callchain__fprintf_flat(FILE *fp, struct callchain_node *self,
888 u64 total_samples)
f55c5552
FW
889{
890 struct callchain_list *chain;
891 size_t ret = 0;
892
893 if (!self)
894 return 0;
895
4eb3e478 896 ret += callchain__fprintf_flat(fp, self->parent, total_samples);
f55c5552
FW
897
898
4424961a
FW
899 list_for_each_entry(chain, &self->val, list) {
900 if (chain->ip >= PERF_CONTEXT_MAX)
901 continue;
902 if (chain->sym)
903 ret += fprintf(fp, " %s\n", chain->sym->name);
904 else
905 ret += fprintf(fp, " %p\n",
f37a291c 906 (void *)(long)chain->ip);
4424961a 907 }
f55c5552
FW
908
909 return ret;
910}
911
912static size_t
913hist_entry_callchain__fprintf(FILE *fp, struct hist_entry *self,
914 u64 total_samples)
915{
916 struct rb_node *rb_node;
917 struct callchain_node *chain;
918 size_t ret = 0;
919
920 rb_node = rb_first(&self->sorted_chain);
921 while (rb_node) {
922 double percent;
923
924 chain = rb_entry(rb_node, struct callchain_node, rb_node);
925 percent = chain->hit * 100.0 / total_samples;
4eb3e478
FW
926 if (callchain_mode == FLAT) {
927 ret += fprintf(fp, " %6.2f%%\n", percent);
928 ret += callchain__fprintf_flat(fp, chain, total_samples);
929 } else if (callchain_mode == GRAPH) {
930 ret += callchain__fprintf_graph(fp, chain,
931 total_samples, 1, 1);
932 }
f55c5552
FW
933 ret += fprintf(fp, "\n");
934 rb_node = rb_next(rb_node);
935 }
936
937 return ret;
938}
939
940
1aa16738 941static size_t
9cffa8d5 942hist_entry__fprintf(FILE *fp, struct hist_entry *self, u64 total_samples)
1aa16738
PZ
943{
944 struct sort_entry *se;
945 size_t ret;
946
b8e6d829
IM
947 if (exclude_other && !self->parent)
948 return 0;
949
1aa16738 950 if (total_samples) {
8fc0321f
IM
951 double percent = self->count * 100.0 / total_samples;
952 char *color = PERF_COLOR_NORMAL;
953
954 /*
aefcf37b
IM
955 * We color high-overhead entries in red, mid-overhead
956 * entries in green - and keep the low overhead places
957 * normal:
8fc0321f 958 */
aefcf37b 959 if (percent >= 5.0) {
8fc0321f 960 color = PERF_COLOR_RED;
aefcf37b
IM
961 } else {
962 if (percent >= 0.5)
963 color = PERF_COLOR_GREEN;
964 }
8fc0321f
IM
965
966 ret = color_fprintf(fp, color, " %6.2f%%",
1aa16738
PZ
967 (self->count * 100.0) / total_samples);
968 } else
729ff5e2 969 ret = fprintf(fp, "%12Ld ", self->count);
1aa16738 970
71dd8945 971 list_for_each_entry(se, &hist_entry__sort_list, list) {
b8e6d829
IM
972 if (exclude_other && (se == &sort_parent))
973 continue;
974
71dd8945 975 fprintf(fp, " ");
1aa16738 976 ret += se->print(fp, self);
71dd8945 977 }
1aa16738
PZ
978
979 ret += fprintf(fp, "\n");
980
f55c5552
FW
981 if (callchain)
982 hist_entry_callchain__fprintf(fp, self, total_samples);
983
1aa16738
PZ
984 return ret;
985}
986
6e7d6fdc
PZ
987/*
988 *
989 */
990
991static struct symbol *
992resolve_symbol(struct thread *thread, struct map **mapp,
9cffa8d5 993 struct dso **dsop, u64 *ipp)
6e7d6fdc
PZ
994{
995 struct dso *dso = dsop ? *dsop : NULL;
996 struct map *map = mapp ? *mapp : NULL;
520f2c34 997 u64 ip = *ipp;
6e7d6fdc
PZ
998
999 if (!thread)
1000 return NULL;
1001
1002 if (dso)
1003 goto got_dso;
1004
1005 if (map)
1006 goto got_map;
1007
1008 map = thread__find_map(thread, ip);
1009 if (map != NULL) {
1010 if (mapp)
1011 *mapp = map;
1012got_map:
1013 ip = map->map_ip(map, ip);
6e7d6fdc
PZ
1014
1015 dso = map->dso;
1016 } else {
1017 /*
1018 * If this is outside of all known maps,
1019 * and is a negative address, try to look it
1020 * up in the kernel dso, as it might be a
1021 * vsyscall (which executes in user-mode):
1022 */
1023 if ((long long)ip < 0)
1024 dso = kernel_dso;
1025 }
1026 dprintf(" ...... dso: %s\n", dso ? dso->name : "<not found>");
520f2c34
PZ
1027 dprintf(" ...... map: %Lx -> %Lx\n", *ipp, ip);
1028 *ipp = ip;
6e7d6fdc
PZ
1029
1030 if (dsop)
1031 *dsop = dso;
1032
1033 if (!dso)
1034 return NULL;
1035got_dso:
1036 return dso->find_symbol(dso, ip);
1037}
1038
2a0a50fe 1039static int call__match(struct symbol *sym)
6e7d6fdc 1040{
b25bcf2f 1041 if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
2a0a50fe 1042 return 1;
6e7d6fdc 1043
2a0a50fe 1044 return 0;
6e7d6fdc
PZ
1045}
1046
4424961a 1047static struct symbol **
f37a291c 1048resolve_callchain(struct thread *thread, struct map *map __used,
4424961a
FW
1049 struct ip_callchain *chain, struct hist_entry *entry)
1050{
4424961a 1051 u64 context = PERF_CONTEXT_MAX;
f37a291c
IM
1052 struct symbol **syms;
1053 unsigned int i;
4424961a
FW
1054
1055 if (callchain) {
1056 syms = calloc(chain->nr, sizeof(*syms));
1057 if (!syms) {
1058 fprintf(stderr, "Can't allocate memory for symbols\n");
1059 exit(-1);
1060 }
1061 }
1062
1063 for (i = 0; i < chain->nr; i++) {
1064 u64 ip = chain->ips[i];
1065 struct dso *dso = NULL;
1066 struct symbol *sym;
1067
1068 if (ip >= PERF_CONTEXT_MAX) {
1069 context = ip;
1070 continue;
1071 }
1072
1073 switch (context) {
88a69dfb
IM
1074 case PERF_CONTEXT_HV:
1075 dso = hypervisor_dso;
1076 break;
4424961a
FW
1077 case PERF_CONTEXT_KERNEL:
1078 dso = kernel_dso;
1079 break;
1080 default:
1081 break;
1082 }
1083
1084 sym = resolve_symbol(thread, NULL, &dso, &ip);
1085
1086 if (sym) {
1087 if (sort__has_parent && call__match(sym) &&
1088 !entry->parent)
1089 entry->parent = sym;
1090 if (!callchain)
1091 break;
1092 syms[i] = sym;
1093 }
1094 }
1095
1096 return syms;
1097}
1098
1aa16738
PZ
1099/*
1100 * collect histogram counts
1101 */
1102
e7fb08b1
PZ
1103static int
1104hist_entry__add(struct thread *thread, struct map *map, struct dso *dso,
9cffa8d5
PM
1105 struct symbol *sym, u64 ip, struct ip_callchain *chain,
1106 char level, u64 count)
8fa66bdc 1107{
e7fb08b1
PZ
1108 struct rb_node **p = &hist.rb_node;
1109 struct rb_node *parent = NULL;
1110 struct hist_entry *he;
4424961a 1111 struct symbol **syms = NULL;
e7fb08b1
PZ
1112 struct hist_entry entry = {
1113 .thread = thread,
1114 .map = map,
1115 .dso = dso,
1116 .sym = sym,
1117 .ip = ip,
1118 .level = level,
ea1900e5 1119 .count = count,
b8e6d829 1120 .parent = NULL,
f55c5552 1121 .sorted_chain = RB_ROOT
e7fb08b1
PZ
1122 };
1123 int cmp;
1124
4424961a
FW
1125 if ((sort__has_parent || callchain) && chain)
1126 syms = resolve_callchain(thread, map, chain, &entry);
6e7d6fdc 1127
e7fb08b1
PZ
1128 while (*p != NULL) {
1129 parent = *p;
1130 he = rb_entry(parent, struct hist_entry, rb_node);
1131
1132 cmp = hist_entry__cmp(&entry, he);
1133
1134 if (!cmp) {
ea1900e5 1135 he->count += count;
4424961a
FW
1136 if (callchain) {
1137 append_chain(&he->callchain, chain, syms);
1138 free(syms);
1139 }
e7fb08b1
PZ
1140 return 0;
1141 }
1142
1143 if (cmp < 0)
1144 p = &(*p)->rb_left;
1145 else
1146 p = &(*p)->rb_right;
ce7e4365 1147 }
e7fb08b1
PZ
1148
1149 he = malloc(sizeof(*he));
1150 if (!he)
1151 return -ENOMEM;
1152 *he = entry;
f55c5552
FW
1153 if (callchain) {
1154 callchain_init(&he->callchain);
4424961a
FW
1155 append_chain(&he->callchain, chain, syms);
1156 free(syms);
f55c5552 1157 }
e7fb08b1
PZ
1158 rb_link_node(&he->rb_node, parent, p);
1159 rb_insert_color(&he->rb_node, &hist);
1160
1161 return 0;
8fa66bdc
ACM
1162}
1163
8229289b
PZ
1164static void hist_entry__free(struct hist_entry *he)
1165{
1166 free(he);
1167}
1168
1169/*
1170 * collapse the histogram
1171 */
1172
1173static struct rb_root collapse_hists;
1174
1175static void collapse__insert_entry(struct hist_entry *he)
1176{
1177 struct rb_node **p = &collapse_hists.rb_node;
1178 struct rb_node *parent = NULL;
1179 struct hist_entry *iter;
1180 int64_t cmp;
1181
1182 while (*p != NULL) {
1183 parent = *p;
1184 iter = rb_entry(parent, struct hist_entry, rb_node);
1185
1186 cmp = hist_entry__collapse(iter, he);
1187
1188 if (!cmp) {
1189 iter->count += he->count;
1190 hist_entry__free(he);
1191 return;
1192 }
1193
1194 if (cmp < 0)
1195 p = &(*p)->rb_left;
1196 else
1197 p = &(*p)->rb_right;
1198 }
1199
1200 rb_link_node(&he->rb_node, parent, p);
1201 rb_insert_color(&he->rb_node, &collapse_hists);
1202}
1203
1204static void collapse__resort(void)
1205{
1206 struct rb_node *next;
1207 struct hist_entry *n;
1208
1209 if (!sort__need_collapse)
1210 return;
1211
1212 next = rb_first(&hist);
1213 while (next) {
1214 n = rb_entry(next, struct hist_entry, rb_node);
1215 next = rb_next(&n->rb_node);
1216
1217 rb_erase(&n->rb_node, &hist);
1218 collapse__insert_entry(n);
1219 }
1220}
1221
e7fb08b1
PZ
1222/*
1223 * reverse the map, sort on count.
1224 */
1225
1226static struct rb_root output_hists;
1227
c20ab37e 1228static void output__insert_entry(struct hist_entry *he, u64 min_callchain_hits)
3a4b8cc7 1229{
e7fb08b1 1230 struct rb_node **p = &output_hists.rb_node;
3a4b8cc7 1231 struct rb_node *parent = NULL;
e7fb08b1 1232 struct hist_entry *iter;
3a4b8cc7 1233
4eb3e478
FW
1234 if (callchain) {
1235 if (callchain_mode == FLAT)
c20ab37e
FW
1236 sort_chain_flat(&he->sorted_chain, &he->callchain,
1237 min_callchain_hits);
4eb3e478 1238 else if (callchain_mode == GRAPH)
c20ab37e
FW
1239 sort_chain_graph(&he->sorted_chain, &he->callchain,
1240 min_callchain_hits);
4eb3e478 1241 }
f55c5552 1242
3a4b8cc7
ACM
1243 while (*p != NULL) {
1244 parent = *p;
e7fb08b1 1245 iter = rb_entry(parent, struct hist_entry, rb_node);
3a4b8cc7 1246
e7fb08b1 1247 if (he->count > iter->count)
3a4b8cc7
ACM
1248 p = &(*p)->rb_left;
1249 else
1250 p = &(*p)->rb_right;
1251 }
1252
e7fb08b1
PZ
1253 rb_link_node(&he->rb_node, parent, p);
1254 rb_insert_color(&he->rb_node, &output_hists);
3a4b8cc7
ACM
1255}
1256
c20ab37e 1257static void output__resort(u64 total_samples)
3a4b8cc7 1258{
8229289b 1259 struct rb_node *next;
e7fb08b1 1260 struct hist_entry *n;
a4c43bea 1261 struct rb_root *tree = &hist;
c20ab37e
FW
1262 u64 min_callchain_hits;
1263
1264 min_callchain_hits = total_samples * (callchain_min_percent / 100);
3a4b8cc7 1265
8229289b 1266 if (sort__need_collapse)
a4c43bea
ACM
1267 tree = &collapse_hists;
1268
1269 next = rb_first(tree);
8229289b 1270
e7fb08b1
PZ
1271 while (next) {
1272 n = rb_entry(next, struct hist_entry, rb_node);
1273 next = rb_next(&n->rb_node);
3a4b8cc7 1274
a4c43bea 1275 rb_erase(&n->rb_node, tree);
c20ab37e 1276 output__insert_entry(n, min_callchain_hits);
3a4b8cc7
ACM
1277 }
1278}
1279
9cffa8d5 1280static size_t output__fprintf(FILE *fp, u64 total_samples)
3a4b8cc7 1281{
e7fb08b1 1282 struct hist_entry *pos;
2d65537e 1283 struct sort_entry *se;
3a4b8cc7
ACM
1284 struct rb_node *nd;
1285 size_t ret = 0;
1286
71dd8945 1287 fprintf(fp, "\n");
05ca061e 1288 fprintf(fp, "#\n");
9cffa8d5 1289 fprintf(fp, "# (%Ld samples)\n", (u64)total_samples);
ca8cdeef
PZ
1290 fprintf(fp, "#\n");
1291
1292 fprintf(fp, "# Overhead");
b8e6d829
IM
1293 list_for_each_entry(se, &hist_entry__sort_list, list) {
1294 if (exclude_other && (se == &sort_parent))
1295 continue;
71dd8945 1296 fprintf(fp, " %s", se->header);
b8e6d829 1297 }
ca8cdeef
PZ
1298 fprintf(fp, "\n");
1299
1300 fprintf(fp, "# ........");
2d65537e 1301 list_for_each_entry(se, &hist_entry__sort_list, list) {
f37a291c 1302 unsigned int i;
ca8cdeef 1303
b8e6d829
IM
1304 if (exclude_other && (se == &sort_parent))
1305 continue;
1306
4593bba8 1307 fprintf(fp, " ");
71dd8945 1308 for (i = 0; i < strlen(se->header); i++)
ca8cdeef 1309 fprintf(fp, ".");
2d65537e 1310 }
ca8cdeef
PZ
1311 fprintf(fp, "\n");
1312
1313 fprintf(fp, "#\n");
2d65537e 1314
e7fb08b1
PZ
1315 for (nd = rb_first(&output_hists); nd; nd = rb_next(nd)) {
1316 pos = rb_entry(nd, struct hist_entry, rb_node);
1317 ret += hist_entry__fprintf(fp, pos, total_samples);
3a4b8cc7
ACM
1318 }
1319
b8e6d829
IM
1320 if (sort_order == default_sort_order &&
1321 parent_pattern == default_parent_pattern) {
bd74137e 1322 fprintf(fp, "#\n");
71dd8945 1323 fprintf(fp, "# (For more details, try: perf report --sort comm,dso,symbol)\n");
bd74137e
IM
1324 fprintf(fp, "#\n");
1325 }
71dd8945 1326 fprintf(fp, "\n");
bd74137e 1327
3a4b8cc7
ACM
1328 return ret;
1329}
1330
436224a6
PZ
1331static void register_idle_thread(void)
1332{
1333 struct thread *thread = threads__findnew(0);
1334
1335 if (thread == NULL ||
1336 thread__set_comm(thread, "[idle]")) {
1337 fprintf(stderr, "problem inserting idle task.\n");
1338 exit(-1);
1339 }
1340}
1341
62fc4453
PZ
1342static unsigned long total = 0,
1343 total_mmap = 0,
1344 total_comm = 0,
1345 total_fork = 0,
9d91a6f7
PZ
1346 total_unknown = 0,
1347 total_lost = 0;
e7fb08b1 1348
2a0a50fe 1349static int validate_chain(struct ip_callchain *chain, event_t *event)
7522060c
IM
1350{
1351 unsigned int chain_size;
1352
7522060c
IM
1353 chain_size = event->header.size;
1354 chain_size -= (unsigned long)&event->ip.__more_data - (unsigned long)event;
1355
9cffa8d5 1356 if (chain->nr*sizeof(u64) > chain_size)
7522060c
IM
1357 return -1;
1358
1359 return 0;
1360}
1361
d80d338d 1362static int
e6e18ec7 1363process_sample_event(event_t *event, unsigned long offset, unsigned long head)
75051724
IM
1364{
1365 char level;
1366 int show = 0;
1367 struct dso *dso = NULL;
1368 struct thread *thread = threads__findnew(event->ip.pid);
9cffa8d5
PM
1369 u64 ip = event->ip.ip;
1370 u64 period = 1;
75051724 1371 struct map *map = NULL;
3efa1cc9 1372 void *more_data = event->ip.__more_data;
2a0a50fe 1373 struct ip_callchain *chain = NULL;
d8db1b57 1374 int cpumode;
75051724 1375
e6e18ec7 1376 if (sample_type & PERF_SAMPLE_PERIOD) {
9cffa8d5
PM
1377 period = *(u64 *)more_data;
1378 more_data += sizeof(u64);
3efa1cc9 1379 }
ea1900e5 1380
e6e18ec7 1381 dprintf("%p [%p]: PERF_EVENT_SAMPLE (IP, %d): %d: %p period: %Ld\n",
75051724
IM
1382 (void *)(offset + head),
1383 (void *)(long)(event->header.size),
1384 event->header.misc,
1385 event->ip.pid,
4502d77c 1386 (void *)(long)ip,
ea1900e5 1387 (long long)period);
75051724 1388
e6e18ec7 1389 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
f37a291c 1390 unsigned int i;
3efa1cc9
IM
1391
1392 chain = (void *)more_data;
1393
2a0a50fe 1394 dprintf("... chain: nr:%Lu\n", chain->nr);
3efa1cc9 1395
7522060c
IM
1396 if (validate_chain(chain, event) < 0) {
1397 eprintf("call-chain problem with event, skipping it.\n");
1398 return 0;
1399 }
1400
1401 if (dump_trace) {
3efa1cc9 1402 for (i = 0; i < chain->nr; i++)
2a0a50fe 1403 dprintf("..... %2d: %016Lx\n", i, chain->ips[i]);
3efa1cc9
IM
1404 }
1405 }
1406
75051724
IM
1407 dprintf(" ... thread: %s:%d\n", thread->comm, thread->pid);
1408
1409 if (thread == NULL) {
7522060c 1410 eprintf("problem processing %d event, skipping it.\n",
75051724
IM
1411 event->header.type);
1412 return -1;
1413 }
e7fb08b1 1414
cc8b88b1
ACM
1415 if (comm_list && !strlist__has_entry(comm_list, thread->comm))
1416 return 0;
1417
d8db1b57
AB
1418 cpumode = event->header.misc & PERF_EVENT_MISC_CPUMODE_MASK;
1419
1420 if (cpumode == PERF_EVENT_MISC_KERNEL) {
75051724
IM
1421 show = SHOW_KERNEL;
1422 level = 'k';
e7fb08b1 1423
75051724 1424 dso = kernel_dso;
ed966aac 1425
75051724 1426 dprintf(" ...... dso: %s\n", dso->name);
16f762a2 1427
d8db1b57 1428 } else if (cpumode == PERF_EVENT_MISC_USER) {
16f762a2 1429
75051724
IM
1430 show = SHOW_USER;
1431 level = '.';
e7fb08b1 1432
75051724
IM
1433 } else {
1434 show = SHOW_HV;
1435 level = 'H';
fb9c8188
AB
1436
1437 dso = hypervisor_dso;
1438
75051724
IM
1439 dprintf(" ...... dso: [hypervisor]\n");
1440 }
8fa66bdc 1441
75051724 1442 if (show & show_mask) {
6e7d6fdc 1443 struct symbol *sym = resolve_symbol(thread, &map, &dso, &ip);
8fa66bdc 1444
25903407
ACM
1445 if (dso_list && dso && dso->name && !strlist__has_entry(dso_list, dso->name))
1446 return 0;
1447
7bec7a91
ACM
1448 if (sym_list && sym && !strlist__has_entry(sym_list, sym->name))
1449 return 0;
1450
6e7d6fdc 1451 if (hist_entry__add(thread, map, dso, sym, ip, chain, level, period)) {
7522060c 1452 eprintf("problem incrementing symbol count, skipping event\n");
d80d338d 1453 return -1;
ce7e4365 1454 }
8fa66bdc 1455 }
ea1900e5 1456 total += period;
8fa66bdc 1457
75051724
IM
1458 return 0;
1459}
3502973d 1460
75051724
IM
1461static int
1462process_mmap_event(event_t *event, unsigned long offset, unsigned long head)
1463{
1464 struct thread *thread = threads__findnew(event->mmap.pid);
1465 struct map *map = map__new(&event->mmap);
1466
62fc4453 1467 dprintf("%p [%p]: PERF_EVENT_MMAP %d: [%p(%p) @ %p]: %s\n",
75051724
IM
1468 (void *)(offset + head),
1469 (void *)(long)(event->header.size),
62fc4453 1470 event->mmap.pid,
75051724
IM
1471 (void *)(long)event->mmap.start,
1472 (void *)(long)event->mmap.len,
1473 (void *)(long)event->mmap.pgoff,
1474 event->mmap.filename);
1475
1476 if (thread == NULL || map == NULL) {
1477 dprintf("problem processing PERF_EVENT_MMAP, skipping event.\n");
df97992c 1478 return 0;
75051724
IM
1479 }
1480
1481 thread__insert_map(thread, map);
1482 total_mmap++;
1483
1484 return 0;
1485}
1486
1487static int
1488process_comm_event(event_t *event, unsigned long offset, unsigned long head)
1489{
1490 struct thread *thread = threads__findnew(event->comm.pid);
1491
1492 dprintf("%p [%p]: PERF_EVENT_COMM: %s:%d\n",
1493 (void *)(offset + head),
1494 (void *)(long)(event->header.size),
1495 event->comm.comm, event->comm.pid);
1496
1497 if (thread == NULL ||
1498 thread__set_comm(thread, event->comm.comm)) {
1499 dprintf("problem processing PERF_EVENT_COMM, skipping event.\n");
1500 return -1;
8fa66bdc 1501 }
75051724
IM
1502 total_comm++;
1503
1504 return 0;
1505}
1506
62fc4453
PZ
1507static int
1508process_fork_event(event_t *event, unsigned long offset, unsigned long head)
1509{
1510 struct thread *thread = threads__findnew(event->fork.pid);
1511 struct thread *parent = threads__findnew(event->fork.ppid);
1512
1513 dprintf("%p [%p]: PERF_EVENT_FORK: %d:%d\n",
1514 (void *)(offset + head),
1515 (void *)(long)(event->header.size),
1516 event->fork.pid, event->fork.ppid);
1517
1518 if (!thread || !parent || thread__fork(thread, parent)) {
1519 dprintf("problem processing PERF_EVENT_FORK, skipping event.\n");
1520 return -1;
1521 }
1522 total_fork++;
1523
1524 return 0;
1525}
1526
b2fef076
IM
1527static int
1528process_period_event(event_t *event, unsigned long offset, unsigned long head)
1529{
1530 dprintf("%p [%p]: PERF_EVENT_PERIOD: time:%Ld, id:%Ld: period:%Ld\n",
1531 (void *)(offset + head),
1532 (void *)(long)(event->header.size),
1533 event->period.time,
1534 event->period.id,
1535 event->period.sample_period);
1536
1537 return 0;
1538}
1539
9d91a6f7
PZ
1540static int
1541process_lost_event(event_t *event, unsigned long offset, unsigned long head)
1542{
1543 dprintf("%p [%p]: PERF_EVENT_LOST: id:%Ld: lost:%Ld\n",
1544 (void *)(offset + head),
1545 (void *)(long)(event->header.size),
1546 event->lost.id,
1547 event->lost.lost);
1548
1549 total_lost += event->lost.lost;
1550
1551 return 0;
1552}
1553
8465b050
IM
1554static void trace_event(event_t *event)
1555{
1556 unsigned char *raw_event = (void *)event;
3efa1cc9 1557 char *color = PERF_COLOR_BLUE;
8465b050
IM
1558 int i, j;
1559
1560 if (!dump_trace)
1561 return;
1562
3efa1cc9
IM
1563 dprintf(".");
1564 cdprintf("\n. ... raw event: size %d bytes\n", event->header.size);
8465b050
IM
1565
1566 for (i = 0; i < event->header.size; i++) {
3efa1cc9
IM
1567 if ((i & 15) == 0) {
1568 dprintf(".");
1569 cdprintf(" %04x: ", i);
1570 }
8465b050 1571
3efa1cc9 1572 cdprintf(" %02x", raw_event[i]);
8465b050
IM
1573
1574 if (((i & 15) == 15) || i == event->header.size-1) {
3efa1cc9 1575 cdprintf(" ");
8465b050 1576 for (j = 0; j < 15-(i & 15); j++)
3efa1cc9 1577 cdprintf(" ");
8465b050 1578 for (j = 0; j < (i & 15); j++) {
a73c7d84 1579 if (isprint(raw_event[i-15+j]))
3efa1cc9 1580 cdprintf("%c", raw_event[i-15+j]);
8465b050 1581 else
3efa1cc9 1582 cdprintf(".");
8465b050 1583 }
3efa1cc9 1584 cdprintf("\n");
8465b050
IM
1585 }
1586 }
1587 dprintf(".\n");
1588}
1589
e9ea2fde
PZ
1590static int
1591process_read_event(event_t *event, unsigned long offset, unsigned long head)
1592{
1593 dprintf("%p [%p]: PERF_EVENT_READ: %d %d %Lu\n",
1594 (void *)(offset + head),
1595 (void *)(long)(event->header.size),
1596 event->read.pid,
1597 event->read.tid,
1598 event->read.value);
1599
1600 return 0;
1601}
1602
75051724
IM
1603static int
1604process_event(event_t *event, unsigned long offset, unsigned long head)
1605{
8465b050
IM
1606 trace_event(event);
1607
75051724 1608 switch (event->header.type) {
e6e18ec7
PZ
1609 case PERF_EVENT_SAMPLE:
1610 return process_sample_event(event, offset, head);
1611
75051724
IM
1612 case PERF_EVENT_MMAP:
1613 return process_mmap_event(event, offset, head);
1614
1615 case PERF_EVENT_COMM:
1616 return process_comm_event(event, offset, head);
1617
62fc4453
PZ
1618 case PERF_EVENT_FORK:
1619 return process_fork_event(event, offset, head);
1620
b2fef076
IM
1621 case PERF_EVENT_PERIOD:
1622 return process_period_event(event, offset, head);
9d91a6f7
PZ
1623
1624 case PERF_EVENT_LOST:
1625 return process_lost_event(event, offset, head);
1626
e9ea2fde
PZ
1627 case PERF_EVENT_READ:
1628 return process_read_event(event, offset, head);
1629
d11444df
IM
1630 /*
1631 * We dont process them right now but they are fine:
1632 */
62fc4453 1633
d11444df
IM
1634 case PERF_EVENT_THROTTLE:
1635 case PERF_EVENT_UNTHROTTLE:
1636 return 0;
1637
d80d338d
IM
1638 default:
1639 return -1;
1640 }
1641
1642 return 0;
1643}
1644
7c6a1c65
PZ
1645static struct perf_header *header;
1646
e6e18ec7 1647static u64 perf_header__sample_type(void)
7c6a1c65 1648{
e6e18ec7 1649 u64 sample_type = 0;
7c6a1c65
PZ
1650 int i;
1651
1652 for (i = 0; i < header->attrs; i++) {
1653 struct perf_header_attr *attr = header->attr[i];
1654
e6e18ec7
PZ
1655 if (!sample_type)
1656 sample_type = attr->attr.sample_type;
1657 else if (sample_type != attr->attr.sample_type)
1658 die("non matching sample_type");
7c6a1c65
PZ
1659 }
1660
e6e18ec7 1661 return sample_type;
7c6a1c65 1662}
f5970550 1663
d80d338d
IM
1664static int __cmd_report(void)
1665{
75051724 1666 int ret, rc = EXIT_FAILURE;
d80d338d 1667 unsigned long offset = 0;
7c6a1c65 1668 unsigned long head, shift;
d80d338d 1669 struct stat stat;
d80d338d 1670 event_t *event;
d80d338d 1671 uint32_t size;
75051724 1672 char *buf;
d80d338d
IM
1673
1674 register_idle_thread();
1675
1676 input = open(input_name, O_RDONLY);
1677 if (input < 0) {
a14832ff
IM
1678 fprintf(stderr, " failed to open file: %s", input_name);
1679 if (!strcmp(input_name, "perf.data"))
1680 fprintf(stderr, " (try 'perf record' first)");
1681 fprintf(stderr, "\n");
d80d338d
IM
1682 exit(-1);
1683 }
1684
1685 ret = fstat(input, &stat);
1686 if (ret < 0) {
1687 perror("failed to stat file");
1688 exit(-1);
1689 }
1690
1691 if (!stat.st_size) {
1692 fprintf(stderr, "zero-sized file, nothing to do!\n");
1693 exit(0);
1694 }
1695
7c6a1c65
PZ
1696 header = perf_header__read(input);
1697 head = header->data_offset;
f5970550 1698
e6e18ec7
PZ
1699 sample_type = perf_header__sample_type();
1700
1701 if (sort__has_parent && !(sample_type & PERF_SAMPLE_CALLCHAIN)) {
f5970550
PZ
1702 fprintf(stderr, "selected --sort parent, but no callchain data\n");
1703 exit(-1);
1704 }
1705
d80d338d
IM
1706 if (load_kernel() < 0) {
1707 perror("failed to load kernel symbols");
1708 return EXIT_FAILURE;
1709 }
1710
1711 if (!full_paths) {
1712 if (getcwd(__cwd, sizeof(__cwd)) == NULL) {
1713 perror("failed to get the current directory");
1714 return EXIT_FAILURE;
1715 }
1716 cwdlen = strlen(cwd);
1717 } else {
1718 cwd = NULL;
1719 cwdlen = 0;
1720 }
7c6a1c65
PZ
1721
1722 shift = page_size * (head / page_size);
1723 offset += shift;
1724 head -= shift;
1725
d80d338d
IM
1726remap:
1727 buf = (char *)mmap(NULL, page_size * mmap_window, PROT_READ,
1728 MAP_SHARED, input, offset);
1729 if (buf == MAP_FAILED) {
1730 perror("failed to mmap file");
1731 exit(-1);
1732 }
1733
1734more:
1735 event = (event_t *)(buf + head);
1736
1737 size = event->header.size;
1738 if (!size)
1739 size = 8;
1740
1741 if (head + event->header.size >= page_size * mmap_window) {
d80d338d
IM
1742 int ret;
1743
7c6a1c65
PZ
1744 shift = page_size * (head / page_size);
1745
d80d338d
IM
1746 ret = munmap(buf, page_size * mmap_window);
1747 assert(ret == 0);
1748
1749 offset += shift;
1750 head -= shift;
1751 goto remap;
1752 }
1753
1754 size = event->header.size;
1755
8465b050 1756 dprintf("\n%p [%p]: event: %d\n",
b2fef076
IM
1757 (void *)(offset + head),
1758 (void *)(long)event->header.size,
1759 event->header.type);
1760
d80d338d
IM
1761 if (!size || process_event(event, offset, head) < 0) {
1762
3502973d
IM
1763 dprintf("%p [%p]: skipping unknown header type: %d\n",
1764 (void *)(offset + head),
1765 (void *)(long)(event->header.size),
1766 event->header.type);
b7a16eac 1767
3e706114 1768 total_unknown++;
6142f9ec
PZ
1769
1770 /*
1771 * assume we lost track of the stream, check alignment, and
1772 * increment a single u64 in the hope to catch on again 'soon'.
1773 */
1774
1775 if (unlikely(head & 7))
1776 head &= ~7ULL;
1777
1778 size = 8;
97b07b69 1779 }
8fa66bdc 1780
6142f9ec 1781 head += size;
f49515b1 1782
7c6a1c65 1783 if (offset + head >= header->data_offset + header->data_size)
f5970550
PZ
1784 goto done;
1785
f37a291c 1786 if (offset + head < (unsigned long)stat.st_size)
8fa66bdc
ACM
1787 goto more;
1788
f5970550 1789done:
8fa66bdc 1790 rc = EXIT_SUCCESS;
8fa66bdc 1791 close(input);
97b07b69 1792
3502973d
IM
1793 dprintf(" IP events: %10ld\n", total);
1794 dprintf(" mmap events: %10ld\n", total_mmap);
1795 dprintf(" comm events: %10ld\n", total_comm);
62fc4453 1796 dprintf(" fork events: %10ld\n", total_fork);
9d91a6f7 1797 dprintf(" lost events: %10ld\n", total_lost);
3502973d 1798 dprintf(" unknown events: %10ld\n", total_unknown);
97b07b69 1799
3502973d 1800 if (dump_trace)
97b07b69 1801 return 0;
97b07b69 1802
9ac99545
ACM
1803 if (verbose >= 3)
1804 threads__fprintf(stdout);
1805
e7fb08b1 1806 if (verbose >= 2)
16f762a2 1807 dsos__fprintf(stdout);
16f762a2 1808
8229289b 1809 collapse__resort();
c20ab37e 1810 output__resort(total);
e7fb08b1 1811 output__fprintf(stdout, total);
8fa66bdc 1812
8fa66bdc
ACM
1813 return rc;
1814}
1815
4eb3e478
FW
1816static int
1817parse_callchain_opt(const struct option *opt __used, const char *arg,
1818 int unset __used)
1819{
c20ab37e
FW
1820 char *tok;
1821 char *endptr;
1822
4eb3e478
FW
1823 callchain = 1;
1824
1825 if (!arg)
1826 return 0;
1827
c20ab37e
FW
1828 tok = strtok((char *)arg, ",");
1829 if (!tok)
1830 return -1;
1831
1832 /* get the output mode */
1833 if (!strncmp(tok, "graph", strlen(arg)))
4eb3e478
FW
1834 callchain_mode = GRAPH;
1835
c20ab37e 1836 else if (!strncmp(tok, "flat", strlen(arg)))
4eb3e478
FW
1837 callchain_mode = FLAT;
1838 else
1839 return -1;
1840
c20ab37e
FW
1841 /* get the min percentage */
1842 tok = strtok(NULL, ",");
1843 if (!tok)
1844 return 0;
1845
1846 callchain_min_percent = strtod(tok, &endptr);
1847 if (tok == endptr)
1848 return -1;
1849
4eb3e478
FW
1850 return 0;
1851}
1852
53cb8bc2
IM
1853static const char * const report_usage[] = {
1854 "perf report [<options>] <command>",
1855 NULL
1856};
1857
1858static const struct option options[] = {
1859 OPT_STRING('i', "input", &input_name, "file",
1860 "input file name"),
815e777f
ACM
1861 OPT_BOOLEAN('v', "verbose", &verbose,
1862 "be more verbose (show symbol address, etc)"),
97b07b69
IM
1863 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1864 "dump raw trace in ASCII"),
450aaa2b 1865 OPT_STRING('k', "vmlinux", &vmlinux, "file", "vmlinux pathname"),
42976487
MG
1866 OPT_BOOLEAN('m', "modules", &modules,
1867 "load module symbols - WARNING: use only with -k and LIVE kernel"),
63299f05 1868 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b25bcf2f 1869 "sort by key(s): pid, comm, dso, symbol, parent"),
b78c07d4
ACM
1870 OPT_BOOLEAN('P', "full-paths", &full_paths,
1871 "Don't shorten the pathnames taking into account the cwd"),
b25bcf2f
IM
1872 OPT_STRING('p', "parent", &parent_pattern, "regex",
1873 "regex filter to identify parent, see: '--sort parent'"),
b8e6d829
IM
1874 OPT_BOOLEAN('x', "exclude-other", &exclude_other,
1875 "Only display entries with parent-match"),
c20ab37e
FW
1876 OPT_CALLBACK_DEFAULT('c', "callchain", NULL, "output_type,min_percent",
1877 "Display callchains using output_type and min percent threshold. "
1878 "Default: flat,0", &parse_callchain_opt, "flat,100"),
25903407
ACM
1879 OPT_STRING('d', "dsos", &dso_list_str, "dso[,dso...]",
1880 "only consider symbols in these dsos"),
cc8b88b1
ACM
1881 OPT_STRING('C', "comms", &comm_list_str, "comm[,comm...]",
1882 "only consider symbols in these comms"),
7bec7a91
ACM
1883 OPT_STRING('S', "symbols", &sym_list_str, "symbol[,symbol...]",
1884 "only consider these symbols"),
53cb8bc2
IM
1885 OPT_END()
1886};
1887
5352f35d
IM
1888static void setup_sorting(void)
1889{
1890 char *tmp, *tok, *str = strdup(sort_order);
1891
1892 for (tok = strtok_r(str, ", ", &tmp);
1893 tok; tok = strtok_r(NULL, ", ", &tmp)) {
1894 if (sort_dimension__add(tok) < 0) {
1895 error("Unknown --sort key: `%s'", tok);
1896 usage_with_options(report_usage, options);
1897 }
1898 }
1899
1900 free(str);
1901}
1902
cc8b88b1
ACM
1903static void setup_list(struct strlist **list, const char *list_str,
1904 const char *list_name)
1905{
1906 if (list_str) {
1907 *list = strlist__new(true, list_str);
1908 if (!*list) {
1909 fprintf(stderr, "problems parsing %s list\n",
1910 list_name);
1911 exit(129);
1912 }
1913 }
1914}
1915
f37a291c 1916int cmd_report(int argc, const char **argv, const char *prefix __used)
53cb8bc2 1917{
a2928c42 1918 symbol__init();
53cb8bc2
IM
1919
1920 page_size = getpagesize();
1921
edc52dea 1922 argc = parse_options(argc, argv, options, report_usage, 0);
53cb8bc2 1923
1aa16738
PZ
1924 setup_sorting();
1925
b8e6d829
IM
1926 if (parent_pattern != default_parent_pattern)
1927 sort_dimension__add("parent");
1928 else
1929 exclude_other = 0;
1930
edc52dea
IM
1931 /*
1932 * Any (unrecognized) arguments left?
1933 */
1934 if (argc)
1935 usage_with_options(report_usage, options);
1936
cc8b88b1
ACM
1937 setup_list(&dso_list, dso_list_str, "dso");
1938 setup_list(&comm_list, comm_list_str, "comm");
7bec7a91 1939 setup_list(&sym_list, sym_list_str, "symbol");
25903407 1940
a930d2c0
IM
1941 setup_pager();
1942
53cb8bc2
IM
1943 return __cmd_report();
1944}