1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
4 *
5 * Parts came from builtin-annotate.c, see those files for further
6 * copyright notes.
7 */
8
9 #include <errno.h>
10 #include <inttypes.h>
11 #include <libgen.h>
12 #include <stdlib.h>
13 #include <bpf/bpf.h>
14 #include <bpf/btf.h>
15 #include <bpf/libbpf.h>
16 #include <linux/btf.h>
17 #include "util.h" // hex_width()
18 #include "ui/ui.h"
19 #include "sort.h"
20 #include "build-id.h"
21 #include "color.h"
22 #include "config.h"
23 #include "dso.h"
24 #include "env.h"
25 #include "map.h"
26 #include "maps.h"
27 #include "symbol.h"
28 #include "srcline.h"
29 #include "units.h"
30 #include "debug.h"
31 #include "annotate.h"
32 #include "evsel.h"
33 #include "evlist.h"
34 #include "bpf-event.h"
35 #include "block-range.h"
36 #include "string2.h"
37 #include "util/event.h"
38 #include "arch/common.h"
39 #include <regex.h>
40 #include <pthread.h>
41 #include <linux/bitops.h>
42 #include <linux/kernel.h>
43 #include <linux/string.h>
44 #include <subcmd/parse-options.h>
45 #include <subcmd/run-command.h>
46
47 /* FIXME: For the HE_COLORSET */
48 #include "ui/browser.h"
49
50 /*
51 * FIXME: Using the same values as slang.h,
52 * but that header may not be available everywhere
53 */
54 #define LARROW_CHAR ((unsigned char)',')
55 #define RARROW_CHAR ((unsigned char)'+')
56 #define DARROW_CHAR ((unsigned char)'.')
57 #define UARROW_CHAR ((unsigned char)'-')
58
59 #include <linux/ctype.h>
60
61 struct annotation_options annotation__default_options = {
62 .use_offset = true,
63 .jump_arrows = true,
64 .annotate_src = true,
65 .offset_level = ANNOTATION__OFFSET_JUMP_TARGETS,
66 .percent_type = PERCENT_PERIOD_LOCAL,
67 };
68
69 static regex_t file_lineno;
70
71 static struct ins_ops *ins__find(struct arch *arch, const char *name);
72 static void ins__sort(struct arch *arch);
73 static int disasm_line__parse(char *line, const char **namep, char **rawp);
74
75 struct arch {
76 const char *name;
77 struct ins *instructions;
78 size_t nr_instructions;
79 size_t nr_instructions_allocated;
80 struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name);
81 bool sorted_instructions;
82 bool initialized;
83 void *priv;
84 unsigned int model;
85 unsigned int family;
86 int (*init)(struct arch *arch, char *cpuid);
87 bool (*ins_is_fused)(struct arch *arch, const char *ins1,
88 const char *ins2);
89 struct {
90 char comment_char;
91 char skip_functions_char;
92 } objdump;
93 };
94
95 static struct ins_ops call_ops;
96 static struct ins_ops dec_ops;
97 static struct ins_ops jump_ops;
98 static struct ins_ops mov_ops;
99 static struct ins_ops nop_ops;
100 static struct ins_ops lock_ops;
101 static struct ins_ops ret_ops;
102
arch__grow_instructions(struct arch *arch)103 static int arch__grow_instructions(struct arch *arch)
104 {
105 struct ins *new_instructions;
106 size_t new_nr_allocated;
107
108 if (arch->nr_instructions_allocated == 0 && arch->instructions)
109 goto grow_from_non_allocated_table;
110
111 new_nr_allocated = arch->nr_instructions_allocated + 128;
112 new_instructions = realloc(arch->instructions, new_nr_allocated * sizeof(struct ins));
113 if (new_instructions == NULL)
114 return -1;
115
116 out_update_instructions:
117 arch->instructions = new_instructions;
118 arch->nr_instructions_allocated = new_nr_allocated;
119 return 0;
120
121 grow_from_non_allocated_table:
122 new_nr_allocated = arch->nr_instructions + 128;
123 new_instructions = calloc(new_nr_allocated, sizeof(struct ins));
124 if (new_instructions == NULL)
125 return -1;
126
127 memcpy(new_instructions, arch->instructions, arch->nr_instructions);
128 goto out_update_instructions;
129 }
130
arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops)131 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops)
132 {
133 struct ins *ins;
134
135 if (arch->nr_instructions == arch->nr_instructions_allocated &&
136 arch__grow_instructions(arch))
137 return -1;
138
139 ins = &arch->instructions[arch->nr_instructions];
140 ins->name = strdup(name);
141 if (!ins->name)
142 return -1;
143
144 ins->ops = ops;
145 arch->nr_instructions++;
146
147 ins__sort(arch);
148 return 0;
149 }
150
151 #include "arch/arc/annotate/instructions.c"
152 #include "arch/arm/annotate/instructions.c"
153 #include "arch/arm64/annotate/instructions.c"
154 #include "arch/csky/annotate/instructions.c"
155 #include "arch/x86/annotate/instructions.c"
156 #include "arch/powerpc/annotate/instructions.c"
157 #include "arch/s390/annotate/instructions.c"
158 #include "arch/sparc/annotate/instructions.c"
159 #include "arch/loongarch/annotate/instructions.c"
160
161 static struct arch architectures[] = {
162 {
163 .name = "arc",
164 .init = arc__annotate_init,
165 },
166 {
167 .name = "arm",
168 .init = arm__annotate_init,
169 },
170 {
171 .name = "arm64",
172 .init = arm64__annotate_init,
173 },
174 {
175 .name = "csky",
176 .init = csky__annotate_init,
177 },
178 {
179 .name = "x86",
180 .init = x86__annotate_init,
181 .instructions = x86__instructions,
182 .nr_instructions = ARRAY_SIZE(x86__instructions),
183 .ins_is_fused = x86__ins_is_fused,
184 .objdump = {
185 .comment_char = '#',
186 },
187 },
188 {
189 .name = "powerpc",
190 .init = powerpc__annotate_init,
191 },
192 {
193 .name = "s390",
194 .init = s390__annotate_init,
195 .objdump = {
196 .comment_char = '#',
197 },
198 },
199 {
200 .name = "sparc",
201 .init = sparc__annotate_init,
202 .objdump = {
203 .comment_char = '#',
204 },
205 },
206 {
207 .name = "loongarch",
208 .init = loongarch__annotate_init,
209 .objdump = {
210 .comment_char = '#',
211 },
212 },
213 };
214
ins__delete(struct ins_operands *ops)215 static void ins__delete(struct ins_operands *ops)
216 {
217 if (ops == NULL)
218 return;
219 zfree(&ops->source.raw);
220 zfree(&ops->source.name);
221 zfree(&ops->target.raw);
222 zfree(&ops->target.name);
223 }
224
ins__raw_scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops, int max_ins_name)225 static int ins__raw_scnprintf(struct ins *ins, char *bf, size_t size,
226 struct ins_operands *ops, int max_ins_name)
227 {
228 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, ops->raw);
229 }
230
ins__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops, int max_ins_name)231 int ins__scnprintf(struct ins *ins, char *bf, size_t size,
232 struct ins_operands *ops, int max_ins_name)
233 {
234 if (ins->ops->scnprintf)
235 return ins->ops->scnprintf(ins, bf, size, ops, max_ins_name);
236
237 return ins__raw_scnprintf(ins, bf, size, ops, max_ins_name);
238 }
239
ins__is_fused(struct arch *arch, const char *ins1, const char *ins2)240 bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2)
241 {
242 if (!arch || !arch->ins_is_fused)
243 return false;
244
245 return arch->ins_is_fused(arch, ins1, ins2);
246 }
247
call__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms)248 static int call__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms)
249 {
250 char *endptr, *tok, *name;
251 struct map *map = ms->map;
252 struct addr_map_symbol target = {
253 .ms = { .map = map, },
254 };
255
256 ops->target.addr = strtoull(ops->raw, &endptr, 16);
257
258 name = strchr(endptr, '<');
259 if (name == NULL)
260 goto indirect_call;
261
262 name++;
263
264 if (arch->objdump.skip_functions_char &&
265 strchr(name, arch->objdump.skip_functions_char))
266 return -1;
267
268 tok = strchr(name, '>');
269 if (tok == NULL)
270 return -1;
271
272 *tok = '\0';
273 ops->target.name = strdup(name);
274 *tok = '>';
275
276 if (ops->target.name == NULL)
277 return -1;
278 find_target:
279 target.addr = map__objdump_2mem(map, ops->target.addr);
280
281 if (maps__find_ams(ms->maps, &target) == 0 &&
282 map__rip_2objdump(target.ms.map, map->map_ip(target.ms.map, target.addr)) == ops->target.addr)
283 ops->target.sym = target.ms.sym;
284
285 return 0;
286
287 indirect_call:
288 tok = strchr(endptr, '*');
289 if (tok != NULL) {
290 endptr++;
291
292 /* Indirect call can use a non-rip register and offset: callq *0x8(%rbx).
293 * Do not parse such instruction. */
294 if (strstr(endptr, "(%r") == NULL)
295 ops->target.addr = strtoull(endptr, NULL, 16);
296 }
297 goto find_target;
298 }
299
call__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops, int max_ins_name)300 static int call__scnprintf(struct ins *ins, char *bf, size_t size,
301 struct ins_operands *ops, int max_ins_name)
302 {
303 if (ops->target.sym)
304 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, ops->target.sym->name);
305
306 if (ops->target.addr == 0)
307 return ins__raw_scnprintf(ins, bf, size, ops, max_ins_name);
308
309 if (ops->target.name)
310 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, ops->target.name);
311
312 return scnprintf(bf, size, "%-*s *%" PRIx64, max_ins_name, ins->name, ops->target.addr);
313 }
314
315 static struct ins_ops call_ops = {
316 .parse = call__parse,
317 .scnprintf = call__scnprintf,
318 };
319
ins__is_call(const struct ins *ins)320 bool ins__is_call(const struct ins *ins)
321 {
322 return ins->ops == &call_ops || ins->ops == &s390_call_ops;
323 }
324
325 /*
326 * Prevents from matching commas in the comment section, e.g.:
327 * ffff200008446e70: b.cs ffff2000084470f4 <generic_exec_single+0x314> // b.hs, b.nlast
328 *
329 * and skip comma as part of function arguments, e.g.:
330 * 1d8b4ac <linemap_lookup(line_maps const*, unsigned int)+0xcc>
331 */
validate_comma(const char *c, struct ins_operands *ops)332 static inline const char *validate_comma(const char *c, struct ins_operands *ops)
333 {
334 if (ops->raw_comment && c > ops->raw_comment)
335 return NULL;
336
337 if (ops->raw_func_start && c > ops->raw_func_start)
338 return NULL;
339
340 return c;
341 }
342
jump__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms)343 static int jump__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms)
344 {
345 struct map *map = ms->map;
346 struct symbol *sym = ms->sym;
347 struct addr_map_symbol target = {
348 .ms = { .map = map, },
349 };
350 const char *c = strchr(ops->raw, ',');
351 u64 start, end;
352
353 ops->raw_comment = strchr(ops->raw, arch->objdump.comment_char);
354 ops->raw_func_start = strchr(ops->raw, '<');
355
356 c = validate_comma(c, ops);
357
358 /*
359 * Examples of lines to parse for the _cpp_lex_token@@Base
360 * function:
361 *
362 * 1159e6c: jne 115aa32 <_cpp_lex_token@@Base+0xf92>
363 * 1159e8b: jne c469be <cpp_named_operator2name@@Base+0xa72>
364 *
365 * The first is a jump to an offset inside the same function,
366 * the second is to another function, i.e. that 0xa72 is an
367 * offset in the cpp_named_operator2name@@base function.
368 */
369 /*
370 * skip over possible up to 2 operands to get to address, e.g.:
371 * tbnz w0, #26, ffff0000083cd190 <security_file_permission+0xd0>
372 */
373 if (c++ != NULL) {
374 ops->target.addr = strtoull(c, NULL, 16);
375 if (!ops->target.addr) {
376 c = strchr(c, ',');
377 c = validate_comma(c, ops);
378 if (c++ != NULL)
379 ops->target.addr = strtoull(c, NULL, 16);
380 }
381 } else {
382 ops->target.addr = strtoull(ops->raw, NULL, 16);
383 }
384
385 target.addr = map__objdump_2mem(map, ops->target.addr);
386 start = map->unmap_ip(map, sym->start),
387 end = map->unmap_ip(map, sym->end);
388
389 ops->target.outside = target.addr < start || target.addr > end;
390
391 /*
392 * FIXME: things like this in _cpp_lex_token (gcc's cc1 program):
393
394 cpp_named_operator2name@@Base+0xa72
395
396 * Point to a place that is after the cpp_named_operator2name
397 * boundaries, i.e. in the ELF symbol table for cc1
398 * cpp_named_operator2name is marked as being 32-bytes long, but it in
399 * fact is much larger than that, so we seem to need a symbols__find()
400 * routine that looks for >= current->start and < next_symbol->start,
401 * possibly just for C++ objects?
402 *
403 * For now lets just make some progress by marking jumps to outside the
404 * current function as call like.
405 *
406 * Actual navigation will come next, with further understanding of how
407 * the symbol searching and disassembly should be done.
408 */
409 if (maps__find_ams(ms->maps, &target) == 0 &&
410 map__rip_2objdump(target.ms.map, map->map_ip(target.ms.map, target.addr)) == ops->target.addr)
411 ops->target.sym = target.ms.sym;
412
413 if (!ops->target.outside) {
414 ops->target.offset = target.addr - start;
415 ops->target.offset_avail = true;
416 } else {
417 ops->target.offset_avail = false;
418 }
419
420 return 0;
421 }
422
jump__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops, int max_ins_name)423 static int jump__scnprintf(struct ins *ins, char *bf, size_t size,
424 struct ins_operands *ops, int max_ins_name)
425 {
426 const char *c;
427
428 if (!ops->target.addr || ops->target.offset < 0)
429 return ins__raw_scnprintf(ins, bf, size, ops, max_ins_name);
430
431 if (ops->target.outside && ops->target.sym != NULL)
432 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, ops->target.sym->name);
433
434 c = strchr(ops->raw, ',');
435 c = validate_comma(c, ops);
436
437 if (c != NULL) {
438 const char *c2 = strchr(c + 1, ',');
439
440 c2 = validate_comma(c2, ops);
441 /* check for 3-op insn */
442 if (c2 != NULL)
443 c = c2;
444 c++;
445
446 /* mirror arch objdump's space-after-comma style */
447 if (*c == ' ')
448 c++;
449 }
450
451 return scnprintf(bf, size, "%-*s %.*s%" PRIx64, max_ins_name,
452 ins->name, c ? c - ops->raw : 0, ops->raw,
453 ops->target.offset);
454 }
455
456 static struct ins_ops jump_ops = {
457 .parse = jump__parse,
458 .scnprintf = jump__scnprintf,
459 };
460
ins__is_jump(const struct ins *ins)461 bool ins__is_jump(const struct ins *ins)
462 {
463 return ins->ops == &jump_ops;
464 }
465
comment__symbol(char *raw, char *comment, u64 *addrp, char **namep)466 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep)
467 {
468 char *endptr, *name, *t;
469
470 if (strstr(raw, "(%rip)") == NULL)
471 return 0;
472
473 *addrp = strtoull(comment, &endptr, 16);
474 if (endptr == comment)
475 return 0;
476 name = strchr(endptr, '<');
477 if (name == NULL)
478 return -1;
479
480 name++;
481
482 t = strchr(name, '>');
483 if (t == NULL)
484 return 0;
485
486 *t = '\0';
487 *namep = strdup(name);
488 *t = '>';
489
490 return 0;
491 }
492
lock__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms)493 static int lock__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms)
494 {
495 ops->locked.ops = zalloc(sizeof(*ops->locked.ops));
496 if (ops->locked.ops == NULL)
497 return 0;
498
499 if (disasm_line__parse(ops->raw, &ops->locked.ins.name, &ops->locked.ops->raw) < 0)
500 goto out_free_ops;
501
502 ops->locked.ins.ops = ins__find(arch, ops->locked.ins.name);
503
504 if (ops->locked.ins.ops == NULL)
505 goto out_free_ops;
506
507 if (ops->locked.ins.ops->parse &&
508 ops->locked.ins.ops->parse(arch, ops->locked.ops, ms) < 0)
509 goto out_free_ops;
510
511 return 0;
512
513 out_free_ops:
514 zfree(&ops->locked.ops);
515 return 0;
516 }
517
lock__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops, int max_ins_name)518 static int lock__scnprintf(struct ins *ins, char *bf, size_t size,
519 struct ins_operands *ops, int max_ins_name)
520 {
521 int printed;
522
523 if (ops->locked.ins.ops == NULL)
524 return ins__raw_scnprintf(ins, bf, size, ops, max_ins_name);
525
526 printed = scnprintf(bf, size, "%-*s ", max_ins_name, ins->name);
527 return printed + ins__scnprintf(&ops->locked.ins, bf + printed,
528 size - printed, ops->locked.ops, max_ins_name);
529 }
530
lock__delete(struct ins_operands *ops)531 static void lock__delete(struct ins_operands *ops)
532 {
533 struct ins *ins = &ops->locked.ins;
534
535 if (ins->ops && ins->ops->free)
536 ins->ops->free(ops->locked.ops);
537 else
538 ins__delete(ops->locked.ops);
539
540 zfree(&ops->locked.ops);
541 zfree(&ops->target.raw);
542 zfree(&ops->target.name);
543 }
544
545 static struct ins_ops lock_ops = {
546 .free = lock__delete,
547 .parse = lock__parse,
548 .scnprintf = lock__scnprintf,
549 };
550
mov__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms __maybe_unused)551 static int mov__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms __maybe_unused)
552 {
553 char *s = strchr(ops->raw, ','), *target, *comment, prev;
554
555 if (s == NULL)
556 return -1;
557
558 *s = '\0';
559 ops->source.raw = strdup(ops->raw);
560 *s = ',';
561
562 if (ops->source.raw == NULL)
563 return -1;
564
565 target = ++s;
566 comment = strchr(s, arch->objdump.comment_char);
567
568 if (comment != NULL)
569 s = comment - 1;
570 else
571 s = strchr(s, '\0') - 1;
572
573 while (s > target && isspace(s[0]))
574 --s;
575 s++;
576 prev = *s;
577 *s = '\0';
578
579 ops->target.raw = strdup(target);
580 *s = prev;
581
582 if (ops->target.raw == NULL)
583 goto out_free_source;
584
585 if (comment == NULL)
586 return 0;
587
588 comment = skip_spaces(comment);
589 comment__symbol(ops->source.raw, comment + 1, &ops->source.addr, &ops->source.name);
590 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);
591
592 return 0;
593
594 out_free_source:
595 zfree(&ops->source.raw);
596 return -1;
597 }
598
mov__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops, int max_ins_name)599 static int mov__scnprintf(struct ins *ins, char *bf, size_t size,
600 struct ins_operands *ops, int max_ins_name)
601 {
602 return scnprintf(bf, size, "%-*s %s,%s", max_ins_name, ins->name,
603 ops->source.name ?: ops->source.raw,
604 ops->target.name ?: ops->target.raw);
605 }
606
607 static struct ins_ops mov_ops = {
608 .parse = mov__parse,
609 .scnprintf = mov__scnprintf,
610 };
611
dec__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map_symbol *ms __maybe_unused)612 static int dec__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map_symbol *ms __maybe_unused)
613 {
614 char *target, *comment, *s, prev;
615
616 target = s = ops->raw;
617
618 while (s[0] != '\0' && !isspace(s[0]))
619 ++s;
620 prev = *s;
621 *s = '\0';
622
623 ops->target.raw = strdup(target);
624 *s = prev;
625
626 if (ops->target.raw == NULL)
627 return -1;
628
629 comment = strchr(s, arch->objdump.comment_char);
630 if (comment == NULL)
631 return 0;
632
633 comment = skip_spaces(comment);
634 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);
635
636 return 0;
637 }
638
dec__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops, int max_ins_name)639 static int dec__scnprintf(struct ins *ins, char *bf, size_t size,
640 struct ins_operands *ops, int max_ins_name)
641 {
642 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name,
643 ops->target.name ?: ops->target.raw);
644 }
645
646 static struct ins_ops dec_ops = {
647 .parse = dec__parse,
648 .scnprintf = dec__scnprintf,
649 };
650
nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size, struct ins_operands *ops __maybe_unused, int max_ins_name)651 static int nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size,
652 struct ins_operands *ops __maybe_unused, int max_ins_name)
653 {
654 return scnprintf(bf, size, "%-*s", max_ins_name, "nop");
655 }
656
657 static struct ins_ops nop_ops = {
658 .scnprintf = nop__scnprintf,
659 };
660
661 static struct ins_ops ret_ops = {
662 .scnprintf = ins__raw_scnprintf,
663 };
664
ins__is_ret(const struct ins *ins)665 bool ins__is_ret(const struct ins *ins)
666 {
667 return ins->ops == &ret_ops;
668 }
669
ins__is_lock(const struct ins *ins)670 bool ins__is_lock(const struct ins *ins)
671 {
672 return ins->ops == &lock_ops;
673 }
674
ins__key_cmp(const void *name, const void *insp)675 static int ins__key_cmp(const void *name, const void *insp)
676 {
677 const struct ins *ins = insp;
678
679 return strcmp(name, ins->name);
680 }
681
ins__cmp(const void *a, const void *b)682 static int ins__cmp(const void *a, const void *b)
683 {
684 const struct ins *ia = a;
685 const struct ins *ib = b;
686
687 return strcmp(ia->name, ib->name);
688 }
689
ins__sort(struct arch *arch)690 static void ins__sort(struct arch *arch)
691 {
692 const int nmemb = arch->nr_instructions;
693
694 qsort(arch->instructions, nmemb, sizeof(struct ins), ins__cmp);
695 }
696
__ins__find(struct arch *arch, const char *name)697 static struct ins_ops *__ins__find(struct arch *arch, const char *name)
698 {
699 struct ins *ins;
700 const int nmemb = arch->nr_instructions;
701
702 if (!arch->sorted_instructions) {
703 ins__sort(arch);
704 arch->sorted_instructions = true;
705 }
706
707 ins = bsearch(name, arch->instructions, nmemb, sizeof(struct ins), ins__key_cmp);
708 return ins ? ins->ops : NULL;
709 }
710
ins__find(struct arch *arch, const char *name)711 static struct ins_ops *ins__find(struct arch *arch, const char *name)
712 {
713 struct ins_ops *ops = __ins__find(arch, name);
714
715 if (!ops && arch->associate_instruction_ops)
716 ops = arch->associate_instruction_ops(arch, name);
717
718 return ops;
719 }
720
arch__key_cmp(const void *name, const void *archp)721 static int arch__key_cmp(const void *name, const void *archp)
722 {
723 const struct arch *arch = archp;
724
725 return strcmp(name, arch->name);
726 }
727
arch__cmp(const void *a, const void *b)728 static int arch__cmp(const void *a, const void *b)
729 {
730 const struct arch *aa = a;
731 const struct arch *ab = b;
732
733 return strcmp(aa->name, ab->name);
734 }
735
arch__sort(void)736 static void arch__sort(void)
737 {
738 const int nmemb = ARRAY_SIZE(architectures);
739
740 qsort(architectures, nmemb, sizeof(struct arch), arch__cmp);
741 }
742
arch__find(const char *name)743 static struct arch *arch__find(const char *name)
744 {
745 const int nmemb = ARRAY_SIZE(architectures);
746 static bool sorted;
747
748 if (!sorted) {
749 arch__sort();
750 sorted = true;
751 }
752
753 return bsearch(name, architectures, nmemb, sizeof(struct arch), arch__key_cmp);
754 }
755
annotated_source__new(void)756 static struct annotated_source *annotated_source__new(void)
757 {
758 struct annotated_source *src = zalloc(sizeof(*src));
759
760 if (src != NULL)
761 INIT_LIST_HEAD(&src->source);
762
763 return src;
764 }
765
annotated_source__delete(struct annotated_source *src)766 static __maybe_unused void annotated_source__delete(struct annotated_source *src)
767 {
768 if (src == NULL)
769 return;
770 zfree(&src->histograms);
771 zfree(&src->cycles_hist);
772 free(src);
773 }
774
annotated_source__alloc_histograms(struct annotated_source *src, size_t size, int nr_hists)775 static int annotated_source__alloc_histograms(struct annotated_source *src,
776 size_t size, int nr_hists)
777 {
778 size_t sizeof_sym_hist;
779
780 /*
781 * Add buffer of one element for zero length symbol.
782 * When sample is taken from first instruction of
783 * zero length symbol, perf still resolves it and
784 * shows symbol name in perf report and allows to
785 * annotate it.
786 */
787 if (size == 0)
788 size = 1;
789
790 /* Check for overflow when calculating sizeof_sym_hist */
791 if (size > (SIZE_MAX - sizeof(struct sym_hist)) / sizeof(struct sym_hist_entry))
792 return -1;
793
794 sizeof_sym_hist = (sizeof(struct sym_hist) + size * sizeof(struct sym_hist_entry));
795
796 /* Check for overflow in zalloc argument */
797 if (sizeof_sym_hist > SIZE_MAX / nr_hists)
798 return -1;
799
800 src->sizeof_sym_hist = sizeof_sym_hist;
801 src->nr_histograms = nr_hists;
802 src->histograms = calloc(nr_hists, sizeof_sym_hist) ;
803 return src->histograms ? 0 : -1;
804 }
805
806 /* The cycles histogram is lazily allocated. */
symbol__alloc_hist_cycles(struct symbol *sym)807 static int symbol__alloc_hist_cycles(struct symbol *sym)
808 {
809 struct annotation *notes = symbol__annotation(sym);
810 const size_t size = symbol__size(sym);
811
812 notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist));
813 if (notes->src->cycles_hist == NULL)
814 return -1;
815 return 0;
816 }
817
symbol__annotate_zero_histograms(struct symbol *sym)818 void symbol__annotate_zero_histograms(struct symbol *sym)
819 {
820 struct annotation *notes = symbol__annotation(sym);
821
822 pthread_mutex_lock(¬es->lock);
823 if (notes->src != NULL) {
824 memset(notes->src->histograms, 0,
825 notes->src->nr_histograms * notes->src->sizeof_sym_hist);
826 if (notes->src->cycles_hist)
827 memset(notes->src->cycles_hist, 0,
828 symbol__size(sym) * sizeof(struct cyc_hist));
829 }
830 pthread_mutex_unlock(¬es->lock);
831 }
832
__symbol__account_cycles(struct cyc_hist *ch, u64 start, unsigned offset, unsigned cycles, unsigned have_start)833 static int __symbol__account_cycles(struct cyc_hist *ch,
834 u64 start,
835 unsigned offset, unsigned cycles,
836 unsigned have_start)
837 {
838 /*
839 * For now we can only account one basic block per
840 * final jump. But multiple could be overlapping.
841 * Always account the longest one. So when
842 * a shorter one has been already seen throw it away.
843 *
844 * We separately always account the full cycles.
845 */
846 ch[offset].num_aggr++;
847 ch[offset].cycles_aggr += cycles;
848
849 if (cycles > ch[offset].cycles_max)
850 ch[offset].cycles_max = cycles;
851
852 if (ch[offset].cycles_min) {
853 if (cycles && cycles < ch[offset].cycles_min)
854 ch[offset].cycles_min = cycles;
855 } else
856 ch[offset].cycles_min = cycles;
857
858 if (!have_start && ch[offset].have_start)
859 return 0;
860 if (ch[offset].num) {
861 if (have_start && (!ch[offset].have_start ||
862 ch[offset].start > start)) {
863 ch[offset].have_start = 0;
864 ch[offset].cycles = 0;
865 ch[offset].num = 0;
866 if (ch[offset].reset < 0xffff)
867 ch[offset].reset++;
868 } else if (have_start &&
869 ch[offset].start < start)
870 return 0;
871 }
872
873 if (ch[offset].num < NUM_SPARKS)
874 ch[offset].cycles_spark[ch[offset].num] = cycles;
875
876 ch[offset].have_start = have_start;
877 ch[offset].start = start;
878 ch[offset].cycles += cycles;
879 ch[offset].num++;
880 return 0;
881 }
882
__symbol__inc_addr_samples(struct map_symbol *ms, struct annotated_source *src, int evidx, u64 addr, struct perf_sample *sample)883 static int __symbol__inc_addr_samples(struct map_symbol *ms,
884 struct annotated_source *src, int evidx, u64 addr,
885 struct perf_sample *sample)
886 {
887 struct symbol *sym = ms->sym;
888 unsigned offset;
889 struct sym_hist *h;
890
891 pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, ms->map->unmap_ip(ms->map, addr));
892
893 if ((addr < sym->start || addr >= sym->end) &&
894 (addr != sym->end || sym->start != sym->end)) {
895 pr_debug("%s(%d): ERANGE! sym->name=%s, start=%#" PRIx64 ", addr=%#" PRIx64 ", end=%#" PRIx64 "\n",
896 __func__, __LINE__, sym->name, sym->start, addr, sym->end);
897 return -ERANGE;
898 }
899
900 offset = addr - sym->start;
901 h = annotated_source__histogram(src, evidx);
902 if (h == NULL) {
903 pr_debug("%s(%d): ENOMEM! sym->name=%s, start=%#" PRIx64 ", addr=%#" PRIx64 ", end=%#" PRIx64 ", func: %d\n",
904 __func__, __LINE__, sym->name, sym->start, addr, sym->end, sym->type == STT_FUNC);
905 return -ENOMEM;
906 }
907 h->nr_samples++;
908 h->addr[offset].nr_samples++;
909 h->period += sample->period;
910 h->addr[offset].period += sample->period;
911
912 pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64
913 ", evidx=%d] => nr_samples: %" PRIu64 ", period: %" PRIu64 "\n",
914 sym->start, sym->name, addr, addr - sym->start, evidx,
915 h->addr[offset].nr_samples, h->addr[offset].period);
916 return 0;
917 }
918
symbol__cycles_hist(struct symbol *sym)919 static struct cyc_hist *symbol__cycles_hist(struct symbol *sym)
920 {
921 struct annotation *notes = symbol__annotation(sym);
922
923 if (notes->src == NULL) {
924 notes->src = annotated_source__new();
925 if (notes->src == NULL)
926 return NULL;
927 goto alloc_cycles_hist;
928 }
929
930 if (!notes->src->cycles_hist) {
931 alloc_cycles_hist:
932 symbol__alloc_hist_cycles(sym);
933 }
934
935 return notes->src->cycles_hist;
936 }
937
symbol__hists(struct symbol *sym, int nr_hists)938 struct annotated_source *symbol__hists(struct symbol *sym, int nr_hists)
939 {
940 struct annotation *notes = symbol__annotation(sym);
941
942 if (notes->src == NULL) {
943 notes->src = annotated_source__new();
944 if (notes->src == NULL)
945 return NULL;
946 goto alloc_histograms;
947 }
948
949 if (notes->src->histograms == NULL) {
950 alloc_histograms:
951 annotated_source__alloc_histograms(notes->src, symbol__size(sym),
952 nr_hists);
953 }
954
955 return notes->src;
956 }
957
symbol__inc_addr_samples(struct map_symbol *ms, struct evsel *evsel, u64 addr, struct perf_sample *sample)958 static int symbol__inc_addr_samples(struct map_symbol *ms,
959 struct evsel *evsel, u64 addr,
960 struct perf_sample *sample)
961 {
962 struct symbol *sym = ms->sym;
963 struct annotated_source *src;
964
965 if (sym == NULL)
966 return 0;
967 src = symbol__hists(sym, evsel->evlist->core.nr_entries);
968 return src ? __symbol__inc_addr_samples(ms, src, evsel->idx, addr, sample) : 0;
969 }
970
symbol__account_cycles(u64 addr, u64 start, struct symbol *sym, unsigned cycles)971 static int symbol__account_cycles(u64 addr, u64 start,
972 struct symbol *sym, unsigned cycles)
973 {
974 struct cyc_hist *cycles_hist;
975 unsigned offset;
976
977 if (sym == NULL)
978 return 0;
979 cycles_hist = symbol__cycles_hist(sym);
980 if (cycles_hist == NULL)
981 return -ENOMEM;
982 if (addr < sym->start || addr >= sym->end)
983 return -ERANGE;
984
985 if (start) {
986 if (start < sym->start || start >= sym->end)
987 return -ERANGE;
988 if (start >= addr)
989 start = 0;
990 }
991 offset = addr - sym->start;
992 return __symbol__account_cycles(cycles_hist,
993 start ? start - sym->start : 0,
994 offset, cycles,
995 !!start);
996 }
997
addr_map_symbol__account_cycles(struct addr_map_symbol *ams, struct addr_map_symbol *start, unsigned cycles)998 int addr_map_symbol__account_cycles(struct addr_map_symbol *ams,
999 struct addr_map_symbol *start,
1000 unsigned cycles)
1001 {
1002 u64 saddr = 0;
1003 int err;
1004
1005 if (!cycles)
1006 return 0;
1007
1008 /*
1009 * Only set start when IPC can be computed. We can only
1010 * compute it when the basic block is completely in a single
1011 * function.
1012 * Special case the case when the jump is elsewhere, but
1013 * it starts on the function start.
1014 */
1015 if (start &&
1016 (start->ms.sym == ams->ms.sym ||
1017 (ams->ms.sym &&
1018 start->addr == ams->ms.sym->start + ams->ms.map->start)))
1019 saddr = start->al_addr;
1020 if (saddr == 0)
1021 pr_debug2("BB with bad start: addr %"PRIx64" start %"PRIx64" sym %"PRIx64" saddr %"PRIx64"\n",
1022 ams->addr,
1023 start ? start->addr : 0,
1024 ams->ms.sym ? ams->ms.sym->start + ams->ms.map->start : 0,
1025 saddr);
1026 err = symbol__account_cycles(ams->al_addr, saddr, ams->ms.sym, cycles);
1027 if (err)
1028 pr_debug2("account_cycles failed %d\n", err);
1029 return err;
1030 }
1031
annotation__count_insn(struct annotation *notes, u64 start, u64 end)1032 static unsigned annotation__count_insn(struct annotation *notes, u64 start, u64 end)
1033 {
1034 unsigned n_insn = 0;
1035 u64 offset;
1036
1037 for (offset = start; offset <= end; offset++) {
1038 if (notes->offsets[offset])
1039 n_insn++;
1040 }
1041 return n_insn;
1042 }
1043
annotation__count_and_fill(struct annotation *notes, u64 start, u64 end, struct cyc_hist *ch)1044 static void annotation__count_and_fill(struct annotation *notes, u64 start, u64 end, struct cyc_hist *ch)
1045 {
1046 unsigned n_insn;
1047 unsigned int cover_insn = 0;
1048 u64 offset;
1049
1050 n_insn = annotation__count_insn(notes, start, end);
1051 if (n_insn && ch->num && ch->cycles) {
1052 float ipc = n_insn / ((double)ch->cycles / (double)ch->num);
1053
1054 /* Hide data when there are too many overlaps. */
1055 if (ch->reset >= 0x7fff)
1056 return;
1057
1058 for (offset = start; offset <= end; offset++) {
1059 struct annotation_line *al = notes->offsets[offset];
1060
1061 if (al && al->ipc == 0.0) {
1062 al->ipc = ipc;
1063 cover_insn++;
1064 }
1065 }
1066
1067 if (cover_insn) {
1068 notes->hit_cycles += ch->cycles;
1069 notes->hit_insn += n_insn * ch->num;
1070 notes->cover_insn += cover_insn;
1071 }
1072 }
1073 }
1074
annotation__compute_ipc(struct annotation *notes, size_t size)1075 void annotation__compute_ipc(struct annotation *notes, size_t size)
1076 {
1077 s64 offset;
1078
1079 if (!notes->src || !notes->src->cycles_hist)
1080 return;
1081
1082 notes->total_insn = annotation__count_insn(notes, 0, size - 1);
1083 notes->hit_cycles = 0;
1084 notes->hit_insn = 0;
1085 notes->cover_insn = 0;
1086
1087 pthread_mutex_lock(¬es->lock);
1088 for (offset = size - 1; offset >= 0; --offset) {
1089 struct cyc_hist *ch;
1090
1091 ch = ¬es->src->cycles_hist[offset];
1092 if (ch && ch->cycles) {
1093 struct annotation_line *al;
1094
1095 if (ch->have_start)
1096 annotation__count_and_fill(notes, ch->start, offset, ch);
1097 al = notes->offsets[offset];
1098 if (al && ch->num_aggr) {
1099 al->cycles = ch->cycles_aggr / ch->num_aggr;
1100 al->cycles_max = ch->cycles_max;
1101 al->cycles_min = ch->cycles_min;
1102 }
1103 notes->have_cycles = true;
1104 }
1105 }
1106 pthread_mutex_unlock(¬es->lock);
1107 }
1108
addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample, struct evsel *evsel)1109 int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample,
1110 struct evsel *evsel)
1111 {
1112 return symbol__inc_addr_samples(&ams->ms, evsel, ams->al_addr, sample);
1113 }
1114
hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample, struct evsel *evsel, u64 ip)1115 int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample,
1116 struct evsel *evsel, u64 ip)
1117 {
1118 return symbol__inc_addr_samples(&he->ms, evsel, ip, sample);
1119 }
1120
disasm_line__init_ins(struct disasm_line *dl, struct arch *arch, struct map_symbol *ms)1121 static void disasm_line__init_ins(struct disasm_line *dl, struct arch *arch, struct map_symbol *ms)
1122 {
1123 dl->ins.ops = ins__find(arch, dl->ins.name);
1124
1125 if (!dl->ins.ops)
1126 return;
1127
1128 if (dl->ins.ops->parse && dl->ins.ops->parse(arch, &dl->ops, ms) < 0)
1129 dl->ins.ops = NULL;
1130 }
1131
disasm_line__parse(char *line, const char **namep, char **rawp)1132 static int disasm_line__parse(char *line, const char **namep, char **rawp)
1133 {
1134 char tmp, *name = skip_spaces(line);
1135
1136 if (name[0] == '\0')
1137 return -1;
1138
1139 *rawp = name + 1;
1140
1141 while ((*rawp)[0] != '\0' && !isspace((*rawp)[0]))
1142 ++*rawp;
1143
1144 tmp = (*rawp)[0];
1145 (*rawp)[0] = '\0';
1146 *namep = strdup(name);
1147
1148 if (*namep == NULL)
1149 goto out;
1150
1151 (*rawp)[0] = tmp;
1152 *rawp = strim(*rawp);
1153
1154 return 0;
1155
1156 out:
1157 return -1;
1158 }
1159
1160 struct annotate_args {
1161 struct arch *arch;
1162 struct map_symbol ms;
1163 struct evsel *evsel;
1164 struct annotation_options *options;
1165 s64 offset;
1166 char *line;
1167 int line_nr;
1168 };
1169
annotation_line__init(struct annotation_line *al, struct annotate_args *args, int nr)1170 static void annotation_line__init(struct annotation_line *al,
1171 struct annotate_args *args,
1172 int nr)
1173 {
1174 al->offset = args->offset;
1175 al->line = strdup(args->line);
1176 al->line_nr = args->line_nr;
1177 al->data_nr = nr;
1178 }
1179
annotation_line__exit(struct annotation_line *al)1180 static void annotation_line__exit(struct annotation_line *al)
1181 {
1182 free_srcline(al->path);
1183 zfree(&al->line);
1184 }
1185
disasm_line_size(int nr)1186 static size_t disasm_line_size(int nr)
1187 {
1188 struct annotation_line *al;
1189
1190 return (sizeof(struct disasm_line) + (sizeof(al->data[0]) * nr));
1191 }
1192
1193 /*
1194 * Allocating the disasm annotation line data with
1195 * following structure:
1196 *
1197 * -------------------------------------------
1198 * struct disasm_line | struct annotation_line
1199 * -------------------------------------------
1200 *
1201 * We have 'struct annotation_line' member as last member
1202 * of 'struct disasm_line' to have an easy access.
1203 */
disasm_line__new(struct annotate_args *args)1204 static struct disasm_line *disasm_line__new(struct annotate_args *args)
1205 {
1206 struct disasm_line *dl = NULL;
1207 int nr = 1;
1208
1209 if (evsel__is_group_event(args->evsel))
1210 nr = args->evsel->core.nr_members;
1211
1212 dl = zalloc(disasm_line_size(nr));
1213 if (!dl)
1214 return NULL;
1215
1216 annotation_line__init(&dl->al, args, nr);
1217 if (dl->al.line == NULL)
1218 goto out_delete;
1219
1220 if (args->offset != -1) {
1221 if (disasm_line__parse(dl->al.line, &dl->ins.name, &dl->ops.raw) < 0)
1222 goto out_free_line;
1223
1224 disasm_line__init_ins(dl, args->arch, &args->ms);
1225 }
1226
1227 return dl;
1228
1229 out_free_line:
1230 zfree(&dl->al.line);
1231 out_delete:
1232 free(dl);
1233 return NULL;
1234 }
1235
disasm_line__free(struct disasm_line *dl)1236 void disasm_line__free(struct disasm_line *dl)
1237 {
1238 if (dl->ins.ops && dl->ins.ops->free)
1239 dl->ins.ops->free(&dl->ops);
1240 else
1241 ins__delete(&dl->ops);
1242 zfree(&dl->ins.name);
1243 annotation_line__exit(&dl->al);
1244 free(dl);
1245 }
1246
disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw, int max_ins_name)1247 int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw, int max_ins_name)
1248 {
1249 if (raw || !dl->ins.ops)
1250 return scnprintf(bf, size, "%-*s %s", max_ins_name, dl->ins.name, dl->ops.raw);
1251
1252 return ins__scnprintf(&dl->ins, bf, size, &dl->ops, max_ins_name);
1253 }
1254
annotation_line__add(struct annotation_line *al, struct list_head *head)1255 static void annotation_line__add(struct annotation_line *al, struct list_head *head)
1256 {
1257 list_add_tail(&al->node, head);
1258 }
1259
1260 struct annotation_line *
annotation_line__next(struct annotation_line *pos, struct list_head *head)1261 annotation_line__next(struct annotation_line *pos, struct list_head *head)
1262 {
1263 list_for_each_entry_continue(pos, head, node)
1264 if (pos->offset >= 0)
1265 return pos;
1266
1267 return NULL;
1268 }
1269
annotate__address_color(struct block_range *br)1270 static const char *annotate__address_color(struct block_range *br)
1271 {
1272 double cov = block_range__coverage(br);
1273
1274 if (cov >= 0) {
1275 /* mark red for >75% coverage */
1276 if (cov > 0.75)
1277 return PERF_COLOR_RED;
1278
1279 /* mark dull for <1% coverage */
1280 if (cov < 0.01)
1281 return PERF_COLOR_NORMAL;
1282 }
1283
1284 return PERF_COLOR_MAGENTA;
1285 }
1286
annotate__asm_color(struct block_range *br)1287 static const char *annotate__asm_color(struct block_range *br)
1288 {
1289 double cov = block_range__coverage(br);
1290
1291 if (cov >= 0) {
1292 /* mark dull for <1% coverage */
1293 if (cov < 0.01)
1294 return PERF_COLOR_NORMAL;
1295 }
1296
1297 return PERF_COLOR_BLUE;
1298 }
1299
annotate__branch_printf(struct block_range *br, u64 addr)1300 static void annotate__branch_printf(struct block_range *br, u64 addr)
1301 {
1302 bool emit_comment = true;
1303
1304 if (!br)
1305 return;
1306
1307 #if 1
1308 if (br->is_target && br->start == addr) {
1309 struct block_range *branch = br;
1310 double p;
1311
1312 /*
1313 * Find matching branch to our target.
1314 */
1315 while (!branch->is_branch)
1316 branch = block_range__next(branch);
1317
1318 p = 100 *(double)br->entry / branch->coverage;
1319
1320 if (p > 0.1) {
1321 if (emit_comment) {
1322 emit_comment = false;
1323 printf("\t#");
1324 }
1325
1326 /*
1327 * The percentage of coverage joined at this target in relation
1328 * to the next branch.
1329 */
1330 printf(" +%.2f%%", p);
1331 }
1332 }
1333 #endif
1334 if (br->is_branch && br->end == addr) {
1335 double p = 100*(double)br->taken / br->coverage;
1336
1337 if (p > 0.1) {
1338 if (emit_comment) {
1339 emit_comment = false;
1340 printf("\t#");
1341 }
1342
1343 /*
1344 * The percentage of coverage leaving at this branch, and
1345 * its prediction ratio.
1346 */
1347 printf(" -%.2f%% (p:%.2f%%)", p, 100*(double)br->pred / br->taken);
1348 }
1349 }
1350 }
1351
disasm_line__print(struct disasm_line *dl, u64 start, int addr_fmt_width)1352 static int disasm_line__print(struct disasm_line *dl, u64 start, int addr_fmt_width)
1353 {
1354 s64 offset = dl->al.offset;
1355 const u64 addr = start + offset;
1356 struct block_range *br;
1357
1358 br = block_range__find(addr);
1359 color_fprintf(stdout, annotate__address_color(br), " %*" PRIx64 ":", addr_fmt_width, addr);
1360 color_fprintf(stdout, annotate__asm_color(br), "%s", dl->al.line);
1361 annotate__branch_printf(br, addr);
1362 return 0;
1363 }
1364
1365 static int
annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start, struct evsel *evsel, u64 len, int min_pcnt, int printed, int max_lines, struct annotation_line *queue, int addr_fmt_width, int percent_type)1366 annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start,
1367 struct evsel *evsel, u64 len, int min_pcnt, int printed,
1368 int max_lines, struct annotation_line *queue, int addr_fmt_width,
1369 int percent_type)
1370 {
1371 struct disasm_line *dl = container_of(al, struct disasm_line, al);
1372 static const char *prev_line;
1373 static const char *prev_color;
1374
1375 if (al->offset != -1) {
1376 double max_percent = 0.0;
1377 int i, nr_percent = 1;
1378 const char *color;
1379 struct annotation *notes = symbol__annotation(sym);
1380
1381 for (i = 0; i < al->data_nr; i++) {
1382 double percent;
1383
1384 percent = annotation_data__percent(&al->data[i],
1385 percent_type);
1386
1387 if (percent > max_percent)
1388 max_percent = percent;
1389 }
1390
1391 if (al->data_nr > nr_percent)
1392 nr_percent = al->data_nr;
1393
1394 if (max_percent < min_pcnt)
1395 return -1;
1396
1397 if (max_lines && printed >= max_lines)
1398 return 1;
1399
1400 if (queue != NULL) {
1401 list_for_each_entry_from(queue, ¬es->src->source, node) {
1402 if (queue == al)
1403 break;
1404 annotation_line__print(queue, sym, start, evsel, len,
1405 0, 0, 1, NULL, addr_fmt_width,
1406 percent_type);
1407 }
1408 }
1409
1410 color = get_percent_color(max_percent);
1411
1412 /*
1413 * Also color the filename and line if needed, with
1414 * the same color than the percentage. Don't print it
1415 * twice for close colored addr with the same filename:line
1416 */
1417 if (al->path) {
1418 if (!prev_line || strcmp(prev_line, al->path)
1419 || color != prev_color) {
1420 color_fprintf(stdout, color, " %s", al->path);
1421 prev_line = al->path;
1422 prev_color = color;
1423 }
1424 }
1425
1426 for (i = 0; i < nr_percent; i++) {
1427 struct annotation_data *data = &al->data[i];
1428 double percent;
1429
1430 percent = annotation_data__percent(data, percent_type);
1431 color = get_percent_color(percent);
1432
1433 if (symbol_conf.show_total_period)
1434 color_fprintf(stdout, color, " %11" PRIu64,
1435 data->he.period);
1436 else if (symbol_conf.show_nr_samples)
1437 color_fprintf(stdout, color, " %7" PRIu64,
1438 data->he.nr_samples);
1439 else
1440 color_fprintf(stdout, color, " %7.2f", percent);
1441 }
1442
1443 printf(" : ");
1444
1445 disasm_line__print(dl, start, addr_fmt_width);
1446 printf("\n");
1447 } else if (max_lines && printed >= max_lines)
1448 return 1;
1449 else {
1450 int width = symbol_conf.show_total_period ? 12 : 8;
1451
1452 if (queue)
1453 return -1;
1454
1455 if (evsel__is_group_event(evsel))
1456 width *= evsel->core.nr_members;
1457
1458 if (!*al->line)
1459 printf(" %*s:\n", width, " ");
1460 else
1461 printf(" %*s: %*s %s\n", width, " ", addr_fmt_width, " ", al->line);
1462 }
1463
1464 return 0;
1465 }
1466
1467 /*
1468 * symbol__parse_objdump_line() parses objdump output (with -d --no-show-raw)
1469 * which looks like following
1470 *
1471 * 0000000000415500 <_init>:
1472 * 415500: sub $0x8,%rsp
1473 * 415504: mov 0x2f5ad5(%rip),%rax # 70afe0 <_DYNAMIC+0x2f8>
1474 * 41550b: test %rax,%rax
1475 * 41550e: je 415515 <_init+0x15>
1476 * 415510: callq 416e70 <__gmon_start__@plt>
1477 * 415515: add $0x8,%rsp
1478 * 415519: retq
1479 *
1480 * it will be parsed and saved into struct disasm_line as
1481 * <offset> <name> <ops.raw>
1482 *
1483 * The offset will be a relative offset from the start of the symbol and -1
1484 * means that it's not a disassembly line so should be treated differently.
1485 * The ops.raw part will be parsed further according to type of the instruction.
1486 */
symbol__parse_objdump_line(struct symbol *sym, struct annotate_args *args, char *parsed_line, int *line_nr)1487 static int symbol__parse_objdump_line(struct symbol *sym,
1488 struct annotate_args *args,
1489 char *parsed_line, int *line_nr)
1490 {
1491 struct map *map = args->ms.map;
1492 struct annotation *notes = symbol__annotation(sym);
1493 struct disasm_line *dl;
1494 char *tmp;
1495 s64 line_ip, offset = -1;
1496 regmatch_t match[2];
1497
1498 /* /filename:linenr ? Save line number and ignore. */
1499 if (regexec(&file_lineno, parsed_line, 2, match, 0) == 0) {
1500 *line_nr = atoi(parsed_line + match[1].rm_so);
1501 return 0;
1502 }
1503
1504 /* Process hex address followed by ':'. */
1505 line_ip = strtoull(parsed_line, &tmp, 16);
1506 if (parsed_line != tmp && tmp[0] == ':' && tmp[1] != '\0') {
1507 u64 start = map__rip_2objdump(map, sym->start),
1508 end = map__rip_2objdump(map, sym->end);
1509
1510 offset = line_ip - start;
1511 if ((u64)line_ip < start || (u64)line_ip >= end)
1512 offset = -1;
1513 else
1514 parsed_line = tmp + 1;
1515 }
1516
1517 args->offset = offset;
1518 args->line = parsed_line;
1519 args->line_nr = *line_nr;
1520 args->ms.sym = sym;
1521
1522 dl = disasm_line__new(args);
1523 (*line_nr)++;
1524
1525 if (dl == NULL)
1526 return -1;
1527
1528 if (!disasm_line__has_local_offset(dl)) {
1529 dl->ops.target.offset = dl->ops.target.addr -
1530 map__rip_2objdump(map, sym->start);
1531 dl->ops.target.offset_avail = true;
1532 }
1533
1534 /* kcore has no symbols, so add the call target symbol */
1535 if (dl->ins.ops && ins__is_call(&dl->ins) && !dl->ops.target.sym) {
1536 struct addr_map_symbol target = {
1537 .addr = dl->ops.target.addr,
1538 .ms = { .map = map, },
1539 };
1540
1541 if (!maps__find_ams(args->ms.maps, &target) &&
1542 target.ms.sym->start == target.al_addr)
1543 dl->ops.target.sym = target.ms.sym;
1544 }
1545
1546 annotation_line__add(&dl->al, ¬es->src->source);
1547
1548 return 0;
1549 }
1550
symbol__init_regexpr(void)1551 static __attribute__((constructor)) void symbol__init_regexpr(void)
1552 {
1553 regcomp(&file_lineno, "^/[^:]+:([0-9]+)", REG_EXTENDED);
1554 }
1555
delete_last_nop(struct symbol *sym)1556 static void delete_last_nop(struct symbol *sym)
1557 {
1558 struct annotation *notes = symbol__annotation(sym);
1559 struct list_head *list = ¬es->src->source;
1560 struct disasm_line *dl;
1561
1562 while (!list_empty(list)) {
1563 dl = list_entry(list->prev, struct disasm_line, al.node);
1564
1565 if (dl->ins.ops) {
1566 if (dl->ins.ops != &nop_ops)
1567 return;
1568 } else {
1569 if (!strstr(dl->al.line, " nop ") &&
1570 !strstr(dl->al.line, " nopl ") &&
1571 !strstr(dl->al.line, " nopw "))
1572 return;
1573 }
1574
1575 list_del_init(&dl->al.node);
1576 disasm_line__free(dl);
1577 }
1578 }
1579
symbol__strerror_disassemble(struct map_symbol *ms, int errnum, char *buf, size_t buflen)1580 int symbol__strerror_disassemble(struct map_symbol *ms, int errnum, char *buf, size_t buflen)
1581 {
1582 struct dso *dso = ms->map->dso;
1583
1584 BUG_ON(buflen == 0);
1585
1586 if (errnum >= 0) {
1587 str_error_r(errnum, buf, buflen);
1588 return 0;
1589 }
1590
1591 switch (errnum) {
1592 case SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX: {
1593 char bf[SBUILD_ID_SIZE + 15] = " with build id ";
1594 char *build_id_msg = NULL;
1595
1596 if (dso->has_build_id) {
1597 build_id__sprintf(&dso->bid, bf + 15);
1598 build_id_msg = bf;
1599 }
1600 scnprintf(buf, buflen,
1601 "No vmlinux file%s\nwas found in the path.\n\n"
1602 "Note that annotation using /proc/kcore requires CAP_SYS_RAWIO capability.\n\n"
1603 "Please use:\n\n"
1604 " perf buildid-cache -vu vmlinux\n\n"
1605 "or:\n\n"
1606 " --vmlinux vmlinux\n", build_id_msg ?: "");
1607 }
1608 break;
1609 case SYMBOL_ANNOTATE_ERRNO__NO_LIBOPCODES_FOR_BPF:
1610 scnprintf(buf, buflen, "Please link with binutils's libopcode to enable BPF annotation");
1611 break;
1612 case SYMBOL_ANNOTATE_ERRNO__ARCH_INIT_REGEXP:
1613 scnprintf(buf, buflen, "Problems with arch specific instruction name regular expressions.");
1614 break;
1615 case SYMBOL_ANNOTATE_ERRNO__ARCH_INIT_CPUID_PARSING:
1616 scnprintf(buf, buflen, "Problems while parsing the CPUID in the arch specific initialization.");
1617 break;
1618 case SYMBOL_ANNOTATE_ERRNO__BPF_INVALID_FILE:
1619 scnprintf(buf, buflen, "Invalid BPF file: %s.", dso->long_name);
1620 break;
1621 case SYMBOL_ANNOTATE_ERRNO__BPF_MISSING_BTF:
1622 scnprintf(buf, buflen, "The %s BPF file has no BTF section, compile with -g or use pahole -J.",
1623 dso->long_name);
1624 break;
1625 default:
1626 scnprintf(buf, buflen, "Internal error: Invalid %d error code\n", errnum);
1627 break;
1628 }
1629
1630 return 0;
1631 }
1632
dso__disassemble_filename(struct dso *dso, char *filename, size_t filename_size)1633 static int dso__disassemble_filename(struct dso *dso, char *filename, size_t filename_size)
1634 {
1635 char linkname[PATH_MAX];
1636 char *build_id_filename;
1637 char *build_id_path = NULL;
1638 char *pos;
1639 int len;
1640
1641 if (dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS &&
1642 !dso__is_kcore(dso))
1643 return SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX;
1644
1645 build_id_filename = dso__build_id_filename(dso, NULL, 0, false);
1646 if (build_id_filename) {
1647 __symbol__join_symfs(filename, filename_size, build_id_filename);
1648 free(build_id_filename);
1649 } else {
1650 if (dso->has_build_id)
1651 return ENOMEM;
1652 goto fallback;
1653 }
1654
1655 build_id_path = strdup(filename);
1656 if (!build_id_path)
1657 return ENOMEM;
1658
1659 /*
1660 * old style build-id cache has name of XX/XXXXXXX.. while
1661 * new style has XX/XXXXXXX../{elf,kallsyms,vdso}.
1662 * extract the build-id part of dirname in the new style only.
1663 */
1664 pos = strrchr(build_id_path, '/');
1665 if (pos && strlen(pos) < SBUILD_ID_SIZE - 2)
1666 dirname(build_id_path);
1667
1668 if (dso__is_kcore(dso))
1669 goto fallback;
1670
1671 len = readlink(build_id_path, linkname, sizeof(linkname) - 1);
1672 if (len < 0)
1673 goto fallback;
1674
1675 linkname[len] = '\0';
1676 if (strstr(linkname, DSO__NAME_KALLSYMS) ||
1677 access(filename, R_OK)) {
1678 fallback:
1679 /*
1680 * If we don't have build-ids or the build-id file isn't in the
1681 * cache, or is just a kallsyms file, well, lets hope that this
1682 * DSO is the same as when 'perf record' ran.
1683 */
1684 __symbol__join_symfs(filename, filename_size, dso->long_name);
1685 }
1686
1687 free(build_id_path);
1688 return 0;
1689 }
1690
1691 #if defined(HAVE_LIBBFD_SUPPORT) && defined(HAVE_LIBBPF_SUPPORT)
1692 #define PACKAGE "perf"
1693 #include <bfd.h>
1694 #include <dis-asm.h>
1695
symbol__disassemble_bpf(struct symbol *sym, struct annotate_args *args)1696 static int symbol__disassemble_bpf(struct symbol *sym,
1697 struct annotate_args *args)
1698 {
1699 struct annotation *notes = symbol__annotation(sym);
1700 struct annotation_options *opts = args->options;
1701 struct bpf_prog_info_linear *info_linear;
1702 struct bpf_prog_linfo *prog_linfo = NULL;
1703 struct bpf_prog_info_node *info_node;
1704 int len = sym->end - sym->start;
1705 disassembler_ftype disassemble;
1706 struct map *map = args->ms.map;
1707 struct disassemble_info info;
1708 struct dso *dso = map->dso;
1709 int pc = 0, count, sub_id;
1710 struct btf *btf = NULL;
1711 char tpath[PATH_MAX];
1712 size_t buf_size;
1713 int nr_skip = 0;
1714 char *buf;
1715 bfd *bfdf;
1716 int ret;
1717 FILE *s;
1718
1719 if (dso->binary_type != DSO_BINARY_TYPE__BPF_PROG_INFO)
1720 return SYMBOL_ANNOTATE_ERRNO__BPF_INVALID_FILE;
1721
1722 pr_debug("%s: handling sym %s addr %" PRIx64 " len %" PRIx64 "\n", __func__,
1723 sym->name, sym->start, sym->end - sym->start);
1724
1725 memset(tpath, 0, sizeof(tpath));
1726 perf_exe(tpath, sizeof(tpath));
1727
1728 bfdf = bfd_openr(tpath, NULL);
1729 if (bfdf == NULL)
1730 abort();
1731
1732 if (!bfd_check_format(bfdf, bfd_object))
1733 abort();
1734
1735 s = open_memstream(&buf, &buf_size);
1736 if (!s) {
1737 ret = errno;
1738 goto out;
1739 }
1740 init_disassemble_info(&info, s,
1741 (fprintf_ftype) fprintf);
1742
1743 info.arch = bfd_get_arch(bfdf);
1744 info.mach = bfd_get_mach(bfdf);
1745
1746 info_node = perf_env__find_bpf_prog_info(dso->bpf_prog.env,
1747 dso->bpf_prog.id);
1748 if (!info_node) {
1749 ret = SYMBOL_ANNOTATE_ERRNO__BPF_MISSING_BTF;
1750 goto out;
1751 }
1752 info_linear = info_node->info_linear;
1753 sub_id = dso->bpf_prog.sub_id;
1754
1755 info.buffer = (void *)(uintptr_t)(info_linear->info.jited_prog_insns);
1756 info.buffer_length = info_linear->info.jited_prog_len;
1757
1758 if (info_linear->info.nr_line_info)
1759 prog_linfo = bpf_prog_linfo__new(&info_linear->info);
1760
1761 if (info_linear->info.btf_id) {
1762 struct btf_node *node;
1763
1764 node = perf_env__find_btf(dso->bpf_prog.env,
1765 info_linear->info.btf_id);
1766 if (node)
1767 btf = btf__new((__u8 *)(node->data),
1768 node->data_size);
1769 }
1770
1771 disassemble_init_for_target(&info);
1772
1773 #ifdef DISASM_FOUR_ARGS_SIGNATURE
1774 disassemble = disassembler(info.arch,
1775 bfd_big_endian(bfdf),
1776 info.mach,
1777 bfdf);
1778 #else
1779 disassemble = disassembler(bfdf);
1780 #endif
1781 if (disassemble == NULL)
1782 abort();
1783
1784 fflush(s);
1785 do {
1786 const struct bpf_line_info *linfo = NULL;
1787 struct disasm_line *dl;
1788 size_t prev_buf_size;
1789 const char *srcline;
1790 u64 addr;
1791
1792 addr = pc + ((u64 *)(uintptr_t)(info_linear->info.jited_ksyms))[sub_id];
1793 count = disassemble(pc, &info);
1794
1795 if (prog_linfo)
1796 linfo = bpf_prog_linfo__lfind_addr_func(prog_linfo,
1797 addr, sub_id,
1798 nr_skip);
1799
1800 if (linfo && btf) {
1801 srcline = btf__name_by_offset(btf, linfo->line_off);
1802 nr_skip++;
1803 } else
1804 srcline = NULL;
1805
1806 fprintf(s, "\n");
1807 prev_buf_size = buf_size;
1808 fflush(s);
1809
1810 if (!opts->hide_src_code && srcline) {
1811 args->offset = -1;
1812 args->line = strdup(srcline);
1813 args->line_nr = 0;
1814 args->ms.sym = sym;
1815 dl = disasm_line__new(args);
1816 if (dl) {
1817 annotation_line__add(&dl->al,
1818 ¬es->src->source);
1819 }
1820 }
1821
1822 args->offset = pc;
1823 args->line = buf + prev_buf_size;
1824 args->line_nr = 0;
1825 args->ms.sym = sym;
1826 dl = disasm_line__new(args);
1827 if (dl)
1828 annotation_line__add(&dl->al, ¬es->src->source);
1829
1830 pc += count;
1831 } while (count > 0 && pc < len);
1832
1833 ret = 0;
1834 out:
1835 free(prog_linfo);
1836 free(btf);
1837 fclose(s);
1838 bfd_close(bfdf);
1839 return ret;
1840 }
1841 #else // defined(HAVE_LIBBFD_SUPPORT) && defined(HAVE_LIBBPF_SUPPORT)
symbol__disassemble_bpf(struct symbol *sym __maybe_unused, struct annotate_args *args __maybe_unused)1842 static int symbol__disassemble_bpf(struct symbol *sym __maybe_unused,
1843 struct annotate_args *args __maybe_unused)
1844 {
1845 return SYMBOL_ANNOTATE_ERRNO__NO_LIBOPCODES_FOR_BPF;
1846 }
1847 #endif // defined(HAVE_LIBBFD_SUPPORT) && defined(HAVE_LIBBPF_SUPPORT)
1848
1849 static int
symbol__disassemble_bpf_image(struct symbol *sym, struct annotate_args *args)1850 symbol__disassemble_bpf_image(struct symbol *sym,
1851 struct annotate_args *args)
1852 {
1853 struct annotation *notes = symbol__annotation(sym);
1854 struct disasm_line *dl;
1855
1856 args->offset = -1;
1857 args->line = strdup("to be implemented");
1858 args->line_nr = 0;
1859 dl = disasm_line__new(args);
1860 if (dl)
1861 annotation_line__add(&dl->al, ¬es->src->source);
1862
1863 free(args->line);
1864 return 0;
1865 }
1866
1867 /*
1868 * Possibly create a new version of line with tabs expanded. Returns the
1869 * existing or new line, storage is updated if a new line is allocated. If
1870 * allocation fails then NULL is returned.
1871 */
expand_tabs(char *line, char **storage, size_t *storage_len)1872 static char *expand_tabs(char *line, char **storage, size_t *storage_len)
1873 {
1874 size_t i, src, dst, len, new_storage_len, num_tabs;
1875 char *new_line;
1876 size_t line_len = strlen(line);
1877
1878 for (num_tabs = 0, i = 0; i < line_len; i++)
1879 if (line[i] == '\t')
1880 num_tabs++;
1881
1882 if (num_tabs == 0)
1883 return line;
1884
1885 /*
1886 * Space for the line and '\0', less the leading and trailing
1887 * spaces. Each tab may introduce 7 additional spaces.
1888 */
1889 new_storage_len = line_len + 1 + (num_tabs * 7);
1890
1891 new_line = malloc(new_storage_len);
1892 if (new_line == NULL) {
1893 pr_err("Failure allocating memory for tab expansion\n");
1894 return NULL;
1895 }
1896
1897 /*
1898 * Copy regions starting at src and expand tabs. If there are two
1899 * adjacent tabs then 'src == i', the memcpy is of size 0 and the spaces
1900 * are inserted.
1901 */
1902 for (i = 0, src = 0, dst = 0; i < line_len && num_tabs; i++) {
1903 if (line[i] == '\t') {
1904 len = i - src;
1905 memcpy(&new_line[dst], &line[src], len);
1906 dst += len;
1907 new_line[dst++] = ' ';
1908 while (dst % 8 != 0)
1909 new_line[dst++] = ' ';
1910 src = i + 1;
1911 num_tabs--;
1912 }
1913 }
1914
1915 /* Expand the last region. */
1916 len = line_len - src;
1917 memcpy(&new_line[dst], &line[src], len);
1918 dst += len;
1919 new_line[dst] = '\0';
1920
1921 free(*storage);
1922 *storage = new_line;
1923 *storage_len = new_storage_len;
1924 return new_line;
1925
1926 }
1927
symbol__disassemble(struct symbol *sym, struct annotate_args *args)1928 static int symbol__disassemble(struct symbol *sym, struct annotate_args *args)
1929 {
1930 struct annotation_options *opts = args->options;
1931 struct map *map = args->ms.map;
1932 struct dso *dso = map->dso;
1933 char *command;
1934 FILE *file;
1935 char symfs_filename[PATH_MAX];
1936 struct kcore_extract kce;
1937 bool delete_extract = false;
1938 bool decomp = false;
1939 int lineno = 0;
1940 int nline;
1941 char *line;
1942 size_t line_len;
1943 const char *objdump_argv[] = {
1944 "/bin/sh",
1945 "-c",
1946 NULL, /* Will be the objdump command to run. */
1947 "--",
1948 NULL, /* Will be the symfs path. */
1949 NULL,
1950 };
1951 struct child_process objdump_process;
1952 int err = dso__disassemble_filename(dso, symfs_filename, sizeof(symfs_filename));
1953
1954 if (err)
1955 return err;
1956
1957 pr_debug("%s: filename=%s, sym=%s, start=%#" PRIx64 ", end=%#" PRIx64 "\n", __func__,
1958 symfs_filename, sym->name, map->unmap_ip(map, sym->start),
1959 map->unmap_ip(map, sym->end));
1960
1961 pr_debug("annotating [%p] %30s : [%p] %30s\n",
1962 dso, dso->long_name, sym, sym->name);
1963
1964 if (dso->binary_type == DSO_BINARY_TYPE__BPF_PROG_INFO) {
1965 return symbol__disassemble_bpf(sym, args);
1966 } else if (dso->binary_type == DSO_BINARY_TYPE__BPF_IMAGE) {
1967 return symbol__disassemble_bpf_image(sym, args);
1968 } else if (dso__is_kcore(dso)) {
1969 kce.kcore_filename = symfs_filename;
1970 kce.addr = map__rip_2objdump(map, sym->start);
1971 kce.offs = sym->start;
1972 kce.len = sym->end - sym->start;
1973 if (!kcore_extract__create(&kce)) {
1974 delete_extract = true;
1975 strlcpy(symfs_filename, kce.extract_filename,
1976 sizeof(symfs_filename));
1977 }
1978 } else if (dso__needs_decompress(dso)) {
1979 char tmp[KMOD_DECOMP_LEN];
1980
1981 if (dso__decompress_kmodule_path(dso, symfs_filename,
1982 tmp, sizeof(tmp)) < 0)
1983 return -1;
1984
1985 decomp = true;
1986 strcpy(symfs_filename, tmp);
1987 }
1988
1989 err = asprintf(&command,
1990 "%s %s%s --start-address=0x%016" PRIx64
1991 " --stop-address=0x%016" PRIx64
1992 " -l -d %s %s %s %c%s%c %s%s -C \"$1\"",
1993 opts->objdump_path ?: "objdump",
1994 opts->disassembler_style ? "-M " : "",
1995 opts->disassembler_style ?: "",
1996 map__rip_2objdump(map, sym->start),
1997 map__rip_2objdump(map, sym->end),
1998 opts->show_asm_raw ? "" : "--no-show-raw-insn",
1999 opts->annotate_src ? "-S" : "",
2000 opts->prefix ? "--prefix " : "",
2001 opts->prefix ? '"' : ' ',
2002 opts->prefix ?: "",
2003 opts->prefix ? '"' : ' ',
2004 opts->prefix_strip ? "--prefix-strip=" : "",
2005 opts->prefix_strip ?: "");
2006
2007 if (err < 0) {
2008 pr_err("Failure allocating memory for the command to run\n");
2009 goto out_remove_tmp;
2010 }
2011
2012 pr_debug("Executing: %s\n", command);
2013
2014 objdump_argv[2] = command;
2015 objdump_argv[4] = symfs_filename;
2016
2017 /* Create a pipe to read from for stdout */
2018 memset(&objdump_process, 0, sizeof(objdump_process));
2019 objdump_process.argv = objdump_argv;
2020 objdump_process.out = -1;
2021 if (start_command(&objdump_process)) {
2022 pr_err("Failure starting to run %s\n", command);
2023 err = -1;
2024 goto out_free_command;
2025 }
2026
2027 file = fdopen(objdump_process.out, "r");
2028 if (!file) {
2029 pr_err("Failure creating FILE stream for %s\n", command);
2030 /*
2031 * If we were using debug info should retry with
2032 * original binary.
2033 */
2034 err = -1;
2035 goto out_close_stdout;
2036 }
2037
2038 /* Storage for getline. */
2039 line = NULL;
2040 line_len = 0;
2041
2042 nline = 0;
2043 while (!feof(file)) {
2044 const char *match;
2045 char *expanded_line;
2046
2047 if (getline(&line, &line_len, file) < 0 || !line)
2048 break;
2049
2050 /* Skip lines containing "filename:" */
2051 match = strstr(line, symfs_filename);
2052 if (match && match[strlen(symfs_filename)] == ':')
2053 continue;
2054
2055 expanded_line = strim(line);
2056 expanded_line = expand_tabs(expanded_line, &line, &line_len);
2057 if (!expanded_line)
2058 break;
2059
2060 /*
2061 * The source code line number (lineno) needs to be kept in
2062 * across calls to symbol__parse_objdump_line(), so that it
2063 * can associate it with the instructions till the next one.
2064 * See disasm_line__new() and struct disasm_line::line_nr.
2065 */
2066 if (symbol__parse_objdump_line(sym, args, expanded_line,
2067 &lineno) < 0)
2068 break;
2069 nline++;
2070 }
2071 free(line);
2072
2073 err = finish_command(&objdump_process);
2074 if (err)
2075 pr_err("Error running %s\n", command);
2076
2077 if (nline == 0) {
2078 err = -1;
2079 pr_err("No output from %s\n", command);
2080 }
2081
2082 /*
2083 * kallsyms does not have symbol sizes so there may a nop at the end.
2084 * Remove it.
2085 */
2086 if (dso__is_kcore(dso))
2087 delete_last_nop(sym);
2088
2089 fclose(file);
2090
2091 out_close_stdout:
2092 close(objdump_process.out);
2093
2094 out_free_command:
2095 free(command);
2096
2097 out_remove_tmp:
2098 if (decomp)
2099 unlink(symfs_filename);
2100
2101 if (delete_extract)
2102 kcore_extract__delete(&kce);
2103
2104 return err;
2105 }
2106
calc_percent(struct sym_hist *sym_hist, struct hists *hists, struct annotation_data *data, s64 offset, s64 end)2107 static void calc_percent(struct sym_hist *sym_hist,
2108 struct hists *hists,
2109 struct annotation_data *data,
2110 s64 offset, s64 end)
2111 {
2112 unsigned int hits = 0;
2113 u64 period = 0;
2114
2115 while (offset < end) {
2116 hits += sym_hist->addr[offset].nr_samples;
2117 period += sym_hist->addr[offset].period;
2118 ++offset;
2119 }
2120
2121 if (sym_hist->nr_samples) {
2122 data->he.period = period;
2123 data->he.nr_samples = hits;
2124 data->percent[PERCENT_HITS_LOCAL] = 100.0 * hits / sym_hist->nr_samples;
2125 }
2126
2127 if (hists->stats.nr_non_filtered_samples)
2128 data->percent[PERCENT_HITS_GLOBAL] = 100.0 * hits / hists->stats.nr_non_filtered_samples;
2129
2130 if (sym_hist->period)
2131 data->percent[PERCENT_PERIOD_LOCAL] = 100.0 * period / sym_hist->period;
2132
2133 if (hists->stats.total_period)
2134 data->percent[PERCENT_PERIOD_GLOBAL] = 100.0 * period / hists->stats.total_period;
2135 }
2136
annotation__calc_percent(struct annotation *notes, struct evsel *leader, s64 len)2137 static void annotation__calc_percent(struct annotation *notes,
2138 struct evsel *leader, s64 len)
2139 {
2140 struct annotation_line *al, *next;
2141 struct evsel *evsel;
2142
2143 list_for_each_entry(al, ¬es->src->source, node) {
2144 s64 end;
2145 int i = 0;
2146
2147 if (al->offset == -1)
2148 continue;
2149
2150 next = annotation_line__next(al, ¬es->src->source);
2151 end = next ? next->offset : len;
2152
2153 for_each_group_evsel(evsel, leader) {
2154 struct hists *hists = evsel__hists(evsel);
2155 struct annotation_data *data;
2156 struct sym_hist *sym_hist;
2157
2158 BUG_ON(i >= al->data_nr);
2159
2160 sym_hist = annotation__histogram(notes, evsel->idx);
2161 data = &al->data[i++];
2162
2163 calc_percent(sym_hist, hists, data, al->offset, end);
2164 }
2165 }
2166 }
2167
symbol__calc_percent(struct symbol *sym, struct evsel *evsel)2168 void symbol__calc_percent(struct symbol *sym, struct evsel *evsel)
2169 {
2170 struct annotation *notes = symbol__annotation(sym);
2171
2172 annotation__calc_percent(notes, evsel, symbol__size(sym));
2173 }
2174
symbol__annotate(struct map_symbol *ms, struct evsel *evsel, struct annotation_options *options, struct arch **parch)2175 int symbol__annotate(struct map_symbol *ms, struct evsel *evsel,
2176 struct annotation_options *options, struct arch **parch)
2177 {
2178 struct symbol *sym = ms->sym;
2179 struct annotation *notes = symbol__annotation(sym);
2180 struct annotate_args args = {
2181 .evsel = evsel,
2182 .options = options,
2183 };
2184 struct perf_env *env = evsel__env(evsel);
2185 const char *arch_name = perf_env__arch(env);
2186 struct arch *arch;
2187 int err;
2188
2189 if (!arch_name)
2190 return errno;
2191
2192 args.arch = arch = arch__find(arch_name);
2193 if (arch == NULL) {
2194 pr_err("%s: unsupported arch %s\n", __func__, arch_name);
2195 return ENOTSUP;
2196 }
2197
2198 if (parch)
2199 *parch = arch;
2200
2201 if (arch->init) {
2202 err = arch->init(arch, env ? env->cpuid : NULL);
2203 if (err) {
2204 pr_err("%s: failed to initialize %s arch priv area\n", __func__, arch->name);
2205 return err;
2206 }
2207 }
2208
2209 args.ms = *ms;
2210 notes->start = map__rip_2objdump(ms->map, sym->start);
2211
2212 return symbol__disassemble(sym, &args);
2213 }
2214
insert_source_line(struct rb_root *root, struct annotation_line *al, struct annotation_options *opts)2215 static void insert_source_line(struct rb_root *root, struct annotation_line *al,
2216 struct annotation_options *opts)
2217 {
2218 struct annotation_line *iter;
2219 struct rb_node **p = &root->rb_node;
2220 struct rb_node *parent = NULL;
2221 int i, ret;
2222
2223 while (*p != NULL) {
2224 parent = *p;
2225 iter = rb_entry(parent, struct annotation_line, rb_node);
2226
2227 ret = strcmp(iter->path, al->path);
2228 if (ret == 0) {
2229 for (i = 0; i < al->data_nr; i++) {
2230 iter->data[i].percent_sum += annotation_data__percent(&al->data[i],
2231 opts->percent_type);
2232 }
2233 return;
2234 }
2235
2236 if (ret < 0)
2237 p = &(*p)->rb_left;
2238 else
2239 p = &(*p)->rb_right;
2240 }
2241
2242 for (i = 0; i < al->data_nr; i++) {
2243 al->data[i].percent_sum = annotation_data__percent(&al->data[i],
2244 opts->percent_type);
2245 }
2246
2247 rb_link_node(&al->rb_node, parent, p);
2248 rb_insert_color(&al->rb_node, root);
2249 }
2250
cmp_source_line(struct annotation_line *a, struct annotation_line *b)2251 static int cmp_source_line(struct annotation_line *a, struct annotation_line *b)
2252 {
2253 int i;
2254
2255 for (i = 0; i < a->data_nr; i++) {
2256 if (a->data[i].percent_sum == b->data[i].percent_sum)
2257 continue;
2258 return a->data[i].percent_sum > b->data[i].percent_sum;
2259 }
2260
2261 return 0;
2262 }
2263
__resort_source_line(struct rb_root *root, struct annotation_line *al)2264 static void __resort_source_line(struct rb_root *root, struct annotation_line *al)
2265 {
2266 struct annotation_line *iter;
2267 struct rb_node **p = &root->rb_node;
2268 struct rb_node *parent = NULL;
2269
2270 while (*p != NULL) {
2271 parent = *p;
2272 iter = rb_entry(parent, struct annotation_line, rb_node);
2273
2274 if (cmp_source_line(al, iter))
2275 p = &(*p)->rb_left;
2276 else
2277 p = &(*p)->rb_right;
2278 }
2279
2280 rb_link_node(&al->rb_node, parent, p);
2281 rb_insert_color(&al->rb_node, root);
2282 }
2283
resort_source_line(struct rb_root *dest_root, struct rb_root *src_root)2284 static void resort_source_line(struct rb_root *dest_root, struct rb_root *src_root)
2285 {
2286 struct annotation_line *al;
2287 struct rb_node *node;
2288
2289 node = rb_first(src_root);
2290 while (node) {
2291 struct rb_node *next;
2292
2293 al = rb_entry(node, struct annotation_line, rb_node);
2294 next = rb_next(node);
2295 rb_erase(node, src_root);
2296
2297 __resort_source_line(dest_root, al);
2298 node = next;
2299 }
2300 }
2301
print_summary(struct rb_root *root, const char *filename)2302 static void print_summary(struct rb_root *root, const char *filename)
2303 {
2304 struct annotation_line *al;
2305 struct rb_node *node;
2306
2307 printf("\nSorted summary for file %s\n", filename);
2308 printf("----------------------------------------------\n\n");
2309
2310 if (RB_EMPTY_ROOT(root)) {
2311 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN);
2312 return;
2313 }
2314
2315 node = rb_first(root);
2316 while (node) {
2317 double percent, percent_max = 0.0;
2318 const char *color;
2319 char *path;
2320 int i;
2321
2322 al = rb_entry(node, struct annotation_line, rb_node);
2323 for (i = 0; i < al->data_nr; i++) {
2324 percent = al->data[i].percent_sum;
2325 color = get_percent_color(percent);
2326 color_fprintf(stdout, color, " %7.2f", percent);
2327
2328 if (percent > percent_max)
2329 percent_max = percent;
2330 }
2331
2332 path = al->path;
2333 color = get_percent_color(percent_max);
2334 color_fprintf(stdout, color, " %s\n", path);
2335
2336 node = rb_next(node);
2337 }
2338 }
2339
symbol__annotate_hits(struct symbol *sym, struct evsel *evsel)2340 static void symbol__annotate_hits(struct symbol *sym, struct evsel *evsel)
2341 {
2342 struct annotation *notes = symbol__annotation(sym);
2343 struct sym_hist *h = annotation__histogram(notes, evsel->idx);
2344 u64 len = symbol__size(sym), offset;
2345
2346 for (offset = 0; offset < len; ++offset)
2347 if (h->addr[offset].nr_samples != 0)
2348 printf("%*" PRIx64 ": %" PRIu64 "\n", BITS_PER_LONG / 2,
2349 sym->start + offset, h->addr[offset].nr_samples);
2350 printf("%*s: %" PRIu64 "\n", BITS_PER_LONG / 2, "h->nr_samples", h->nr_samples);
2351 }
2352
annotated_source__addr_fmt_width(struct list_head *lines, u64 start)2353 static int annotated_source__addr_fmt_width(struct list_head *lines, u64 start)
2354 {
2355 char bf[32];
2356 struct annotation_line *line;
2357
2358 list_for_each_entry_reverse(line, lines, node) {
2359 if (line->offset != -1)
2360 return scnprintf(bf, sizeof(bf), "%" PRIx64, start + line->offset);
2361 }
2362
2363 return 0;
2364 }
2365
symbol__annotate_printf(struct map_symbol *ms, struct evsel *evsel, struct annotation_options *opts)2366 int symbol__annotate_printf(struct map_symbol *ms, struct evsel *evsel,
2367 struct annotation_options *opts)
2368 {
2369 struct map *map = ms->map;
2370 struct symbol *sym = ms->sym;
2371 struct dso *dso = map->dso;
2372 char *filename;
2373 const char *d_filename;
2374 const char *evsel_name = evsel__name(evsel);
2375 struct annotation *notes = symbol__annotation(sym);
2376 struct sym_hist *h = annotation__histogram(notes, evsel->idx);
2377 struct annotation_line *pos, *queue = NULL;
2378 u64 start = map__rip_2objdump(map, sym->start);
2379 int printed = 2, queue_len = 0, addr_fmt_width;
2380 int more = 0;
2381 bool context = opts->context;
2382 u64 len;
2383 int width = symbol_conf.show_total_period ? 12 : 8;
2384 int graph_dotted_len;
2385 char buf[512];
2386
2387 filename = strdup(dso->long_name);
2388 if (!filename)
2389 return -ENOMEM;
2390
2391 if (opts->full_path)
2392 d_filename = filename;
2393 else
2394 d_filename = basename(filename);
2395
2396 len = symbol__size(sym);
2397
2398 if (evsel__is_group_event(evsel)) {
2399 width *= evsel->core.nr_members;
2400 evsel__group_desc(evsel, buf, sizeof(buf));
2401 evsel_name = buf;
2402 }
2403
2404 graph_dotted_len = printf(" %-*.*s| Source code & Disassembly of %s for %s (%" PRIu64 " samples, "
2405 "percent: %s)\n",
2406 width, width, symbol_conf.show_total_period ? "Period" :
2407 symbol_conf.show_nr_samples ? "Samples" : "Percent",
2408 d_filename, evsel_name, h->nr_samples,
2409 percent_type_str(opts->percent_type));
2410
2411 printf("%-*.*s----\n",
2412 graph_dotted_len, graph_dotted_len, graph_dotted_line);
2413
2414 if (verbose > 0)
2415 symbol__annotate_hits(sym, evsel);
2416
2417 addr_fmt_width = annotated_source__addr_fmt_width(¬es->src->source, start);
2418
2419 list_for_each_entry(pos, ¬es->src->source, node) {
2420 int err;
2421
2422 if (context && queue == NULL) {
2423 queue = pos;
2424 queue_len = 0;
2425 }
2426
2427 err = annotation_line__print(pos, sym, start, evsel, len,
2428 opts->min_pcnt, printed, opts->max_lines,
2429 queue, addr_fmt_width, opts->percent_type);
2430
2431 switch (err) {
2432 case 0:
2433 ++printed;
2434 if (context) {
2435 printed += queue_len;
2436 queue = NULL;
2437 queue_len = 0;
2438 }
2439 break;
2440 case 1:
2441 /* filtered by max_lines */
2442 ++more;
2443 break;
2444 case -1:
2445 default:
2446 /*
2447 * Filtered by min_pcnt or non IP lines when
2448 * context != 0
2449 */
2450 if (!context)
2451 break;
2452 if (queue_len == context)
2453 queue = list_entry(queue->node.next, typeof(*queue), node);
2454 else
2455 ++queue_len;
2456 break;
2457 }
2458 }
2459
2460 free(filename);
2461
2462 return more;
2463 }
2464
FILE__set_percent_color(void *fp __maybe_unused, double percent __maybe_unused, bool current __maybe_unused)2465 static void FILE__set_percent_color(void *fp __maybe_unused,
2466 double percent __maybe_unused,
2467 bool current __maybe_unused)
2468 {
2469 }
2470
FILE__set_jumps_percent_color(void *fp __maybe_unused, int nr __maybe_unused, bool current __maybe_unused)2471 static int FILE__set_jumps_percent_color(void *fp __maybe_unused,
2472 int nr __maybe_unused, bool current __maybe_unused)
2473 {
2474 return 0;
2475 }
2476
FILE__set_color(void *fp __maybe_unused, int color __maybe_unused)2477 static int FILE__set_color(void *fp __maybe_unused, int color __maybe_unused)
2478 {
2479 return 0;
2480 }
2481
FILE__printf(void *fp, const char *fmt, ...)2482 static void FILE__printf(void *fp, const char *fmt, ...)
2483 {
2484 va_list args;
2485
2486 va_start(args, fmt);
2487 vfprintf(fp, fmt, args);
2488 va_end(args);
2489 }
2490
FILE__write_graph(void *fp, int graph)2491 static void FILE__write_graph(void *fp, int graph)
2492 {
2493 const char *s;
2494 switch (graph) {
2495
2496 case DARROW_CHAR: s = "↓"; break;
2497 case UARROW_CHAR: s = "↑"; break;
2498 case LARROW_CHAR: s = "←"; break;
2499 case RARROW_CHAR: s = "→"; break;
2500 default: s = "?"; break;
2501 }
2502
2503 fputs(s, fp);
2504 }
2505
symbol__annotate_fprintf2(struct symbol *sym, FILE *fp, struct annotation_options *opts)2506 static int symbol__annotate_fprintf2(struct symbol *sym, FILE *fp,
2507 struct annotation_options *opts)
2508 {
2509 struct annotation *notes = symbol__annotation(sym);
2510 struct annotation_write_ops wops = {
2511 .first_line = true,
2512 .obj = fp,
2513 .set_color = FILE__set_color,
2514 .set_percent_color = FILE__set_percent_color,
2515 .set_jumps_percent_color = FILE__set_jumps_percent_color,
2516 .printf = FILE__printf,
2517 .write_graph = FILE__write_graph,
2518 };
2519 struct annotation_line *al;
2520
2521 list_for_each_entry(al, ¬es->src->source, node) {
2522 if (annotation_line__filter(al, notes))
2523 continue;
2524 annotation_line__write(al, notes, &wops, opts);
2525 fputc('\n', fp);
2526 wops.first_line = false;
2527 }
2528
2529 return 0;
2530 }
2531
map_symbol__annotation_dump(struct map_symbol *ms, struct evsel *evsel, struct annotation_options *opts)2532 int map_symbol__annotation_dump(struct map_symbol *ms, struct evsel *evsel,
2533 struct annotation_options *opts)
2534 {
2535 const char *ev_name = evsel__name(evsel);
2536 char buf[1024];
2537 char *filename;
2538 int err = -1;
2539 FILE *fp;
2540
2541 if (asprintf(&filename, "%s.annotation", ms->sym->name) < 0)
2542 return -1;
2543
2544 fp = fopen(filename, "w");
2545 if (fp == NULL)
2546 goto out_free_filename;
2547
2548 if (evsel__is_group_event(evsel)) {
2549 evsel__group_desc(evsel, buf, sizeof(buf));
2550 ev_name = buf;
2551 }
2552
2553 fprintf(fp, "%s() %s\nEvent: %s\n\n",
2554 ms->sym->name, ms->map->dso->long_name, ev_name);
2555 symbol__annotate_fprintf2(ms->sym, fp, opts);
2556
2557 fclose(fp);
2558 err = 0;
2559 out_free_filename:
2560 free(filename);
2561 return err;
2562 }
2563
symbol__annotate_zero_histogram(struct symbol *sym, int evidx)2564 void symbol__annotate_zero_histogram(struct symbol *sym, int evidx)
2565 {
2566 struct annotation *notes = symbol__annotation(sym);
2567 struct sym_hist *h = annotation__histogram(notes, evidx);
2568
2569 memset(h, 0, notes->src->sizeof_sym_hist);
2570 }
2571
symbol__annotate_decay_histogram(struct symbol *sym, int evidx)2572 void symbol__annotate_decay_histogram(struct symbol *sym, int evidx)
2573 {
2574 struct annotation *notes = symbol__annotation(sym);
2575 struct sym_hist *h = annotation__histogram(notes, evidx);
2576 int len = symbol__size(sym), offset;
2577
2578 h->nr_samples = 0;
2579 for (offset = 0; offset < len; ++offset) {
2580 h->addr[offset].nr_samples = h->addr[offset].nr_samples * 7 / 8;
2581 h->nr_samples += h->addr[offset].nr_samples;
2582 }
2583 }
2584
annotated_source__purge(struct annotated_source *as)2585 void annotated_source__purge(struct annotated_source *as)
2586 {
2587 struct annotation_line *al, *n;
2588
2589 list_for_each_entry_safe(al, n, &as->source, node) {
2590 list_del_init(&al->node);
2591 disasm_line__free(disasm_line(al));
2592 }
2593 }
2594
disasm_line__fprintf(struct disasm_line *dl, FILE *fp)2595 static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp)
2596 {
2597 size_t printed;
2598
2599 if (dl->al.offset == -1)
2600 return fprintf(fp, "%s\n", dl->al.line);
2601
2602 printed = fprintf(fp, "%#" PRIx64 " %s", dl->al.offset, dl->ins.name);
2603
2604 if (dl->ops.raw[0] != '\0') {
2605 printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ",
2606 dl->ops.raw);
2607 }
2608
2609 return printed + fprintf(fp, "\n");
2610 }
2611
disasm__fprintf(struct list_head *head, FILE *fp)2612 size_t disasm__fprintf(struct list_head *head, FILE *fp)
2613 {
2614 struct disasm_line *pos;
2615 size_t printed = 0;
2616
2617 list_for_each_entry(pos, head, al.node)
2618 printed += disasm_line__fprintf(pos, fp);
2619
2620 return printed;
2621 }
2622
disasm_line__is_valid_local_jump(struct disasm_line *dl, struct symbol *sym)2623 bool disasm_line__is_valid_local_jump(struct disasm_line *dl, struct symbol *sym)
2624 {
2625 if (!dl || !dl->ins.ops || !ins__is_jump(&dl->ins) ||
2626 !disasm_line__has_local_offset(dl) || dl->ops.target.offset < 0 ||
2627 dl->ops.target.offset >= (s64)symbol__size(sym))
2628 return false;
2629
2630 return true;
2631 }
2632
annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym)2633 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym)
2634 {
2635 u64 offset, size = symbol__size(sym);
2636
2637 /* PLT symbols contain external offsets */
2638 if (strstr(sym->name, "@plt"))
2639 return;
2640
2641 for (offset = 0; offset < size; ++offset) {
2642 struct annotation_line *al = notes->offsets[offset];
2643 struct disasm_line *dl;
2644
2645 dl = disasm_line(al);
2646
2647 if (!disasm_line__is_valid_local_jump(dl, sym))
2648 continue;
2649
2650 al = notes->offsets[dl->ops.target.offset];
2651
2652 /*
2653 * FIXME: Oops, no jump target? Buggy disassembler? Or do we
2654 * have to adjust to the previous offset?
2655 */
2656 if (al == NULL)
2657 continue;
2658
2659 if (++al->jump_sources > notes->max_jump_sources)
2660 notes->max_jump_sources = al->jump_sources;
2661 }
2662 }
2663
annotation__set_offsets(struct annotation *notes, s64 size)2664 void annotation__set_offsets(struct annotation *notes, s64 size)
2665 {
2666 struct annotation_line *al;
2667
2668 notes->max_line_len = 0;
2669 notes->nr_entries = 0;
2670 notes->nr_asm_entries = 0;
2671
2672 list_for_each_entry(al, ¬es->src->source, node) {
2673 size_t line_len = strlen(al->line);
2674
2675 if (notes->max_line_len < line_len)
2676 notes->max_line_len = line_len;
2677 al->idx = notes->nr_entries++;
2678 if (al->offset != -1) {
2679 al->idx_asm = notes->nr_asm_entries++;
2680 /*
2681 * FIXME: short term bandaid to cope with assembly
2682 * routines that comes with labels in the same column
2683 * as the address in objdump, sigh.
2684 *
2685 * E.g. copy_user_generic_unrolled
2686 */
2687 if (al->offset < size)
2688 notes->offsets[al->offset] = al;
2689 } else
2690 al->idx_asm = -1;
2691 }
2692 }
2693
width_jumps(int n)2694 static inline int width_jumps(int n)
2695 {
2696 if (n >= 100)
2697 return 5;
2698 if (n / 10)
2699 return 2;
2700 return 1;
2701 }
2702
annotation__max_ins_name(struct annotation *notes)2703 static int annotation__max_ins_name(struct annotation *notes)
2704 {
2705 int max_name = 0, len;
2706 struct annotation_line *al;
2707
2708 list_for_each_entry(al, ¬es->src->source, node) {
2709 if (al->offset == -1)
2710 continue;
2711
2712 len = strlen(disasm_line(al)->ins.name);
2713 if (max_name < len)
2714 max_name = len;
2715 }
2716
2717 return max_name;
2718 }
2719
annotation__init_column_widths(struct annotation *notes, struct symbol *sym)2720 void annotation__init_column_widths(struct annotation *notes, struct symbol *sym)
2721 {
2722 notes->widths.addr = notes->widths.target =
2723 notes->widths.min_addr = hex_width(symbol__size(sym));
2724 notes->widths.max_addr = hex_width(sym->end);
2725 notes->widths.jumps = width_jumps(notes->max_jump_sources);
2726 notes->widths.max_ins_name = annotation__max_ins_name(notes);
2727 }
2728
annotation__update_column_widths(struct annotation *notes)2729 void annotation__update_column_widths(struct annotation *notes)
2730 {
2731 if (notes->options->use_offset)
2732 notes->widths.target = notes->widths.min_addr;
2733 else
2734 notes->widths.target = notes->widths.max_addr;
2735
2736 notes->widths.addr = notes->widths.target;
2737
2738 if (notes->options->show_nr_jumps)
2739 notes->widths.addr += notes->widths.jumps + 1;
2740 }
2741
annotation__calc_lines(struct annotation *notes, struct map *map, struct rb_root *root, struct annotation_options *opts)2742 static void annotation__calc_lines(struct annotation *notes, struct map *map,
2743 struct rb_root *root,
2744 struct annotation_options *opts)
2745 {
2746 struct annotation_line *al;
2747 struct rb_root tmp_root = RB_ROOT;
2748
2749 list_for_each_entry(al, ¬es->src->source, node) {
2750 double percent_max = 0.0;
2751 int i;
2752
2753 for (i = 0; i < al->data_nr; i++) {
2754 double percent;
2755
2756 percent = annotation_data__percent(&al->data[i],
2757 opts->percent_type);
2758
2759 if (percent > percent_max)
2760 percent_max = percent;
2761 }
2762
2763 if (percent_max <= 0.5)
2764 continue;
2765
2766 al->path = get_srcline(map->dso, notes->start + al->offset, NULL,
2767 false, true, notes->start + al->offset);
2768 insert_source_line(&tmp_root, al, opts);
2769 }
2770
2771 resort_source_line(root, &tmp_root);
2772 }
2773
symbol__calc_lines(struct map_symbol *ms, struct rb_root *root, struct annotation_options *opts)2774 static void symbol__calc_lines(struct map_symbol *ms, struct rb_root *root,
2775 struct annotation_options *opts)
2776 {
2777 struct annotation *notes = symbol__annotation(ms->sym);
2778
2779 annotation__calc_lines(notes, ms->map, root, opts);
2780 }
2781
symbol__tty_annotate2(struct map_symbol *ms, struct evsel *evsel, struct annotation_options *opts)2782 int symbol__tty_annotate2(struct map_symbol *ms, struct evsel *evsel,
2783 struct annotation_options *opts)
2784 {
2785 struct dso *dso = ms->map->dso;
2786 struct symbol *sym = ms->sym;
2787 struct rb_root source_line = RB_ROOT;
2788 struct hists *hists = evsel__hists(evsel);
2789 char buf[1024];
2790
2791 if (symbol__annotate2(ms, evsel, opts, NULL) < 0)
2792 return -1;
2793
2794 if (opts->print_lines) {
2795 srcline_full_filename = opts->full_path;
2796 symbol__calc_lines(ms, &source_line, opts);
2797 print_summary(&source_line, dso->long_name);
2798 }
2799
2800 hists__scnprintf_title(hists, buf, sizeof(buf));
2801 fprintf(stdout, "%s, [percent: %s]\n%s() %s\n",
2802 buf, percent_type_str(opts->percent_type), sym->name, dso->long_name);
2803 symbol__annotate_fprintf2(sym, stdout, opts);
2804
2805 annotated_source__purge(symbol__annotation(sym)->src);
2806
2807 return 0;
2808 }
2809
symbol__tty_annotate(struct map_symbol *ms, struct evsel *evsel, struct annotation_options *opts)2810 int symbol__tty_annotate(struct map_symbol *ms, struct evsel *evsel,
2811 struct annotation_options *opts)
2812 {
2813 struct dso *dso = ms->map->dso;
2814 struct symbol *sym = ms->sym;
2815 struct rb_root source_line = RB_ROOT;
2816
2817 if (symbol__annotate(ms, evsel, opts, NULL) < 0)
2818 return -1;
2819
2820 symbol__calc_percent(sym, evsel);
2821
2822 if (opts->print_lines) {
2823 srcline_full_filename = opts->full_path;
2824 symbol__calc_lines(ms, &source_line, opts);
2825 print_summary(&source_line, dso->long_name);
2826 }
2827
2828 symbol__annotate_printf(ms, evsel, opts);
2829
2830 annotated_source__purge(symbol__annotation(sym)->src);
2831
2832 return 0;
2833 }
2834
ui__has_annotation(void)2835 bool ui__has_annotation(void)
2836 {
2837 return use_browser == 1 && perf_hpp_list.sym;
2838 }
2839
2840
annotation_line__max_percent(struct annotation_line *al, struct annotation *notes, unsigned int percent_type)2841 static double annotation_line__max_percent(struct annotation_line *al,
2842 struct annotation *notes,
2843 unsigned int percent_type)
2844 {
2845 double percent_max = 0.0;
2846 int i;
2847
2848 for (i = 0; i < notes->nr_events; i++) {
2849 double percent;
2850
2851 percent = annotation_data__percent(&al->data[i],
2852 percent_type);
2853
2854 if (percent > percent_max)
2855 percent_max = percent;
2856 }
2857
2858 return percent_max;
2859 }
2860
disasm_line__write(struct disasm_line *dl, struct annotation *notes, void *obj, char *bf, size_t size, void (*obj__printf)(void *obj, const char *fmt, ...), void (*obj__write_graph)(void *obj, int graph))2861 static void disasm_line__write(struct disasm_line *dl, struct annotation *notes,
2862 void *obj, char *bf, size_t size,
2863 void (*obj__printf)(void *obj, const char *fmt, ...),
2864 void (*obj__write_graph)(void *obj, int graph))
2865 {
2866 if (dl->ins.ops && dl->ins.ops->scnprintf) {
2867 if (ins__is_jump(&dl->ins)) {
2868 bool fwd;
2869
2870 if (dl->ops.target.outside)
2871 goto call_like;
2872 fwd = dl->ops.target.offset > dl->al.offset;
2873 obj__write_graph(obj, fwd ? DARROW_CHAR : UARROW_CHAR);
2874 obj__printf(obj, " ");
2875 } else if (ins__is_call(&dl->ins)) {
2876 call_like:
2877 obj__write_graph(obj, RARROW_CHAR);
2878 obj__printf(obj, " ");
2879 } else if (ins__is_ret(&dl->ins)) {
2880 obj__write_graph(obj, LARROW_CHAR);
2881 obj__printf(obj, " ");
2882 } else {
2883 obj__printf(obj, " ");
2884 }
2885 } else {
2886 obj__printf(obj, " ");
2887 }
2888
2889 disasm_line__scnprintf(dl, bf, size, !notes->options->use_offset, notes->widths.max_ins_name);
2890 }
2891
ipc_coverage_string(char *bf, int size, struct annotation *notes)2892 static void ipc_coverage_string(char *bf, int size, struct annotation *notes)
2893 {
2894 double ipc = 0.0, coverage = 0.0;
2895
2896 if (notes->hit_cycles)
2897 ipc = notes->hit_insn / ((double)notes->hit_cycles);
2898
2899 if (notes->total_insn) {
2900 coverage = notes->cover_insn * 100.0 /
2901 ((double)notes->total_insn);
2902 }
2903
2904 scnprintf(bf, size, "(Average IPC: %.2f, IPC Coverage: %.1f%%)",
2905 ipc, coverage);
2906 }
2907
__annotation_line__write(struct annotation_line *al, struct annotation *notes, bool first_line, bool current_entry, bool change_color, int width, void *obj, unsigned int percent_type, int (*obj__set_color)(void *obj, int color), void (*obj__set_percent_color)(void *obj, double percent, bool current), int (*obj__set_jumps_percent_color)(void *obj, int nr, bool current), void (*obj__printf)(void *obj, const char *fmt, ...), void (*obj__write_graph)(void *obj, int graph))2908 static void __annotation_line__write(struct annotation_line *al, struct annotation *notes,
2909 bool first_line, bool current_entry, bool change_color, int width,
2910 void *obj, unsigned int percent_type,
2911 int (*obj__set_color)(void *obj, int color),
2912 void (*obj__set_percent_color)(void *obj, double percent, bool current),
2913 int (*obj__set_jumps_percent_color)(void *obj, int nr, bool current),
2914 void (*obj__printf)(void *obj, const char *fmt, ...),
2915 void (*obj__write_graph)(void *obj, int graph))
2916
2917 {
2918 double percent_max = annotation_line__max_percent(al, notes, percent_type);
2919 int pcnt_width = annotation__pcnt_width(notes),
2920 cycles_width = annotation__cycles_width(notes);
2921 bool show_title = false;
2922 char bf[256];
2923 int printed;
2924
2925 if (first_line && (al->offset == -1 || percent_max == 0.0)) {
2926 if (notes->have_cycles) {
2927 if (al->ipc == 0.0 && al->cycles == 0)
2928 show_title = true;
2929 } else
2930 show_title = true;
2931 }
2932
2933 if (al->offset != -1 && percent_max != 0.0) {
2934 int i;
2935
2936 for (i = 0; i < notes->nr_events; i++) {
2937 double percent;
2938
2939 percent = annotation_data__percent(&al->data[i], percent_type);
2940
2941 obj__set_percent_color(obj, percent, current_entry);
2942 if (symbol_conf.show_total_period) {
2943 obj__printf(obj, "%11" PRIu64 " ", al->data[i].he.period);
2944 } else if (symbol_conf.show_nr_samples) {
2945 obj__printf(obj, "%6" PRIu64 " ",
2946 al->data[i].he.nr_samples);
2947 } else {
2948 obj__printf(obj, "%6.2f ", percent);
2949 }
2950 }
2951 } else {
2952 obj__set_percent_color(obj, 0, current_entry);
2953
2954 if (!show_title)
2955 obj__printf(obj, "%-*s", pcnt_width, " ");
2956 else {
2957 obj__printf(obj, "%-*s", pcnt_width,
2958 symbol_conf.show_total_period ? "Period" :
2959 symbol_conf.show_nr_samples ? "Samples" : "Percent");
2960 }
2961 }
2962
2963 if (notes->have_cycles) {
2964 if (al->ipc)
2965 obj__printf(obj, "%*.2f ", ANNOTATION__IPC_WIDTH - 1, al->ipc);
2966 else if (!show_title)
2967 obj__printf(obj, "%*s", ANNOTATION__IPC_WIDTH, " ");
2968 else
2969 obj__printf(obj, "%*s ", ANNOTATION__IPC_WIDTH - 1, "IPC");
2970
2971 if (!notes->options->show_minmax_cycle) {
2972 if (al->cycles)
2973 obj__printf(obj, "%*" PRIu64 " ",
2974 ANNOTATION__CYCLES_WIDTH - 1, al->cycles);
2975 else if (!show_title)
2976 obj__printf(obj, "%*s",
2977 ANNOTATION__CYCLES_WIDTH, " ");
2978 else
2979 obj__printf(obj, "%*s ",
2980 ANNOTATION__CYCLES_WIDTH - 1,
2981 "Cycle");
2982 } else {
2983 if (al->cycles) {
2984 char str[32];
2985
2986 scnprintf(str, sizeof(str),
2987 "%" PRIu64 "(%" PRIu64 "/%" PRIu64 ")",
2988 al->cycles, al->cycles_min,
2989 al->cycles_max);
2990
2991 obj__printf(obj, "%*s ",
2992 ANNOTATION__MINMAX_CYCLES_WIDTH - 1,
2993 str);
2994 } else if (!show_title)
2995 obj__printf(obj, "%*s",
2996 ANNOTATION__MINMAX_CYCLES_WIDTH,
2997 " ");
2998 else
2999 obj__printf(obj, "%*s ",
3000 ANNOTATION__MINMAX_CYCLES_WIDTH - 1,
3001 "Cycle(min/max)");
3002 }
3003
3004 if (show_title && !*al->line) {
3005 ipc_coverage_string(bf, sizeof(bf), notes);
3006 obj__printf(obj, "%*s", ANNOTATION__AVG_IPC_WIDTH, bf);
3007 }
3008 }
3009
3010 obj__printf(obj, " ");
3011
3012 if (!*al->line)
3013 obj__printf(obj, "%-*s", width - pcnt_width - cycles_width, " ");
3014 else if (al->offset == -1) {
3015 if (al->line_nr && notes->options->show_linenr)
3016 printed = scnprintf(bf, sizeof(bf), "%-*d ", notes->widths.addr + 1, al->line_nr);
3017 else
3018 printed = scnprintf(bf, sizeof(bf), "%-*s ", notes->widths.addr, " ");
3019 obj__printf(obj, bf);
3020 obj__printf(obj, "%-*s", width - printed - pcnt_width - cycles_width + 1, al->line);
3021 } else {
3022 u64 addr = al->offset;
3023 int color = -1;
3024
3025 if (!notes->options->use_offset)
3026 addr += notes->start;
3027
3028 if (!notes->options->use_offset) {
3029 printed = scnprintf(bf, sizeof(bf), "%" PRIx64 ": ", addr);
3030 } else {
3031 if (al->jump_sources &&
3032 notes->options->offset_level >= ANNOTATION__OFFSET_JUMP_TARGETS) {
3033 if (notes->options->show_nr_jumps) {
3034 int prev;
3035 printed = scnprintf(bf, sizeof(bf), "%*d ",
3036 notes->widths.jumps,
3037 al->jump_sources);
3038 prev = obj__set_jumps_percent_color(obj, al->jump_sources,
3039 current_entry);
3040 obj__printf(obj, bf);
3041 obj__set_color(obj, prev);
3042 }
3043 print_addr:
3044 printed = scnprintf(bf, sizeof(bf), "%*" PRIx64 ": ",
3045 notes->widths.target, addr);
3046 } else if (ins__is_call(&disasm_line(al)->ins) &&
3047 notes->options->offset_level >= ANNOTATION__OFFSET_CALL) {
3048 goto print_addr;
3049 } else if (notes->options->offset_level == ANNOTATION__MAX_OFFSET_LEVEL) {
3050 goto print_addr;
3051 } else {
3052 printed = scnprintf(bf, sizeof(bf), "%-*s ",
3053 notes->widths.addr, " ");
3054 }
3055 }
3056
3057 if (change_color)
3058 color = obj__set_color(obj, HE_COLORSET_ADDR);
3059 obj__printf(obj, bf);
3060 if (change_color)
3061 obj__set_color(obj, color);
3062
3063 disasm_line__write(disasm_line(al), notes, obj, bf, sizeof(bf), obj__printf, obj__write_graph);
3064
3065 obj__printf(obj, "%-*s", width - pcnt_width - cycles_width - 3 - printed, bf);
3066 }
3067
3068 }
3069
annotation_line__write(struct annotation_line *al, struct annotation *notes, struct annotation_write_ops *wops, struct annotation_options *opts)3070 void annotation_line__write(struct annotation_line *al, struct annotation *notes,
3071 struct annotation_write_ops *wops,
3072 struct annotation_options *opts)
3073 {
3074 __annotation_line__write(al, notes, wops->first_line, wops->current_entry,
3075 wops->change_color, wops->width, wops->obj,
3076 opts->percent_type,
3077 wops->set_color, wops->set_percent_color,
3078 wops->set_jumps_percent_color, wops->printf,
3079 wops->write_graph);
3080 }
3081
symbol__annotate2(struct map_symbol *ms, struct evsel *evsel, struct annotation_options *options, struct arch **parch)3082 int symbol__annotate2(struct map_symbol *ms, struct evsel *evsel,
3083 struct annotation_options *options, struct arch **parch)
3084 {
3085 struct symbol *sym = ms->sym;
3086 struct annotation *notes = symbol__annotation(sym);
3087 size_t size = symbol__size(sym);
3088 int nr_pcnt = 1, err;
3089
3090 notes->offsets = zalloc(size * sizeof(struct annotation_line *));
3091 if (notes->offsets == NULL)
3092 return ENOMEM;
3093
3094 if (evsel__is_group_event(evsel))
3095 nr_pcnt = evsel->core.nr_members;
3096
3097 err = symbol__annotate(ms, evsel, options, parch);
3098 if (err)
3099 goto out_free_offsets;
3100
3101 notes->options = options;
3102
3103 symbol__calc_percent(sym, evsel);
3104
3105 annotation__set_offsets(notes, size);
3106 annotation__mark_jump_targets(notes, sym);
3107 annotation__compute_ipc(notes, size);
3108 annotation__init_column_widths(notes, sym);
3109 notes->nr_events = nr_pcnt;
3110
3111 annotation__update_column_widths(notes);
3112 sym->annotate2 = true;
3113
3114 return 0;
3115
3116 out_free_offsets:
3117 zfree(¬es->offsets);
3118 return err;
3119 }
3120
annotation__config(const char *var, const char *value, void *data)3121 static int annotation__config(const char *var, const char *value, void *data)
3122 {
3123 struct annotation_options *opt = data;
3124
3125 if (!strstarts(var, "annotate."))
3126 return 0;
3127
3128 if (!strcmp(var, "annotate.offset_level")) {
3129 perf_config_u8(&opt->offset_level, "offset_level", value);
3130
3131 if (opt->offset_level > ANNOTATION__MAX_OFFSET_LEVEL)
3132 opt->offset_level = ANNOTATION__MAX_OFFSET_LEVEL;
3133 else if (opt->offset_level < ANNOTATION__MIN_OFFSET_LEVEL)
3134 opt->offset_level = ANNOTATION__MIN_OFFSET_LEVEL;
3135 } else if (!strcmp(var, "annotate.hide_src_code")) {
3136 opt->hide_src_code = perf_config_bool("hide_src_code", value);
3137 } else if (!strcmp(var, "annotate.jump_arrows")) {
3138 opt->jump_arrows = perf_config_bool("jump_arrows", value);
3139 } else if (!strcmp(var, "annotate.show_linenr")) {
3140 opt->show_linenr = perf_config_bool("show_linenr", value);
3141 } else if (!strcmp(var, "annotate.show_nr_jumps")) {
3142 opt->show_nr_jumps = perf_config_bool("show_nr_jumps", value);
3143 } else if (!strcmp(var, "annotate.show_nr_samples")) {
3144 symbol_conf.show_nr_samples = perf_config_bool("show_nr_samples",
3145 value);
3146 } else if (!strcmp(var, "annotate.show_total_period")) {
3147 symbol_conf.show_total_period = perf_config_bool("show_total_period",
3148 value);
3149 } else if (!strcmp(var, "annotate.use_offset")) {
3150 opt->use_offset = perf_config_bool("use_offset", value);
3151 } else if (!strcmp(var, "annotate.disassembler_style")) {
3152 opt->disassembler_style = value;
3153 } else {
3154 pr_debug("%s variable unknown, ignoring...", var);
3155 }
3156
3157 return 0;
3158 }
3159
annotation_config__init(struct annotation_options *opt)3160 void annotation_config__init(struct annotation_options *opt)
3161 {
3162 perf_config(annotation__config, opt);
3163 }
3164
parse_percent_type(char *str1, char *str2)3165 static unsigned int parse_percent_type(char *str1, char *str2)
3166 {
3167 unsigned int type = (unsigned int) -1;
3168
3169 if (!strcmp("period", str1)) {
3170 if (!strcmp("local", str2))
3171 type = PERCENT_PERIOD_LOCAL;
3172 else if (!strcmp("global", str2))
3173 type = PERCENT_PERIOD_GLOBAL;
3174 }
3175
3176 if (!strcmp("hits", str1)) {
3177 if (!strcmp("local", str2))
3178 type = PERCENT_HITS_LOCAL;
3179 else if (!strcmp("global", str2))
3180 type = PERCENT_HITS_GLOBAL;
3181 }
3182
3183 return type;
3184 }
3185
annotate_parse_percent_type(const struct option *opt, const char *_str, int unset __maybe_unused)3186 int annotate_parse_percent_type(const struct option *opt, const char *_str,
3187 int unset __maybe_unused)
3188 {
3189 struct annotation_options *opts = opt->value;
3190 unsigned int type;
3191 char *str1, *str2;
3192 int err = -1;
3193
3194 str1 = strdup(_str);
3195 if (!str1)
3196 return -ENOMEM;
3197
3198 str2 = strchr(str1, '-');
3199 if (!str2)
3200 goto out;
3201
3202 *str2++ = 0;
3203
3204 type = parse_percent_type(str1, str2);
3205 if (type == (unsigned int) -1)
3206 type = parse_percent_type(str2, str1);
3207 if (type != (unsigned int) -1) {
3208 opts->percent_type = type;
3209 err = 0;
3210 }
3211
3212 out:
3213 free(str1);
3214 return err;
3215 }
3216
annotate_check_args(struct annotation_options *args)3217 int annotate_check_args(struct annotation_options *args)
3218 {
3219 if (args->prefix_strip && !args->prefix) {
3220 pr_err("--prefix-strip requires --prefix\n");
3221 return -1;
3222 }
3223 return 0;
3224 }
3225