]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/perf/util/annotate.c
perf annotate: Whitespace fixups
[mirror_ubuntu-artful-kernel.git] / tools / perf / util / annotate.c
CommitLineData
78f7defe
ACM
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"
ce6f4fab 17#include <pthread.h>
4383db88 18#include <linux/bitops.h>
78f7defe 19
f69b64f7 20const char *disassembler_style;
7a4ec938 21const char *objdump_path;
f69b64f7 22
7a997fe4
ACM
23static struct ins *ins__find(const char *name);
24static int disasm_line__parse(char *line, char **namep, char **rawp);
25
c46219ac
ACM
26static void ins__delete(struct ins_operands *ops)
27{
28 free(ops->source.raw);
29 free(ops->source.name);
30 free(ops->target.raw);
31 free(ops->target.name);
32}
33
5417072b
ACM
34static int ins__raw_scnprintf(struct ins *ins, char *bf, size_t size,
35 struct ins_operands *ops)
36{
37 return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->raw);
38}
39
40int ins__scnprintf(struct ins *ins, char *bf, size_t size,
41 struct ins_operands *ops)
42{
43 if (ins->ops->scnprintf)
44 return ins->ops->scnprintf(ins, bf, size, ops);
45
46 return ins__raw_scnprintf(ins, bf, size, ops);
47}
48
c7e6ead7 49static int call__parse(struct ins_operands *ops)
d86b0597 50{
d2232885
ACM
51 char *endptr, *tok, *name;
52
44d1a3ed 53 ops->target.addr = strtoull(ops->raw, &endptr, 16);
d2232885
ACM
54
55 name = strchr(endptr, '<');
56 if (name == NULL)
57 goto indirect_call;
58
59 name++;
60
61 tok = strchr(name, '>');
62 if (tok == NULL)
63 return -1;
64
65 *tok = '\0';
44d1a3ed 66 ops->target.name = strdup(name);
d2232885
ACM
67 *tok = '>';
68
44d1a3ed 69 return ops->target.name == NULL ? -1 : 0;
d2232885
ACM
70
71indirect_call:
e8ea1561
ACM
72 tok = strchr(endptr, '(');
73 if (tok != NULL) {
74 ops->target.addr = 0;
75 return 0;
76 }
77
d2232885
ACM
78 tok = strchr(endptr, '*');
79 if (tok == NULL)
80 return -1;
81
44d1a3ed 82 ops->target.addr = strtoull(tok + 1, NULL, 16);
d86b0597
ACM
83 return 0;
84}
85
d2232885 86static int call__scnprintf(struct ins *ins, char *bf, size_t size,
5417072b 87 struct ins_operands *ops)
d2232885 88{
44d1a3ed
ACM
89 if (ops->target.name)
90 return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->target.name);
d2232885 91
e8ea1561
ACM
92 if (ops->target.addr == 0)
93 return ins__raw_scnprintf(ins, bf, size, ops);
94
44d1a3ed 95 return scnprintf(bf, size, "%-6.6s *%" PRIx64, ins->name, ops->target.addr);
d2232885
ACM
96}
97
d86b0597 98static struct ins_ops call_ops = {
d2232885
ACM
99 .parse = call__parse,
100 .scnprintf = call__scnprintf,
d86b0597
ACM
101};
102
103bool ins__is_call(const struct ins *ins)
104{
105 return ins->ops == &call_ops;
106}
107
c7e6ead7 108static int jump__parse(struct ins_operands *ops)
4f9d0325 109{
c7e6ead7 110 const char *s = strchr(ops->raw, '+');
4f9d0325 111
fb29fa58
ACM
112 ops->target.addr = strtoll(ops->raw, NULL, 16);
113
114 if (s++ != NULL)
115 ops->target.offset = strtoll(s, NULL, 16);
116 else
117 ops->target.offset = UINT64_MAX;
4f9d0325 118
4f9d0325
ACM
119 return 0;
120}
121
c7e6ead7 122static int jump__scnprintf(struct ins *ins, char *bf, size_t size,
5417072b 123 struct ins_operands *ops)
28548d78 124{
44d1a3ed 125 return scnprintf(bf, size, "%-6.6s %" PRIx64, ins->name, ops->target.offset);
28548d78
ACM
126}
127
4f9d0325 128static struct ins_ops jump_ops = {
c7e6ead7
ACM
129 .parse = jump__parse,
130 .scnprintf = jump__scnprintf,
4f9d0325
ACM
131};
132
133bool ins__is_jump(const struct ins *ins)
134{
135 return ins->ops == &jump_ops;
136}
137
6de783b6
ACM
138static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep)
139{
140 char *endptr, *name, *t;
141
142 if (strstr(raw, "(%rip)") == NULL)
143 return 0;
144
145 *addrp = strtoull(comment, &endptr, 16);
146 name = strchr(endptr, '<');
147 if (name == NULL)
148 return -1;
149
150 name++;
151
152 t = strchr(name, '>');
153 if (t == NULL)
154 return 0;
155
156 *t = '\0';
157 *namep = strdup(name);
158 *t = '>';
159
160 return 0;
161}
162
7a997fe4
ACM
163static int lock__parse(struct ins_operands *ops)
164{
165 char *name;
166
167 ops->locked.ops = zalloc(sizeof(*ops->locked.ops));
168 if (ops->locked.ops == NULL)
169 return 0;
170
171 if (disasm_line__parse(ops->raw, &name, &ops->locked.ops->raw) < 0)
172 goto out_free_ops;
173
2ba34aaa
NK
174 ops->locked.ins = ins__find(name);
175 if (ops->locked.ins == NULL)
176 goto out_free_ops;
7a997fe4 177
2ba34aaa
NK
178 if (!ops->locked.ins->ops)
179 return 0;
7a997fe4 180
2ba34aaa
NK
181 if (ops->locked.ins->ops->parse)
182 ops->locked.ins->ops->parse(ops->locked.ops);
7a997fe4
ACM
183
184 return 0;
185
186out_free_ops:
187 free(ops->locked.ops);
188 ops->locked.ops = NULL;
189 return 0;
190}
191
192static int lock__scnprintf(struct ins *ins, char *bf, size_t size,
193 struct ins_operands *ops)
194{
195 int printed;
196
197 if (ops->locked.ins == NULL)
198 return ins__raw_scnprintf(ins, bf, size, ops);
199
200 printed = scnprintf(bf, size, "%-6.6s ", ins->name);
201 return printed + ins__scnprintf(ops->locked.ins, bf + printed,
202 size - printed, ops->locked.ops);
203}
204
c46219ac
ACM
205static void lock__delete(struct ins_operands *ops)
206{
207 free(ops->locked.ops);
208 free(ops->target.raw);
209 free(ops->target.name);
210}
211
7a997fe4 212static struct ins_ops lock_ops = {
c46219ac 213 .free = lock__delete,
7a997fe4
ACM
214 .parse = lock__parse,
215 .scnprintf = lock__scnprintf,
216};
217
6de783b6
ACM
218static int mov__parse(struct ins_operands *ops)
219{
220 char *s = strchr(ops->raw, ','), *target, *comment, prev;
221
222 if (s == NULL)
223 return -1;
224
225 *s = '\0';
226 ops->source.raw = strdup(ops->raw);
227 *s = ',';
228
229 if (ops->source.raw == NULL)
230 return -1;
231
232 target = ++s;
233
234 while (s[0] != '\0' && !isspace(s[0]))
235 ++s;
236 prev = *s;
237 *s = '\0';
238
239 ops->target.raw = strdup(target);
240 *s = prev;
241
242 if (ops->target.raw == NULL)
243 goto out_free_source;
244
245 comment = strchr(s, '#');
246 if (comment == NULL)
247 return 0;
248
249 while (comment[0] != '\0' && isspace(comment[0]))
250 ++comment;
251
252 comment__symbol(ops->source.raw, comment, &ops->source.addr, &ops->source.name);
253 comment__symbol(ops->target.raw, comment, &ops->target.addr, &ops->target.name);
254
255 return 0;
256
257out_free_source:
258 free(ops->source.raw);
259 ops->source.raw = NULL;
260 return -1;
261}
262
263static int mov__scnprintf(struct ins *ins, char *bf, size_t size,
264 struct ins_operands *ops)
265{
266 return scnprintf(bf, size, "%-6.6s %s,%s", ins->name,
267 ops->source.name ?: ops->source.raw,
268 ops->target.name ?: ops->target.raw);
269}
270
271static struct ins_ops mov_ops = {
272 .parse = mov__parse,
273 .scnprintf = mov__scnprintf,
274};
275
a43712c4
ACM
276static int dec__parse(struct ins_operands *ops)
277{
278 char *target, *comment, *s, prev;
279
280 target = s = ops->raw;
281
282 while (s[0] != '\0' && !isspace(s[0]))
283 ++s;
284 prev = *s;
285 *s = '\0';
286
287 ops->target.raw = strdup(target);
288 *s = prev;
289
290 if (ops->target.raw == NULL)
291 return -1;
292
293 comment = strchr(s, '#');
294 if (comment == NULL)
295 return 0;
296
297 while (comment[0] != '\0' && isspace(comment[0]))
298 ++comment;
299
300 comment__symbol(ops->target.raw, comment, &ops->target.addr, &ops->target.name);
301
302 return 0;
303}
304
305static int dec__scnprintf(struct ins *ins, char *bf, size_t size,
306 struct ins_operands *ops)
307{
308 return scnprintf(bf, size, "%-6.6s %s", ins->name,
309 ops->target.name ?: ops->target.raw);
310}
311
312static struct ins_ops dec_ops = {
313 .parse = dec__parse,
314 .scnprintf = dec__scnprintf,
315};
316
1d037ca1
IT
317static int nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size,
318 struct ins_operands *ops __maybe_unused)
b9818e93
ACM
319{
320 return scnprintf(bf, size, "%-6.6s", "nop");
321}
322
323static struct ins_ops nop_ops = {
324 .scnprintf = nop__scnprintf,
325};
326
4f9d0325
ACM
327/*
328 * Must be sorted by name!
329 */
330static struct ins instructions[] = {
6de783b6
ACM
331 { .name = "add", .ops = &mov_ops, },
332 { .name = "addl", .ops = &mov_ops, },
333 { .name = "addq", .ops = &mov_ops, },
334 { .name = "addw", .ops = &mov_ops, },
335 { .name = "and", .ops = &mov_ops, },
7a997fe4 336 { .name = "bts", .ops = &mov_ops, },
d86b0597
ACM
337 { .name = "call", .ops = &call_ops, },
338 { .name = "callq", .ops = &call_ops, },
6de783b6
ACM
339 { .name = "cmp", .ops = &mov_ops, },
340 { .name = "cmpb", .ops = &mov_ops, },
341 { .name = "cmpl", .ops = &mov_ops, },
342 { .name = "cmpq", .ops = &mov_ops, },
343 { .name = "cmpw", .ops = &mov_ops, },
344 { .name = "cmpxch", .ops = &mov_ops, },
a43712c4
ACM
345 { .name = "dec", .ops = &dec_ops, },
346 { .name = "decl", .ops = &dec_ops, },
6de783b6 347 { .name = "imul", .ops = &mov_ops, },
a43712c4
ACM
348 { .name = "inc", .ops = &dec_ops, },
349 { .name = "incl", .ops = &dec_ops, },
4f9d0325 350 { .name = "ja", .ops = &jump_ops, },
3f862fd0
ACM
351 { .name = "jae", .ops = &jump_ops, },
352 { .name = "jb", .ops = &jump_ops, },
353 { .name = "jbe", .ops = &jump_ops, },
354 { .name = "jc", .ops = &jump_ops, },
355 { .name = "jcxz", .ops = &jump_ops, },
4f9d0325 356 { .name = "je", .ops = &jump_ops, },
3f862fd0
ACM
357 { .name = "jecxz", .ops = &jump_ops, },
358 { .name = "jg", .ops = &jump_ops, },
359 { .name = "jge", .ops = &jump_ops, },
360 { .name = "jl", .ops = &jump_ops, },
361 { .name = "jle", .ops = &jump_ops, },
4f9d0325
ACM
362 { .name = "jmp", .ops = &jump_ops, },
363 { .name = "jmpq", .ops = &jump_ops, },
3f862fd0
ACM
364 { .name = "jna", .ops = &jump_ops, },
365 { .name = "jnae", .ops = &jump_ops, },
366 { .name = "jnb", .ops = &jump_ops, },
367 { .name = "jnbe", .ops = &jump_ops, },
368 { .name = "jnc", .ops = &jump_ops, },
4f9d0325 369 { .name = "jne", .ops = &jump_ops, },
3f862fd0
ACM
370 { .name = "jng", .ops = &jump_ops, },
371 { .name = "jnge", .ops = &jump_ops, },
372 { .name = "jnl", .ops = &jump_ops, },
373 { .name = "jnle", .ops = &jump_ops, },
374 { .name = "jno", .ops = &jump_ops, },
375 { .name = "jnp", .ops = &jump_ops, },
376 { .name = "jns", .ops = &jump_ops, },
377 { .name = "jnz", .ops = &jump_ops, },
378 { .name = "jo", .ops = &jump_ops, },
379 { .name = "jp", .ops = &jump_ops, },
380 { .name = "jpe", .ops = &jump_ops, },
381 { .name = "jpo", .ops = &jump_ops, },
382 { .name = "jrcxz", .ops = &jump_ops, },
4f9d0325 383 { .name = "js", .ops = &jump_ops, },
3f862fd0 384 { .name = "jz", .ops = &jump_ops, },
6de783b6 385 { .name = "lea", .ops = &mov_ops, },
7a997fe4 386 { .name = "lock", .ops = &lock_ops, },
6de783b6
ACM
387 { .name = "mov", .ops = &mov_ops, },
388 { .name = "movb", .ops = &mov_ops, },
389 { .name = "movdqa",.ops = &mov_ops, },
390 { .name = "movl", .ops = &mov_ops, },
391 { .name = "movq", .ops = &mov_ops, },
392 { .name = "movslq", .ops = &mov_ops, },
393 { .name = "movzbl", .ops = &mov_ops, },
394 { .name = "movzwl", .ops = &mov_ops, },
b9818e93
ACM
395 { .name = "nop", .ops = &nop_ops, },
396 { .name = "nopl", .ops = &nop_ops, },
397 { .name = "nopw", .ops = &nop_ops, },
6de783b6
ACM
398 { .name = "or", .ops = &mov_ops, },
399 { .name = "orl", .ops = &mov_ops, },
400 { .name = "test", .ops = &mov_ops, },
401 { .name = "testb", .ops = &mov_ops, },
402 { .name = "testl", .ops = &mov_ops, },
7a997fe4 403 { .name = "xadd", .ops = &mov_ops, },
ffadcf09
AK
404 { .name = "xbeginl", .ops = &jump_ops, },
405 { .name = "xbeginq", .ops = &jump_ops, },
4f9d0325
ACM
406};
407
408static int ins__cmp(const void *name, const void *insp)
409{
410 const struct ins *ins = insp;
411
412 return strcmp(name, ins->name);
413}
414
415static struct ins *ins__find(const char *name)
416{
417 const int nmemb = ARRAY_SIZE(instructions);
418
419 return bsearch(name, instructions, nmemb, sizeof(struct ins), ins__cmp);
420}
421
1d037ca1 422int symbol__annotate_init(struct map *map __maybe_unused, struct symbol *sym)
78f7defe
ACM
423{
424 struct annotation *notes = symbol__annotation(sym);
ce6f4fab
ACM
425 pthread_mutex_init(&notes->lock, NULL);
426 return 0;
427}
78f7defe 428
d04b35f8 429int symbol__alloc_hist(struct symbol *sym)
ce6f4fab
ACM
430{
431 struct annotation *notes = symbol__annotation(sym);
1b2e2df4 432 const size_t size = symbol__size(sym);
8696329b
CS
433 size_t sizeof_sym_hist;
434
435 /* Check for overflow when calculating sizeof_sym_hist */
436 if (size > (SIZE_MAX - sizeof(struct sym_hist)) / sizeof(u64))
437 return -1;
438
439 sizeof_sym_hist = (sizeof(struct sym_hist) + size * sizeof(u64));
440
441 /* Check for overflow in zalloc argument */
442 if (sizeof_sym_hist > (SIZE_MAX - sizeof(*notes->src))
443 / symbol_conf.nr_events)
444 return -1;
ce6f4fab 445
d04b35f8 446 notes->src = zalloc(sizeof(*notes->src) + symbol_conf.nr_events * sizeof_sym_hist);
ce6f4fab
ACM
447 if (notes->src == NULL)
448 return -1;
449 notes->src->sizeof_sym_hist = sizeof_sym_hist;
d04b35f8 450 notes->src->nr_histograms = symbol_conf.nr_events;
ce6f4fab
ACM
451 INIT_LIST_HEAD(&notes->src->source);
452 return 0;
78f7defe
ACM
453}
454
36532461
ACM
455void symbol__annotate_zero_histograms(struct symbol *sym)
456{
457 struct annotation *notes = symbol__annotation(sym);
458
ce6f4fab
ACM
459 pthread_mutex_lock(&notes->lock);
460 if (notes->src != NULL)
461 memset(notes->src->histograms, 0,
462 notes->src->nr_histograms * notes->src->sizeof_sym_hist);
463 pthread_mutex_unlock(&notes->lock);
36532461
ACM
464}
465
2f525d01
ACM
466int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
467 int evidx, u64 addr)
78f7defe 468{
2f525d01 469 unsigned offset;
78f7defe
ACM
470 struct annotation *notes;
471 struct sym_hist *h;
472
78f7defe 473 notes = symbol__annotation(sym);
ce6f4fab 474 if (notes->src == NULL)
78f7defe
ACM
475 return -ENOMEM;
476
78f7defe
ACM
477 pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, map->unmap_ip(map, addr));
478
31d68e7b
ACM
479 if (addr < sym->start || addr > sym->end)
480 return -ERANGE;
78f7defe 481
2f525d01
ACM
482 offset = addr - sym->start;
483 h = annotation__histogram(notes, evidx);
78f7defe
ACM
484 h->sum++;
485 h->addr[offset]++;
486
487 pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64
2f525d01
ACM
488 ", evidx=%d] => %" PRIu64 "\n", sym->start, sym->name,
489 addr, addr - sym->start, evidx, h->addr[offset]);
78f7defe
ACM
490 return 0;
491}
492
4f9d0325
ACM
493static void disasm_line__init_ins(struct disasm_line *dl)
494{
495 dl->ins = ins__find(dl->name);
496
497 if (dl->ins == NULL)
498 return;
499
500 if (!dl->ins->ops)
501 return;
502
c7e6ead7
ACM
503 if (dl->ins->ops->parse)
504 dl->ins->ops->parse(&dl->ops);
4f9d0325
ACM
505}
506
7a997fe4
ACM
507static int disasm_line__parse(char *line, char **namep, char **rawp)
508{
509 char *name = line, tmp;
510
511 while (isspace(name[0]))
512 ++name;
513
514 if (name[0] == '\0')
515 return -1;
516
517 *rawp = name + 1;
518
519 while ((*rawp)[0] != '\0' && !isspace((*rawp)[0]))
520 ++*rawp;
521
522 tmp = (*rawp)[0];
523 (*rawp)[0] = '\0';
524 *namep = strdup(name);
525
526 if (*namep == NULL)
527 goto out_free_name;
528
529 (*rawp)[0] = tmp;
530
531 if ((*rawp)[0] != '\0') {
532 (*rawp)++;
533 while (isspace((*rawp)[0]))
534 ++(*rawp);
535 }
536
537 return 0;
538
539out_free_name:
540 free(*namep);
541 *namep = NULL;
542 return -1;
543}
544
29ed6e76 545static struct disasm_line *disasm_line__new(s64 offset, char *line, size_t privsize)
78f7defe 546{
5145418b 547 struct disasm_line *dl = zalloc(sizeof(*dl) + privsize);
78f7defe 548
29ed6e76
ACM
549 if (dl != NULL) {
550 dl->offset = offset;
551 dl->line = strdup(line);
552 if (dl->line == NULL)
058b4cc9 553 goto out_delete;
5145418b
ACM
554
555 if (offset != -1) {
7a997fe4 556 if (disasm_line__parse(dl->line, &dl->name, &dl->ops.raw) < 0)
5145418b
ACM
557 goto out_free_line;
558
4f9d0325 559 disasm_line__init_ins(dl);
5145418b 560 }
78f7defe
ACM
561 }
562
29ed6e76 563 return dl;
5145418b
ACM
564
565out_free_line:
566 free(dl->line);
058b4cc9 567out_delete:
29ed6e76 568 free(dl);
058b4cc9 569 return NULL;
78f7defe
ACM
570}
571
29ed6e76 572void disasm_line__free(struct disasm_line *dl)
78f7defe 573{
29ed6e76 574 free(dl->line);
5145418b 575 free(dl->name);
c46219ac
ACM
576 if (dl->ins && dl->ins->ops->free)
577 dl->ins->ops->free(&dl->ops);
578 else
579 ins__delete(&dl->ops);
29ed6e76 580 free(dl);
78f7defe
ACM
581}
582
5417072b
ACM
583int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw)
584{
585 if (raw || !dl->ins)
586 return scnprintf(bf, size, "%-6.6s %s", dl->name, dl->ops.raw);
587
588 return ins__scnprintf(dl->ins, bf, size, &dl->ops);
589}
590
29ed6e76 591static void disasm__add(struct list_head *head, struct disasm_line *line)
78f7defe
ACM
592{
593 list_add_tail(&line->node, head);
594}
595
29ed6e76 596struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos)
78f7defe
ACM
597{
598 list_for_each_entry_continue(pos, head, node)
599 if (pos->offset >= 0)
600 return pos;
601
602 return NULL;
603}
604
29ed6e76
ACM
605static int disasm_line__print(struct disasm_line *dl, struct symbol *sym, u64 start,
606 int evidx, u64 len, int min_pcnt, int printed,
607 int max_lines, struct disasm_line *queue)
78f7defe
ACM
608{
609 static const char *prev_line;
610 static const char *prev_color;
611
29ed6e76 612 if (dl->offset != -1) {
78f7defe
ACM
613 const char *path = NULL;
614 unsigned int hits = 0;
615 double percent = 0.0;
616 const char *color;
617 struct annotation *notes = symbol__annotation(sym);
ce6f4fab 618 struct source_line *src_line = notes->src->lines;
2f525d01 619 struct sym_hist *h = annotation__histogram(notes, evidx);
29ed6e76 620 s64 offset = dl->offset;
058b4cc9 621 const u64 addr = start + offset;
29ed6e76 622 struct disasm_line *next;
ce6f4fab 623
29ed6e76 624 next = disasm__get_next_ip_line(&notes->src->source, dl);
78f7defe
ACM
625
626 while (offset < (s64)len &&
627 (next == NULL || offset < next->offset)) {
628 if (src_line) {
629 if (path == NULL)
630 path = src_line[offset].path;
631 percent += src_line[offset].percent;
632 } else
633 hits += h->addr[offset];
634
635 ++offset;
636 }
637
638 if (src_line == NULL && h->sum)
639 percent = 100.0 * hits / h->sum;
640
d040bd36 641 if (percent < min_pcnt)
36532461
ACM
642 return -1;
643
e3087b80 644 if (max_lines && printed >= max_lines)
36532461 645 return 1;
d040bd36 646
d5e3d747
ACM
647 if (queue != NULL) {
648 list_for_each_entry_from(queue, &notes->src->source, node) {
29ed6e76 649 if (queue == dl)
d5e3d747 650 break;
29ed6e76 651 disasm_line__print(queue, sym, start, evidx, len,
d5e3d747
ACM
652 0, 0, 1, NULL);
653 }
654 }
655
78f7defe
ACM
656 color = get_percent_color(percent);
657
658 /*
659 * Also color the filename and line if needed, with
660 * the same color than the percentage. Don't print it
661 * twice for close colored addr with the same filename:line
662 */
663 if (path) {
664 if (!prev_line || strcmp(prev_line, path)
665 || color != prev_color) {
666 color_fprintf(stdout, color, " %s", path);
667 prev_line = path;
668 prev_color = color;
669 }
670 }
671
672 color_fprintf(stdout, color, " %7.2f", percent);
673 printf(" : ");
058b4cc9 674 color_fprintf(stdout, PERF_COLOR_MAGENTA, " %" PRIx64 ":", addr);
29ed6e76 675 color_fprintf(stdout, PERF_COLOR_BLUE, "%s\n", dl->line);
e3087b80 676 } else if (max_lines && printed >= max_lines)
36532461
ACM
677 return 1;
678 else {
d5e3d747
ACM
679 if (queue)
680 return -1;
681
29ed6e76 682 if (!*dl->line)
78f7defe
ACM
683 printf(" :\n");
684 else
29ed6e76 685 printf(" : %s\n", dl->line);
78f7defe 686 }
36532461
ACM
687
688 return 0;
78f7defe
ACM
689}
690
ce6f4fab
ACM
691static int symbol__parse_objdump_line(struct symbol *sym, struct map *map,
692 FILE *file, size_t privsize)
78f7defe 693{
ce6f4fab 694 struct annotation *notes = symbol__annotation(sym);
29ed6e76 695 struct disasm_line *dl;
058b4cc9 696 char *line = NULL, *parsed_line, *tmp, *tmp2, *c;
78f7defe
ACM
697 size_t line_len;
698 s64 line_ip, offset = -1;
699
700 if (getline(&line, &line_len, file) < 0)
701 return -1;
702
703 if (!line)
704 return -1;
705
706 while (line_len != 0 && isspace(line[line_len - 1]))
707 line[--line_len] = '\0';
708
709 c = strchr(line, '\n');
710 if (c)
711 *c = 0;
712
713 line_ip = -1;
a31b7cc0 714 parsed_line = line;
78f7defe
ACM
715
716 /*
717 * Strip leading spaces:
718 */
719 tmp = line;
720 while (*tmp) {
721 if (*tmp != ' ')
722 break;
723 tmp++;
724 }
725
726 if (*tmp) {
727 /*
728 * Parse hexa addresses followed by ':'
729 */
730 line_ip = strtoull(tmp, &tmp2, 16);
731 if (*tmp2 != ':' || tmp == tmp2 || tmp2[1] == '\0')
732 line_ip = -1;
733 }
734
735 if (line_ip != -1) {
736 u64 start = map__rip_2objdump(map, sym->start),
737 end = map__rip_2objdump(map, sym->end);
738
739 offset = line_ip - start;
740 if (offset < 0 || (u64)line_ip > end)
741 offset = -1;
058b4cc9
ACM
742 else
743 parsed_line = tmp2 + 1;
a31b7cc0 744 }
78f7defe 745
29ed6e76 746 dl = disasm_line__new(offset, parsed_line, privsize);
058b4cc9
ACM
747 free(line);
748
29ed6e76 749 if (dl == NULL)
78f7defe 750 return -1;
058b4cc9 751
29ed6e76 752 disasm__add(&notes->src->source, dl);
78f7defe
ACM
753
754 return 0;
755}
756
ce6f4fab 757int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize)
78f7defe
ACM
758{
759 struct dso *dso = map->dso;
760 char *filename = dso__build_id_filename(dso, NULL, 0);
761 bool free_filename = true;
762 char command[PATH_MAX * 2];
763 FILE *file;
764 int err = 0;
78f7defe
ACM
765 char symfs_filename[PATH_MAX];
766
767 if (filename) {
768 snprintf(symfs_filename, sizeof(symfs_filename), "%s%s",
769 symbol_conf.symfs, filename);
770 }
771
772 if (filename == NULL) {
773 if (dso->has_build_id) {
774 pr_err("Can't annotate %s: not enough memory\n",
775 sym->name);
776 return -ENOMEM;
777 }
778 goto fallback;
779 } else if (readlink(symfs_filename, command, sizeof(command)) < 0 ||
780 strstr(command, "[kernel.kallsyms]") ||
781 access(symfs_filename, R_OK)) {
782 free(filename);
783fallback:
784 /*
785 * If we don't have build-ids or the build-id file isn't in the
786 * cache, or is just a kallsyms file, well, lets hope that this
787 * DSO is the same as when 'perf record' ran.
788 */
789 filename = dso->long_name;
790 snprintf(symfs_filename, sizeof(symfs_filename), "%s%s",
791 symbol_conf.symfs, filename);
792 free_filename = false;
793 }
794
44f24cb3 795 if (dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS) {
170ae6bc
ACM
796 char bf[BUILD_ID_SIZE * 2 + 16] = " with build id ";
797 char *build_id_msg = NULL;
798
78f7defe
ACM
799 if (dso->annotate_warned)
800 goto out_free_filename;
170ae6bc
ACM
801
802 if (dso->has_build_id) {
803 build_id__sprintf(dso->build_id,
804 sizeof(dso->build_id), bf + 15);
805 build_id_msg = bf;
806 }
78f7defe
ACM
807 err = -ENOENT;
808 dso->annotate_warned = 1;
ae55795e
ACM
809 pr_err("Can't annotate %s:\n\n"
810 "No vmlinux file%s\nwas found in the path.\n\n"
811 "Please use:\n\n"
812 " perf buildid-cache -av vmlinux\n\n"
813 "or:\n\n"
ff2a6617 814 " --vmlinux vmlinux\n",
170ae6bc 815 sym->name, build_id_msg ?: "");
78f7defe
ACM
816 goto out_free_filename;
817 }
818
819 pr_debug("%s: filename=%s, sym=%s, start=%#" PRIx64 ", end=%#" PRIx64 "\n", __func__,
820 filename, sym->name, map->unmap_ip(map, sym->start),
821 map->unmap_ip(map, sym->end));
822
78f7defe
ACM
823 pr_debug("annotating [%p] %30s : [%p] %30s\n",
824 dso, dso->long_name, sym, sym->name);
825
826 snprintf(command, sizeof(command),
7a4ec938 827 "%s %s%s --start-address=0x%016" PRIx64
3e6a2a7f
SE
828 " --stop-address=0x%016" PRIx64
829 " -d %s %s -C %s|grep -v %s|expand",
7a4ec938 830 objdump_path ? objdump_path : "objdump",
f69b64f7
AK
831 disassembler_style ? "-M " : "",
832 disassembler_style ? disassembler_style : "",
78f7defe 833 map__rip_2objdump(map, sym->start),
f41612f4 834 map__rip_2objdump(map, sym->end+1),
3e6a2a7f
SE
835 symbol_conf.annotate_asm_raw ? "" : "--no-show-raw",
836 symbol_conf.annotate_src ? "-S" : "",
78f7defe
ACM
837 symfs_filename, filename);
838
839 pr_debug("Executing: %s\n", command);
840
841 file = popen(command, "r");
842 if (!file)
843 goto out_free_filename;
844
845 while (!feof(file))
ce6f4fab 846 if (symbol__parse_objdump_line(sym, map, file, privsize) < 0)
78f7defe
ACM
847 break;
848
849 pclose(file);
850out_free_filename:
851 if (free_filename)
852 free(filename);
853 return err;
854}
855
856static void insert_source_line(struct rb_root *root, struct source_line *src_line)
857{
858 struct source_line *iter;
859 struct rb_node **p = &root->rb_node;
860 struct rb_node *parent = NULL;
861
862 while (*p != NULL) {
863 parent = *p;
864 iter = rb_entry(parent, struct source_line, node);
865
866 if (src_line->percent > iter->percent)
867 p = &(*p)->rb_left;
868 else
869 p = &(*p)->rb_right;
870 }
871
872 rb_link_node(&src_line->node, parent, p);
873 rb_insert_color(&src_line->node, root);
874}
875
876static void symbol__free_source_line(struct symbol *sym, int len)
877{
878 struct annotation *notes = symbol__annotation(sym);
ce6f4fab 879 struct source_line *src_line = notes->src->lines;
78f7defe
ACM
880 int i;
881
882 for (i = 0; i < len; i++)
883 free(src_line[i].path);
884
885 free(src_line);
ce6f4fab 886 notes->src->lines = NULL;
78f7defe
ACM
887}
888
889/* Get the filename:line for the colored entries */
890static int symbol__get_source_line(struct symbol *sym, struct map *map,
2f525d01 891 int evidx, struct rb_root *root, int len,
78f7defe
ACM
892 const char *filename)
893{
894 u64 start;
895 int i;
896 char cmd[PATH_MAX * 2];
897 struct source_line *src_line;
898 struct annotation *notes = symbol__annotation(sym);
2f525d01 899 struct sym_hist *h = annotation__histogram(notes, evidx);
78f7defe
ACM
900
901 if (!h->sum)
902 return 0;
903
ce6f4fab
ACM
904 src_line = notes->src->lines = calloc(len, sizeof(struct source_line));
905 if (!notes->src->lines)
78f7defe
ACM
906 return -1;
907
f40a0633 908 start = map__rip_2objdump(map, sym->start);
78f7defe
ACM
909
910 for (i = 0; i < len; i++) {
911 char *path = NULL;
912 size_t line_len;
913 u64 offset;
914 FILE *fp;
915
916 src_line[i].percent = 100.0 * h->addr[i] / h->sum;
917 if (src_line[i].percent <= 0.5)
918 continue;
919
920 offset = start + i;
921 sprintf(cmd, "addr2line -e %s %016" PRIx64, filename, offset);
922 fp = popen(cmd, "r");
923 if (!fp)
924 continue;
925
926 if (getline(&path, &line_len, fp) < 0 || !line_len)
927 goto next;
928
929 src_line[i].path = malloc(sizeof(char) * line_len + 1);
930 if (!src_line[i].path)
931 goto next;
932
933 strcpy(src_line[i].path, path);
934 insert_source_line(root, &src_line[i]);
935
936 next:
937 pclose(fp);
938 }
939
940 return 0;
941}
942
943static void print_summary(struct rb_root *root, const char *filename)
944{
945 struct source_line *src_line;
946 struct rb_node *node;
947
948 printf("\nSorted summary for file %s\n", filename);
949 printf("----------------------------------------------\n\n");
950
951 if (RB_EMPTY_ROOT(root)) {
952 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN);
953 return;
954 }
955
956 node = rb_first(root);
957 while (node) {
958 double percent;
959 const char *color;
960 char *path;
961
962 src_line = rb_entry(node, struct source_line, node);
963 percent = src_line->percent;
964 color = get_percent_color(percent);
965 path = src_line->path;
966
967 color_fprintf(stdout, color, " %7.2f %s", percent, path);
968 node = rb_next(node);
969 }
970}
971
2f525d01 972static void symbol__annotate_hits(struct symbol *sym, int evidx)
78f7defe
ACM
973{
974 struct annotation *notes = symbol__annotation(sym);
2f525d01 975 struct sym_hist *h = annotation__histogram(notes, evidx);
1b2e2df4 976 u64 len = symbol__size(sym), offset;
78f7defe
ACM
977
978 for (offset = 0; offset < len; ++offset)
979 if (h->addr[offset] != 0)
980 printf("%*" PRIx64 ": %" PRIu64 "\n", BITS_PER_LONG / 2,
981 sym->start + offset, h->addr[offset]);
982 printf("%*s: %" PRIu64 "\n", BITS_PER_LONG / 2, "h->sum", h->sum);
983}
984
ce6f4fab 985int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx,
d5e3d747
ACM
986 bool full_paths, int min_pcnt, int max_lines,
987 int context)
78f7defe
ACM
988{
989 struct dso *dso = map->dso;
bfd14b9a
DA
990 char *filename;
991 const char *d_filename;
ce6f4fab 992 struct annotation *notes = symbol__annotation(sym);
29ed6e76 993 struct disasm_line *pos, *queue = NULL;
058b4cc9 994 u64 start = map__rip_2objdump(map, sym->start);
d5e3d747 995 int printed = 2, queue_len = 0;
36532461 996 int more = 0;
78f7defe
ACM
997 u64 len;
998
bfd14b9a
DA
999 filename = strdup(dso->long_name);
1000 if (!filename)
1001 return -ENOMEM;
1002
78f7defe
ACM
1003 if (full_paths)
1004 d_filename = filename;
1005 else
1006 d_filename = basename(filename);
1007
1b2e2df4 1008 len = symbol__size(sym);
78f7defe 1009
78f7defe
ACM
1010 printf(" Percent | Source code & Disassembly of %s\n", d_filename);
1011 printf("------------------------------------------------\n");
1012
1013 if (verbose)
2f525d01 1014 symbol__annotate_hits(sym, evidx);
78f7defe 1015
ce6f4fab 1016 list_for_each_entry(pos, &notes->src->source, node) {
d5e3d747
ACM
1017 if (context && queue == NULL) {
1018 queue = pos;
1019 queue_len = 0;
1020 }
1021
29ed6e76 1022 switch (disasm_line__print(pos, sym, start, evidx, len,
058b4cc9
ACM
1023 min_pcnt, printed, max_lines,
1024 queue)) {
36532461
ACM
1025 case 0:
1026 ++printed;
d5e3d747
ACM
1027 if (context) {
1028 printed += queue_len;
1029 queue = NULL;
1030 queue_len = 0;
1031 }
36532461
ACM
1032 break;
1033 case 1:
1034 /* filtered by max_lines */
1035 ++more;
d040bd36 1036 break;
36532461
ACM
1037 case -1:
1038 default:
d5e3d747
ACM
1039 /*
1040 * Filtered by min_pcnt or non IP lines when
1041 * context != 0
1042 */
1043 if (!context)
1044 break;
1045 if (queue_len == context)
1046 queue = list_entry(queue->node.next, typeof(*queue), node);
1047 else
1048 ++queue_len;
36532461
ACM
1049 break;
1050 }
1051 }
1052
bfd14b9a
DA
1053 free(filename);
1054
36532461
ACM
1055 return more;
1056}
f1e2701d 1057
36532461
ACM
1058void symbol__annotate_zero_histogram(struct symbol *sym, int evidx)
1059{
1060 struct annotation *notes = symbol__annotation(sym);
1061 struct sym_hist *h = annotation__histogram(notes, evidx);
1062
ce6f4fab 1063 memset(h, 0, notes->src->sizeof_sym_hist);
36532461
ACM
1064}
1065
ce6f4fab 1066void symbol__annotate_decay_histogram(struct symbol *sym, int evidx)
36532461
ACM
1067{
1068 struct annotation *notes = symbol__annotation(sym);
1069 struct sym_hist *h = annotation__histogram(notes, evidx);
1b2e2df4 1070 int len = symbol__size(sym), offset;
36532461
ACM
1071
1072 h->sum = 0;
8b84a568
ACM
1073 for (offset = 0; offset < len; ++offset) {
1074 h->addr[offset] = h->addr[offset] * 7 / 8;
1075 h->sum += h->addr[offset];
f1e2701d
ACM
1076 }
1077}
1078
29ed6e76 1079void disasm__purge(struct list_head *head)
f1e2701d 1080{
29ed6e76 1081 struct disasm_line *pos, *n;
f1e2701d
ACM
1082
1083 list_for_each_entry_safe(pos, n, head, node) {
1084 list_del(&pos->node);
29ed6e76 1085 disasm_line__free(pos);
f1e2701d
ACM
1086 }
1087}
1088
5145418b
ACM
1089static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp)
1090{
1091 size_t printed;
1092
1093 if (dl->offset == -1)
1094 return fprintf(fp, "%s\n", dl->line);
1095
1096 printed = fprintf(fp, "%#" PRIx64 " %s", dl->offset, dl->name);
1097
c7e6ead7 1098 if (dl->ops.raw[0] != '\0') {
5145418b 1099 printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ",
c7e6ead7 1100 dl->ops.raw);
5145418b
ACM
1101 }
1102
1103 return printed + fprintf(fp, "\n");
1104}
1105
1106size_t disasm__fprintf(struct list_head *head, FILE *fp)
1107{
1108 struct disasm_line *pos;
1109 size_t printed = 0;
1110
1111 list_for_each_entry(pos, head, node)
1112 printed += disasm_line__fprintf(pos, fp);
1113
1114 return printed;
1115}
1116
f1e2701d
ACM
1117int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
1118 bool print_lines, bool full_paths, int min_pcnt,
1119 int max_lines)
1120{
1121 struct dso *dso = map->dso;
1122 const char *filename = dso->long_name;
1123 struct rb_root source_line = RB_ROOT;
f1e2701d
ACM
1124 u64 len;
1125
ce6f4fab 1126 if (symbol__annotate(sym, map, 0) < 0)
f1e2701d
ACM
1127 return -1;
1128
1b2e2df4 1129 len = symbol__size(sym);
f1e2701d
ACM
1130
1131 if (print_lines) {
1132 symbol__get_source_line(sym, map, evidx, &source_line,
1133 len, filename);
1134 print_summary(&source_line, filename);
78f7defe
ACM
1135 }
1136
ce6f4fab 1137 symbol__annotate_printf(sym, map, evidx, full_paths,
d5e3d747 1138 min_pcnt, max_lines, 0);
78f7defe
ACM
1139 if (print_lines)
1140 symbol__free_source_line(sym, len);
1141
29ed6e76 1142 disasm__purge(&symbol__annotation(sym)->src->source);
f1e2701d 1143
78f7defe
ACM
1144 return 0;
1145}