aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2011-02-07 02:45:48 -0500
committerIngo Molnar <mingo@elte.hu>2011-02-07 02:45:48 -0500
commit075de90c46562de1435db16c2129ec4ff92e5bd2 (patch)
tree3b6f91ddc2773069a707538d607b2b4ea680c118 /tools/perf/util
parentc7f9a6f377fa64e5a74f8c128d4349765c28fab1 (diff)
parent36532461a0f60bb36c5470a0326f7394f19db23c (diff)
Merge branch 'perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 into perf/core
Diffstat (limited to 'tools/perf/util')
-rw-r--r--tools/perf/util/annotate.c550
-rw-r--r--tools/perf/util/annotate.h94
-rw-r--r--tools/perf/util/hist.c219
-rw-r--r--tools/perf/util/hist.h43
-rw-r--r--tools/perf/util/top.c5
-rw-r--r--tools/perf/util/top.h12
-rw-r--r--tools/perf/util/ui/browsers/annotate.c45
-rw-r--r--tools/perf/util/ui/browsers/hists.c9
8 files changed, 694 insertions, 283 deletions
diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c
new file mode 100644
index 00000000000..297337649c2
--- /dev/null
+++ b/tools/perf/util/annotate.c
@@ -0,0 +1,550 @@
1/*
2 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
3 *
4 * Parts came from builtin-annotate.c, see those files for further
5 * copyright notes.
6 *
7 * Released under the GPL v2. (and only v2, not any later version)
8 */
9
10#include "util.h"
11#include "build-id.h"
12#include "color.h"
13#include "cache.h"
14#include "symbol.h"
15#include "debug.h"
16#include "annotate.h"
17
18int symbol__alloc_hist(struct symbol *sym, int nevents)
19{
20 struct annotation *notes = symbol__annotation(sym);
21
22 notes->sizeof_sym_hist = (sizeof(*notes->histograms) +
23 (sym->end - sym->start) * sizeof(u64));
24 notes->histograms = calloc(nevents, notes->sizeof_sym_hist);
25 notes->nr_histograms = nevents;
26 return notes->histograms == NULL ? -1 : 0;
27}
28
29void symbol__annotate_zero_histograms(struct symbol *sym)
30{
31 struct annotation *notes = symbol__annotation(sym);
32
33 if (notes->histograms != NULL)
34 memset(notes->histograms, 0,
35 notes->nr_histograms * notes->sizeof_sym_hist);
36}
37
38int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
39 int evidx, u64 addr)
40{
41 unsigned offset;
42 struct annotation *notes;
43 struct sym_hist *h;
44
45 notes = symbol__annotation(sym);
46 if (notes->histograms == NULL)
47 return -ENOMEM;
48
49 pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, map->unmap_ip(map, addr));
50
51 if (addr >= sym->end)
52 return 0;
53
54 offset = addr - sym->start;
55 h = annotation__histogram(notes, evidx);
56 h->sum++;
57 h->addr[offset]++;
58
59 pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64
60 ", evidx=%d] => %" PRIu64 "\n", sym->start, sym->name,
61 addr, addr - sym->start, evidx, h->addr[offset]);
62 return 0;
63}
64
65static struct objdump_line *objdump_line__new(s64 offset, char *line, size_t privsize)
66{
67 struct objdump_line *self = malloc(sizeof(*self) + privsize);
68
69 if (self != NULL) {
70 self->offset = offset;
71 self->line = line;
72 }
73
74 return self;
75}
76
77void objdump_line__free(struct objdump_line *self)
78{
79 free(self->line);
80 free(self);
81}
82
83static void objdump__add_line(struct list_head *head, struct objdump_line *line)
84{
85 list_add_tail(&line->node, head);
86}
87
88struct objdump_line *objdump__get_next_ip_line(struct list_head *head,
89 struct objdump_line *pos)
90{
91 list_for_each_entry_continue(pos, head, node)
92 if (pos->offset >= 0)
93 return pos;
94
95 return NULL;
96}
97
98static int objdump_line__print(struct objdump_line *oline,
99 struct list_head *head, struct symbol *sym,
100 int evidx, u64 len, int min_pcnt,
101 int printed, int max_lines)
102{
103 static const char *prev_line;
104 static const char *prev_color;
105
106 if (oline->offset != -1) {
107 const char *path = NULL;
108 unsigned int hits = 0;
109 double percent = 0.0;
110 const char *color;
111 struct annotation *notes = symbol__annotation(sym);
112 struct source_line *src_line = notes->src_line;
113 struct sym_hist *h = annotation__histogram(notes, evidx);
114 s64 offset = oline->offset;
115 struct objdump_line *next = objdump__get_next_ip_line(head, oline);
116
117 while (offset < (s64)len &&
118 (next == NULL || offset < next->offset)) {
119 if (src_line) {
120 if (path == NULL)
121 path = src_line[offset].path;
122 percent += src_line[offset].percent;
123 } else
124 hits += h->addr[offset];
125
126 ++offset;
127 }
128
129 if (src_line == NULL && h->sum)
130 percent = 100.0 * hits / h->sum;
131
132 if (percent < min_pcnt)
133 return -1;
134
135 if (printed >= max_lines)
136 return 1;
137
138 color = get_percent_color(percent);
139
140 /*
141 * Also color the filename and line if needed, with
142 * the same color than the percentage. Don't print it
143 * twice for close colored addr with the same filename:line
144 */
145 if (path) {
146 if (!prev_line || strcmp(prev_line, path)
147 || color != prev_color) {
148 color_fprintf(stdout, color, " %s", path);
149 prev_line = path;
150 prev_color = color;
151 }
152 }
153
154 color_fprintf(stdout, color, " %7.2f", percent);
155 printf(" : ");
156 color_fprintf(stdout, PERF_COLOR_BLUE, "%s\n", oline->line);
157 } else if (printed >= max_lines)
158 return 1;
159 else {
160 if (!*oline->line)
161 printf(" :\n");
162 else
163 printf(" : %s\n", oline->line);
164 }
165
166 return 0;
167}
168
169static int symbol__parse_objdump_line(struct symbol *sym, struct map *map, FILE *file,
170 struct list_head *head, size_t privsize)
171{
172 struct objdump_line *objdump_line;
173 char *line = NULL, *tmp, *tmp2, *c;
174 size_t line_len;
175 s64 line_ip, offset = -1;
176
177 if (getline(&line, &line_len, file) < 0)
178 return -1;
179
180 if (!line)
181 return -1;
182
183 while (line_len != 0 && isspace(line[line_len - 1]))
184 line[--line_len] = '\0';
185
186 c = strchr(line, '\n');
187 if (c)
188 *c = 0;
189
190 line_ip = -1;
191
192 /*
193 * Strip leading spaces:
194 */
195 tmp = line;
196 while (*tmp) {
197 if (*tmp != ' ')
198 break;
199 tmp++;
200 }
201
202 if (*tmp) {
203 /*
204 * Parse hexa addresses followed by ':'
205 */
206 line_ip = strtoull(tmp, &tmp2, 16);
207 if (*tmp2 != ':' || tmp == tmp2 || tmp2[1] == '\0')
208 line_ip = -1;
209 }
210
211 if (line_ip != -1) {
212 u64 start = map__rip_2objdump(map, sym->start),
213 end = map__rip_2objdump(map, sym->end);
214
215 offset = line_ip - start;
216 if (offset < 0 || (u64)line_ip > end)
217 offset = -1;
218 }
219
220 objdump_line = objdump_line__new(offset, line, privsize);
221 if (objdump_line == NULL) {
222 free(line);
223 return -1;
224 }
225 objdump__add_line(head, objdump_line);
226
227 return 0;
228}
229
230int symbol__annotate(struct symbol *sym, struct map *map,
231 struct list_head *head, size_t privsize)
232{
233 struct dso *dso = map->dso;
234 char *filename = dso__build_id_filename(dso, NULL, 0);
235 bool free_filename = true;
236 char command[PATH_MAX * 2];
237 FILE *file;
238 int err = 0;
239 u64 len;
240 char symfs_filename[PATH_MAX];
241
242 if (filename) {
243 snprintf(symfs_filename, sizeof(symfs_filename), "%s%s",
244 symbol_conf.symfs, filename);
245 }
246
247 if (filename == NULL) {
248 if (dso->has_build_id) {
249 pr_err("Can't annotate %s: not enough memory\n",
250 sym->name);
251 return -ENOMEM;
252 }
253 goto fallback;
254 } else if (readlink(symfs_filename, command, sizeof(command)) < 0 ||
255 strstr(command, "[kernel.kallsyms]") ||
256 access(symfs_filename, R_OK)) {
257 free(filename);
258fallback:
259 /*
260 * If we don't have build-ids or the build-id file isn't in the
261 * cache, or is just a kallsyms file, well, lets hope that this
262 * DSO is the same as when 'perf record' ran.
263 */
264 filename = dso->long_name;
265 snprintf(symfs_filename, sizeof(symfs_filename), "%s%s",
266 symbol_conf.symfs, filename);
267 free_filename = false;
268 }
269
270 if (dso->origin == DSO__ORIG_KERNEL) {
271 if (dso->annotate_warned)
272 goto out_free_filename;
273 err = -ENOENT;
274 dso->annotate_warned = 1;
275 pr_err("Can't annotate %s: No vmlinux file was found in the "
276 "path\n", sym->name);
277 goto out_free_filename;
278 }
279
280 pr_debug("%s: filename=%s, sym=%s, start=%#" PRIx64 ", end=%#" PRIx64 "\n", __func__,
281 filename, sym->name, map->unmap_ip(map, sym->start),
282 map->unmap_ip(map, sym->end));
283
284 len = sym->end - sym->start;
285
286 pr_debug("annotating [%p] %30s : [%p] %30s\n",
287 dso, dso->long_name, sym, sym->name);
288
289 snprintf(command, sizeof(command),
290 "objdump --start-address=0x%016" PRIx64
291 " --stop-address=0x%016" PRIx64 " -dS -C %s|grep -v %s|expand",
292 map__rip_2objdump(map, sym->start),
293 map__rip_2objdump(map, sym->end),
294 symfs_filename, filename);
295
296 pr_debug("Executing: %s\n", command);
297
298 file = popen(command, "r");
299 if (!file)
300 goto out_free_filename;
301
302 while (!feof(file))
303 if (symbol__parse_objdump_line(sym, map, file, head, privsize) < 0)
304 break;
305
306 pclose(file);
307out_free_filename:
308 if (free_filename)
309 free(filename);
310 return err;
311}
312
313static void insert_source_line(struct rb_root *root, struct source_line *src_line)
314{
315 struct source_line *iter;
316 struct rb_node **p = &root->rb_node;
317 struct rb_node *parent = NULL;
318
319 while (*p != NULL) {
320 parent = *p;
321 iter = rb_entry(parent, struct source_line, node);
322
323 if (src_line->percent > iter->percent)
324 p = &(*p)->rb_left;
325 else
326 p = &(*p)->rb_right;
327 }
328
329 rb_link_node(&src_line->node, parent, p);
330 rb_insert_color(&src_line->node, root);
331}
332
333static void symbol__free_source_line(struct symbol *sym, int len)
334{
335 struct annotation *notes = symbol__annotation(sym);
336 struct source_line *src_line = notes->src_line;
337 int i;
338
339 for (i = 0; i < len; i++)
340 free(src_line[i].path);
341
342 free(src_line);
343 notes->src_line = NULL;
344}
345
346/* Get the filename:line for the colored entries */
347static int symbol__get_source_line(struct symbol *sym, struct map *map,
348 int evidx, struct rb_root *root, int len,
349 const char *filename)
350{
351 u64 start;
352 int i;
353 char cmd[PATH_MAX * 2];
354 struct source_line *src_line;
355 struct annotation *notes = symbol__annotation(sym);
356 struct sym_hist *h = annotation__histogram(notes, evidx);
357
358 if (!h->sum)
359 return 0;
360
361 src_line = notes->src_line = calloc(len, sizeof(struct source_line));
362 if (!notes->src_line)
363 return -1;
364
365 start = map->unmap_ip(map, sym->start);
366
367 for (i = 0; i < len; i++) {
368 char *path = NULL;
369 size_t line_len;
370 u64 offset;
371 FILE *fp;
372
373 src_line[i].percent = 100.0 * h->addr[i] / h->sum;
374 if (src_line[i].percent <= 0.5)
375 continue;
376
377 offset = start + i;
378 sprintf(cmd, "addr2line -e %s %016" PRIx64, filename, offset);
379 fp = popen(cmd, "r");
380 if (!fp)
381 continue;
382
383 if (getline(&path, &line_len, fp) < 0 || !line_len)
384 goto next;
385
386 src_line[i].path = malloc(sizeof(char) * line_len + 1);
387 if (!src_line[i].path)
388 goto next;
389
390 strcpy(src_line[i].path, path);
391 insert_source_line(root, &src_line[i]);
392
393 next:
394 pclose(fp);
395 }
396
397 return 0;
398}
399
400static void print_summary(struct rb_root *root, const char *filename)
401{
402 struct source_line *src_line;
403 struct rb_node *node;
404
405 printf("\nSorted summary for file %s\n", filename);
406 printf("----------------------------------------------\n\n");
407
408 if (RB_EMPTY_ROOT(root)) {
409 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN);
410 return;
411 }
412
413 node = rb_first(root);
414 while (node) {
415 double percent;
416 const char *color;
417 char *path;
418
419 src_line = rb_entry(node, struct source_line, node);
420 percent = src_line->percent;
421 color = get_percent_color(percent);
422 path = src_line->path;
423
424 color_fprintf(stdout, color, " %7.2f %s", percent, path);
425 node = rb_next(node);
426 }
427}
428
429static void symbol__annotate_hits(struct symbol *sym, int evidx)
430{
431 struct annotation *notes = symbol__annotation(sym);
432 struct sym_hist *h = annotation__histogram(notes, evidx);
433 u64 len = sym->end - sym->start, offset;
434
435 for (offset = 0; offset < len; ++offset)
436 if (h->addr[offset] != 0)
437 printf("%*" PRIx64 ": %" PRIu64 "\n", BITS_PER_LONG / 2,
438 sym->start + offset, h->addr[offset]);
439 printf("%*s: %" PRIu64 "\n", BITS_PER_LONG / 2, "h->sum", h->sum);
440}
441
442int symbol__annotate_printf(struct symbol *sym, struct map *map,
443 struct list_head *head, int evidx, bool full_paths,
444 int min_pcnt, int max_lines)
445{
446 struct dso *dso = map->dso;
447 const char *filename = dso->long_name, *d_filename;
448 struct objdump_line *pos;
449 int printed = 2;
450 int more = 0;
451 u64 len;
452
453 if (full_paths)
454 d_filename = filename;
455 else
456 d_filename = basename(filename);
457
458 len = sym->end - sym->start;
459
460 printf(" Percent | Source code & Disassembly of %s\n", d_filename);
461 printf("------------------------------------------------\n");
462
463 if (verbose)
464 symbol__annotate_hits(sym, evidx);
465
466 list_for_each_entry(pos, head, node) {
467 switch (objdump_line__print(pos, head, sym, evidx, len, min_pcnt,
468 printed, max_lines)) {
469 case 0:
470 ++printed;
471 break;
472 case 1:
473 /* filtered by max_lines */
474 ++more;
475 break;
476 case -1:
477 default:
478 /* filtered by min_pcnt */
479 break;
480 }
481 }
482
483 return more;
484}
485
486void symbol__annotate_zero_histogram(struct symbol *sym, int evidx)
487{
488 struct annotation *notes = symbol__annotation(sym);
489 struct sym_hist *h = annotation__histogram(notes, evidx);
490
491 memset(h, 0, notes->sizeof_sym_hist);
492}
493
494void symbol__annotate_decay_histogram(struct symbol *sym,
495 struct list_head *head, int evidx)
496{
497 struct annotation *notes = symbol__annotation(sym);
498 struct sym_hist *h = annotation__histogram(notes, evidx);
499 struct objdump_line *pos;
500
501 h->sum = 0;
502
503 list_for_each_entry(pos, head, node) {
504 if (pos->offset != -1) {
505 h->addr[pos->offset] = h->addr[pos->offset] * 7 / 8;
506 h->sum += h->addr[pos->offset];
507 }
508 }
509}
510
511void objdump_line_list__purge(struct list_head *head)
512{
513 struct objdump_line *pos, *n;
514
515 list_for_each_entry_safe(pos, n, head, node) {
516 list_del(&pos->node);
517 objdump_line__free(pos);
518 }
519}
520
521int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
522 bool print_lines, bool full_paths, int min_pcnt,
523 int max_lines)
524{
525 struct dso *dso = map->dso;
526 const char *filename = dso->long_name;
527 struct rb_root source_line = RB_ROOT;
528 LIST_HEAD(head);
529 u64 len;
530
531 if (symbol__annotate(sym, map, &head, 0) < 0)
532 return -1;
533
534 len = sym->end - sym->start;
535
536 if (print_lines) {
537 symbol__get_source_line(sym, map, evidx, &source_line,
538 len, filename);
539 print_summary(&source_line, filename);
540 }
541
542 symbol__annotate_printf(sym, map, &head, evidx, full_paths,
543 min_pcnt, max_lines);
544 if (print_lines)
545 symbol__free_source_line(sym, len);
546
547 objdump_line_list__purge(&head);
548
549 return 0;
550}
diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h
new file mode 100644
index 00000000000..b1253aadf34
--- /dev/null
+++ b/tools/perf/util/annotate.h
@@ -0,0 +1,94 @@
1#ifndef __PERF_ANNOTATE_H
2#define __PERF_ANNOTATE_H
3
4#include <stdbool.h>
5#include "types.h"
6#include "symbol.h"
7#include <linux/list.h>
8#include <linux/rbtree.h>
9
10struct objdump_line {
11 struct list_head node;
12 s64 offset;
13 char *line;
14};
15
16void objdump_line__free(struct objdump_line *self);
17struct objdump_line *objdump__get_next_ip_line(struct list_head *head,
18 struct objdump_line *pos);
19
20struct sym_hist {
21 u64 sum;
22 u64 addr[0];
23};
24
25struct source_line {
26 struct rb_node node;
27 double percent;
28 char *path;
29};
30
31/** struct annotation - symbols with hits have this attached as in sannotation
32 *
33 * @histogram: Array of addr hit histograms per event being monitored
34 * @src_line: If 'print_lines' is specified, per source code line percentages
35 *
36 * src_line is allocated, percentages calculated and all sorted by percentage
37 * when the annotation is about to be presented, so the percentages are for
38 * one of the entries in the histogram array, i.e. for the event/counter being
39 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate
40 * returns.
41 */
42struct annotation {
43 struct source_line *src_line;
44 struct sym_hist *histograms;
45 int nr_histograms;
46 int sizeof_sym_hist;
47};
48
49struct sannotation {
50 struct annotation annotation;
51 struct symbol symbol;
52};
53
54static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
55{
56 return ((void *)notes->histograms) + (notes->sizeof_sym_hist * idx);
57}
58
59static inline struct annotation *symbol__annotation(struct symbol *sym)
60{
61 struct sannotation *a = container_of(sym, struct sannotation, symbol);
62 return &a->annotation;
63}
64
65int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
66 int evidx, u64 addr);
67int symbol__alloc_hist(struct symbol *sym, int nevents);
68void symbol__annotate_zero_histograms(struct symbol *sym);
69
70int symbol__annotate(struct symbol *sym, struct map *map,
71 struct list_head *head, size_t privsize);
72int symbol__annotate_printf(struct symbol *sym, struct map *map,
73 struct list_head *head, int evidx, bool full_paths,
74 int min_pcnt, int max_lines);
75void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
76void symbol__annotate_decay_histogram(struct symbol *sym,
77 struct list_head *head, int evidx);
78void objdump_line_list__purge(struct list_head *head);
79
80int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
81 bool print_lines, bool full_paths, int min_pcnt,
82 int max_lines);
83
84#ifdef NO_NEWT_SUPPORT
85static inline int symbol__tui_annotate(symbol *sym __used,
86 struct map *map __used, int evidx __used)
87{
88 return 0;
89}
90#else
91int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx);
92#endif
93
94#endif /* __PERF_ANNOTATE_H */
diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c
index 95887804dc8..bac5ab68496 100644
--- a/tools/perf/util/hist.c
+++ b/tools/perf/util/hist.c
@@ -1,3 +1,4 @@
1#include "annotate.h"
1#include "util.h" 2#include "util.h"
2#include "build-id.h" 3#include "build-id.h"
3#include "hist.h" 4#include "hist.h"
@@ -949,225 +950,15 @@ void hists__filter_by_thread(struct hists *self, const struct thread *thread)
949 } 950 }
950} 951}
951 952
952static int symbol__alloc_hist(struct symbol *self) 953int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 ip)
953{ 954{
954 struct sym_priv *priv = symbol__priv(self); 955 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip);
955 const int size = (sizeof(*priv->hist) +
956 (self->end - self->start) * sizeof(u64));
957
958 priv->hist = zalloc(size);
959 return priv->hist == NULL ? -1 : 0;
960}
961
962int hist_entry__inc_addr_samples(struct hist_entry *self, u64 ip)
963{
964 unsigned int sym_size, offset;
965 struct symbol *sym = self->ms.sym;
966 struct sym_priv *priv;
967 struct sym_hist *h;
968
969 if (!sym || !self->ms.map)
970 return 0;
971
972 priv = symbol__priv(sym);
973 if (priv->hist == NULL && symbol__alloc_hist(sym) < 0)
974 return -ENOMEM;
975
976 sym_size = sym->end - sym->start;
977 offset = ip - sym->start;
978
979 pr_debug3("%s: ip=%#" PRIx64 "\n", __func__, self->ms.map->unmap_ip(self->ms.map, ip));
980
981 if (offset >= sym_size)
982 return 0;
983
984 h = priv->hist;
985 h->sum++;
986 h->ip[offset]++;
987
988 pr_debug3("%#" PRIx64 " %s: period++ [ip: %#" PRIx64 ", %#" PRIx64
989 "] => %" PRIu64 "\n", self->ms.sym->start, self->ms.sym->name,
990 ip, ip - self->ms.sym->start, h->ip[offset]);
991 return 0;
992}
993
994static struct objdump_line *objdump_line__new(s64 offset, char *line, size_t privsize)
995{
996 struct objdump_line *self = malloc(sizeof(*self) + privsize);
997
998 if (self != NULL) {
999 self->offset = offset;
1000 self->line = line;
1001 }
1002
1003 return self;
1004}
1005
1006void objdump_line__free(struct objdump_line *self)
1007{
1008 free(self->line);
1009 free(self);
1010}
1011
1012static void objdump__add_line(struct list_head *head, struct objdump_line *line)
1013{
1014 list_add_tail(&line->node, head);
1015}
1016
1017struct objdump_line *objdump__get_next_ip_line(struct list_head *head,
1018 struct objdump_line *pos)
1019{
1020 list_for_each_entry_continue(pos, head, node)
1021 if (pos->offset >= 0)
1022 return pos;
1023
1024 return NULL;
1025} 956}
1026 957
1027static int hist_entry__parse_objdump_line(struct hist_entry *self, FILE *file, 958int hist_entry__annotate(struct hist_entry *he, struct list_head *head,
1028 struct list_head *head, size_t privsize)
1029{
1030 struct symbol *sym = self->ms.sym;
1031 struct objdump_line *objdump_line;
1032 char *line = NULL, *tmp, *tmp2, *c;
1033 size_t line_len;
1034 s64 line_ip, offset = -1;
1035
1036 if (getline(&line, &line_len, file) < 0)
1037 return -1;
1038
1039 if (!line)
1040 return -1;
1041
1042 while (line_len != 0 && isspace(line[line_len - 1]))
1043 line[--line_len] = '\0';
1044
1045 c = strchr(line, '\n');
1046 if (c)
1047 *c = 0;
1048
1049 line_ip = -1;
1050
1051 /*
1052 * Strip leading spaces:
1053 */
1054 tmp = line;
1055 while (*tmp) {
1056 if (*tmp != ' ')
1057 break;
1058 tmp++;
1059 }
1060
1061 if (*tmp) {
1062 /*
1063 * Parse hexa addresses followed by ':'
1064 */
1065 line_ip = strtoull(tmp, &tmp2, 16);
1066 if (*tmp2 != ':' || tmp == tmp2 || tmp2[1] == '\0')
1067 line_ip = -1;
1068 }
1069
1070 if (line_ip != -1) {
1071 u64 start = map__rip_2objdump(self->ms.map, sym->start),
1072 end = map__rip_2objdump(self->ms.map, sym->end);
1073
1074 offset = line_ip - start;
1075 if (offset < 0 || (u64)line_ip > end)
1076 offset = -1;
1077 }
1078
1079 objdump_line = objdump_line__new(offset, line, privsize);
1080 if (objdump_line == NULL) {
1081 free(line);
1082 return -1;
1083 }
1084 objdump__add_line(head, objdump_line);
1085
1086 return 0;
1087}
1088
1089int hist_entry__annotate(struct hist_entry *self, struct list_head *head,
1090 size_t privsize) 959 size_t privsize)
1091{ 960{
1092 struct symbol *sym = self->ms.sym; 961 return symbol__annotate(he->ms.sym, he->ms.map, head, privsize);
1093 struct map *map = self->ms.map;
1094 struct dso *dso = map->dso;
1095 char *filename = dso__build_id_filename(dso, NULL, 0);
1096 bool free_filename = true;
1097 char command[PATH_MAX * 2];
1098 FILE *file;
1099 int err = 0;
1100 u64 len;
1101 char symfs_filename[PATH_MAX];
1102
1103 if (filename) {
1104 snprintf(symfs_filename, sizeof(symfs_filename), "%s%s",
1105 symbol_conf.symfs, filename);
1106 }
1107
1108 if (filename == NULL) {
1109 if (dso->has_build_id) {
1110 pr_err("Can't annotate %s: not enough memory\n",
1111 sym->name);
1112 return -ENOMEM;
1113 }
1114 goto fallback;
1115 } else if (readlink(symfs_filename, command, sizeof(command)) < 0 ||
1116 strstr(command, "[kernel.kallsyms]") ||
1117 access(symfs_filename, R_OK)) {
1118 free(filename);
1119fallback:
1120 /*
1121 * If we don't have build-ids or the build-id file isn't in the
1122 * cache, or is just a kallsyms file, well, lets hope that this
1123 * DSO is the same as when 'perf record' ran.
1124 */
1125 filename = dso->long_name;
1126 snprintf(symfs_filename, sizeof(symfs_filename), "%s%s",
1127 symbol_conf.symfs, filename);
1128 free_filename = false;
1129 }
1130
1131 if (dso->origin == DSO__ORIG_KERNEL) {
1132 if (dso->annotate_warned)
1133 goto out_free_filename;
1134 err = -ENOENT;
1135 dso->annotate_warned = 1;
1136 pr_err("Can't annotate %s: No vmlinux file was found in the "
1137 "path\n", sym->name);
1138 goto out_free_filename;
1139 }
1140
1141 pr_debug("%s: filename=%s, sym=%s, start=%#" PRIx64 ", end=%#" PRIx64 "\n", __func__,
1142 filename, sym->name, map->unmap_ip(map, sym->start),
1143 map->unmap_ip(map, sym->end));
1144
1145 len = sym->end - sym->start;
1146
1147 pr_debug("annotating [%p] %30s : [%p] %30s\n",
1148 dso, dso->long_name, sym, sym->name);
1149
1150 snprintf(command, sizeof(command),
1151 "objdump --start-address=0x%016" PRIx64 " --stop-address=0x%016" PRIx64 " -dS -C %s|grep -v %s|expand",
1152 map__rip_2objdump(map, sym->start),
1153 map__rip_2objdump(map, sym->end),
1154 symfs_filename, filename);
1155
1156 pr_debug("Executing: %s\n", command);
1157
1158 file = popen(command, "r");
1159 if (!file)
1160 goto out_free_filename;
1161
1162 while (!feof(file))
1163 if (hist_entry__parse_objdump_line(self, file, head, privsize) < 0)
1164 break;
1165
1166 pclose(file);
1167out_free_filename:
1168 if (free_filename)
1169 free(filename);
1170 return err;
1171} 962}
1172 963
1173void hists__inc_nr_events(struct hists *self, u32 type) 964void hists__inc_nr_events(struct hists *self, u32 type)
diff --git a/tools/perf/util/hist.h b/tools/perf/util/hist.h
index 889559b8649..2c6cdae6a76 100644
--- a/tools/perf/util/hist.h
+++ b/tools/perf/util/hist.h
@@ -9,33 +9,6 @@ extern struct callchain_param callchain_param;
9struct hist_entry; 9struct hist_entry;
10struct addr_location; 10struct addr_location;
11struct symbol; 11struct symbol;
12struct rb_root;
13
14struct objdump_line {
15 struct list_head node;
16 s64 offset;
17 char *line;
18};
19
20void objdump_line__free(struct objdump_line *self);
21struct objdump_line *objdump__get_next_ip_line(struct list_head *head,
22 struct objdump_line *pos);
23
24struct sym_hist {
25 u64 sum;
26 u64 ip[0];
27};
28
29struct sym_ext {
30 struct rb_node node;
31 double percent;
32 char *path;
33};
34
35struct sym_priv {
36 struct sym_hist *hist;
37 struct sym_ext *ext;
38};
39 12
40/* 13/*
41 * The kernel collects the number of events it couldn't send in a stretch and 14 * The kernel collects the number of events it couldn't send in a stretch and
@@ -104,7 +77,7 @@ size_t hists__fprintf_nr_events(struct hists *self, FILE *fp);
104size_t hists__fprintf(struct hists *self, struct hists *pair, 77size_t hists__fprintf(struct hists *self, struct hists *pair,
105 bool show_displacement, FILE *fp); 78 bool show_displacement, FILE *fp);
106 79
107int hist_entry__inc_addr_samples(struct hist_entry *self, u64 ip); 80int hist_entry__inc_addr_samples(struct hist_entry *self, int evidx, u64 addr);
108int hist_entry__annotate(struct hist_entry *self, struct list_head *head, 81int hist_entry__annotate(struct hist_entry *self, struct list_head *head,
109 size_t privsize); 82 size_t privsize);
110 83
@@ -118,18 +91,20 @@ bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len);
118#ifdef NO_NEWT_SUPPORT 91#ifdef NO_NEWT_SUPPORT
119static inline int hists__browse(struct hists *self __used, 92static inline int hists__browse(struct hists *self __used,
120 const char *helpline __used, 93 const char *helpline __used,
121 const char *ev_name __used) 94 const char *ev_name __used, int evidx __used)
122{ 95{
123 return 0; 96 return 0;
124} 97}
125 98
126static inline int hists__tui_browse_tree(struct rb_root *self __used, 99static inline int hists__tui_browse_tree(struct rb_root *self __used,
127 const char *help __used) 100 const char *help __used,
101 int evidx __used)
128{ 102{
129 return 0; 103 return 0;
130} 104}
131 105
132static inline int hist_entry__tui_annotate(struct hist_entry *self __used) 106static inline int hist_entry__tui_annotate(struct hist_entry *self __used,
107 int evidx __used)
133{ 108{
134 return 0; 109 return 0;
135} 110}
@@ -138,13 +113,13 @@ static inline int hist_entry__tui_annotate(struct hist_entry *self __used)
138#else 113#else
139#include <newt.h> 114#include <newt.h>
140int hists__browse(struct hists *self, const char *helpline, 115int hists__browse(struct hists *self, const char *helpline,
141 const char *ev_name); 116 const char *ev_name, int evidx);
142int hist_entry__tui_annotate(struct hist_entry *self); 117int hist_entry__tui_annotate(struct hist_entry *self, int evidx);
143 118
144#define KEY_LEFT NEWT_KEY_LEFT 119#define KEY_LEFT NEWT_KEY_LEFT
145#define KEY_RIGHT NEWT_KEY_RIGHT 120#define KEY_RIGHT NEWT_KEY_RIGHT
146 121
147int hists__tui_browse_tree(struct rb_root *self, const char *help); 122int hists__tui_browse_tree(struct rb_root *self, const char *help, int evidx);
148#endif 123#endif
149 124
150unsigned int hists__sort_list_width(struct hists *self); 125unsigned int hists__sort_list_width(struct hists *self);
diff --git a/tools/perf/util/top.c b/tools/perf/util/top.c
index 1d2e2652cd6..70a9c13f4ad 100644
--- a/tools/perf/util/top.c
+++ b/tools/perf/util/top.c
@@ -200,6 +200,7 @@ void perf_top__find_widths(struct perf_top *top, struct rb_root *root,
200 200
201 for (nd = rb_first(root); nd; nd = rb_next(nd)) { 201 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
202 struct sym_entry *syme = rb_entry(nd, struct sym_entry, rb_node); 202 struct sym_entry *syme = rb_entry(nd, struct sym_entry, rb_node);
203 struct symbol *sym = sym_entry__symbol(syme);
203 204
204 if (++printed > top->print_entries || 205 if (++printed > top->print_entries ||
205 (int)syme->snap_count < top->count_filter) 206 (int)syme->snap_count < top->count_filter)
@@ -211,7 +212,7 @@ void perf_top__find_widths(struct perf_top *top, struct rb_root *root,
211 if (syme->map->dso->short_name_len > *dso_short_width) 212 if (syme->map->dso->short_name_len > *dso_short_width)
212 *dso_short_width = syme->map->dso->short_name_len; 213 *dso_short_width = syme->map->dso->short_name_len;
213 214
214 if (syme->name_len > *sym_width) 215 if (sym->namelen > *sym_width)
215 *sym_width = syme->name_len; 216 *sym_width = sym->namelen;
216 } 217 }
217} 218}
diff --git a/tools/perf/util/top.h b/tools/perf/util/top.h
index 611370fa7df..fe44afb6998 100644
--- a/tools/perf/util/top.h
+++ b/tools/perf/util/top.h
@@ -11,17 +11,8 @@
11struct perf_evlist; 11struct perf_evlist;
12struct perf_evsel; 12struct perf_evsel;
13 13
14struct source_line {
15 u64 eip;
16 unsigned long count[MAX_COUNTERS]; /* FIXME */
17 char *line;
18 struct source_line *next;
19};
20
21struct sym_entry_source { 14struct sym_entry_source {
22 struct source_line *source; 15 struct list_head head;
23 struct source_line *lines;
24 struct source_line **lines_tail;
25 pthread_mutex_t lock; 16 pthread_mutex_t lock;
26}; 17};
27 18
@@ -31,7 +22,6 @@ struct sym_entry {
31 unsigned long snap_count; 22 unsigned long snap_count;
32 double weight; 23 double weight;
33 int skip; 24 int skip;
34 u16 name_len;
35 u8 origin; 25 u8 origin;
36 struct map *map; 26 struct map *map;
37 struct sym_entry_source *src; 27 struct sym_entry_source *src;
diff --git a/tools/perf/util/ui/browsers/annotate.c b/tools/perf/util/ui/browsers/annotate.c
index 82b78f99251..8d8a16895af 100644
--- a/tools/perf/util/ui/browsers/annotate.c
+++ b/tools/perf/util/ui/browsers/annotate.c
@@ -1,9 +1,11 @@
1#include "../browser.h" 1#include "../browser.h"
2#include "../helpline.h" 2#include "../helpline.h"
3#include "../libslang.h" 3#include "../libslang.h"
4#include "../../annotate.h"
4#include "../../hist.h" 5#include "../../hist.h"
5#include "../../sort.h" 6#include "../../sort.h"
6#include "../../symbol.h" 7#include "../../symbol.h"
8#include "../../annotate.h"
7 9
8static void ui__error_window(const char *fmt, ...) 10static void ui__error_window(const char *fmt, ...)
9{ 11{
@@ -59,31 +61,33 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
59 61
60static double objdump_line__calc_percent(struct objdump_line *self, 62static double objdump_line__calc_percent(struct objdump_line *self,
61 struct list_head *head, 63 struct list_head *head,
62 struct symbol *sym) 64 struct symbol *sym, int evidx)
63{ 65{
64 double percent = 0.0; 66 double percent = 0.0;
65 67
66 if (self->offset != -1) { 68 if (self->offset != -1) {
67 int len = sym->end - sym->start; 69 int len = sym->end - sym->start;
68 unsigned int hits = 0; 70 unsigned int hits = 0;
69 struct sym_priv *priv = symbol__priv(sym); 71 struct annotation *notes = symbol__annotation(sym);
70 struct sym_ext *sym_ext = priv->ext; 72 struct source_line *src_line = notes->src_line;
71 struct sym_hist *h = priv->hist; 73 struct sym_hist *h = annotation__histogram(notes, evidx);
72 s64 offset = self->offset; 74 s64 offset = self->offset;
73 struct objdump_line *next = objdump__get_next_ip_line(head, self); 75 struct objdump_line *next = objdump__get_next_ip_line(head, self);
74 76
75
76 while (offset < (s64)len && 77 while (offset < (s64)len &&
77 (next == NULL || offset < next->offset)) { 78 (next == NULL || offset < next->offset)) {
78 if (sym_ext) { 79 if (src_line) {
79 percent += sym_ext[offset].percent; 80 percent += src_line[offset].percent;
80 } else 81 } else
81 hits += h->ip[offset]; 82 hits += h->addr[offset];
82 83
83 ++offset; 84 ++offset;
84 } 85 }
85 86 /*
86 if (sym_ext == NULL && h->sum) 87 * If the percentage wasn't already calculated in
88 * symbol__get_source_line, do it now:
89 */
90 if (src_line == NULL && h->sum)
87 percent = 100.0 * hits / h->sum; 91 percent = 100.0 * hits / h->sum;
88 } 92 }
89 93
@@ -136,10 +140,10 @@ static void annotate_browser__set_top(struct annotate_browser *self,
136static int annotate_browser__run(struct annotate_browser *self) 140static int annotate_browser__run(struct annotate_browser *self)
137{ 141{
138 struct rb_node *nd; 142 struct rb_node *nd;
139 struct hist_entry *he = self->b.priv; 143 struct symbol *sym = self->b.priv;
140 int key; 144 int key;
141 145
142 if (ui_browser__show(&self->b, he->ms.sym->name, 146 if (ui_browser__show(&self->b, sym->name,
143 "<-, -> or ESC: exit, TAB/shift+TAB: cycle thru samples") < 0) 147 "<-, -> or ESC: exit, TAB/shift+TAB: cycle thru samples") < 0)
144 return -1; 148 return -1;
145 /* 149 /*
@@ -179,7 +183,12 @@ out:
179 return key; 183 return key;
180} 184}
181 185
182int hist_entry__tui_annotate(struct hist_entry *self) 186int hist_entry__tui_annotate(struct hist_entry *he, int evidx)
187{
188 return symbol__tui_annotate(he->ms.sym, he->ms.map, evidx);
189}
190
191int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx)
183{ 192{
184 struct objdump_line *pos, *n; 193 struct objdump_line *pos, *n;
185 struct objdump_line_rb_node *rbpos; 194 struct objdump_line_rb_node *rbpos;
@@ -190,18 +199,18 @@ int hist_entry__tui_annotate(struct hist_entry *self)
190 .refresh = ui_browser__list_head_refresh, 199 .refresh = ui_browser__list_head_refresh,
191 .seek = ui_browser__list_head_seek, 200 .seek = ui_browser__list_head_seek,
192 .write = annotate_browser__write, 201 .write = annotate_browser__write,
193 .priv = self, 202 .priv = sym,
194 }, 203 },
195 }; 204 };
196 int ret; 205 int ret;
197 206
198 if (self->ms.sym == NULL) 207 if (sym == NULL)
199 return -1; 208 return -1;
200 209
201 if (self->ms.map->dso->annotate_warned) 210 if (map->dso->annotate_warned)
202 return -1; 211 return -1;
203 212
204 if (hist_entry__annotate(self, &head, sizeof(*rbpos)) < 0) { 213 if (symbol__annotate(sym, map, &head, sizeof(*rbpos)) < 0) {
205 ui__error_window(ui_helpline__last_msg); 214 ui__error_window(ui_helpline__last_msg);
206 return -1; 215 return -1;
207 } 216 }
@@ -214,7 +223,7 @@ int hist_entry__tui_annotate(struct hist_entry *self)
214 browser.b.width = line_len; 223 browser.b.width = line_len;
215 rbpos = objdump_line__rb(pos); 224 rbpos = objdump_line__rb(pos);
216 rbpos->idx = browser.b.nr_entries++; 225 rbpos->idx = browser.b.nr_entries++;
217 rbpos->percent = objdump_line__calc_percent(pos, &head, self->ms.sym); 226 rbpos->percent = objdump_line__calc_percent(pos, &head, sym, evidx);
218 if (rbpos->percent < 0.01) 227 if (rbpos->percent < 0.01)
219 continue; 228 continue;
220 objdump__insert_line(&browser.entries, rbpos); 229 objdump__insert_line(&browser.entries, rbpos);
diff --git a/tools/perf/util/ui/browsers/hists.c b/tools/perf/util/ui/browsers/hists.c
index 86428239fa6..294b4953852 100644
--- a/tools/perf/util/ui/browsers/hists.c
+++ b/tools/perf/util/ui/browsers/hists.c
@@ -797,7 +797,8 @@ static int hists__browser_title(struct hists *self, char *bf, size_t size,
797 return printed; 797 return printed;
798} 798}
799 799
800int hists__browse(struct hists *self, const char *helpline, const char *ev_name) 800int hists__browse(struct hists *self, const char *helpline,
801 const char *ev_name, int evidx)
801{ 802{
802 struct hist_browser *browser = hist_browser__new(self); 803 struct hist_browser *browser = hist_browser__new(self);
803 struct pstack *fstack; 804 struct pstack *fstack;
@@ -935,7 +936,7 @@ do_annotate:
935 if (he == NULL) 936 if (he == NULL)
936 continue; 937 continue;
937 938
938 hist_entry__tui_annotate(he); 939 hist_entry__tui_annotate(he, evidx);
939 } else if (choice == browse_map) 940 } else if (choice == browse_map)
940 map__browse(browser->selection->map); 941 map__browse(browser->selection->map);
941 else if (choice == zoom_dso) { 942 else if (choice == zoom_dso) {
@@ -984,7 +985,7 @@ out:
984 return key; 985 return key;
985} 986}
986 987
987int hists__tui_browse_tree(struct rb_root *self, const char *help) 988int hists__tui_browse_tree(struct rb_root *self, const char *help, int evidx)
988{ 989{
989 struct rb_node *first = rb_first(self), *nd = first, *next; 990 struct rb_node *first = rb_first(self), *nd = first, *next;
990 int key = 0; 991 int key = 0;
@@ -993,7 +994,7 @@ int hists__tui_browse_tree(struct rb_root *self, const char *help)
993 struct hists *hists = rb_entry(nd, struct hists, rb_node); 994 struct hists *hists = rb_entry(nd, struct hists, rb_node);
994 const char *ev_name = __event_name(hists->type, hists->config); 995 const char *ev_name = __event_name(hists->type, hists->config);
995 996
996 key = hists__browse(hists, help, ev_name); 997 key = hists__browse(hists, help, ev_name, evidx);
997 switch (key) { 998 switch (key) {
998 case NEWT_KEY_TAB: 999 case NEWT_KEY_TAB:
999 next = rb_next(nd); 1000 next = rb_next(nd);