Merge git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6
[linux-2.6-block.git] / tools / perf / builtin-annotate.c
CommitLineData
8035e428
IM
1/*
2 * builtin-annotate.c
3 *
4 * Builtin annotate command: Analyze the perf.data input file,
5 * look up and read DSOs and symbol information and display
6 * a histogram of results, along various sorting keys.
7 */
8#include "builtin.h"
9
10#include "util/util.h"
11
12#include "util/color.h"
5da50258 13#include <linux/list.h>
8035e428 14#include "util/cache.h"
43cbcd8a 15#include <linux/rbtree.h>
8035e428 16#include "util/symbol.h"
8035e428
IM
17
18#include "perf.h"
8f28827a 19#include "util/debug.h"
8035e428 20
62daacb5 21#include "util/event.h"
8035e428
IM
22#include "util/parse-options.h"
23#include "util/parse-events.h"
6baa0a5a 24#include "util/thread.h"
dd68ada2 25#include "util/sort.h"
3d1d07ec 26#include "util/hist.h"
94c744b6 27#include "util/session.h"
8035e428 28
8035e428 29static char const *input_name = "perf.data";
8035e428 30
c0555642 31static bool force;
8035e428 32
c0555642 33static bool full_paths;
42976487 34
c0555642 35static bool print_line;
301406b9 36
e4204992
ACM
37static const char *sym_hist_filter;
38
1c02c4d2 39static int hists__add_entry(struct hists *self, struct addr_location *al)
8035e428 40{
628ada0c
ACM
41 struct hist_entry *he;
42
43 if (sym_hist_filter != NULL &&
44 (al->sym == NULL || strcmp(sym_hist_filter, al->sym->name) != 0)) {
45 /* We're only interested in a symbol named sym_hist_filter */
46 if (al->sym != NULL) {
47 rb_erase(&al->sym->rb_node,
48 &al->map->dso->symbols[al->map->type]);
49 symbol__delete(al->sym);
50 }
51 return 0;
52 }
53
1c02c4d2 54 he = __hists__add_entry(self, al, NULL, 1);
9735abf1 55 if (he == NULL)
8035e428 56 return -ENOMEM;
628ada0c 57
ef7b93a1 58 return hist_entry__inc_addr_samples(he, al->addr);
8035e428
IM
59}
60
b3165f41 61static int process_sample_event(event_t *event, struct perf_session *session)
8035e428 62{
1ed091c4 63 struct addr_location al;
6baa0a5a 64
0d755034
ACM
65 dump_printf("(IP, %d): %d: %#Lx\n", event->header.misc,
66 event->ip.pid, event->ip.ip);
8035e428 67
628ada0c 68 if (event__preprocess_sample(event, session, &al, NULL) < 0) {
29a9f66d
ACM
69 pr_warning("problem processing %d event, skipping it.\n",
70 event->header.type);
8035e428
IM
71 return -1;
72 }
73
1c02c4d2 74 if (!al.filtered && hists__add_entry(&session->hists, &al)) {
29a9f66d
ACM
75 pr_warning("problem incrementing symbol count, "
76 "skipping event\n");
ec218fc4 77 return -1;
8035e428 78 }
8035e428
IM
79
80 return 0;
81}
82
48fb4fdd
ACM
83static int objdump_line__print(struct objdump_line *self,
84 struct list_head *head,
85 struct hist_entry *he, u64 len)
86{
59fd5306 87 struct symbol *sym = he->ms.sym;
48fb4fdd
ACM
88 static const char *prev_line;
89 static const char *prev_color;
90
91 if (self->offset != -1) {
301406b9 92 const char *path = NULL;
0b73da3f
IM
93 unsigned int hits = 0;
94 double percent = 0.0;
83a0944f 95 const char *color;
00a192b3 96 struct sym_priv *priv = symbol__priv(sym);
e4204992
ACM
97 struct sym_ext *sym_ext = priv->ext;
98 struct sym_hist *h = priv->hist;
48fb4fdd
ACM
99 s64 offset = self->offset;
100 struct objdump_line *next = objdump__get_next_ip_line(head, self);
101
102 while (offset < (s64)len &&
103 (next == NULL || offset < next->offset)) {
104 if (sym_ext) {
105 if (path == NULL)
106 path = sym_ext[offset].path;
107 percent += sym_ext[offset].percent;
108 } else
109 hits += h->ip[offset];
110
111 ++offset;
112 }
0b73da3f 113
48fb4fdd 114 if (sym_ext == NULL && h->sum)
e4204992 115 percent = 100.0 * hits / h->sum;
0b73da3f 116
1e11fd82 117 color = get_percent_color(percent);
0b73da3f 118
301406b9
FW
119 /*
120 * Also color the filename and line if needed, with
121 * the same color than the percentage. Don't print it
122 * twice for close colored ip with the same filename:line
123 */
124 if (path) {
125 if (!prev_line || strcmp(prev_line, path)
126 || color != prev_color) {
127 color_fprintf(stdout, color, " %s", path);
128 prev_line = path;
129 prev_color = color;
130 }
131 }
132
0b73da3f
IM
133 color_fprintf(stdout, color, " %7.2f", percent);
134 printf(" : ");
48fb4fdd 135 color_fprintf(stdout, PERF_COLOR_BLUE, "%s\n", self->line);
0b73da3f 136 } else {
48fb4fdd 137 if (!*self->line)
0b73da3f
IM
138 printf(" :\n");
139 else
48fb4fdd 140 printf(" : %s\n", self->line);
0b73da3f
IM
141 }
142
143 return 0;
144}
145
971738f3
FW
146static struct rb_root root_sym_ext;
147
148static void insert_source_line(struct sym_ext *sym_ext)
149{
150 struct sym_ext *iter;
151 struct rb_node **p = &root_sym_ext.rb_node;
152 struct rb_node *parent = NULL;
153
154 while (*p != NULL) {
155 parent = *p;
156 iter = rb_entry(parent, struct sym_ext, node);
157
158 if (sym_ext->percent > iter->percent)
159 p = &(*p)->rb_left;
160 else
161 p = &(*p)->rb_right;
162 }
163
164 rb_link_node(&sym_ext->node, parent, p);
165 rb_insert_color(&sym_ext->node, &root_sym_ext);
166}
167
e4204992 168static void free_source_line(struct hist_entry *he, int len)
301406b9 169{
59fd5306 170 struct sym_priv *priv = symbol__priv(he->ms.sym);
e4204992 171 struct sym_ext *sym_ext = priv->ext;
301406b9
FW
172 int i;
173
174 if (!sym_ext)
175 return;
176
177 for (i = 0; i < len; i++)
178 free(sym_ext[i].path);
179 free(sym_ext);
180
e4204992 181 priv->ext = NULL;
971738f3 182 root_sym_ext = RB_ROOT;
301406b9
FW
183}
184
185/* Get the filename:line for the colored entries */
c17c2db1 186static void
ed52ce2e 187get_source_line(struct hist_entry *he, int len, const char *filename)
301406b9 188{
59fd5306 189 struct symbol *sym = he->ms.sym;
ed52ce2e 190 u64 start;
301406b9
FW
191 int i;
192 char cmd[PATH_MAX * 2];
193 struct sym_ext *sym_ext;
00a192b3 194 struct sym_priv *priv = symbol__priv(sym);
e4204992 195 struct sym_hist *h = priv->hist;
301406b9 196
e4204992 197 if (!h->sum)
301406b9
FW
198 return;
199
e4204992
ACM
200 sym_ext = priv->ext = calloc(len, sizeof(struct sym_ext));
201 if (!priv->ext)
301406b9
FW
202 return;
203
59fd5306 204 start = he->ms.map->unmap_ip(he->ms.map, sym->start);
301406b9
FW
205
206 for (i = 0; i < len; i++) {
207 char *path = NULL;
208 size_t line_len;
9cffa8d5 209 u64 offset;
301406b9
FW
210 FILE *fp;
211
e4204992 212 sym_ext[i].percent = 100.0 * h->ip[i] / h->sum;
301406b9
FW
213 if (sym_ext[i].percent <= 0.5)
214 continue;
215
ed52ce2e 216 offset = start + i;
c17c2db1 217 sprintf(cmd, "addr2line -e %s %016llx", filename, offset);
301406b9
FW
218 fp = popen(cmd, "r");
219 if (!fp)
220 continue;
221
222 if (getline(&path, &line_len, fp) < 0 || !line_len)
223 goto next;
224
c17c2db1 225 sym_ext[i].path = malloc(sizeof(char) * line_len + 1);
301406b9
FW
226 if (!sym_ext[i].path)
227 goto next;
228
229 strcpy(sym_ext[i].path, path);
971738f3 230 insert_source_line(&sym_ext[i]);
301406b9
FW
231
232 next:
233 pclose(fp);
234 }
235}
236
83a0944f 237static void print_summary(const char *filename)
971738f3
FW
238{
239 struct sym_ext *sym_ext;
240 struct rb_node *node;
241
242 printf("\nSorted summary for file %s\n", filename);
243 printf("----------------------------------------------\n\n");
244
245 if (RB_EMPTY_ROOT(&root_sym_ext)) {
246 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN);
247 return;
248 }
249
250 node = rb_first(&root_sym_ext);
251 while (node) {
252 double percent;
83a0944f 253 const char *color;
971738f3
FW
254 char *path;
255
256 sym_ext = rb_entry(node, struct sym_ext, node);
257 percent = sym_ext->percent;
1e11fd82 258 color = get_percent_color(percent);
971738f3
FW
259 path = sym_ext->path;
260
261 color_fprintf(stdout, color, " %7.2f %s", percent, path);
262 node = rb_next(node);
263 }
264}
265
48fb4fdd
ACM
266static void hist_entry__print_hits(struct hist_entry *self)
267{
59fd5306 268 struct symbol *sym = self->ms.sym;
48fb4fdd
ACM
269 struct sym_priv *priv = symbol__priv(sym);
270 struct sym_hist *h = priv->hist;
271 u64 len = sym->end - sym->start, offset;
272
273 for (offset = 0; offset < len; ++offset)
274 if (h->ip[offset] != 0)
275 printf("%*Lx: %Lu\n", BITS_PER_LONG / 2,
276 sym->start + offset, h->ip[offset]);
277 printf("%*s: %Lu\n", BITS_PER_LONG / 2, "h->sum", h->sum);
278}
279
ed52ce2e 280static void annotate_sym(struct hist_entry *he)
0b73da3f 281{
59fd5306 282 struct map *map = he->ms.map;
ed52ce2e 283 struct dso *dso = map->dso;
59fd5306 284 struct symbol *sym = he->ms.sym;
439d473b
ACM
285 const char *filename = dso->long_name, *d_filename;
286 u64 len;
48fb4fdd
ACM
287 LIST_HEAD(head);
288 struct objdump_line *pos, *n;
0b73da3f 289
ef7b93a1 290 if (hist_entry__annotate(he, &head) < 0)
d06d92b7 291 return;
ed52ce2e 292
42976487
MG
293 if (full_paths)
294 d_filename = filename;
295 else
296 d_filename = basename(filename);
0b73da3f 297
0b73da3f
IM
298 len = sym->end - sym->start;
299
971738f3 300 if (print_line) {
ed52ce2e 301 get_source_line(he, len, filename);
971738f3
FW
302 print_summary(filename);
303 }
304
305 printf("\n\n------------------------------------------------\n");
42976487 306 printf(" Percent | Source code & Disassembly of %s\n", d_filename);
971738f3
FW
307 printf("------------------------------------------------\n");
308
48fb4fdd
ACM
309 if (verbose)
310 hist_entry__print_hits(he);
311
312 list_for_each_entry_safe(pos, n, &head, node) {
313 objdump_line__print(pos, &head, he, len);
314 list_del(&pos->node);
315 objdump_line__free(pos);
316 }
317
971738f3 318 if (print_line)
e4204992 319 free_source_line(he, len);
0b73da3f
IM
320}
321
1c02c4d2 322static void hists__find_annotations(struct hists *self)
0b73da3f
IM
323{
324 struct rb_node *nd;
0b73da3f 325
1c02c4d2 326 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
ed52ce2e 327 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
e4204992 328 struct sym_priv *priv;
0b73da3f 329
59fd5306 330 if (he->ms.sym == NULL)
e4204992 331 continue;
0b73da3f 332
59fd5306 333 priv = symbol__priv(he->ms.sym);
e4204992
ACM
334 if (priv->hist == NULL)
335 continue;
336
337 annotate_sym(he);
e4204992
ACM
338 /*
339 * Since we have a hist_entry per IP for the same symbol, free
59fd5306 340 * he->ms.sym->hist to signal we already processed this symbol.
e4204992
ACM
341 */
342 free(priv->hist);
343 priv->hist = NULL;
0b73da3f 344 }
0b73da3f
IM
345}
346
301a0b02 347static struct perf_event_ops event_ops = {
55aa640f
ACM
348 .sample = process_sample_event,
349 .mmap = event__process_mmap,
350 .comm = event__process_comm,
351 .fork = event__process_task,
bab81b62
LZ
352};
353
8035e428
IM
354static int __cmd_annotate(void)
355{
bab81b62 356 int ret;
75be6cf4 357 struct perf_session *session;
8035e428 358
454c407e 359 session = perf_session__new(input_name, O_RDONLY, force, false);
94c744b6
ACM
360 if (session == NULL)
361 return -ENOMEM;
362
ec913369 363 ret = perf_session__process_events(session, &event_ops);
bab81b62 364 if (ret)
94c744b6 365 goto out_delete;
8035e428 366
62daacb5 367 if (dump_trace) {
c8446b9b 368 perf_session__fprintf_nr_events(session, stdout);
94c744b6 369 goto out_delete;
62daacb5 370 }
8035e428 371
da21d1b5 372 if (verbose > 3)
b3165f41 373 perf_session__fprintf(session, stdout);
8035e428 374
da21d1b5 375 if (verbose > 2)
cbf69680 376 perf_session__fprintf_dsos(session, stdout);
8035e428 377
1c02c4d2
ACM
378 hists__collapse_resort(&session->hists);
379 hists__output_resort(&session->hists);
380 hists__find_annotations(&session->hists);
94c744b6
ACM
381out_delete:
382 perf_session__delete(session);
8035e428 383
bab81b62 384 return ret;
8035e428
IM
385}
386
387static const char * const annotate_usage[] = {
388 "perf annotate [<options>] <command>",
389 NULL
390};
391
392static const struct option options[] = {
393 OPT_STRING('i', "input", &input_name, "file",
394 "input file name"),
ac73c5a9
ACM
395 OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
396 "only consider symbols in these dsos"),
23b87116 397 OPT_STRING('s', "symbol", &sym_hist_filter, "symbol",
0b73da3f 398 "symbol to annotate"),
fa6963b2 399 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
c0555642 400 OPT_INCR('v', "verbose", &verbose,
8035e428
IM
401 "be more verbose (show symbol address, etc)"),
402 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
403 "dump raw trace in ASCII"),
b32d133a
ACM
404 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
405 "file", "vmlinux pathname"),
406 OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
42976487 407 "load module symbols - WARNING: use only with -k and LIVE kernel"),
301406b9
FW
408 OPT_BOOLEAN('l', "print-line", &print_line,
409 "print matching source lines (may be slow)"),
42976487
MG
410 OPT_BOOLEAN('P', "full-paths", &full_paths,
411 "Don't shorten the displayed pathnames"),
8035e428
IM
412 OPT_END()
413};
414
f37a291c 415int cmd_annotate(int argc, const char **argv, const char *prefix __used)
8035e428 416{
655000e7
ACM
417 argc = parse_options(argc, argv, options, annotate_usage, 0);
418
75be6cf4
ACM
419 symbol_conf.priv_size = sizeof(struct sym_priv);
420 symbol_conf.try_vmlinux_path = true;
421
422 if (symbol__init() < 0)
b32d133a 423 return -1;
8035e428 424
c8829c7a 425 setup_sorting(annotate_usage, options);
8035e428 426
0b73da3f
IM
427 if (argc) {
428 /*
429 * Special case: if there's an argument left then assume tha
430 * it's a symbol filter:
431 */
432 if (argc > 1)
433 usage_with_options(annotate_usage, options);
434
435 sym_hist_filter = argv[0];
436 }
437
8035e428
IM
438 setup_pager();
439
dd68ada2 440 if (field_sep && *field_sep == '.') {
29a9f66d
ACM
441 pr_err("'.' is the only non valid --field-separator argument\n");
442 return -1;
dd68ada2
JK
443 }
444
8035e428
IM
445 return __cmd_annotate();
446}