blob: a55f15d7651d5a03423b31a34bc925322ed7ccc3 [file] [log] [blame]
Ingo Molnar53cb8bc2009-05-26 09:17:18 +02001#include "util/util.h"
2
3#include <libelf.h>
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -03004#include <gelf.h>
5#include <elf.h>
Arnaldo Carvalho de Melo03f63162009-05-26 19:21:55 -03006#include <ctype.h>
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -03007
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -03008#include "util/list.h"
9#include "util/rbtree.h"
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030010
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020011#include "perf.h"
12
13#include "util/parse-options.h"
14#include "util/parse-events.h"
15
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030016#define SHOW_KERNEL 1
17#define SHOW_USER 2
18#define SHOW_HV 4
19
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020020static char const *input_name = "output.perf";
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030021static int input;
22static int show_mask = SHOW_KERNEL | SHOW_USER | SHOW_HV;
23
Ingo Molnar97b07b62009-05-26 18:48:58 +020024static int dump_trace = 0;
25
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030026static unsigned long page_size;
27static unsigned long mmap_window = 32;
28
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020029const char *perf_event_names[] = {
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030030 [PERF_EVENT_MMAP] = " PERF_EVENT_MMAP",
31 [PERF_EVENT_MUNMAP] = " PERF_EVENT_MUNMAP",
32 [PERF_EVENT_COMM] = " PERF_EVENT_COMM",
33};
34
35struct ip_event {
36 struct perf_event_header header;
37 __u64 ip;
38 __u32 pid, tid;
39};
40struct mmap_event {
41 struct perf_event_header header;
42 __u32 pid, tid;
43 __u64 start;
44 __u64 len;
45 __u64 pgoff;
46 char filename[PATH_MAX];
47};
48struct comm_event {
49 struct perf_event_header header;
50 __u32 pid,tid;
51 char comm[16];
52};
53
54typedef union event_union {
55 struct perf_event_header header;
56 struct ip_event ip;
57 struct mmap_event mmap;
58 struct comm_event comm;
59} event_t;
60
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030061struct symbol {
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -030062 struct rb_node rb_node;
63 uint64_t start;
64 uint64_t end;
65 char name[0];
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030066};
67
68static struct symbol *symbol__new(uint64_t start, uint64_t len, const char *name)
69{
70 struct symbol *self = malloc(sizeof(*self) + strlen(name) + 1);
71
72 if (self != NULL) {
73 self->start = start;
74 self->end = start + len;
75 strcpy(self->name, name);
76 }
77
78 return self;
79}
80
81static void symbol__delete(struct symbol *self)
82{
83 free(self);
84}
85
86static size_t symbol__fprintf(struct symbol *self, FILE *fp)
87{
88 return fprintf(fp, " %lx-%lx %s\n",
89 self->start, self->end, self->name);
90}
91
92struct dso {
93 struct list_head node;
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -030094 struct rb_root syms;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030095 char name[0];
96};
97
98static struct dso *dso__new(const char *name)
99{
100 struct dso *self = malloc(sizeof(*self) + strlen(name) + 1);
101
102 if (self != NULL) {
103 strcpy(self->name, name);
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300104 self->syms = RB_ROOT;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300105 }
106
107 return self;
108}
109
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300110static void dso__delete_symbols(struct dso *self)
111{
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300112 struct symbol *pos;
113 struct rb_node *next = rb_first(&self->syms);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300114
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300115 while (next) {
116 pos = rb_entry(next, struct symbol, rb_node);
117 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300118 symbol__delete(pos);
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300119 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300120}
121
122static void dso__delete(struct dso *self)
123{
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300124 dso__delete_symbols(self);
125 free(self);
126}
127
128static void dso__insert_symbol(struct dso *self, struct symbol *sym)
129{
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300130 struct rb_node **p = &self->syms.rb_node;
131 struct rb_node *parent = NULL;
132 const uint64_t ip = sym->start;
133 struct symbol *s;
134
135 while (*p != NULL) {
136 parent = *p;
137 s = rb_entry(parent, struct symbol, rb_node);
138 if (ip < s->start)
139 p = &(*p)->rb_left;
140 else
141 p = &(*p)->rb_right;
142 }
143 rb_link_node(&sym->rb_node, parent, p);
144 rb_insert_color(&sym->rb_node, &self->syms);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300145}
146
147static struct symbol *dso__find_symbol(struct dso *self, uint64_t ip)
148{
149 if (self == NULL)
150 return NULL;
151
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300152 struct rb_node *n = self->syms.rb_node;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300153
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300154 while (n) {
155 struct symbol *s = rb_entry(n, struct symbol, rb_node);
156
157 if (ip < s->start)
158 n = n->rb_left;
159 else if (ip > s->end)
160 n = n->rb_right;
161 else
162 return s;
163 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300164
165 return NULL;
166}
167
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300168/**
169 * elf_symtab__for_each_symbol - iterate thru all the symbols
170 *
171 * @self: struct elf_symtab instance to iterate
172 * @index: uint32_t index
173 * @sym: GElf_Sym iterator
174 */
175#define elf_symtab__for_each_symbol(syms, nr_syms, index, sym) \
176 for (index = 0, gelf_getsym(syms, index, &sym);\
177 index < nr_syms; \
178 index++, gelf_getsym(syms, index, &sym))
179
180static inline uint8_t elf_sym__type(const GElf_Sym *sym)
181{
182 return GELF_ST_TYPE(sym->st_info);
183}
184
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200185static inline int elf_sym__is_function(const GElf_Sym *sym)
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300186{
187 return elf_sym__type(sym) == STT_FUNC &&
188 sym->st_name != 0 &&
189 sym->st_shndx != SHN_UNDEF;
190}
191
192static inline const char *elf_sym__name(const GElf_Sym *sym,
193 const Elf_Data *symstrs)
194{
195 return symstrs->d_buf + sym->st_name;
196}
197
198static Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
199 GElf_Shdr *shp, const char *name,
200 size_t *index)
201{
202 Elf_Scn *sec = NULL;
203 size_t cnt = 1;
204
205 while ((sec = elf_nextscn(elf, sec)) != NULL) {
206 char *str;
207
208 gelf_getshdr(sec, shp);
209 str = elf_strptr(elf, ep->e_shstrndx, shp->sh_name);
210 if (!strcmp(name, str)) {
211 if (index)
212 *index = cnt;
213 break;
214 }
215 ++cnt;
216 }
217
218 return sec;
219}
220
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300221static int dso__load(struct dso *self)
222{
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300223 int fd = open(self->name, O_RDONLY), err = -1;
224
225 if (fd == -1)
226 return -1;
227
228 Elf *elf = elf_begin(fd, ELF_C_READ_MMAP, NULL);
229 if (elf == NULL) {
230 fprintf(stderr, "%s: cannot read %s ELF file.\n",
231 __func__, self->name);
232 goto out_close;
233 }
234
235 GElf_Ehdr ehdr;
236 if (gelf_getehdr(elf, &ehdr) == NULL) {
237 fprintf(stderr, "%s: cannot get elf header.\n", __func__);
238 goto out_elf_end;
239 }
240
241 GElf_Shdr shdr;
242 Elf_Scn *sec = elf_section_by_name(elf, &ehdr, &shdr, ".symtab", NULL);
243 if (sec == NULL)
244 sec = elf_section_by_name(elf, &ehdr, &shdr, ".dynsym", NULL);
245
246 if (sec == NULL)
247 goto out_elf_end;
248
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300249 Elf_Data *syms = elf_getdata(sec, NULL);
250 if (syms == NULL)
251 goto out_elf_end;
252
253 sec = elf_getscn(elf, shdr.sh_link);
254 if (sec == NULL)
255 goto out_elf_end;
256
257 Elf_Data *symstrs = elf_getdata(sec, NULL);
258 if (symstrs == NULL)
259 goto out_elf_end;
260
261 const uint32_t nr_syms = shdr.sh_size / shdr.sh_entsize;
262
263 GElf_Sym sym;
264 uint32_t index;
265 elf_symtab__for_each_symbol(syms, nr_syms, index, sym) {
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200266 struct symbol *f;
267
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300268 if (!elf_sym__is_function(&sym))
269 continue;
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200270
271 sec = elf_getscn(elf, sym.st_shndx);
272 if (!sec)
273 goto out_elf_end;
274
275 gelf_getshdr(sec, &shdr);
276 sym.st_value -= shdr.sh_addr - shdr.sh_offset;
277
278 f = symbol__new(sym.st_value, sym.st_size,
279 elf_sym__name(&sym, symstrs));
280 if (!f)
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300281 goto out_elf_end;
282
283 dso__insert_symbol(self, f);
284 }
285
286 err = 0;
287out_elf_end:
288 elf_end(elf);
289out_close:
290 close(fd);
291 return err;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300292}
293
294static size_t dso__fprintf(struct dso *self, FILE *fp)
295{
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300296 size_t ret = fprintf(fp, "dso: %s\n", self->name);
297
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300298 struct rb_node *nd;
299 for (nd = rb_first(&self->syms); nd; nd = rb_next(nd)) {
300 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300301 ret += symbol__fprintf(pos, fp);
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300302 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300303
304 return ret;
305}
306
307static LIST_HEAD(dsos);
308static struct dso *kernel_dso;
309
310static void dsos__add(struct dso *dso)
311{
312 list_add_tail(&dso->node, &dsos);
313}
314
315static struct dso *dsos__find(const char *name)
316{
317 struct dso *pos;
318
319 list_for_each_entry(pos, &dsos, node)
320 if (strcmp(pos->name, name) == 0)
321 return pos;
322 return NULL;
323}
324
325static struct dso *dsos__findnew(const char *name)
326{
327 struct dso *dso = dsos__find(name);
328
329 if (dso == NULL) {
330 dso = dso__new(name);
331 if (dso != NULL && dso__load(dso) < 0)
332 goto out_delete_dso;
333
334 dsos__add(dso);
335 }
336
337 return dso;
338
339out_delete_dso:
340 dso__delete(dso);
341 return NULL;
342}
343
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200344void dsos__fprintf(FILE *fp)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300345{
346 struct dso *pos;
347
348 list_for_each_entry(pos, &dsos, node)
349 dso__fprintf(pos, fp);
350}
351
Arnaldo Carvalho de Melod8d16562009-05-26 19:20:57 -0300352static int hex(char ch)
353{
354 if ((ch >= '0') && (ch <= '9'))
355 return ch - '0';
356 if ((ch >= 'a') && (ch <= 'f'))
357 return ch - 'a' + 10;
358 if ((ch >= 'A') && (ch <= 'F'))
359 return ch - 'A' + 10;
360 return -1;
361}
362
363/*
364 * While we find nice hex chars, build a long_val.
365 * Return number of chars processed.
366 */
367int hex2long(char *ptr, unsigned long *long_val)
368{
369 const char *p = ptr;
370 *long_val = 0;
371
372 while (*p) {
373 const int hex_val = hex(*p);
374
375 if (hex_val < 0)
376 break;
377
378 *long_val = (*long_val << 4) | hex_val;
379 p++;
380 }
381
382 return p - ptr;
383}
384
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300385static int load_kallsyms(void)
386{
387 kernel_dso = dso__new("[kernel]");
388 if (kernel_dso == NULL)
389 return -1;
390
391 FILE *file = fopen("/proc/kallsyms", "r");
392
393 if (file == NULL)
394 goto out_delete_dso;
395
396 char *line = NULL;
397 size_t n;
398
399 while (!feof(file)) {
Arnaldo Carvalho de Melod8d16562009-05-26 19:20:57 -0300400 unsigned long start;
401 int line_len = getline(&line, &n, file);
402 if (line_len < 0)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300403 break;
404
405 if (!line)
406 goto out_delete_dso;
407
Arnaldo Carvalho de Melod8d16562009-05-26 19:20:57 -0300408 line[--line_len] = '\0'; /* \n */
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300409
Arnaldo Carvalho de Melod8d16562009-05-26 19:20:57 -0300410 int len = hex2long(line, &start);
411
Arnaldo Carvalho de Melo03f63162009-05-26 19:21:55 -0300412 len++;
413 if (len + 2 >= line_len)
414 continue;
415
416 char symbol_type = line[len];
417 /*
418 * We're interested only in code ('T'ext)
419 */
420 if (toupper(symbol_type) != 'T')
Arnaldo Carvalho de Melod8d16562009-05-26 19:20:57 -0300421 continue;
422 /*
423 * Well fix up the end later, when we have all sorted.
424 */
Arnaldo Carvalho de Melo03f63162009-05-26 19:21:55 -0300425 struct symbol *sym = symbol__new(start, 0xdead, line + len + 2);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300426
Arnaldo Carvalho de Melod8d16562009-05-26 19:20:57 -0300427 if (sym == NULL)
428 goto out_delete_dso;
429
430 dso__insert_symbol(kernel_dso, sym);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300431 }
432
Arnaldo Carvalho de Meloabd54f62009-05-26 12:21:34 -0300433 /*
434 * Now that we have all sorted out, just set the ->end of all
435 * symbols
436 */
437 struct rb_node *nd, *prevnd = rb_first(&kernel_dso->syms);
438
439 if (prevnd == NULL)
440 goto out_delete_line;
441
442 for (nd = rb_next(prevnd); nd; nd = rb_next(nd)) {
443 struct symbol *prev = rb_entry(prevnd, struct symbol, rb_node),
444 *curr = rb_entry(nd, struct symbol, rb_node);
445
446 prev->end = curr->start - 1;
447 prevnd = nd;
448 }
449
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300450 dsos__add(kernel_dso);
451 free(line);
452 fclose(file);
453 return 0;
454
Arnaldo Carvalho de Melo59d81022009-05-26 11:14:27 -0300455out_delete_line:
456 free(line);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300457out_delete_dso:
458 dso__delete(kernel_dso);
459 return -1;
460}
461
462struct map {
463 struct list_head node;
464 uint64_t start;
465 uint64_t end;
466 uint64_t pgoff;
467 struct dso *dso;
468};
469
470static struct map *map__new(struct mmap_event *event)
471{
472 struct map *self = malloc(sizeof(*self));
473
474 if (self != NULL) {
475 self->start = event->start;
476 self->end = event->start + event->len;
477 self->pgoff = event->pgoff;
478
479 self->dso = dsos__findnew(event->filename);
480 if (self->dso == NULL)
481 goto out_delete;
482 }
483 return self;
484out_delete:
485 free(self);
486 return NULL;
487}
488
489static size_t map__fprintf(struct map *self, FILE *fp)
490{
491 return fprintf(fp, " %lx-%lx %lx %s\n",
492 self->start, self->end, self->pgoff, self->dso->name);
493}
494
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300495struct thread;
496
497static const char *thread__name(struct thread *self, char *bf, size_t size);
498
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300499struct symhist {
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300500 struct rb_node rb_node;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300501 struct dso *dso;
502 struct symbol *sym;
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300503 struct thread *thread;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300504 uint64_t ip;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300505 uint32_t count;
506 char level;
507};
508
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300509static struct symhist *symhist__new(struct symbol *sym, uint64_t ip,
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300510 struct thread *thread, struct dso *dso,
511 char level)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300512{
513 struct symhist *self = malloc(sizeof(*self));
514
515 if (self != NULL) {
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300516 self->sym = sym;
517 self->thread = thread;
518 self->ip = ip;
519 self->dso = dso;
520 self->level = level;
521 self->count = 1;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300522 }
523
524 return self;
525}
526
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200527void symhist__delete(struct symhist *self)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300528{
529 free(self);
530}
531
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300532static void symhist__inc(struct symhist *self)
533{
534 ++self->count;
535}
536
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300537static size_t
538symhist__fprintf(struct symhist *self, uint64_t total_samples, FILE *fp)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300539{
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300540 char bf[32];
541 size_t ret;
542
543 if (total_samples)
544 ret = fprintf(fp, "%5.2f", (self->count * 100.0) / total_samples);
545 else
546 ret = fprintf(fp, "%12d", self->count);
547
548 ret += fprintf(fp, "%14s [%c] %#018llx ",
549 thread__name(self->thread, bf, sizeof(bf)),
550 self->level, (unsigned long long)self->ip);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300551
552 if (self->level != '.')
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300553 ret += fprintf(fp, "%s\n",
554 self->sym ? self->sym->name : "<unknown>");
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300555 else
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300556 ret += fprintf(fp, "%s: %s\n",
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200557 self->dso ? self->dso->name : "<unknown>",
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300558 self->sym ? self->sym->name : "<unknown>");
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300559 return ret;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300560}
561
562struct thread {
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300563 struct rb_node rb_node;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300564 struct list_head maps;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300565 struct rb_root symhists;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300566 pid_t pid;
567 char *comm;
568};
569
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300570static const char *thread__name(struct thread *self, char *bf, size_t size)
571{
572 if (self->comm)
573 return self->comm;
574
575 snprintf(bf, sizeof(bf), ":%u", self->pid);
576 return bf;
577}
578
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300579static struct thread *thread__new(pid_t pid)
580{
581 struct thread *self = malloc(sizeof(*self));
582
583 if (self != NULL) {
584 self->pid = pid;
585 self->comm = NULL;
586 INIT_LIST_HEAD(&self->maps);
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300587 self->symhists = RB_ROOT;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300588 }
589
590 return self;
591}
592
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300593static int thread__symbol_incnew(struct thread *self, struct symbol *sym,
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300594 uint64_t ip, struct dso *dso, char level)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300595{
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300596 struct rb_node **p = &self->symhists.rb_node;
597 struct rb_node *parent = NULL;
598 struct symhist *sh;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300599
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300600 while (*p != NULL) {
601 parent = *p;
602 sh = rb_entry(parent, struct symhist, rb_node);
603
604 if (sh->sym == sym || ip == sh->ip) {
605 symhist__inc(sh);
606 return 0;
607 }
608
609 /* Handle unresolved symbols too */
610 const uint64_t start = !sh->sym ? sh->ip : sh->sym->start;
611
612 if (ip < start)
613 p = &(*p)->rb_left;
614 else
615 p = &(*p)->rb_right;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300616 }
617
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300618 sh = symhist__new(sym, ip, self, dso, level);
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300619 if (sh == NULL)
620 return -ENOMEM;
621 rb_link_node(&sh->rb_node, parent, p);
622 rb_insert_color(&sh->rb_node, &self->symhists);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300623 return 0;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300624}
625
626static int thread__set_comm(struct thread *self, const char *comm)
627{
628 self->comm = strdup(comm);
629 return self->comm ? 0 : -ENOMEM;
630}
631
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200632size_t thread__maps_fprintf(struct thread *self, FILE *fp)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300633{
634 struct map *pos;
635 size_t ret = 0;
636
637 list_for_each_entry(pos, &self->maps, node)
638 ret += map__fprintf(pos, fp);
639
640 return ret;
641}
642
643static size_t thread__fprintf(struct thread *self, FILE *fp)
644{
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300645 int ret = fprintf(fp, "thread: %d %s\n", self->pid, self->comm);
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300646 struct rb_node *nd;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300647
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300648 for (nd = rb_first(&self->symhists); nd; nd = rb_next(nd)) {
649 struct symhist *pos = rb_entry(nd, struct symhist, rb_node);
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300650 ret += symhist__fprintf(pos, 0, fp);
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300651 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300652
653 return ret;
654}
655
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300656static struct rb_root threads = RB_ROOT;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300657
658static struct thread *threads__findnew(pid_t pid)
659{
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300660 struct rb_node **p = &threads.rb_node;
661 struct rb_node *parent = NULL;
662 struct thread *th;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300663
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300664 while (*p != NULL) {
665 parent = *p;
666 th = rb_entry(parent, struct thread, rb_node);
667
668 if (th->pid == pid)
669 return th;
670
671 if (pid < th->pid)
672 p = &(*p)->rb_left;
673 else
674 p = &(*p)->rb_right;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300675 }
676
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300677 th = thread__new(pid);
678 if (th != NULL) {
679 rb_link_node(&th->rb_node, parent, p);
680 rb_insert_color(&th->rb_node, &threads);
681 }
682 return th;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300683}
684
685static void thread__insert_map(struct thread *self, struct map *map)
686{
687 list_add_tail(&map->node, &self->maps);
688}
689
690static struct map *thread__find_map(struct thread *self, uint64_t ip)
691{
692 if (self == NULL)
693 return NULL;
694
695 struct map *pos;
696
697 list_for_each_entry(pos, &self->maps, node)
698 if (ip >= pos->start && ip <= pos->end)
699 return pos;
700
701 return NULL;
702}
703
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300704void threads__fprintf(FILE *fp)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300705{
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300706 struct rb_node *nd;
707 for (nd = rb_first(&threads); nd; nd = rb_next(nd)) {
708 struct thread *pos = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300709 thread__fprintf(pos, fp);
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300710 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300711}
712
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300713static struct rb_root global_symhists = RB_ROOT;
714
715static void threads__insert_symhist(struct symhist *sh)
716{
717 struct rb_node **p = &global_symhists.rb_node;
718 struct rb_node *parent = NULL;
719 struct symhist *iter;
720
721 while (*p != NULL) {
722 parent = *p;
723 iter = rb_entry(parent, struct symhist, rb_node);
724
725 /* Reverse order */
726 if (sh->count > iter->count)
727 p = &(*p)->rb_left;
728 else
729 p = &(*p)->rb_right;
730 }
731
732 rb_link_node(&sh->rb_node, parent, p);
733 rb_insert_color(&sh->rb_node, &global_symhists);
734}
735
736static void threads__sort_symhists(void)
737{
738 struct rb_node *nd;
739
740 for (nd = rb_first(&threads); nd; nd = rb_next(nd)) {
741 struct thread *thread = rb_entry(nd, struct thread, rb_node);
742 struct rb_node *next = rb_first(&thread->symhists);
743
744 while (next) {
745 struct symhist *n = rb_entry(next, struct symhist,
746 rb_node);
747 next = rb_next(&n->rb_node);
748 rb_erase(&n->rb_node, &thread->symhists);
749 threads__insert_symhist(n);
750 }
751
752 }
753}
754
755static size_t threads__symhists_fprintf(uint64_t total_samples, FILE *fp)
756{
757 struct rb_node *nd;
758 size_t ret = 0;
759
760 for (nd = rb_first(&global_symhists); nd; nd = rb_next(nd)) {
761 struct symhist *pos = rb_entry(nd, struct symhist, rb_node);
762 ret += symhist__fprintf(pos, total_samples, fp);
763 }
764
765 return ret;
766}
767
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200768static int __cmd_report(void)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300769{
770 unsigned long offset = 0;
771 unsigned long head = 0;
772 struct stat stat;
773 char *buf;
774 event_t *event;
775 int ret, rc = EXIT_FAILURE;
Peter Zijlstra6142f9e2009-05-26 20:51:47 +0200776 uint32_t size;
Ingo Molnarf49515b2009-05-26 19:03:36 +0200777 unsigned long total = 0, total_mmap = 0, total_comm = 0, total_unknown = 0;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300778
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300779 input = open(input_name, O_RDONLY);
780 if (input < 0) {
781 perror("failed to open file");
782 exit(-1);
783 }
784
785 ret = fstat(input, &stat);
786 if (ret < 0) {
787 perror("failed to stat file");
788 exit(-1);
789 }
790
791 if (!stat.st_size) {
792 fprintf(stderr, "zero-sized file, nothing to do!\n");
793 exit(0);
794 }
795
796 if (load_kallsyms() < 0) {
797 perror("failed to open kallsyms");
798 return EXIT_FAILURE;
799 }
800
801remap:
802 buf = (char *)mmap(NULL, page_size * mmap_window, PROT_READ,
803 MAP_SHARED, input, offset);
804 if (buf == MAP_FAILED) {
805 perror("failed to mmap file");
806 exit(-1);
807 }
808
809more:
810 event = (event_t *)(buf + head);
811
Peter Zijlstra6142f9e2009-05-26 20:51:47 +0200812 size = event->header.size;
813 if (!size)
814 size = 8;
815
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300816 if (head + event->header.size >= page_size * mmap_window) {
817 unsigned long shift = page_size * (head / page_size);
818 int ret;
819
820 ret = munmap(buf, page_size * mmap_window);
821 assert(ret == 0);
822
823 offset += shift;
824 head -= shift;
825 goto remap;
826 }
827
Peter Zijlstra6142f9e2009-05-26 20:51:47 +0200828 size = event->header.size;
829 if (!size)
830 goto broken_event;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300831
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300832 if (event->header.misc & PERF_EVENT_MISC_OVERFLOW) {
833 char level;
834 int show = 0;
835 struct dso *dso = NULL;
836 struct thread *thread = threads__findnew(event->ip.pid);
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200837 uint64_t ip = event->ip.ip;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300838
Ingo Molnar97b07b62009-05-26 18:48:58 +0200839 if (dump_trace) {
Ingo Molnarf49515b2009-05-26 19:03:36 +0200840 fprintf(stderr, "%p [%p]: PERF_EVENT (IP, %d): %d: %p\n",
841 (void *)(offset + head),
842 (void *)(long)(event->header.size),
Ingo Molnar97b07b62009-05-26 18:48:58 +0200843 event->header.misc,
844 event->ip.pid,
845 (void *)event->ip.ip);
846 }
847
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300848 if (thread == NULL) {
849 fprintf(stderr, "problem processing %d event, bailing out\n",
850 event->header.type);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300851 goto done;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300852 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300853
854 if (event->header.misc & PERF_EVENT_MISC_KERNEL) {
855 show = SHOW_KERNEL;
856 level = 'k';
857 dso = kernel_dso;
858 } else if (event->header.misc & PERF_EVENT_MISC_USER) {
859 show = SHOW_USER;
860 level = '.';
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200861 struct map *map = thread__find_map(thread, ip);
862 if (map != NULL) {
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300863 dso = map->dso;
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200864 ip -= map->start + map->pgoff;
865 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300866 } else {
867 show = SHOW_HV;
868 level = 'H';
869 }
870
871 if (show & show_mask) {
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200872 struct symbol *sym = dso__find_symbol(dso, ip);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300873
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200874 if (thread__symbol_incnew(thread, sym, ip, dso, level)) {
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300875 fprintf(stderr, "problem incrementing symbol count, bailing out\n");
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300876 goto done;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300877 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300878 }
879 total++;
880 } else switch (event->header.type) {
881 case PERF_EVENT_MMAP: {
882 struct thread *thread = threads__findnew(event->mmap.pid);
883 struct map *map = map__new(&event->mmap);
884
Ingo Molnar97b07b62009-05-26 18:48:58 +0200885 if (dump_trace) {
Ingo Molnarf49515b2009-05-26 19:03:36 +0200886 fprintf(stderr, "%p [%p]: PERF_EVENT_MMAP: [%p(%p) @ %p]: %s\n",
887 (void *)(offset + head),
888 (void *)(long)(event->header.size),
Ingo Molnar97b07b62009-05-26 18:48:58 +0200889 (void *)event->mmap.start,
890 (void *)event->mmap.len,
891 (void *)event->mmap.pgoff,
892 event->mmap.filename);
893 }
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300894 if (thread == NULL || map == NULL) {
895 fprintf(stderr, "problem processing PERF_EVENT_MMAP, bailing out\n");
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300896 goto done;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300897 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300898 thread__insert_map(thread, map);
Ingo Molnar97b07b62009-05-26 18:48:58 +0200899 total_mmap++;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300900 break;
901 }
902 case PERF_EVENT_COMM: {
903 struct thread *thread = threads__findnew(event->comm.pid);
904
Ingo Molnar97b07b62009-05-26 18:48:58 +0200905 if (dump_trace) {
Ingo Molnarf49515b2009-05-26 19:03:36 +0200906 fprintf(stderr, "%p [%p]: PERF_EVENT_COMM: %s:%d\n",
907 (void *)(offset + head),
908 (void *)(long)(event->header.size),
Ingo Molnar97b07b62009-05-26 18:48:58 +0200909 event->comm.comm, event->comm.pid);
910 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300911 if (thread == NULL ||
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300912 thread__set_comm(thread, event->comm.comm)) {
913 fprintf(stderr, "problem processing PERF_EVENT_COMM, bailing out\n");
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300914 goto done;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300915 }
Ingo Molnar97b07b62009-05-26 18:48:58 +0200916 total_comm++;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300917 break;
918 }
Ingo Molnar97b07b62009-05-26 18:48:58 +0200919 default: {
Peter Zijlstra6142f9e2009-05-26 20:51:47 +0200920broken_event:
Ingo Molnarf49515b2009-05-26 19:03:36 +0200921 fprintf(stderr, "%p [%p]: skipping unknown header type: %d\n",
922 (void *)(offset + head),
923 (void *)(long)(event->header.size),
Ingo Molnar97b07b62009-05-26 18:48:58 +0200924 event->header.type);
Ingo Molnar3e706112009-05-26 18:53:17 +0200925 total_unknown++;
Peter Zijlstra6142f9e2009-05-26 20:51:47 +0200926
927 /*
928 * assume we lost track of the stream, check alignment, and
929 * increment a single u64 in the hope to catch on again 'soon'.
930 */
931
932 if (unlikely(head & 7))
933 head &= ~7ULL;
934
935 size = 8;
Ingo Molnar97b07b62009-05-26 18:48:58 +0200936 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300937 }
938
Peter Zijlstra6142f9e2009-05-26 20:51:47 +0200939 head += size;
Ingo Molnarf49515b2009-05-26 19:03:36 +0200940
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300941 if (offset + head < stat.st_size)
942 goto more;
943
944 rc = EXIT_SUCCESS;
945done:
946 close(input);
Ingo Molnar97b07b62009-05-26 18:48:58 +0200947
948 if (dump_trace) {
Ingo Molnar3e706112009-05-26 18:53:17 +0200949 fprintf(stderr, " IP events: %10ld\n", total);
950 fprintf(stderr, " mmap events: %10ld\n", total_mmap);
951 fprintf(stderr, " comm events: %10ld\n", total_comm);
952 fprintf(stderr, " unknown events: %10ld\n", total_unknown);
Ingo Molnar97b07b62009-05-26 18:48:58 +0200953
954 return 0;
955 }
956
Arnaldo Carvalho de Melo3a4b8cc2009-05-26 16:19:04 -0300957 threads__sort_symhists();
958 threads__symhists_fprintf(total, stdout);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300959
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300960 return rc;
961}
962
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200963static const char * const report_usage[] = {
964 "perf report [<options>] <command>",
965 NULL
966};
967
968static const struct option options[] = {
969 OPT_STRING('i', "input", &input_name, "file",
970 "input file name"),
Ingo Molnar97b07b62009-05-26 18:48:58 +0200971 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
972 "dump raw trace in ASCII"),
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200973 OPT_END()
974};
975
976int cmd_report(int argc, const char **argv, const char *prefix)
977{
978 elf_version(EV_CURRENT);
979
980 page_size = getpagesize();
981
982 parse_options(argc, argv, options, report_usage, 0);
983
984 return __cmd_report();
985}