perf_counter: Add event overlow handling
[deliverable/linux.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"
35a50c8a 13#include "util/list.h"
a930d2c0 14#include "util/cache.h"
35a50c8a 15#include "util/rbtree.h"
a2928c42 16#include "util/symbol.h"
a0055ae2 17#include "util/string.h"
8fa66bdc 18
53cb8bc2
IM
19#include "perf.h"
20
21#include "util/parse-options.h"
22#include "util/parse-events.h"
23
8fa66bdc
ACM
24#define SHOW_KERNEL 1
25#define SHOW_USER 2
26#define SHOW_HV 4
27
23ac9cbe 28static char const *input_name = "perf.data";
450aaa2b 29static char *vmlinux = NULL;
bd74137e
IM
30
31static char default_sort_order[] = "comm,dso";
32static char *sort_order = default_sort_order;
33
8fa66bdc
ACM
34static int input;
35static int show_mask = SHOW_KERNEL | SHOW_USER | SHOW_HV;
36
97b07b69 37static int dump_trace = 0;
3502973d 38#define dprintf(x...) do { if (dump_trace) printf(x); } while (0)
3efa1cc9 39#define cdprintf(x...) do { if (dump_trace) color_fprintf(stdout, color, x); } while (0)
3502973d 40
16f762a2 41static int verbose;
7522060c
IM
42#define eprintf(x...) do { if (verbose) fprintf(stderr, x); } while (0)
43
b78c07d4 44static int full_paths;
97b07b69 45
8fa66bdc
ACM
46static unsigned long page_size;
47static unsigned long mmap_window = 32;
48
b25bcf2f
IM
49static char *parent_pattern = "^sys_|^do_page_fault";
50static regex_t parent_regex;
6e7d6fdc 51
8fa66bdc
ACM
52struct ip_event {
53 struct perf_event_header header;
54 __u64 ip;
55 __u32 pid, tid;
3efa1cc9 56 unsigned char __more_data[];
8fa66bdc 57};
75051724 58
8fa66bdc
ACM
59struct mmap_event {
60 struct perf_event_header header;
61 __u32 pid, tid;
62 __u64 start;
63 __u64 len;
64 __u64 pgoff;
65 char filename[PATH_MAX];
66};
75051724 67
8fa66bdc
ACM
68struct comm_event {
69 struct perf_event_header header;
75051724 70 __u32 pid, tid;
8fa66bdc
ACM
71 char comm[16];
72};
73
62fc4453
PZ
74struct fork_event {
75 struct perf_event_header header;
76 __u32 pid, ppid;
77};
78
b2fef076 79struct period_event {
8fa66bdc 80 struct perf_event_header header;
b2fef076
IM
81 __u64 time;
82 __u64 id;
83 __u64 sample_period;
84};
85
86typedef union event_union {
87 struct perf_event_header header;
88 struct ip_event ip;
89 struct mmap_event mmap;
90 struct comm_event comm;
91 struct fork_event fork;
92 struct period_event period;
8fa66bdc
ACM
93} event_t;
94
8fa66bdc
ACM
95static LIST_HEAD(dsos);
96static struct dso *kernel_dso;
fc54db51 97static struct dso *vdso;
8fa66bdc
ACM
98
99static void dsos__add(struct dso *dso)
100{
101 list_add_tail(&dso->node, &dsos);
102}
103
104static struct dso *dsos__find(const char *name)
105{
106 struct dso *pos;
107
108 list_for_each_entry(pos, &dsos, node)
109 if (strcmp(pos->name, name) == 0)
110 return pos;
111 return NULL;
112}
113
114static struct dso *dsos__findnew(const char *name)
115{
116 struct dso *dso = dsos__find(name);
b7a16eac 117 int nr;
8fa66bdc 118
4593bba8
IM
119 if (dso)
120 return dso;
121
122 dso = dso__new(name, 0);
123 if (!dso)
124 goto out_delete_dso;
8fa66bdc 125
bd74137e 126 nr = dso__load(dso, NULL, verbose);
4593bba8 127 if (nr < 0) {
7522060c 128 eprintf("Failed to open: %s\n", name);
4593bba8 129 goto out_delete_dso;
8fa66bdc 130 }
7522060c
IM
131 if (!nr)
132 eprintf("No symbols found in: %s, maybe install a debug package?\n", name);
4593bba8
IM
133
134 dsos__add(dso);
8fa66bdc
ACM
135
136 return dso;
137
138out_delete_dso:
139 dso__delete(dso);
140 return NULL;
141}
142
16f762a2 143static void dsos__fprintf(FILE *fp)
8fa66bdc
ACM
144{
145 struct dso *pos;
146
147 list_for_each_entry(pos, &dsos, node)
148 dso__fprintf(pos, fp);
149}
150
729ff5e2 151static struct symbol *vdso__find_symbol(struct dso *dso, __u64 ip)
fc54db51
PZ
152{
153 return dso__find_symbol(kernel_dso, ip);
154}
155
450aaa2b
PZ
156static int load_kernel(void)
157{
a827c875 158 int err;
450aaa2b 159
0085c954 160 kernel_dso = dso__new("[kernel]", 0);
450aaa2b 161 if (!kernel_dso)
a2928c42 162 return -1;
450aaa2b 163
bd74137e 164 err = dso__load_kernel(kernel_dso, vmlinux, NULL, verbose);
a2928c42
ACM
165 if (err) {
166 dso__delete(kernel_dso);
167 kernel_dso = NULL;
168 } else
169 dsos__add(kernel_dso);
450aaa2b 170
fc54db51
PZ
171 vdso = dso__new("[vdso]", 0);
172 if (!vdso)
173 return -1;
174
175 vdso->find_symbol = vdso__find_symbol;
176
177 dsos__add(vdso);
178
a2928c42 179 return err;
450aaa2b
PZ
180}
181
d80d338d
IM
182static char __cwd[PATH_MAX];
183static char *cwd = __cwd;
184static int cwdlen;
185
186static int strcommon(const char *pathname)
b78c07d4
ACM
187{
188 int n = 0;
189
190 while (pathname[n] == cwd[n] && n < cwdlen)
191 ++n;
192
193 return n;
194}
195
8fa66bdc
ACM
196struct map {
197 struct list_head node;
729ff5e2
IM
198 __u64 start;
199 __u64 end;
200 __u64 pgoff;
201 __u64 (*map_ip)(struct map *, __u64);
8fa66bdc
ACM
202 struct dso *dso;
203};
204
729ff5e2 205static __u64 map__map_ip(struct map *map, __u64 ip)
fc54db51
PZ
206{
207 return ip - map->start + map->pgoff;
208}
209
729ff5e2 210static __u64 vdso__map_ip(struct map *map, __u64 ip)
fc54db51
PZ
211{
212 return ip;
213}
214
80d496be
PE
215static inline int is_anon_memory(const char *filename)
216{
217 return strcmp(filename, "//anon") == 0;
218}
219
d80d338d 220static struct map *map__new(struct mmap_event *event)
8fa66bdc
ACM
221{
222 struct map *self = malloc(sizeof(*self));
223
224 if (self != NULL) {
b78c07d4
ACM
225 const char *filename = event->filename;
226 char newfilename[PATH_MAX];
80d496be 227 int anon;
b78c07d4
ACM
228
229 if (cwd) {
d80d338d
IM
230 int n = strcommon(filename);
231
b78c07d4
ACM
232 if (n == cwdlen) {
233 snprintf(newfilename, sizeof(newfilename),
234 ".%s", filename + n);
235 filename = newfilename;
236 }
237 }
238
80d496be
PE
239 anon = is_anon_memory(filename);
240
241 if (anon) {
242 snprintf(newfilename, sizeof(newfilename), "/tmp/perf-%d.map", event->pid);
243 filename = newfilename;
244 }
245
8fa66bdc
ACM
246 self->start = event->start;
247 self->end = event->start + event->len;
248 self->pgoff = event->pgoff;
249
b78c07d4 250 self->dso = dsos__findnew(filename);
8fa66bdc
ACM
251 if (self->dso == NULL)
252 goto out_delete;
fc54db51 253
80d496be 254 if (self->dso == vdso || anon)
fc54db51
PZ
255 self->map_ip = vdso__map_ip;
256 else
257 self->map_ip = map__map_ip;
8fa66bdc
ACM
258 }
259 return self;
260out_delete:
261 free(self);
262 return NULL;
263}
264
62fc4453
PZ
265static struct map *map__clone(struct map *self)
266{
267 struct map *map = malloc(sizeof(*self));
268
269 if (!map)
270 return NULL;
271
272 memcpy(map, self, sizeof(*self));
273
274 return map;
275}
276
277static int map__overlap(struct map *l, struct map *r)
278{
279 if (l->start > r->start) {
280 struct map *t = l;
281 l = r;
282 r = t;
283 }
284
285 if (l->end > r->start)
286 return 1;
287
288 return 0;
289}
3a4b8cc7 290
9ac99545
ACM
291static size_t map__fprintf(struct map *self, FILE *fp)
292{
729ff5e2 293 return fprintf(fp, " %Lx-%Lx %Lx %s\n",
9ac99545
ACM
294 self->start, self->end, self->pgoff, self->dso->name);
295}
296
297
8fa66bdc 298struct thread {
ce7e4365 299 struct rb_node rb_node;
8fa66bdc 300 struct list_head maps;
8fa66bdc
ACM
301 pid_t pid;
302 char *comm;
303};
304
305static struct thread *thread__new(pid_t pid)
306{
307 struct thread *self = malloc(sizeof(*self));
308
309 if (self != NULL) {
310 self->pid = pid;
8229289b 311 self->comm = malloc(32);
0a520c63 312 if (self->comm)
8229289b 313 snprintf(self->comm, 32, ":%d", self->pid);
8fa66bdc 314 INIT_LIST_HEAD(&self->maps);
8fa66bdc
ACM
315 }
316
317 return self;
318}
319
8fa66bdc
ACM
320static int thread__set_comm(struct thread *self, const char *comm)
321{
8229289b
PZ
322 if (self->comm)
323 free(self->comm);
8fa66bdc
ACM
324 self->comm = strdup(comm);
325 return self->comm ? 0 : -ENOMEM;
326}
327
9ac99545
ACM
328static size_t thread__fprintf(struct thread *self, FILE *fp)
329{
330 struct map *pos;
331 size_t ret = fprintf(fp, "Thread %d %s\n", self->pid, self->comm);
332
333 list_for_each_entry(pos, &self->maps, node)
334 ret += map__fprintf(pos, fp);
335
336 return ret;
337}
338
339
16f762a2 340static struct rb_root threads;
eed4dcd4 341static struct thread *last_match;
8fa66bdc 342
ce7e4365 343static struct thread *threads__findnew(pid_t pid)
8fa66bdc 344{
ce7e4365
ACM
345 struct rb_node **p = &threads.rb_node;
346 struct rb_node *parent = NULL;
347 struct thread *th;
8fa66bdc 348
eed4dcd4
IM
349 /*
350 * Font-end cache - PID lookups come in blocks,
351 * so most of the time we dont have to look up
352 * the full rbtree:
353 */
354 if (last_match && last_match->pid == pid)
355 return last_match;
356
ce7e4365
ACM
357 while (*p != NULL) {
358 parent = *p;
359 th = rb_entry(parent, struct thread, rb_node);
8fa66bdc 360
eed4dcd4
IM
361 if (th->pid == pid) {
362 last_match = th;
ce7e4365 363 return th;
eed4dcd4 364 }
8fa66bdc 365
ce7e4365
ACM
366 if (pid < th->pid)
367 p = &(*p)->rb_left;
368 else
369 p = &(*p)->rb_right;
8fa66bdc
ACM
370 }
371
ce7e4365
ACM
372 th = thread__new(pid);
373 if (th != NULL) {
374 rb_link_node(&th->rb_node, parent, p);
375 rb_insert_color(&th->rb_node, &threads);
eed4dcd4 376 last_match = th;
ce7e4365 377 }
eed4dcd4 378
ce7e4365 379 return th;
8fa66bdc
ACM
380}
381
382static void thread__insert_map(struct thread *self, struct map *map)
383{
62fc4453
PZ
384 struct map *pos, *tmp;
385
386 list_for_each_entry_safe(pos, tmp, &self->maps, node) {
387 if (map__overlap(pos, map)) {
388 list_del_init(&pos->node);
389 /* XXX leaks dsos */
390 free(pos);
391 }
392 }
393
8fa66bdc
ACM
394 list_add_tail(&map->node, &self->maps);
395}
396
62fc4453
PZ
397static int thread__fork(struct thread *self, struct thread *parent)
398{
399 struct map *map;
400
401 if (self->comm)
402 free(self->comm);
403 self->comm = strdup(parent->comm);
404 if (!self->comm)
405 return -ENOMEM;
406
407 list_for_each_entry(map, &parent->maps, node) {
408 struct map *new = map__clone(map);
409 if (!new)
410 return -ENOMEM;
411 thread__insert_map(self, new);
412 }
413
414 return 0;
415}
416
729ff5e2 417static struct map *thread__find_map(struct thread *self, __u64 ip)
8fa66bdc 418{
16f762a2
IM
419 struct map *pos;
420
8fa66bdc
ACM
421 if (self == NULL)
422 return NULL;
423
8fa66bdc
ACM
424 list_for_each_entry(pos, &self->maps, node)
425 if (ip >= pos->start && ip <= pos->end)
426 return pos;
427
428 return NULL;
429}
430
9ac99545
ACM
431static size_t threads__fprintf(FILE *fp)
432{
433 size_t ret = 0;
434 struct rb_node *nd;
435
436 for (nd = rb_first(&threads); nd; nd = rb_next(nd)) {
437 struct thread *pos = rb_entry(nd, struct thread, rb_node);
438
439 ret += thread__fprintf(pos, fp);
440 }
441
442 return ret;
443}
444
e7fb08b1
PZ
445/*
446 * histogram, sorted on item, collects counts
447 */
448
449static struct rb_root hist;
450
451struct hist_entry {
452 struct rb_node rb_node;
453
454 struct thread *thread;
455 struct map *map;
456 struct dso *dso;
457 struct symbol *sym;
b25bcf2f 458 struct symbol *parent;
729ff5e2 459 __u64 ip;
e7fb08b1
PZ
460 char level;
461
729ff5e2 462 __u64 count;
e7fb08b1
PZ
463};
464
1aa16738
PZ
465/*
466 * configurable sorting bits
467 */
468
469struct sort_entry {
470 struct list_head list;
471
ca8cdeef
PZ
472 char *header;
473
1aa16738 474 int64_t (*cmp)(struct hist_entry *, struct hist_entry *);
8229289b 475 int64_t (*collapse)(struct hist_entry *, struct hist_entry *);
1aa16738
PZ
476 size_t (*print)(FILE *fp, struct hist_entry *);
477};
478
6e7d6fdc
PZ
479static int64_t cmp_null(void *l, void *r)
480{
481 if (!l && !r)
482 return 0;
483 else if (!l)
484 return -1;
485 else
486 return 1;
487}
488
8229289b
PZ
489/* --sort pid */
490
e7fb08b1 491static int64_t
1aa16738 492sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
e7fb08b1 493{
1aa16738
PZ
494 return right->thread->pid - left->thread->pid;
495}
496
497static size_t
498sort__thread_print(FILE *fp, struct hist_entry *self)
499{
71dd8945 500 return fprintf(fp, "%16s:%5d", self->thread->comm ?: "", self->thread->pid);
1aa16738 501}
e7fb08b1 502
1aa16738 503static struct sort_entry sort_thread = {
71dd8945 504 .header = " Command: Pid",
1aa16738
PZ
505 .cmp = sort__thread_cmp,
506 .print = sort__thread_print,
507};
508
8229289b
PZ
509/* --sort comm */
510
992444b1
PZ
511static int64_t
512sort__comm_cmp(struct hist_entry *left, struct hist_entry *right)
8229289b
PZ
513{
514 return right->thread->pid - left->thread->pid;
515}
516
517static int64_t
518sort__comm_collapse(struct hist_entry *left, struct hist_entry *right)
992444b1
PZ
519{
520 char *comm_l = left->thread->comm;
521 char *comm_r = right->thread->comm;
522
6e7d6fdc
PZ
523 if (!comm_l || !comm_r)
524 return cmp_null(comm_l, comm_r);
992444b1
PZ
525
526 return strcmp(comm_l, comm_r);
527}
528
529static size_t
530sort__comm_print(FILE *fp, struct hist_entry *self)
531{
71dd8945 532 return fprintf(fp, "%16s", self->thread->comm);
992444b1
PZ
533}
534
535static struct sort_entry sort_comm = {
8edd4286 536 .header = " Command",
8229289b
PZ
537 .cmp = sort__comm_cmp,
538 .collapse = sort__comm_collapse,
539 .print = sort__comm_print,
992444b1
PZ
540};
541
8229289b
PZ
542/* --sort dso */
543
55e5ec41
PZ
544static int64_t
545sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
546{
547 struct dso *dso_l = left->dso;
548 struct dso *dso_r = right->dso;
549
6e7d6fdc
PZ
550 if (!dso_l || !dso_r)
551 return cmp_null(dso_l, dso_r);
55e5ec41
PZ
552
553 return strcmp(dso_l->name, dso_r->name);
554}
555
556static size_t
557sort__dso_print(FILE *fp, struct hist_entry *self)
558{
0a520c63 559 if (self->dso)
71dd8945 560 return fprintf(fp, "%-25s", self->dso->name);
0a520c63 561
71dd8945 562 return fprintf(fp, "%016llx ", (__u64)self->ip);
55e5ec41
PZ
563}
564
565static struct sort_entry sort_dso = {
71dd8945 566 .header = "Shared Object ",
55e5ec41
PZ
567 .cmp = sort__dso_cmp,
568 .print = sort__dso_print,
569};
570
8229289b
PZ
571/* --sort symbol */
572
1aa16738
PZ
573static int64_t
574sort__sym_cmp(struct hist_entry *left, struct hist_entry *right)
575{
729ff5e2 576 __u64 ip_l, ip_r;
e7fb08b1
PZ
577
578 if (left->sym == right->sym)
579 return 0;
580
581 ip_l = left->sym ? left->sym->start : left->ip;
582 ip_r = right->sym ? right->sym->start : right->ip;
583
584 return (int64_t)(ip_r - ip_l);
585}
586
1aa16738
PZ
587static size_t
588sort__sym_print(FILE *fp, struct hist_entry *self)
589{
590 size_t ret = 0;
591
1aa16738 592 if (verbose)
71dd8945 593 ret += fprintf(fp, "%#018llx ", (__u64)self->ip);
0a520c63 594
8edd4286
IM
595 if (self->sym) {
596 ret += fprintf(fp, "[%c] %s",
597 self->dso == kernel_dso ? 'k' : '.', self->sym->name);
598 } else {
71dd8945 599 ret += fprintf(fp, "%#016llx", (__u64)self->ip);
8edd4286 600 }
1aa16738
PZ
601
602 return ret;
603}
604
605static struct sort_entry sort_sym = {
71dd8945 606 .header = "Symbol",
ca8cdeef
PZ
607 .cmp = sort__sym_cmp,
608 .print = sort__sym_print,
1aa16738
PZ
609};
610
b25bcf2f 611/* --sort parent */
6e7d6fdc
PZ
612
613static int64_t
b25bcf2f 614sort__parent_cmp(struct hist_entry *left, struct hist_entry *right)
6e7d6fdc 615{
b25bcf2f
IM
616 struct symbol *sym_l = left->parent;
617 struct symbol *sym_r = right->parent;
6e7d6fdc
PZ
618
619 if (!sym_l || !sym_r)
620 return cmp_null(sym_l, sym_r);
621
622 return strcmp(sym_l->name, sym_r->name);
623}
624
625static size_t
b25bcf2f 626sort__parent_print(FILE *fp, struct hist_entry *self)
6e7d6fdc
PZ
627{
628 size_t ret = 0;
629
b25bcf2f 630 ret += fprintf(fp, "%-20s", self->parent ? self->parent->name : "[other]");
6e7d6fdc
PZ
631
632 return ret;
633}
634
b25bcf2f
IM
635static struct sort_entry sort_parent = {
636 .header = "Parent symbol ",
637 .cmp = sort__parent_cmp,
638 .print = sort__parent_print,
6e7d6fdc
PZ
639};
640
8229289b 641static int sort__need_collapse = 0;
b25bcf2f 642static int sort__has_parent = 0;
8229289b 643
37f440cb 644struct sort_dimension {
8edd4286
IM
645 char *name;
646 struct sort_entry *entry;
647 int taken;
37f440cb
PZ
648};
649
650static struct sort_dimension sort_dimensions[] = {
651 { .name = "pid", .entry = &sort_thread, },
992444b1 652 { .name = "comm", .entry = &sort_comm, },
55e5ec41 653 { .name = "dso", .entry = &sort_dso, },
37f440cb 654 { .name = "symbol", .entry = &sort_sym, },
b25bcf2f 655 { .name = "parent", .entry = &sort_parent, },
37f440cb
PZ
656};
657
1aa16738
PZ
658static LIST_HEAD(hist_entry__sort_list);
659
37f440cb
PZ
660static int sort_dimension__add(char *tok)
661{
662 int i;
663
664 for (i = 0; i < ARRAY_SIZE(sort_dimensions); i++) {
665 struct sort_dimension *sd = &sort_dimensions[i];
666
667 if (sd->taken)
668 continue;
669
5352f35d 670 if (strncasecmp(tok, sd->name, strlen(tok)))
37f440cb
PZ
671 continue;
672
8229289b
PZ
673 if (sd->entry->collapse)
674 sort__need_collapse = 1;
675
b25bcf2f
IM
676 if (sd->entry == &sort_parent) {
677 int ret = regcomp(&parent_regex, parent_pattern, REG_EXTENDED);
6e7d6fdc
PZ
678 if (ret) {
679 char err[BUFSIZ];
680
b25bcf2f
IM
681 regerror(ret, &parent_regex, err, sizeof(err));
682 fprintf(stderr, "Invalid regex: %s\n%s",
683 parent_pattern, err);
6e7d6fdc
PZ
684 exit(-1);
685 }
b25bcf2f 686 sort__has_parent = 1;
6e7d6fdc
PZ
687 }
688
37f440cb
PZ
689 list_add_tail(&sd->entry->list, &hist_entry__sort_list);
690 sd->taken = 1;
5352f35d 691
37f440cb
PZ
692 return 0;
693 }
694
695 return -ESRCH;
696}
697
1aa16738
PZ
698static int64_t
699hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
700{
701 struct sort_entry *se;
702 int64_t cmp = 0;
703
704 list_for_each_entry(se, &hist_entry__sort_list, list) {
705 cmp = se->cmp(left, right);
706 if (cmp)
707 break;
708 }
709
710 return cmp;
711}
712
8229289b
PZ
713static int64_t
714hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
715{
716 struct sort_entry *se;
717 int64_t cmp = 0;
718
719 list_for_each_entry(se, &hist_entry__sort_list, list) {
720 int64_t (*f)(struct hist_entry *, struct hist_entry *);
721
722 f = se->collapse ?: se->cmp;
723
724 cmp = f(left, right);
725 if (cmp)
726 break;
727 }
728
729 return cmp;
730}
731
1aa16738 732static size_t
729ff5e2 733hist_entry__fprintf(FILE *fp, struct hist_entry *self, __u64 total_samples)
1aa16738
PZ
734{
735 struct sort_entry *se;
736 size_t ret;
737
738 if (total_samples) {
8fc0321f
IM
739 double percent = self->count * 100.0 / total_samples;
740 char *color = PERF_COLOR_NORMAL;
741
742 /*
aefcf37b
IM
743 * We color high-overhead entries in red, mid-overhead
744 * entries in green - and keep the low overhead places
745 * normal:
8fc0321f 746 */
aefcf37b 747 if (percent >= 5.0) {
8fc0321f 748 color = PERF_COLOR_RED;
aefcf37b
IM
749 } else {
750 if (percent >= 0.5)
751 color = PERF_COLOR_GREEN;
752 }
8fc0321f
IM
753
754 ret = color_fprintf(fp, color, " %6.2f%%",
1aa16738
PZ
755 (self->count * 100.0) / total_samples);
756 } else
729ff5e2 757 ret = fprintf(fp, "%12Ld ", self->count);
1aa16738 758
71dd8945
PZ
759 list_for_each_entry(se, &hist_entry__sort_list, list) {
760 fprintf(fp, " ");
1aa16738 761 ret += se->print(fp, self);
71dd8945 762 }
1aa16738
PZ
763
764 ret += fprintf(fp, "\n");
765
766 return ret;
767}
768
6e7d6fdc
PZ
769/*
770 *
771 */
772
773static struct symbol *
774resolve_symbol(struct thread *thread, struct map **mapp,
775 struct dso **dsop, __u64 *ipp)
776{
777 struct dso *dso = dsop ? *dsop : NULL;
778 struct map *map = mapp ? *mapp : NULL;
779 uint64_t ip = *ipp;
780
781 if (!thread)
782 return NULL;
783
784 if (dso)
785 goto got_dso;
786
787 if (map)
788 goto got_map;
789
790 map = thread__find_map(thread, ip);
791 if (map != NULL) {
792 if (mapp)
793 *mapp = map;
794got_map:
795 ip = map->map_ip(map, ip);
796 *ipp = ip;
797
798 dso = map->dso;
799 } else {
800 /*
801 * If this is outside of all known maps,
802 * and is a negative address, try to look it
803 * up in the kernel dso, as it might be a
804 * vsyscall (which executes in user-mode):
805 */
806 if ((long long)ip < 0)
807 dso = kernel_dso;
808 }
809 dprintf(" ...... dso: %s\n", dso ? dso->name : "<not found>");
810
811 if (dsop)
812 *dsop = dso;
813
814 if (!dso)
815 return NULL;
816got_dso:
817 return dso->find_symbol(dso, ip);
818}
819
820static struct symbol *call__match(struct symbol *sym)
821{
822 if (!sym)
823 return NULL;
824
b25bcf2f 825 if (sym->name && !regexec(&parent_regex, sym->name, 0, NULL, 0))
6e7d6fdc
PZ
826 return sym;
827
828 return NULL;
829}
830
1aa16738
PZ
831/*
832 * collect histogram counts
833 */
834
e7fb08b1
PZ
835static int
836hist_entry__add(struct thread *thread, struct map *map, struct dso *dso,
7522060c 837 struct symbol *sym, __u64 ip, struct perf_callchain_entry *chain,
b25bcf2f 838 char level, __u64 count)
8fa66bdc 839{
e7fb08b1
PZ
840 struct rb_node **p = &hist.rb_node;
841 struct rb_node *parent = NULL;
842 struct hist_entry *he;
843 struct hist_entry entry = {
844 .thread = thread,
845 .map = map,
846 .dso = dso,
847 .sym = sym,
848 .ip = ip,
849 .level = level,
ea1900e5 850 .count = count,
e7fb08b1
PZ
851 };
852 int cmp;
853
b25bcf2f 854 if (sort__has_parent && chain) {
6e7d6fdc
PZ
855 int i, nr = chain->hv;
856 struct symbol *sym;
857 struct dso *dso;
858 __u64 ip;
859
860 for (i = 0; i < chain->kernel; i++) {
7522060c 861 ip = chain->ip[nr + i];
6e7d6fdc
PZ
862 dso = kernel_dso;
863 sym = resolve_symbol(thread, NULL, &dso, &ip);
b25bcf2f
IM
864 entry.parent = call__match(sym);
865 if (entry.parent)
866 goto got_parent;
6e7d6fdc
PZ
867 }
868 nr += i;
869
870 for (i = 0; i < chain->user; i++) {
7522060c 871 ip = chain->ip[nr + i];
6e7d6fdc 872 sym = resolve_symbol(thread, NULL, NULL, &ip);
b25bcf2f
IM
873 entry.parent = call__match(sym);
874 if (entry.parent)
875 goto got_parent;
6e7d6fdc
PZ
876 }
877 nr += i;
878 }
b25bcf2f 879got_parent:
6e7d6fdc 880
e7fb08b1
PZ
881 while (*p != NULL) {
882 parent = *p;
883 he = rb_entry(parent, struct hist_entry, rb_node);
884
885 cmp = hist_entry__cmp(&entry, he);
886
887 if (!cmp) {
ea1900e5 888 he->count += count;
e7fb08b1
PZ
889 return 0;
890 }
891
892 if (cmp < 0)
893 p = &(*p)->rb_left;
894 else
895 p = &(*p)->rb_right;
ce7e4365 896 }
e7fb08b1
PZ
897
898 he = malloc(sizeof(*he));
899 if (!he)
900 return -ENOMEM;
901 *he = entry;
902 rb_link_node(&he->rb_node, parent, p);
903 rb_insert_color(&he->rb_node, &hist);
904
905 return 0;
8fa66bdc
ACM
906}
907
8229289b
PZ
908static void hist_entry__free(struct hist_entry *he)
909{
910 free(he);
911}
912
913/*
914 * collapse the histogram
915 */
916
917static struct rb_root collapse_hists;
918
919static void collapse__insert_entry(struct hist_entry *he)
920{
921 struct rb_node **p = &collapse_hists.rb_node;
922 struct rb_node *parent = NULL;
923 struct hist_entry *iter;
924 int64_t cmp;
925
926 while (*p != NULL) {
927 parent = *p;
928 iter = rb_entry(parent, struct hist_entry, rb_node);
929
930 cmp = hist_entry__collapse(iter, he);
931
932 if (!cmp) {
933 iter->count += he->count;
934 hist_entry__free(he);
935 return;
936 }
937
938 if (cmp < 0)
939 p = &(*p)->rb_left;
940 else
941 p = &(*p)->rb_right;
942 }
943
944 rb_link_node(&he->rb_node, parent, p);
945 rb_insert_color(&he->rb_node, &collapse_hists);
946}
947
948static void collapse__resort(void)
949{
950 struct rb_node *next;
951 struct hist_entry *n;
952
953 if (!sort__need_collapse)
954 return;
955
956 next = rb_first(&hist);
957 while (next) {
958 n = rb_entry(next, struct hist_entry, rb_node);
959 next = rb_next(&n->rb_node);
960
961 rb_erase(&n->rb_node, &hist);
962 collapse__insert_entry(n);
963 }
964}
965
e7fb08b1
PZ
966/*
967 * reverse the map, sort on count.
968 */
969
970static struct rb_root output_hists;
971
972static void output__insert_entry(struct hist_entry *he)
3a4b8cc7 973{
e7fb08b1 974 struct rb_node **p = &output_hists.rb_node;
3a4b8cc7 975 struct rb_node *parent = NULL;
e7fb08b1 976 struct hist_entry *iter;
3a4b8cc7
ACM
977
978 while (*p != NULL) {
979 parent = *p;
e7fb08b1 980 iter = rb_entry(parent, struct hist_entry, rb_node);
3a4b8cc7 981
e7fb08b1 982 if (he->count > iter->count)
3a4b8cc7
ACM
983 p = &(*p)->rb_left;
984 else
985 p = &(*p)->rb_right;
986 }
987
e7fb08b1
PZ
988 rb_link_node(&he->rb_node, parent, p);
989 rb_insert_color(&he->rb_node, &output_hists);
3a4b8cc7
ACM
990}
991
e7fb08b1 992static void output__resort(void)
3a4b8cc7 993{
8229289b 994 struct rb_node *next;
e7fb08b1 995 struct hist_entry *n;
a4c43bea 996 struct rb_root *tree = &hist;
3a4b8cc7 997
8229289b 998 if (sort__need_collapse)
a4c43bea
ACM
999 tree = &collapse_hists;
1000
1001 next = rb_first(tree);
8229289b 1002
e7fb08b1
PZ
1003 while (next) {
1004 n = rb_entry(next, struct hist_entry, rb_node);
1005 next = rb_next(&n->rb_node);
3a4b8cc7 1006
a4c43bea 1007 rb_erase(&n->rb_node, tree);
e7fb08b1 1008 output__insert_entry(n);
3a4b8cc7
ACM
1009 }
1010}
1011
729ff5e2 1012static size_t output__fprintf(FILE *fp, __u64 total_samples)
3a4b8cc7 1013{
e7fb08b1 1014 struct hist_entry *pos;
2d65537e 1015 struct sort_entry *se;
3a4b8cc7
ACM
1016 struct rb_node *nd;
1017 size_t ret = 0;
1018
71dd8945 1019 fprintf(fp, "\n");
05ca061e 1020 fprintf(fp, "#\n");
2debbc83 1021 fprintf(fp, "# (%Ld samples)\n", (__u64)total_samples);
ca8cdeef
PZ
1022 fprintf(fp, "#\n");
1023
1024 fprintf(fp, "# Overhead");
1025 list_for_each_entry(se, &hist_entry__sort_list, list)
71dd8945 1026 fprintf(fp, " %s", se->header);
ca8cdeef
PZ
1027 fprintf(fp, "\n");
1028
1029 fprintf(fp, "# ........");
2d65537e 1030 list_for_each_entry(se, &hist_entry__sort_list, list) {
ca8cdeef
PZ
1031 int i;
1032
4593bba8 1033 fprintf(fp, " ");
71dd8945 1034 for (i = 0; i < strlen(se->header); i++)
ca8cdeef 1035 fprintf(fp, ".");
2d65537e 1036 }
ca8cdeef
PZ
1037 fprintf(fp, "\n");
1038
1039 fprintf(fp, "#\n");
2d65537e 1040
e7fb08b1
PZ
1041 for (nd = rb_first(&output_hists); nd; nd = rb_next(nd)) {
1042 pos = rb_entry(nd, struct hist_entry, rb_node);
1043 ret += hist_entry__fprintf(fp, pos, total_samples);
3a4b8cc7
ACM
1044 }
1045
bd74137e
IM
1046 if (!strcmp(sort_order, default_sort_order)) {
1047 fprintf(fp, "#\n");
71dd8945 1048 fprintf(fp, "# (For more details, try: perf report --sort comm,dso,symbol)\n");
bd74137e
IM
1049 fprintf(fp, "#\n");
1050 }
71dd8945 1051 fprintf(fp, "\n");
bd74137e 1052
3a4b8cc7
ACM
1053 return ret;
1054}
1055
436224a6
PZ
1056static void register_idle_thread(void)
1057{
1058 struct thread *thread = threads__findnew(0);
1059
1060 if (thread == NULL ||
1061 thread__set_comm(thread, "[idle]")) {
1062 fprintf(stderr, "problem inserting idle task.\n");
1063 exit(-1);
1064 }
1065}
1066
62fc4453
PZ
1067static unsigned long total = 0,
1068 total_mmap = 0,
1069 total_comm = 0,
1070 total_fork = 0,
1071 total_unknown = 0;
e7fb08b1 1072
7522060c
IM
1073static int validate_chain(struct perf_callchain_entry *chain, event_t *event)
1074{
1075 unsigned int chain_size;
1076
1077 if (chain->nr > MAX_STACK_DEPTH)
1078 return -1;
1079 if (chain->hv > MAX_STACK_DEPTH)
1080 return -1;
1081 if (chain->kernel > MAX_STACK_DEPTH)
1082 return -1;
1083 if (chain->user > MAX_STACK_DEPTH)
1084 return -1;
1085 if (chain->hv + chain->kernel + chain->user != chain->nr)
1086 return -1;
1087
1088 chain_size = event->header.size;
1089 chain_size -= (unsigned long)&event->ip.__more_data - (unsigned long)event;
1090
1091 if (chain->nr*sizeof(__u64) > chain_size)
1092 return -1;
1093
1094 return 0;
1095}
1096
d80d338d 1097static int
75051724
IM
1098process_overflow_event(event_t *event, unsigned long offset, unsigned long head)
1099{
1100 char level;
1101 int show = 0;
1102 struct dso *dso = NULL;
1103 struct thread *thread = threads__findnew(event->ip.pid);
729ff5e2
IM
1104 __u64 ip = event->ip.ip;
1105 __u64 period = 1;
75051724 1106 struct map *map = NULL;
3efa1cc9 1107 void *more_data = event->ip.__more_data;
7522060c 1108 struct perf_callchain_entry *chain = NULL;
75051724 1109
3efa1cc9
IM
1110 if (event->header.type & PERF_SAMPLE_PERIOD) {
1111 period = *(__u64 *)more_data;
1112 more_data += sizeof(__u64);
1113 }
ea1900e5 1114
4502d77c 1115 dprintf("%p [%p]: PERF_EVENT (IP, %d): %d: %p period: %Ld\n",
75051724
IM
1116 (void *)(offset + head),
1117 (void *)(long)(event->header.size),
1118 event->header.misc,
1119 event->ip.pid,
4502d77c 1120 (void *)(long)ip,
ea1900e5 1121 (long long)period);
75051724 1122
3efa1cc9
IM
1123 if (event->header.type & PERF_SAMPLE_CALLCHAIN) {
1124 int i;
1125
1126 chain = (void *)more_data;
1127
7522060c
IM
1128 dprintf("... chain: u:%d, k:%d, nr:%d\n",
1129 chain->user,
1130 chain->kernel,
1131 chain->nr);
3efa1cc9 1132
7522060c
IM
1133 if (validate_chain(chain, event) < 0) {
1134 eprintf("call-chain problem with event, skipping it.\n");
1135 return 0;
1136 }
1137
1138 if (dump_trace) {
3efa1cc9 1139 for (i = 0; i < chain->nr; i++)
7522060c 1140 dprintf("..... %2d: %016Lx\n", i, chain->ip[i]);
3efa1cc9
IM
1141 }
1142 }
1143
75051724
IM
1144 dprintf(" ... thread: %s:%d\n", thread->comm, thread->pid);
1145
1146 if (thread == NULL) {
7522060c 1147 eprintf("problem processing %d event, skipping it.\n",
75051724
IM
1148 event->header.type);
1149 return -1;
1150 }
e7fb08b1 1151
75051724
IM
1152 if (event->header.misc & PERF_EVENT_MISC_KERNEL) {
1153 show = SHOW_KERNEL;
1154 level = 'k';
e7fb08b1 1155
75051724 1156 dso = kernel_dso;
ed966aac 1157
75051724 1158 dprintf(" ...... dso: %s\n", dso->name);
16f762a2 1159
75051724 1160 } else if (event->header.misc & PERF_EVENT_MISC_USER) {
16f762a2 1161
75051724
IM
1162 show = SHOW_USER;
1163 level = '.';
e7fb08b1 1164
75051724
IM
1165 } else {
1166 show = SHOW_HV;
1167 level = 'H';
1168 dprintf(" ...... dso: [hypervisor]\n");
1169 }
8fa66bdc 1170
75051724 1171 if (show & show_mask) {
6e7d6fdc 1172 struct symbol *sym = resolve_symbol(thread, &map, &dso, &ip);
8fa66bdc 1173
6e7d6fdc 1174 if (hist_entry__add(thread, map, dso, sym, ip, chain, level, period)) {
7522060c 1175 eprintf("problem incrementing symbol count, skipping event\n");
d80d338d 1176 return -1;
ce7e4365 1177 }
8fa66bdc 1178 }
ea1900e5 1179 total += period;
8fa66bdc 1180
75051724
IM
1181 return 0;
1182}
3502973d 1183
75051724
IM
1184static int
1185process_mmap_event(event_t *event, unsigned long offset, unsigned long head)
1186{
1187 struct thread *thread = threads__findnew(event->mmap.pid);
1188 struct map *map = map__new(&event->mmap);
1189
62fc4453 1190 dprintf("%p [%p]: PERF_EVENT_MMAP %d: [%p(%p) @ %p]: %s\n",
75051724
IM
1191 (void *)(offset + head),
1192 (void *)(long)(event->header.size),
62fc4453 1193 event->mmap.pid,
75051724
IM
1194 (void *)(long)event->mmap.start,
1195 (void *)(long)event->mmap.len,
1196 (void *)(long)event->mmap.pgoff,
1197 event->mmap.filename);
1198
1199 if (thread == NULL || map == NULL) {
1200 dprintf("problem processing PERF_EVENT_MMAP, skipping event.\n");
df97992c 1201 return 0;
75051724
IM
1202 }
1203
1204 thread__insert_map(thread, map);
1205 total_mmap++;
1206
1207 return 0;
1208}
1209
1210static int
1211process_comm_event(event_t *event, unsigned long offset, unsigned long head)
1212{
1213 struct thread *thread = threads__findnew(event->comm.pid);
1214
1215 dprintf("%p [%p]: PERF_EVENT_COMM: %s:%d\n",
1216 (void *)(offset + head),
1217 (void *)(long)(event->header.size),
1218 event->comm.comm, event->comm.pid);
1219
1220 if (thread == NULL ||
1221 thread__set_comm(thread, event->comm.comm)) {
1222 dprintf("problem processing PERF_EVENT_COMM, skipping event.\n");
1223 return -1;
8fa66bdc 1224 }
75051724
IM
1225 total_comm++;
1226
1227 return 0;
1228}
1229
62fc4453
PZ
1230static int
1231process_fork_event(event_t *event, unsigned long offset, unsigned long head)
1232{
1233 struct thread *thread = threads__findnew(event->fork.pid);
1234 struct thread *parent = threads__findnew(event->fork.ppid);
1235
1236 dprintf("%p [%p]: PERF_EVENT_FORK: %d:%d\n",
1237 (void *)(offset + head),
1238 (void *)(long)(event->header.size),
1239 event->fork.pid, event->fork.ppid);
1240
1241 if (!thread || !parent || thread__fork(thread, parent)) {
1242 dprintf("problem processing PERF_EVENT_FORK, skipping event.\n");
1243 return -1;
1244 }
1245 total_fork++;
1246
1247 return 0;
1248}
1249
b2fef076
IM
1250static int
1251process_period_event(event_t *event, unsigned long offset, unsigned long head)
1252{
1253 dprintf("%p [%p]: PERF_EVENT_PERIOD: time:%Ld, id:%Ld: period:%Ld\n",
1254 (void *)(offset + head),
1255 (void *)(long)(event->header.size),
1256 event->period.time,
1257 event->period.id,
1258 event->period.sample_period);
1259
1260 return 0;
1261}
1262
8465b050
IM
1263static void trace_event(event_t *event)
1264{
1265 unsigned char *raw_event = (void *)event;
3efa1cc9 1266 char *color = PERF_COLOR_BLUE;
8465b050
IM
1267 int i, j;
1268
1269 if (!dump_trace)
1270 return;
1271
3efa1cc9
IM
1272 dprintf(".");
1273 cdprintf("\n. ... raw event: size %d bytes\n", event->header.size);
8465b050
IM
1274
1275 for (i = 0; i < event->header.size; i++) {
3efa1cc9
IM
1276 if ((i & 15) == 0) {
1277 dprintf(".");
1278 cdprintf(" %04x: ", i);
1279 }
8465b050 1280
3efa1cc9 1281 cdprintf(" %02x", raw_event[i]);
8465b050
IM
1282
1283 if (((i & 15) == 15) || i == event->header.size-1) {
3efa1cc9 1284 cdprintf(" ");
8465b050 1285 for (j = 0; j < 15-(i & 15); j++)
3efa1cc9 1286 cdprintf(" ");
8465b050 1287 for (j = 0; j < (i & 15); j++) {
a73c7d84 1288 if (isprint(raw_event[i-15+j]))
3efa1cc9 1289 cdprintf("%c", raw_event[i-15+j]);
8465b050 1290 else
3efa1cc9 1291 cdprintf(".");
8465b050 1292 }
3efa1cc9 1293 cdprintf("\n");
8465b050
IM
1294 }
1295 }
1296 dprintf(".\n");
1297}
1298
75051724
IM
1299static int
1300process_event(event_t *event, unsigned long offset, unsigned long head)
1301{
8465b050
IM
1302 trace_event(event);
1303
75051724
IM
1304 if (event->header.misc & PERF_EVENT_MISC_OVERFLOW)
1305 return process_overflow_event(event, offset, head);
1306
1307 switch (event->header.type) {
1308 case PERF_EVENT_MMAP:
1309 return process_mmap_event(event, offset, head);
1310
1311 case PERF_EVENT_COMM:
1312 return process_comm_event(event, offset, head);
1313
62fc4453
PZ
1314 case PERF_EVENT_FORK:
1315 return process_fork_event(event, offset, head);
1316
b2fef076
IM
1317 case PERF_EVENT_PERIOD:
1318 return process_period_event(event, offset, head);
d11444df
IM
1319 /*
1320 * We dont process them right now but they are fine:
1321 */
62fc4453 1322
d11444df
IM
1323 case PERF_EVENT_THROTTLE:
1324 case PERF_EVENT_UNTHROTTLE:
1325 return 0;
1326
d80d338d
IM
1327 default:
1328 return -1;
1329 }
1330
1331 return 0;
1332}
1333
1334static int __cmd_report(void)
1335{
75051724 1336 int ret, rc = EXIT_FAILURE;
d80d338d
IM
1337 unsigned long offset = 0;
1338 unsigned long head = 0;
1339 struct stat stat;
d80d338d 1340 event_t *event;
d80d338d 1341 uint32_t size;
75051724 1342 char *buf;
d80d338d
IM
1343
1344 register_idle_thread();
1345
1346 input = open(input_name, O_RDONLY);
1347 if (input < 0) {
a14832ff
IM
1348 fprintf(stderr, " failed to open file: %s", input_name);
1349 if (!strcmp(input_name, "perf.data"))
1350 fprintf(stderr, " (try 'perf record' first)");
1351 fprintf(stderr, "\n");
d80d338d
IM
1352 exit(-1);
1353 }
1354
1355 ret = fstat(input, &stat);
1356 if (ret < 0) {
1357 perror("failed to stat file");
1358 exit(-1);
1359 }
1360
1361 if (!stat.st_size) {
1362 fprintf(stderr, "zero-sized file, nothing to do!\n");
1363 exit(0);
1364 }
1365
1366 if (load_kernel() < 0) {
1367 perror("failed to load kernel symbols");
1368 return EXIT_FAILURE;
1369 }
1370
1371 if (!full_paths) {
1372 if (getcwd(__cwd, sizeof(__cwd)) == NULL) {
1373 perror("failed to get the current directory");
1374 return EXIT_FAILURE;
1375 }
1376 cwdlen = strlen(cwd);
1377 } else {
1378 cwd = NULL;
1379 cwdlen = 0;
1380 }
1381remap:
1382 buf = (char *)mmap(NULL, page_size * mmap_window, PROT_READ,
1383 MAP_SHARED, input, offset);
1384 if (buf == MAP_FAILED) {
1385 perror("failed to mmap file");
1386 exit(-1);
1387 }
1388
1389more:
1390 event = (event_t *)(buf + head);
1391
1392 size = event->header.size;
1393 if (!size)
1394 size = 8;
1395
1396 if (head + event->header.size >= page_size * mmap_window) {
1397 unsigned long shift = page_size * (head / page_size);
1398 int ret;
1399
1400 ret = munmap(buf, page_size * mmap_window);
1401 assert(ret == 0);
1402
1403 offset += shift;
1404 head -= shift;
1405 goto remap;
1406 }
1407
1408 size = event->header.size;
1409
8465b050 1410 dprintf("\n%p [%p]: event: %d\n",
b2fef076
IM
1411 (void *)(offset + head),
1412 (void *)(long)event->header.size,
1413 event->header.type);
1414
d80d338d
IM
1415 if (!size || process_event(event, offset, head) < 0) {
1416
3502973d
IM
1417 dprintf("%p [%p]: skipping unknown header type: %d\n",
1418 (void *)(offset + head),
1419 (void *)(long)(event->header.size),
1420 event->header.type);
b7a16eac 1421
3e706114 1422 total_unknown++;
6142f9ec
PZ
1423
1424 /*
1425 * assume we lost track of the stream, check alignment, and
1426 * increment a single u64 in the hope to catch on again 'soon'.
1427 */
1428
1429 if (unlikely(head & 7))
1430 head &= ~7ULL;
1431
1432 size = 8;
97b07b69 1433 }
8fa66bdc 1434
6142f9ec 1435 head += size;
f49515b1 1436
8fa66bdc
ACM
1437 if (offset + head < stat.st_size)
1438 goto more;
1439
1440 rc = EXIT_SUCCESS;
8fa66bdc 1441 close(input);
97b07b69 1442
3502973d
IM
1443 dprintf(" IP events: %10ld\n", total);
1444 dprintf(" mmap events: %10ld\n", total_mmap);
1445 dprintf(" comm events: %10ld\n", total_comm);
62fc4453 1446 dprintf(" fork events: %10ld\n", total_fork);
3502973d 1447 dprintf(" unknown events: %10ld\n", total_unknown);
97b07b69 1448
3502973d 1449 if (dump_trace)
97b07b69 1450 return 0;
97b07b69 1451
9ac99545
ACM
1452 if (verbose >= 3)
1453 threads__fprintf(stdout);
1454
e7fb08b1 1455 if (verbose >= 2)
16f762a2 1456 dsos__fprintf(stdout);
16f762a2 1457
8229289b 1458 collapse__resort();
e7fb08b1
PZ
1459 output__resort();
1460 output__fprintf(stdout, total);
8fa66bdc 1461
8fa66bdc
ACM
1462 return rc;
1463}
1464
53cb8bc2
IM
1465static const char * const report_usage[] = {
1466 "perf report [<options>] <command>",
1467 NULL
1468};
1469
1470static const struct option options[] = {
1471 OPT_STRING('i', "input", &input_name, "file",
1472 "input file name"),
815e777f
ACM
1473 OPT_BOOLEAN('v', "verbose", &verbose,
1474 "be more verbose (show symbol address, etc)"),
97b07b69
IM
1475 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1476 "dump raw trace in ASCII"),
450aaa2b 1477 OPT_STRING('k', "vmlinux", &vmlinux, "file", "vmlinux pathname"),
63299f05 1478 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
b25bcf2f 1479 "sort by key(s): pid, comm, dso, symbol, parent"),
b78c07d4
ACM
1480 OPT_BOOLEAN('P', "full-paths", &full_paths,
1481 "Don't shorten the pathnames taking into account the cwd"),
b25bcf2f
IM
1482 OPT_STRING('p', "parent", &parent_pattern, "regex",
1483 "regex filter to identify parent, see: '--sort parent'"),
53cb8bc2
IM
1484 OPT_END()
1485};
1486
5352f35d
IM
1487static void setup_sorting(void)
1488{
1489 char *tmp, *tok, *str = strdup(sort_order);
1490
1491 for (tok = strtok_r(str, ", ", &tmp);
1492 tok; tok = strtok_r(NULL, ", ", &tmp)) {
1493 if (sort_dimension__add(tok) < 0) {
1494 error("Unknown --sort key: `%s'", tok);
1495 usage_with_options(report_usage, options);
1496 }
1497 }
1498
1499 free(str);
1500}
1501
53cb8bc2
IM
1502int cmd_report(int argc, const char **argv, const char *prefix)
1503{
a2928c42 1504 symbol__init();
53cb8bc2
IM
1505
1506 page_size = getpagesize();
1507
edc52dea 1508 argc = parse_options(argc, argv, options, report_usage, 0);
53cb8bc2 1509
1aa16738
PZ
1510 setup_sorting();
1511
edc52dea
IM
1512 /*
1513 * Any (unrecognized) arguments left?
1514 */
1515 if (argc)
1516 usage_with_options(report_usage, options);
1517
a930d2c0
IM
1518 setup_pager();
1519
53cb8bc2
IM
1520 return __cmd_report();
1521}
This page took 0.584121 seconds and 5 git commands to generate.