perf report: Add consistent spacing rules
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / Documentation / perf_counter / builtin-report.c
blobe930b4e02335d50a03dc8135064c02a7bbe55c4c
1 /*
2 * builtin-report.c
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 */
8 #include "builtin.h"
10 #include "util/util.h"
12 #include "util/list.h"
13 #include "util/cache.h"
14 #include "util/rbtree.h"
15 #include "util/symbol.h"
16 #include "util/string.h"
18 #include "perf.h"
20 #include "util/parse-options.h"
21 #include "util/parse-events.h"
23 #define SHOW_KERNEL 1
24 #define SHOW_USER 2
25 #define SHOW_HV 4
27 static char const *input_name = "perf.data";
28 static char *vmlinux = NULL;
30 static char default_sort_order[] = "comm,dso";
31 static char *sort_order = default_sort_order;
33 static int input;
34 static int show_mask = SHOW_KERNEL | SHOW_USER | SHOW_HV;
36 static int dump_trace = 0;
37 #define dprintf(x...) do { if (dump_trace) printf(x); } while (0)
39 static int verbose;
40 static int full_paths;
42 static unsigned long page_size;
43 static unsigned long mmap_window = 32;
45 const char *perf_event_names[] = {
46 [PERF_EVENT_MMAP] = " PERF_EVENT_MMAP",
47 [PERF_EVENT_MUNMAP] = " PERF_EVENT_MUNMAP",
48 [PERF_EVENT_COMM] = " PERF_EVENT_COMM",
51 struct ip_event {
52 struct perf_event_header header;
53 __u64 ip;
54 __u32 pid, tid;
57 struct mmap_event {
58 struct perf_event_header header;
59 __u32 pid, tid;
60 __u64 start;
61 __u64 len;
62 __u64 pgoff;
63 char filename[PATH_MAX];
66 struct comm_event {
67 struct perf_event_header header;
68 __u32 pid, tid;
69 char comm[16];
72 typedef union event_union {
73 struct perf_event_header header;
74 struct ip_event ip;
75 struct mmap_event mmap;
76 struct comm_event comm;
77 } event_t;
79 static LIST_HEAD(dsos);
80 static struct dso *kernel_dso;
82 static void dsos__add(struct dso *dso)
84 list_add_tail(&dso->node, &dsos);
87 static struct dso *dsos__find(const char *name)
89 struct dso *pos;
91 list_for_each_entry(pos, &dsos, node)
92 if (strcmp(pos->name, name) == 0)
93 return pos;
94 return NULL;
97 static struct dso *dsos__findnew(const char *name)
99 struct dso *dso = dsos__find(name);
100 int nr;
102 if (dso)
103 return dso;
105 dso = dso__new(name, 0);
106 if (!dso)
107 goto out_delete_dso;
109 nr = dso__load(dso, NULL, verbose);
110 if (nr < 0) {
111 if (verbose)
112 fprintf(stderr, "Failed to open: %s\n", name);
113 goto out_delete_dso;
115 if (!nr && verbose) {
116 fprintf(stderr,
117 "No symbols found in: %s, maybe install a debug package?\n",
118 name);
121 dsos__add(dso);
123 return dso;
125 out_delete_dso:
126 dso__delete(dso);
127 return NULL;
130 static void dsos__fprintf(FILE *fp)
132 struct dso *pos;
134 list_for_each_entry(pos, &dsos, node)
135 dso__fprintf(pos, fp);
138 static int load_kernel(void)
140 int err;
142 kernel_dso = dso__new("[kernel]", 0);
143 if (!kernel_dso)
144 return -1;
146 err = dso__load_kernel(kernel_dso, vmlinux, NULL, verbose);
147 if (err) {
148 dso__delete(kernel_dso);
149 kernel_dso = NULL;
150 } else
151 dsos__add(kernel_dso);
153 return err;
156 static char __cwd[PATH_MAX];
157 static char *cwd = __cwd;
158 static int cwdlen;
160 static int strcommon(const char *pathname)
162 int n = 0;
164 while (pathname[n] == cwd[n] && n < cwdlen)
165 ++n;
167 return n;
170 struct map {
171 struct list_head node;
172 uint64_t start;
173 uint64_t end;
174 uint64_t pgoff;
175 struct dso *dso;
178 static struct map *map__new(struct mmap_event *event)
180 struct map *self = malloc(sizeof(*self));
182 if (self != NULL) {
183 const char *filename = event->filename;
184 char newfilename[PATH_MAX];
186 if (cwd) {
187 int n = strcommon(filename);
189 if (n == cwdlen) {
190 snprintf(newfilename, sizeof(newfilename),
191 ".%s", filename + n);
192 filename = newfilename;
196 self->start = event->start;
197 self->end = event->start + event->len;
198 self->pgoff = event->pgoff;
200 self->dso = dsos__findnew(filename);
201 if (self->dso == NULL)
202 goto out_delete;
204 return self;
205 out_delete:
206 free(self);
207 return NULL;
210 struct thread;
212 struct thread {
213 struct rb_node rb_node;
214 struct list_head maps;
215 pid_t pid;
216 char *comm;
219 static struct thread *thread__new(pid_t pid)
221 struct thread *self = malloc(sizeof(*self));
223 if (self != NULL) {
224 self->pid = pid;
225 self->comm = malloc(32);
226 if (self->comm)
227 snprintf(self->comm, 32, ":%d", self->pid);
228 INIT_LIST_HEAD(&self->maps);
231 return self;
234 static int thread__set_comm(struct thread *self, const char *comm)
236 if (self->comm)
237 free(self->comm);
238 self->comm = strdup(comm);
239 return self->comm ? 0 : -ENOMEM;
242 static struct rb_root threads;
243 static struct thread *last_match;
245 static struct thread *threads__findnew(pid_t pid)
247 struct rb_node **p = &threads.rb_node;
248 struct rb_node *parent = NULL;
249 struct thread *th;
252 * Font-end cache - PID lookups come in blocks,
253 * so most of the time we dont have to look up
254 * the full rbtree:
256 if (last_match && last_match->pid == pid)
257 return last_match;
259 while (*p != NULL) {
260 parent = *p;
261 th = rb_entry(parent, struct thread, rb_node);
263 if (th->pid == pid) {
264 last_match = th;
265 return th;
268 if (pid < th->pid)
269 p = &(*p)->rb_left;
270 else
271 p = &(*p)->rb_right;
274 th = thread__new(pid);
275 if (th != NULL) {
276 rb_link_node(&th->rb_node, parent, p);
277 rb_insert_color(&th->rb_node, &threads);
278 last_match = th;
281 return th;
284 static void thread__insert_map(struct thread *self, struct map *map)
286 list_add_tail(&map->node, &self->maps);
289 static struct map *thread__find_map(struct thread *self, uint64_t ip)
291 struct map *pos;
293 if (self == NULL)
294 return NULL;
296 list_for_each_entry(pos, &self->maps, node)
297 if (ip >= pos->start && ip <= pos->end)
298 return pos;
300 return NULL;
304 * histogram, sorted on item, collects counts
307 static struct rb_root hist;
309 struct hist_entry {
310 struct rb_node rb_node;
312 struct thread *thread;
313 struct map *map;
314 struct dso *dso;
315 struct symbol *sym;
316 uint64_t ip;
317 char level;
319 uint32_t count;
323 * configurable sorting bits
326 struct sort_entry {
327 struct list_head list;
329 char *header;
331 int64_t (*cmp)(struct hist_entry *, struct hist_entry *);
332 int64_t (*collapse)(struct hist_entry *, struct hist_entry *);
333 size_t (*print)(FILE *fp, struct hist_entry *);
336 /* --sort pid */
338 static int64_t
339 sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
341 return right->thread->pid - left->thread->pid;
344 static size_t
345 sort__thread_print(FILE *fp, struct hist_entry *self)
347 return fprintf(fp, "%16s:%5d", self->thread->comm ?: "", self->thread->pid);
350 static struct sort_entry sort_thread = {
351 .header = " Command: Pid",
352 .cmp = sort__thread_cmp,
353 .print = sort__thread_print,
356 /* --sort comm */
358 static int64_t
359 sort__comm_cmp(struct hist_entry *left, struct hist_entry *right)
361 return right->thread->pid - left->thread->pid;
364 static int64_t
365 sort__comm_collapse(struct hist_entry *left, struct hist_entry *right)
367 char *comm_l = left->thread->comm;
368 char *comm_r = right->thread->comm;
370 if (!comm_l || !comm_r) {
371 if (!comm_l && !comm_r)
372 return 0;
373 else if (!comm_l)
374 return -1;
375 else
376 return 1;
379 return strcmp(comm_l, comm_r);
382 static size_t
383 sort__comm_print(FILE *fp, struct hist_entry *self)
385 return fprintf(fp, "%16s", self->thread->comm);
388 static struct sort_entry sort_comm = {
389 .header = " Command",
390 .cmp = sort__comm_cmp,
391 .collapse = sort__comm_collapse,
392 .print = sort__comm_print,
395 /* --sort dso */
397 static int64_t
398 sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
400 struct dso *dso_l = left->dso;
401 struct dso *dso_r = right->dso;
403 if (!dso_l || !dso_r) {
404 if (!dso_l && !dso_r)
405 return 0;
406 else if (!dso_l)
407 return -1;
408 else
409 return 1;
412 return strcmp(dso_l->name, dso_r->name);
415 static size_t
416 sort__dso_print(FILE *fp, struct hist_entry *self)
418 if (self->dso)
419 return fprintf(fp, "%-25s", self->dso->name);
421 return fprintf(fp, "%016llx ", (__u64)self->ip);
424 static struct sort_entry sort_dso = {
425 .header = "Shared Object ",
426 .cmp = sort__dso_cmp,
427 .print = sort__dso_print,
430 /* --sort symbol */
432 static int64_t
433 sort__sym_cmp(struct hist_entry *left, struct hist_entry *right)
435 uint64_t ip_l, ip_r;
437 if (left->sym == right->sym)
438 return 0;
440 ip_l = left->sym ? left->sym->start : left->ip;
441 ip_r = right->sym ? right->sym->start : right->ip;
443 return (int64_t)(ip_r - ip_l);
446 static size_t
447 sort__sym_print(FILE *fp, struct hist_entry *self)
449 size_t ret = 0;
451 if (verbose)
452 ret += fprintf(fp, "%#018llx ", (__u64)self->ip);
454 if (self->sym)
455 ret += fprintf(fp, "%s", self->sym->name);
456 else
457 ret += fprintf(fp, "%#016llx", (__u64)self->ip);
459 return ret;
462 static struct sort_entry sort_sym = {
463 .header = "Symbol",
464 .cmp = sort__sym_cmp,
465 .print = sort__sym_print,
468 static int sort__need_collapse = 0;
470 struct sort_dimension {
471 char *name;
472 struct sort_entry *entry;
473 int taken;
476 static struct sort_dimension sort_dimensions[] = {
477 { .name = "pid", .entry = &sort_thread, },
478 { .name = "comm", .entry = &sort_comm, },
479 { .name = "dso", .entry = &sort_dso, },
480 { .name = "symbol", .entry = &sort_sym, },
483 static LIST_HEAD(hist_entry__sort_list);
485 static int sort_dimension__add(char *tok)
487 int i;
489 for (i = 0; i < ARRAY_SIZE(sort_dimensions); i++) {
490 struct sort_dimension *sd = &sort_dimensions[i];
492 if (sd->taken)
493 continue;
495 if (strncasecmp(tok, sd->name, strlen(tok)))
496 continue;
498 if (sd->entry->collapse)
499 sort__need_collapse = 1;
501 list_add_tail(&sd->entry->list, &hist_entry__sort_list);
502 sd->taken = 1;
504 return 0;
507 return -ESRCH;
510 static int64_t
511 hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
513 struct sort_entry *se;
514 int64_t cmp = 0;
516 list_for_each_entry(se, &hist_entry__sort_list, list) {
517 cmp = se->cmp(left, right);
518 if (cmp)
519 break;
522 return cmp;
525 static int64_t
526 hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
528 struct sort_entry *se;
529 int64_t cmp = 0;
531 list_for_each_entry(se, &hist_entry__sort_list, list) {
532 int64_t (*f)(struct hist_entry *, struct hist_entry *);
534 f = se->collapse ?: se->cmp;
536 cmp = f(left, right);
537 if (cmp)
538 break;
541 return cmp;
544 static size_t
545 hist_entry__fprintf(FILE *fp, struct hist_entry *self, uint64_t total_samples)
547 struct sort_entry *se;
548 size_t ret;
550 if (total_samples) {
551 ret = fprintf(fp, " %6.2f%%",
552 (self->count * 100.0) / total_samples);
553 } else
554 ret = fprintf(fp, "%12d ", self->count);
556 list_for_each_entry(se, &hist_entry__sort_list, list) {
557 fprintf(fp, " ");
558 ret += se->print(fp, self);
561 ret += fprintf(fp, "\n");
563 return ret;
567 * collect histogram counts
570 static int
571 hist_entry__add(struct thread *thread, struct map *map, struct dso *dso,
572 struct symbol *sym, uint64_t ip, char level)
574 struct rb_node **p = &hist.rb_node;
575 struct rb_node *parent = NULL;
576 struct hist_entry *he;
577 struct hist_entry entry = {
578 .thread = thread,
579 .map = map,
580 .dso = dso,
581 .sym = sym,
582 .ip = ip,
583 .level = level,
584 .count = 1,
586 int cmp;
588 while (*p != NULL) {
589 parent = *p;
590 he = rb_entry(parent, struct hist_entry, rb_node);
592 cmp = hist_entry__cmp(&entry, he);
594 if (!cmp) {
595 he->count++;
596 return 0;
599 if (cmp < 0)
600 p = &(*p)->rb_left;
601 else
602 p = &(*p)->rb_right;
605 he = malloc(sizeof(*he));
606 if (!he)
607 return -ENOMEM;
608 *he = entry;
609 rb_link_node(&he->rb_node, parent, p);
610 rb_insert_color(&he->rb_node, &hist);
612 return 0;
615 static void hist_entry__free(struct hist_entry *he)
617 free(he);
621 * collapse the histogram
624 static struct rb_root collapse_hists;
626 static void collapse__insert_entry(struct hist_entry *he)
628 struct rb_node **p = &collapse_hists.rb_node;
629 struct rb_node *parent = NULL;
630 struct hist_entry *iter;
631 int64_t cmp;
633 while (*p != NULL) {
634 parent = *p;
635 iter = rb_entry(parent, struct hist_entry, rb_node);
637 cmp = hist_entry__collapse(iter, he);
639 if (!cmp) {
640 iter->count += he->count;
641 hist_entry__free(he);
642 return;
645 if (cmp < 0)
646 p = &(*p)->rb_left;
647 else
648 p = &(*p)->rb_right;
651 rb_link_node(&he->rb_node, parent, p);
652 rb_insert_color(&he->rb_node, &collapse_hists);
655 static void collapse__resort(void)
657 struct rb_node *next;
658 struct hist_entry *n;
660 if (!sort__need_collapse)
661 return;
663 next = rb_first(&hist);
664 while (next) {
665 n = rb_entry(next, struct hist_entry, rb_node);
666 next = rb_next(&n->rb_node);
668 rb_erase(&n->rb_node, &hist);
669 collapse__insert_entry(n);
674 * reverse the map, sort on count.
677 static struct rb_root output_hists;
679 static void output__insert_entry(struct hist_entry *he)
681 struct rb_node **p = &output_hists.rb_node;
682 struct rb_node *parent = NULL;
683 struct hist_entry *iter;
685 while (*p != NULL) {
686 parent = *p;
687 iter = rb_entry(parent, struct hist_entry, rb_node);
689 if (he->count > iter->count)
690 p = &(*p)->rb_left;
691 else
692 p = &(*p)->rb_right;
695 rb_link_node(&he->rb_node, parent, p);
696 rb_insert_color(&he->rb_node, &output_hists);
699 static void output__resort(void)
701 struct rb_node *next;
702 struct hist_entry *n;
703 struct rb_root *tree = &hist;
705 if (sort__need_collapse)
706 tree = &collapse_hists;
708 next = rb_first(tree);
710 while (next) {
711 n = rb_entry(next, struct hist_entry, rb_node);
712 next = rb_next(&n->rb_node);
714 rb_erase(&n->rb_node, tree);
715 output__insert_entry(n);
719 static size_t output__fprintf(FILE *fp, uint64_t total_samples)
721 struct hist_entry *pos;
722 struct sort_entry *se;
723 struct rb_node *nd;
724 size_t ret = 0;
726 fprintf(fp, "\n");
727 fprintf(fp, "#\n");
728 fprintf(fp, "# (%Ld profiler events)\n", (__u64)total_samples);
729 fprintf(fp, "#\n");
731 fprintf(fp, "# Overhead");
732 list_for_each_entry(se, &hist_entry__sort_list, list)
733 fprintf(fp, " %s", se->header);
734 fprintf(fp, "\n");
736 fprintf(fp, "# ........");
737 list_for_each_entry(se, &hist_entry__sort_list, list) {
738 int i;
740 fprintf(fp, " ");
741 for (i = 0; i < strlen(se->header); i++)
742 fprintf(fp, ".");
744 fprintf(fp, "\n");
746 fprintf(fp, "#\n");
748 for (nd = rb_first(&output_hists); nd; nd = rb_next(nd)) {
749 pos = rb_entry(nd, struct hist_entry, rb_node);
750 ret += hist_entry__fprintf(fp, pos, total_samples);
753 if (!strcmp(sort_order, default_sort_order)) {
754 fprintf(fp, "#\n");
755 fprintf(fp, "# (For more details, try: perf report --sort comm,dso,symbol)\n");
756 fprintf(fp, "#\n");
758 fprintf(fp, "\n");
760 return ret;
763 static void register_idle_thread(void)
765 struct thread *thread = threads__findnew(0);
767 if (thread == NULL ||
768 thread__set_comm(thread, "[idle]")) {
769 fprintf(stderr, "problem inserting idle task.\n");
770 exit(-1);
774 static unsigned long total = 0, total_mmap = 0, total_comm = 0, total_unknown = 0;
776 static int
777 process_overflow_event(event_t *event, unsigned long offset, unsigned long head)
779 char level;
780 int show = 0;
781 struct dso *dso = NULL;
782 struct thread *thread = threads__findnew(event->ip.pid);
783 uint64_t ip = event->ip.ip;
784 struct map *map = NULL;
786 dprintf("%p [%p]: PERF_EVENT (IP, %d): %d: %p\n",
787 (void *)(offset + head),
788 (void *)(long)(event->header.size),
789 event->header.misc,
790 event->ip.pid,
791 (void *)(long)ip);
793 dprintf(" ... thread: %s:%d\n", thread->comm, thread->pid);
795 if (thread == NULL) {
796 fprintf(stderr, "problem processing %d event, skipping it.\n",
797 event->header.type);
798 return -1;
801 if (event->header.misc & PERF_EVENT_MISC_KERNEL) {
802 show = SHOW_KERNEL;
803 level = 'k';
805 dso = kernel_dso;
807 dprintf(" ...... dso: %s\n", dso->name);
809 } else if (event->header.misc & PERF_EVENT_MISC_USER) {
811 show = SHOW_USER;
812 level = '.';
814 map = thread__find_map(thread, ip);
815 if (map != NULL) {
816 dso = map->dso;
817 ip -= map->start + map->pgoff;
818 } else {
820 * If this is outside of all known maps,
821 * and is a negative address, try to look it
822 * up in the kernel dso, as it might be a
823 * vsyscall (which executes in user-mode):
825 if ((long long)ip < 0)
826 dso = kernel_dso;
828 dprintf(" ...... dso: %s\n", dso ? dso->name : "<not found>");
830 } else {
831 show = SHOW_HV;
832 level = 'H';
833 dprintf(" ...... dso: [hypervisor]\n");
836 if (show & show_mask) {
837 struct symbol *sym = dso__find_symbol(dso, ip);
839 if (hist_entry__add(thread, map, dso, sym, ip, level)) {
840 fprintf(stderr,
841 "problem incrementing symbol count, skipping event\n");
842 return -1;
845 total++;
847 return 0;
850 static int
851 process_mmap_event(event_t *event, unsigned long offset, unsigned long head)
853 struct thread *thread = threads__findnew(event->mmap.pid);
854 struct map *map = map__new(&event->mmap);
856 dprintf("%p [%p]: PERF_EVENT_MMAP: [%p(%p) @ %p]: %s\n",
857 (void *)(offset + head),
858 (void *)(long)(event->header.size),
859 (void *)(long)event->mmap.start,
860 (void *)(long)event->mmap.len,
861 (void *)(long)event->mmap.pgoff,
862 event->mmap.filename);
864 if (thread == NULL || map == NULL) {
865 dprintf("problem processing PERF_EVENT_MMAP, skipping event.\n");
866 return 0;
869 thread__insert_map(thread, map);
870 total_mmap++;
872 return 0;
875 static int
876 process_comm_event(event_t *event, unsigned long offset, unsigned long head)
878 struct thread *thread = threads__findnew(event->comm.pid);
880 dprintf("%p [%p]: PERF_EVENT_COMM: %s:%d\n",
881 (void *)(offset + head),
882 (void *)(long)(event->header.size),
883 event->comm.comm, event->comm.pid);
885 if (thread == NULL ||
886 thread__set_comm(thread, event->comm.comm)) {
887 dprintf("problem processing PERF_EVENT_COMM, skipping event.\n");
888 return -1;
890 total_comm++;
892 return 0;
895 static int
896 process_event(event_t *event, unsigned long offset, unsigned long head)
898 if (event->header.misc & PERF_EVENT_MISC_OVERFLOW)
899 return process_overflow_event(event, offset, head);
901 switch (event->header.type) {
902 case PERF_EVENT_MMAP:
903 return process_mmap_event(event, offset, head);
905 case PERF_EVENT_COMM:
906 return process_comm_event(event, offset, head);
909 * We dont process them right now but they are fine:
911 case PERF_EVENT_MUNMAP:
912 case PERF_EVENT_PERIOD:
913 case PERF_EVENT_THROTTLE:
914 case PERF_EVENT_UNTHROTTLE:
915 return 0;
917 default:
918 return -1;
921 return 0;
924 static int __cmd_report(void)
926 int ret, rc = EXIT_FAILURE;
927 unsigned long offset = 0;
928 unsigned long head = 0;
929 struct stat stat;
930 event_t *event;
931 uint32_t size;
932 char *buf;
934 register_idle_thread();
936 input = open(input_name, O_RDONLY);
937 if (input < 0) {
938 perror("failed to open file");
939 exit(-1);
942 ret = fstat(input, &stat);
943 if (ret < 0) {
944 perror("failed to stat file");
945 exit(-1);
948 if (!stat.st_size) {
949 fprintf(stderr, "zero-sized file, nothing to do!\n");
950 exit(0);
953 if (load_kernel() < 0) {
954 perror("failed to load kernel symbols");
955 return EXIT_FAILURE;
958 if (!full_paths) {
959 if (getcwd(__cwd, sizeof(__cwd)) == NULL) {
960 perror("failed to get the current directory");
961 return EXIT_FAILURE;
963 cwdlen = strlen(cwd);
964 } else {
965 cwd = NULL;
966 cwdlen = 0;
968 remap:
969 buf = (char *)mmap(NULL, page_size * mmap_window, PROT_READ,
970 MAP_SHARED, input, offset);
971 if (buf == MAP_FAILED) {
972 perror("failed to mmap file");
973 exit(-1);
976 more:
977 event = (event_t *)(buf + head);
979 size = event->header.size;
980 if (!size)
981 size = 8;
983 if (head + event->header.size >= page_size * mmap_window) {
984 unsigned long shift = page_size * (head / page_size);
985 int ret;
987 ret = munmap(buf, page_size * mmap_window);
988 assert(ret == 0);
990 offset += shift;
991 head -= shift;
992 goto remap;
995 size = event->header.size;
997 if (!size || process_event(event, offset, head) < 0) {
999 dprintf("%p [%p]: skipping unknown header type: %d\n",
1000 (void *)(offset + head),
1001 (void *)(long)(event->header.size),
1002 event->header.type);
1004 total_unknown++;
1007 * assume we lost track of the stream, check alignment, and
1008 * increment a single u64 in the hope to catch on again 'soon'.
1011 if (unlikely(head & 7))
1012 head &= ~7ULL;
1014 size = 8;
1017 head += size;
1019 if (offset + head < stat.st_size)
1020 goto more;
1022 rc = EXIT_SUCCESS;
1023 close(input);
1025 dprintf(" IP events: %10ld\n", total);
1026 dprintf(" mmap events: %10ld\n", total_mmap);
1027 dprintf(" comm events: %10ld\n", total_comm);
1028 dprintf(" unknown events: %10ld\n", total_unknown);
1030 if (dump_trace)
1031 return 0;
1033 if (verbose >= 2)
1034 dsos__fprintf(stdout);
1036 collapse__resort();
1037 output__resort();
1038 output__fprintf(stdout, total);
1040 return rc;
1043 static const char * const report_usage[] = {
1044 "perf report [<options>] <command>",
1045 NULL
1048 static const struct option options[] = {
1049 OPT_STRING('i', "input", &input_name, "file",
1050 "input file name"),
1051 OPT_BOOLEAN('v', "verbose", &verbose,
1052 "be more verbose (show symbol address, etc)"),
1053 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1054 "dump raw trace in ASCII"),
1055 OPT_STRING('k', "vmlinux", &vmlinux, "file", "vmlinux pathname"),
1056 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
1057 "sort by key(s): pid, comm, dso, symbol. Default: pid,symbol"),
1058 OPT_BOOLEAN('P', "full-paths", &full_paths,
1059 "Don't shorten the pathnames taking into account the cwd"),
1060 OPT_END()
1063 static void setup_sorting(void)
1065 char *tmp, *tok, *str = strdup(sort_order);
1067 for (tok = strtok_r(str, ", ", &tmp);
1068 tok; tok = strtok_r(NULL, ", ", &tmp)) {
1069 if (sort_dimension__add(tok) < 0) {
1070 error("Unknown --sort key: `%s'", tok);
1071 usage_with_options(report_usage, options);
1075 free(str);
1078 int cmd_report(int argc, const char **argv, const char *prefix)
1080 symbol__init();
1082 page_size = getpagesize();
1084 parse_options(argc, argv, options, report_usage, 0);
1086 setup_sorting();
1088 setup_pager();
1090 return __cmd_report();