blob: b19b893d4ff5da24adc99a12c4adbea5ed8c620b [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 Melo8fa66bd2009-05-18 12:45:42 -03006
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -03007#include "util/list.h"
8#include "util/rbtree.h"
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -03009
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020010#include "perf.h"
11
12#include "util/parse-options.h"
13#include "util/parse-events.h"
14
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030015#define SHOW_KERNEL 1
16#define SHOW_USER 2
17#define SHOW_HV 4
18
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020019static char const *input_name = "output.perf";
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030020static int input;
21static int show_mask = SHOW_KERNEL | SHOW_USER | SHOW_HV;
22
23static unsigned long page_size;
24static unsigned long mmap_window = 32;
25
Ingo Molnar53cb8bc2009-05-26 09:17:18 +020026const char *perf_event_names[] = {
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030027 [PERF_EVENT_MMAP] = " PERF_EVENT_MMAP",
28 [PERF_EVENT_MUNMAP] = " PERF_EVENT_MUNMAP",
29 [PERF_EVENT_COMM] = " PERF_EVENT_COMM",
30};
31
32struct ip_event {
33 struct perf_event_header header;
34 __u64 ip;
35 __u32 pid, tid;
36};
37struct mmap_event {
38 struct perf_event_header header;
39 __u32 pid, tid;
40 __u64 start;
41 __u64 len;
42 __u64 pgoff;
43 char filename[PATH_MAX];
44};
45struct comm_event {
46 struct perf_event_header header;
47 __u32 pid,tid;
48 char comm[16];
49};
50
51typedef union event_union {
52 struct perf_event_header header;
53 struct ip_event ip;
54 struct mmap_event mmap;
55 struct comm_event comm;
56} event_t;
57
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030058struct symbol {
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -030059 struct rb_node rb_node;
60 uint64_t start;
61 uint64_t end;
62 char name[0];
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030063};
64
65static struct symbol *symbol__new(uint64_t start, uint64_t len, const char *name)
66{
67 struct symbol *self = malloc(sizeof(*self) + strlen(name) + 1);
68
69 if (self != NULL) {
70 self->start = start;
71 self->end = start + len;
72 strcpy(self->name, name);
73 }
74
75 return self;
76}
77
78static void symbol__delete(struct symbol *self)
79{
80 free(self);
81}
82
83static size_t symbol__fprintf(struct symbol *self, FILE *fp)
84{
85 return fprintf(fp, " %lx-%lx %s\n",
86 self->start, self->end, self->name);
87}
88
89struct dso {
90 struct list_head node;
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -030091 struct rb_root syms;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -030092 char name[0];
93};
94
95static struct dso *dso__new(const char *name)
96{
97 struct dso *self = malloc(sizeof(*self) + strlen(name) + 1);
98
99 if (self != NULL) {
100 strcpy(self->name, name);
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300101 self->syms = RB_ROOT;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300102 }
103
104 return self;
105}
106
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300107static void dso__delete_symbols(struct dso *self)
108{
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300109 struct symbol *pos;
110 struct rb_node *next = rb_first(&self->syms);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300111
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300112 while (next) {
113 pos = rb_entry(next, struct symbol, rb_node);
114 next = rb_next(&pos->rb_node);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300115 symbol__delete(pos);
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300116 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300117}
118
119static void dso__delete(struct dso *self)
120{
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300121 dso__delete_symbols(self);
122 free(self);
123}
124
125static void dso__insert_symbol(struct dso *self, struct symbol *sym)
126{
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300127 struct rb_node **p = &self->syms.rb_node;
128 struct rb_node *parent = NULL;
129 const uint64_t ip = sym->start;
130 struct symbol *s;
131
132 while (*p != NULL) {
133 parent = *p;
134 s = rb_entry(parent, struct symbol, rb_node);
135 if (ip < s->start)
136 p = &(*p)->rb_left;
137 else
138 p = &(*p)->rb_right;
139 }
140 rb_link_node(&sym->rb_node, parent, p);
141 rb_insert_color(&sym->rb_node, &self->syms);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300142}
143
144static struct symbol *dso__find_symbol(struct dso *self, uint64_t ip)
145{
146 if (self == NULL)
147 return NULL;
148
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300149 struct rb_node *n = self->syms.rb_node;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300150
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300151 while (n) {
152 struct symbol *s = rb_entry(n, struct symbol, rb_node);
153
154 if (ip < s->start)
155 n = n->rb_left;
156 else if (ip > s->end)
157 n = n->rb_right;
158 else
159 return s;
160 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300161
162 return NULL;
163}
164
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300165/**
166 * elf_symtab__for_each_symbol - iterate thru all the symbols
167 *
168 * @self: struct elf_symtab instance to iterate
169 * @index: uint32_t index
170 * @sym: GElf_Sym iterator
171 */
172#define elf_symtab__for_each_symbol(syms, nr_syms, index, sym) \
173 for (index = 0, gelf_getsym(syms, index, &sym);\
174 index < nr_syms; \
175 index++, gelf_getsym(syms, index, &sym))
176
177static inline uint8_t elf_sym__type(const GElf_Sym *sym)
178{
179 return GELF_ST_TYPE(sym->st_info);
180}
181
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200182static inline int elf_sym__is_function(const GElf_Sym *sym)
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300183{
184 return elf_sym__type(sym) == STT_FUNC &&
185 sym->st_name != 0 &&
186 sym->st_shndx != SHN_UNDEF;
187}
188
189static inline const char *elf_sym__name(const GElf_Sym *sym,
190 const Elf_Data *symstrs)
191{
192 return symstrs->d_buf + sym->st_name;
193}
194
195static Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
196 GElf_Shdr *shp, const char *name,
197 size_t *index)
198{
199 Elf_Scn *sec = NULL;
200 size_t cnt = 1;
201
202 while ((sec = elf_nextscn(elf, sec)) != NULL) {
203 char *str;
204
205 gelf_getshdr(sec, shp);
206 str = elf_strptr(elf, ep->e_shstrndx, shp->sh_name);
207 if (!strcmp(name, str)) {
208 if (index)
209 *index = cnt;
210 break;
211 }
212 ++cnt;
213 }
214
215 return sec;
216}
217
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300218static int dso__load(struct dso *self)
219{
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300220 int fd = open(self->name, O_RDONLY), err = -1;
221
222 if (fd == -1)
223 return -1;
224
225 Elf *elf = elf_begin(fd, ELF_C_READ_MMAP, NULL);
226 if (elf == NULL) {
227 fprintf(stderr, "%s: cannot read %s ELF file.\n",
228 __func__, self->name);
229 goto out_close;
230 }
231
232 GElf_Ehdr ehdr;
233 if (gelf_getehdr(elf, &ehdr) == NULL) {
234 fprintf(stderr, "%s: cannot get elf header.\n", __func__);
235 goto out_elf_end;
236 }
237
238 GElf_Shdr shdr;
239 Elf_Scn *sec = elf_section_by_name(elf, &ehdr, &shdr, ".symtab", NULL);
240 if (sec == NULL)
241 sec = elf_section_by_name(elf, &ehdr, &shdr, ".dynsym", NULL);
242
243 if (sec == NULL)
244 goto out_elf_end;
245
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300246 Elf_Data *syms = elf_getdata(sec, NULL);
247 if (syms == NULL)
248 goto out_elf_end;
249
250 sec = elf_getscn(elf, shdr.sh_link);
251 if (sec == NULL)
252 goto out_elf_end;
253
254 Elf_Data *symstrs = elf_getdata(sec, NULL);
255 if (symstrs == NULL)
256 goto out_elf_end;
257
258 const uint32_t nr_syms = shdr.sh_size / shdr.sh_entsize;
259
260 GElf_Sym sym;
261 uint32_t index;
262 elf_symtab__for_each_symbol(syms, nr_syms, index, sym) {
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200263 struct symbol *f;
264
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300265 if (!elf_sym__is_function(&sym))
266 continue;
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200267
268 sec = elf_getscn(elf, sym.st_shndx);
269 if (!sec)
270 goto out_elf_end;
271
272 gelf_getshdr(sec, &shdr);
273 sym.st_value -= shdr.sh_addr - shdr.sh_offset;
274
275 f = symbol__new(sym.st_value, sym.st_size,
276 elf_sym__name(&sym, symstrs));
277 if (!f)
Arnaldo Carvalho de Melo62eb9392009-05-18 14:28:47 -0300278 goto out_elf_end;
279
280 dso__insert_symbol(self, f);
281 }
282
283 err = 0;
284out_elf_end:
285 elf_end(elf);
286out_close:
287 close(fd);
288 return err;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300289}
290
291static size_t dso__fprintf(struct dso *self, FILE *fp)
292{
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300293 size_t ret = fprintf(fp, "dso: %s\n", self->name);
294
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300295 struct rb_node *nd;
296 for (nd = rb_first(&self->syms); nd; nd = rb_next(nd)) {
297 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300298 ret += symbol__fprintf(pos, fp);
Arnaldo Carvalho de Melo35a50c82009-05-18 16:24:49 -0300299 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300300
301 return ret;
302}
303
304static LIST_HEAD(dsos);
305static struct dso *kernel_dso;
306
307static void dsos__add(struct dso *dso)
308{
309 list_add_tail(&dso->node, &dsos);
310}
311
312static struct dso *dsos__find(const char *name)
313{
314 struct dso *pos;
315
316 list_for_each_entry(pos, &dsos, node)
317 if (strcmp(pos->name, name) == 0)
318 return pos;
319 return NULL;
320}
321
322static struct dso *dsos__findnew(const char *name)
323{
324 struct dso *dso = dsos__find(name);
325
326 if (dso == NULL) {
327 dso = dso__new(name);
328 if (dso != NULL && dso__load(dso) < 0)
329 goto out_delete_dso;
330
331 dsos__add(dso);
332 }
333
334 return dso;
335
336out_delete_dso:
337 dso__delete(dso);
338 return NULL;
339}
340
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200341void dsos__fprintf(FILE *fp)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300342{
343 struct dso *pos;
344
345 list_for_each_entry(pos, &dsos, node)
346 dso__fprintf(pos, fp);
347}
348
349static int load_kallsyms(void)
350{
351 kernel_dso = dso__new("[kernel]");
352 if (kernel_dso == NULL)
353 return -1;
354
355 FILE *file = fopen("/proc/kallsyms", "r");
356
357 if (file == NULL)
358 goto out_delete_dso;
359
360 char *line = NULL;
361 size_t n;
362
Arnaldo Carvalho de Melo59d81022009-05-26 11:14:27 -0300363 if (getline(&line, &n, file) < 0 || !line)
364 goto out_delete_dso;
365
366 unsigned long long previous_start;
367 char c, previous_symbf[4096];
368 if (sscanf(line, "%llx %c %s", &previous_start, &c, previous_symbf) != 3)
369 goto out_delete_line;
370
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300371 while (!feof(file)) {
372 unsigned long long start;
Arnaldo Carvalho de Melo59d81022009-05-26 11:14:27 -0300373 char symbf[4096];
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300374
375 if (getline(&line, &n, file) < 0)
376 break;
377
378 if (!line)
379 goto out_delete_dso;
380
381 if (sscanf(line, "%llx %c %s", &start, &c, symbf) == 3) {
Arnaldo Carvalho de Melo59d81022009-05-26 11:14:27 -0300382 if (start > previous_start) {
383 struct symbol *sym = symbol__new(previous_start,
384 start - previous_start,
385 previous_symbf);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300386
Arnaldo Carvalho de Melo59d81022009-05-26 11:14:27 -0300387 if (sym == NULL)
388 goto out_delete_dso;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300389
Arnaldo Carvalho de Melo59d81022009-05-26 11:14:27 -0300390 dso__insert_symbol(kernel_dso, sym);
391 previous_start = start;
392 strcpy(previous_symbf, symbf);
393 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300394 }
395 }
396
397 dsos__add(kernel_dso);
398 free(line);
399 fclose(file);
400 return 0;
401
Arnaldo Carvalho de Melo59d81022009-05-26 11:14:27 -0300402out_delete_line:
403 free(line);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300404out_delete_dso:
405 dso__delete(kernel_dso);
406 return -1;
407}
408
409struct map {
410 struct list_head node;
411 uint64_t start;
412 uint64_t end;
413 uint64_t pgoff;
414 struct dso *dso;
415};
416
417static struct map *map__new(struct mmap_event *event)
418{
419 struct map *self = malloc(sizeof(*self));
420
421 if (self != NULL) {
422 self->start = event->start;
423 self->end = event->start + event->len;
424 self->pgoff = event->pgoff;
425
426 self->dso = dsos__findnew(event->filename);
427 if (self->dso == NULL)
428 goto out_delete;
429 }
430 return self;
431out_delete:
432 free(self);
433 return NULL;
434}
435
436static size_t map__fprintf(struct map *self, FILE *fp)
437{
438 return fprintf(fp, " %lx-%lx %lx %s\n",
439 self->start, self->end, self->pgoff, self->dso->name);
440}
441
442struct symhist {
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300443 struct rb_node rb_node;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300444 struct dso *dso;
445 struct symbol *sym;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300446 uint64_t ip;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300447 uint32_t count;
448 char level;
449};
450
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300451static struct symhist *symhist__new(struct symbol *sym, uint64_t ip,
452 struct dso *dso, char level)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300453{
454 struct symhist *self = malloc(sizeof(*self));
455
456 if (self != NULL) {
457 self->sym = sym;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300458 self->ip = ip;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300459 self->dso = dso;
460 self->level = level;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300461 self->count = 1;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300462 }
463
464 return self;
465}
466
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200467void symhist__delete(struct symhist *self)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300468{
469 free(self);
470}
471
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300472static void symhist__inc(struct symhist *self)
473{
474 ++self->count;
475}
476
477static size_t symhist__fprintf(struct symhist *self, FILE *fp)
478{
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300479 size_t ret = fprintf(fp, "%#llx [%c] ", (unsigned long long)self->ip, self->level);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300480
481 if (self->level != '.')
Peter Zijlstraf3e08c52009-05-22 15:34:54 +0200482 ret += fprintf(fp, "%s", self->sym ? self->sym->name: "<unknown>");
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300483 else
484 ret += fprintf(fp, "%s: %s",
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200485 self->dso ? self->dso->name : "<unknown>",
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300486 self->sym ? self->sym->name : "<unknown>");
487 return ret + fprintf(fp, ": %u\n", self->count);
488}
489
490struct thread {
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300491 struct rb_node rb_node;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300492 struct list_head maps;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300493 struct rb_root symhists;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300494 pid_t pid;
495 char *comm;
496};
497
498static struct thread *thread__new(pid_t pid)
499{
500 struct thread *self = malloc(sizeof(*self));
501
502 if (self != NULL) {
503 self->pid = pid;
504 self->comm = NULL;
505 INIT_LIST_HEAD(&self->maps);
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300506 self->symhists = RB_ROOT;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300507 }
508
509 return self;
510}
511
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300512static int thread__symbol_incnew(struct thread *self, struct symbol *sym,
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300513 uint64_t ip, struct dso *dso, char level)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300514{
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300515 struct rb_node **p = &self->symhists.rb_node;
516 struct rb_node *parent = NULL;
517 struct symhist *sh;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300518
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300519 while (*p != NULL) {
520 parent = *p;
521 sh = rb_entry(parent, struct symhist, rb_node);
522
523 if (sh->sym == sym || ip == sh->ip) {
524 symhist__inc(sh);
525 return 0;
526 }
527
528 /* Handle unresolved symbols too */
529 const uint64_t start = !sh->sym ? sh->ip : sh->sym->start;
530
531 if (ip < start)
532 p = &(*p)->rb_left;
533 else
534 p = &(*p)->rb_right;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300535 }
536
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300537 sh = symhist__new(sym, ip, dso, level);
538 if (sh == NULL)
539 return -ENOMEM;
540 rb_link_node(&sh->rb_node, parent, p);
541 rb_insert_color(&sh->rb_node, &self->symhists);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300542 return 0;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300543}
544
545static int thread__set_comm(struct thread *self, const char *comm)
546{
547 self->comm = strdup(comm);
548 return self->comm ? 0 : -ENOMEM;
549}
550
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200551size_t thread__maps_fprintf(struct thread *self, FILE *fp)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300552{
553 struct map *pos;
554 size_t ret = 0;
555
556 list_for_each_entry(pos, &self->maps, node)
557 ret += map__fprintf(pos, fp);
558
559 return ret;
560}
561
562static size_t thread__fprintf(struct thread *self, FILE *fp)
563{
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300564 int ret = fprintf(fp, "thread: %d %s\n", self->pid, self->comm);
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300565 struct rb_node *nd;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300566
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300567 for (nd = rb_first(&self->symhists); nd; nd = rb_next(nd)) {
568 struct symhist *pos = rb_entry(nd, struct symhist, rb_node);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300569 ret += symhist__fprintf(pos, fp);
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300570 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300571
572 return ret;
573}
574
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300575static struct rb_root threads = RB_ROOT;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300576
577static struct thread *threads__findnew(pid_t pid)
578{
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300579 struct rb_node **p = &threads.rb_node;
580 struct rb_node *parent = NULL;
581 struct thread *th;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300582
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300583 while (*p != NULL) {
584 parent = *p;
585 th = rb_entry(parent, struct thread, rb_node);
586
587 if (th->pid == pid)
588 return th;
589
590 if (pid < th->pid)
591 p = &(*p)->rb_left;
592 else
593 p = &(*p)->rb_right;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300594 }
595
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300596 th = thread__new(pid);
597 if (th != NULL) {
598 rb_link_node(&th->rb_node, parent, p);
599 rb_insert_color(&th->rb_node, &threads);
600 }
601 return th;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300602}
603
604static void thread__insert_map(struct thread *self, struct map *map)
605{
606 list_add_tail(&map->node, &self->maps);
607}
608
609static struct map *thread__find_map(struct thread *self, uint64_t ip)
610{
611 if (self == NULL)
612 return NULL;
613
614 struct map *pos;
615
616 list_for_each_entry(pos, &self->maps, node)
617 if (ip >= pos->start && ip <= pos->end)
618 return pos;
619
620 return NULL;
621}
622
623static void threads__fprintf(FILE *fp)
624{
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300625 struct rb_node *nd;
626 for (nd = rb_first(&threads); nd; nd = rb_next(nd)) {
627 struct thread *pos = rb_entry(nd, struct thread, rb_node);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300628 thread__fprintf(pos, fp);
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300629 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300630}
631
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200632static int __cmd_report(void)
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300633{
634 unsigned long offset = 0;
635 unsigned long head = 0;
636 struct stat stat;
637 char *buf;
638 event_t *event;
639 int ret, rc = EXIT_FAILURE;
640 unsigned long total = 0;
641
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300642 input = open(input_name, O_RDONLY);
643 if (input < 0) {
644 perror("failed to open file");
645 exit(-1);
646 }
647
648 ret = fstat(input, &stat);
649 if (ret < 0) {
650 perror("failed to stat file");
651 exit(-1);
652 }
653
654 if (!stat.st_size) {
655 fprintf(stderr, "zero-sized file, nothing to do!\n");
656 exit(0);
657 }
658
659 if (load_kallsyms() < 0) {
660 perror("failed to open kallsyms");
661 return EXIT_FAILURE;
662 }
663
664remap:
665 buf = (char *)mmap(NULL, page_size * mmap_window, PROT_READ,
666 MAP_SHARED, input, offset);
667 if (buf == MAP_FAILED) {
668 perror("failed to mmap file");
669 exit(-1);
670 }
671
672more:
673 event = (event_t *)(buf + head);
674
675 if (head + event->header.size >= page_size * mmap_window) {
676 unsigned long shift = page_size * (head / page_size);
677 int ret;
678
679 ret = munmap(buf, page_size * mmap_window);
680 assert(ret == 0);
681
682 offset += shift;
683 head -= shift;
684 goto remap;
685 }
686
687
688 if (!event->header.size) {
689 fprintf(stderr, "zero-sized event at file offset %ld\n", offset + head);
690 fprintf(stderr, "skipping %ld bytes of events.\n", stat.st_size - offset - head);
691 goto done;
692 }
693
694 head += event->header.size;
695
696 if (event->header.misc & PERF_EVENT_MISC_OVERFLOW) {
697 char level;
698 int show = 0;
699 struct dso *dso = NULL;
700 struct thread *thread = threads__findnew(event->ip.pid);
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200701 uint64_t ip = event->ip.ip;
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300702
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300703 if (thread == NULL) {
704 fprintf(stderr, "problem processing %d event, bailing out\n",
705 event->header.type);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300706 goto done;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300707 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300708
709 if (event->header.misc & PERF_EVENT_MISC_KERNEL) {
710 show = SHOW_KERNEL;
711 level = 'k';
712 dso = kernel_dso;
713 } else if (event->header.misc & PERF_EVENT_MISC_USER) {
714 show = SHOW_USER;
715 level = '.';
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200716 struct map *map = thread__find_map(thread, ip);
717 if (map != NULL) {
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300718 dso = map->dso;
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200719 ip -= map->start + map->pgoff;
720 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300721 } else {
722 show = SHOW_HV;
723 level = 'H';
724 }
725
726 if (show & show_mask) {
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200727 struct symbol *sym = dso__find_symbol(dso, ip);
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300728
Peter Zijlstraf17e04a2009-05-26 15:30:22 +0200729 if (thread__symbol_incnew(thread, sym, ip, dso, level)) {
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300730 fprintf(stderr, "problem incrementing symbol count, bailing out\n");
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300731 goto done;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300732 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300733 }
734 total++;
735 } else switch (event->header.type) {
736 case PERF_EVENT_MMAP: {
737 struct thread *thread = threads__findnew(event->mmap.pid);
738 struct map *map = map__new(&event->mmap);
739
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300740 if (thread == NULL || map == NULL) {
741 fprintf(stderr, "problem processing PERF_EVENT_MMAP, bailing out\n");
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300742 goto done;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300743 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300744 thread__insert_map(thread, map);
745 break;
746 }
747 case PERF_EVENT_COMM: {
748 struct thread *thread = threads__findnew(event->comm.pid);
749
750 if (thread == NULL ||
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300751 thread__set_comm(thread, event->comm.comm)) {
752 fprintf(stderr, "problem processing PERF_EVENT_COMM, bailing out\n");
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300753 goto done;
Arnaldo Carvalho de Meloce7e4362009-05-19 09:30:23 -0300754 }
Arnaldo Carvalho de Melo8fa66bd2009-05-18 12:45:42 -0300755 break;
756 }
757 }
758
759 if (offset + head < stat.st_size)
760 goto more;
761
762 rc = EXIT_SUCCESS;
763done:
764 close(input);
765 //dsos__fprintf(stdout);
766 threads__fprintf(stdout);
767#if 0
768 std::map<std::string, int>::iterator hi = hist.begin();
769
770 while (hi != hist.end()) {
771 rev_hist.insert(std::pair<int, std::string>(hi->second, hi->first));
772 hist.erase(hi++);
773 }
774
775 std::multimap<int, std::string>::const_iterator ri = rev_hist.begin();
776
777 while (ri != rev_hist.end()) {
778 printf(" %5.2f %s\n", (100.0 * ri->first)/total, ri->second.c_str());
779 ri++;
780 }
781#endif
782 return rc;
783}
784
Ingo Molnar53cb8bc2009-05-26 09:17:18 +0200785static const char * const report_usage[] = {
786 "perf report [<options>] <command>",
787 NULL
788};
789
790static const struct option options[] = {
791 OPT_STRING('i', "input", &input_name, "file",
792 "input file name"),
793 OPT_END()
794};
795
796int cmd_report(int argc, const char **argv, const char *prefix)
797{
798 elf_version(EV_CURRENT);
799
800 page_size = getpagesize();
801
802 parse_options(argc, argv, options, report_usage, 0);
803
804 return __cmd_report();
805}