2 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
4 * Parts came from builtin-annotate.c, see those files for further
7 * Released under the GPL v2. (and only v2, not any later version)
25 #include "block-range.h"
27 #include "arch/common.h"
30 #include <linux/bitops.h>
31 #include <linux/kernel.h>
33 /* FIXME: For the HE_COLORSET */
34 #include "ui/browser.h"
37 * FIXME: Using the same values as slang.h,
38 * but that header may not be available everywhere
40 #define LARROW_CHAR ((unsigned char)',')
41 #define RARROW_CHAR ((unsigned char)'+')
42 #define DARROW_CHAR ((unsigned char)'.')
43 #define UARROW_CHAR ((unsigned char)'-')
45 #include "sane_ctype.h"
47 struct annotation_options annotation__default_options = {
51 .offset_level = ANNOTATION__OFFSET_JUMP_TARGETS,
52 .percent_type = PERCENT_PERIOD_LOCAL,
55 static regex_t file_lineno;
57 static struct ins_ops *ins__find(struct arch *arch, const char *name);
58 static void ins__sort(struct arch *arch);
59 static int disasm_line__parse(char *line, const char **namep, char **rawp);
63 struct ins *instructions;
64 size_t nr_instructions;
65 size_t nr_instructions_allocated;
66 struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name);
67 bool sorted_instructions;
72 int (*init)(struct arch *arch, char *cpuid);
73 bool (*ins_is_fused)(struct arch *arch, const char *ins1,
77 char skip_functions_char;
81 static struct ins_ops call_ops;
82 static struct ins_ops dec_ops;
83 static struct ins_ops jump_ops;
84 static struct ins_ops mov_ops;
85 static struct ins_ops nop_ops;
86 static struct ins_ops lock_ops;
87 static struct ins_ops ret_ops;
89 static int arch__grow_instructions(struct arch *arch)
91 struct ins *new_instructions;
92 size_t new_nr_allocated;
94 if (arch->nr_instructions_allocated == 0 && arch->instructions)
95 goto grow_from_non_allocated_table;
97 new_nr_allocated = arch->nr_instructions_allocated + 128;
98 new_instructions = realloc(arch->instructions, new_nr_allocated * sizeof(struct ins));
99 if (new_instructions == NULL)
102 out_update_instructions:
103 arch->instructions = new_instructions;
104 arch->nr_instructions_allocated = new_nr_allocated;
107 grow_from_non_allocated_table:
108 new_nr_allocated = arch->nr_instructions + 128;
109 new_instructions = calloc(new_nr_allocated, sizeof(struct ins));
110 if (new_instructions == NULL)
113 memcpy(new_instructions, arch->instructions, arch->nr_instructions);
114 goto out_update_instructions;
117 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops)
121 if (arch->nr_instructions == arch->nr_instructions_allocated &&
122 arch__grow_instructions(arch))
125 ins = &arch->instructions[arch->nr_instructions];
126 ins->name = strdup(name);
131 arch->nr_instructions++;
137 #include "arch/arm/annotate/instructions.c"
138 #include "arch/arm64/annotate/instructions.c"
139 #include "arch/x86/annotate/instructions.c"
140 #include "arch/powerpc/annotate/instructions.c"
141 #include "arch/s390/annotate/instructions.c"
143 static struct arch architectures[] = {
146 .init = arm__annotate_init,
150 .init = arm64__annotate_init,
154 .init = x86__annotate_init,
155 .instructions = x86__instructions,
156 .nr_instructions = ARRAY_SIZE(x86__instructions),
157 .ins_is_fused = x86__ins_is_fused,
164 .init = powerpc__annotate_init,
168 .init = s390__annotate_init,
175 static void ins__delete(struct ins_operands *ops)
179 zfree(&ops->source.raw);
180 zfree(&ops->source.name);
181 zfree(&ops->target.raw);
182 zfree(&ops->target.name);
185 static int ins__raw_scnprintf(struct ins *ins, char *bf, size_t size,
186 struct ins_operands *ops)
188 return scnprintf(bf, size, "%-6s %s", ins->name, ops->raw);
191 int ins__scnprintf(struct ins *ins, char *bf, size_t size,
192 struct ins_operands *ops)
194 if (ins->ops->scnprintf)
195 return ins->ops->scnprintf(ins, bf, size, ops);
197 return ins__raw_scnprintf(ins, bf, size, ops);
200 bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2)
202 if (!arch || !arch->ins_is_fused)
205 return arch->ins_is_fused(arch, ins1, ins2);
208 static int call__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms)
210 char *endptr, *tok, *name;
211 struct map *map = ms->map;
212 struct addr_map_symbol target = {
216 ops->target.addr = strtoull(ops->raw, &endptr, 16);
218 name = strchr(endptr, '<');
224 if (arch->objdump.skip_functions_char &&
225 strchr(name, arch->objdump.skip_functions_char))
228 tok = strchr(name, '>');
233 ops->target.name = strdup(name);
236 if (ops->target.name == NULL)
239 target.addr = map__objdump_2mem(map, ops->target.addr);
241 if (map_groups__find_ams(&target) == 0 &&
242 map__rip_2objdump(target.map, map->map_ip(target.map, target.addr)) == ops->target.addr)
243 ops->target.sym = target.sym;
248 tok = strchr(endptr, '*');
252 /* Indirect call can use a non-rip register and offset: callq *0x8(%rbx).
253 * Do not parse such instruction. */
254 if (strstr(endptr, "(%r") == NULL)
255 ops->target.addr = strtoull(endptr, NULL, 16);
260 static int call__scnprintf(struct ins *ins, char *bf, size_t size,
261 struct ins_operands *ops)
264 return scnprintf(bf, size, "%-6s %s", ins->name, ops->target.sym->name);
266 if (ops->target.addr == 0)
267 return ins__raw_scnprintf(ins, bf, size, ops);
269 if (ops->target.name)
270 return scnprintf(bf, size, "%-6s %s", ins->name, ops->target.name);
272 return scnprintf(bf, size, "%-6s *%" PRIx64, ins->name, ops->target.addr);
275 static struct ins_ops call_ops = {
276 .parse = call__parse,
277 .scnprintf = call__scnprintf,
280 bool ins__is_call(const struct ins *ins)
282 return ins->ops == &call_ops || ins->ops == &s390_call_ops;
286 * Prevents from matching commas in the comment section, e.g.:
287 * ffff200008446e70: b.cs ffff2000084470f4 <generic_exec_single+0x314> // b.hs, b.nlast
289 static inline const char *validate_comma(const char *c, struct ins_operands *ops)
291 if (ops->raw_comment && c > ops->raw_comment)
297 static int jump__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms)
299 struct map *map = ms->map;
300 struct symbol *sym = ms->sym;
301 struct addr_map_symbol target = {
304 const char *c = strchr(ops->raw, ',');
307 ops->raw_comment = strchr(ops->raw, arch->objdump.comment_char);
308 c = validate_comma(c, ops);
311 * Examples of lines to parse for the _cpp_lex_token@@Base
314 * 1159e6c: jne 115aa32 <_cpp_lex_token@@Base+0xf92>
315 * 1159e8b: jne c469be <cpp_named_operator2name@@Base+0xa72>
317 * The first is a jump to an offset inside the same function,
318 * the second is to another function, i.e. that 0xa72 is an
319 * offset in the cpp_named_operator2name@@base function.
322 * skip over possible up to 2 operands to get to address, e.g.:
323 * tbnz w0, #26, ffff0000083cd190 <security_file_permission+0xd0>
326 ops->target.addr = strtoull(c, NULL, 16);
327 if (!ops->target.addr) {
329 c = validate_comma(c, ops);
331 ops->target.addr = strtoull(c, NULL, 16);
334 ops->target.addr = strtoull(ops->raw, NULL, 16);
337 target.addr = map__objdump_2mem(map, ops->target.addr);
338 start = map->unmap_ip(map, sym->start),
339 end = map->unmap_ip(map, sym->end);
341 ops->target.outside = target.addr < start || target.addr > end;
344 * FIXME: things like this in _cpp_lex_token (gcc's cc1 program):
346 cpp_named_operator2name@@Base+0xa72
348 * Point to a place that is after the cpp_named_operator2name
349 * boundaries, i.e. in the ELF symbol table for cc1
350 * cpp_named_operator2name is marked as being 32-bytes long, but it in
351 * fact is much larger than that, so we seem to need a symbols__find()
352 * routine that looks for >= current->start and < next_symbol->start,
353 * possibly just for C++ objects?
355 * For now lets just make some progress by marking jumps to outside the
356 * current function as call like.
358 * Actual navigation will come next, with further understanding of how
359 * the symbol searching and disassembly should be done.
361 if (map_groups__find_ams(&target) == 0 &&
362 map__rip_2objdump(target.map, map->map_ip(target.map, target.addr)) == ops->target.addr)
363 ops->target.sym = target.sym;
365 if (!ops->target.outside) {
366 ops->target.offset = target.addr - start;
367 ops->target.offset_avail = true;
369 ops->target.offset_avail = false;
375 static int jump__scnprintf(struct ins *ins, char *bf, size_t size,
376 struct ins_operands *ops)
380 if (!ops->target.addr || ops->target.offset < 0)
381 return ins__raw_scnprintf(ins, bf, size, ops);
383 if (ops->target.outside && ops->target.sym != NULL)
384 return scnprintf(bf, size, "%-6s %s", ins->name, ops->target.sym->name);
386 c = strchr(ops->raw, ',');
387 c = validate_comma(c, ops);
390 const char *c2 = strchr(c + 1, ',');
392 c2 = validate_comma(c2, ops);
393 /* check for 3-op insn */
398 /* mirror arch objdump's space-after-comma style */
403 return scnprintf(bf, size, "%-6s %.*s%" PRIx64,
404 ins->name, c ? c - ops->raw : 0, ops->raw,
408 static struct ins_ops jump_ops = {
409 .parse = jump__parse,
410 .scnprintf = jump__scnprintf,
413 bool ins__is_jump(const struct ins *ins)
415 return ins->ops == &jump_ops;
418 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep)
420 char *endptr, *name, *t;
422 if (strstr(raw, "(%rip)") == NULL)
425 *addrp = strtoull(comment, &endptr, 16);
426 if (endptr == comment)
428 name = strchr(endptr, '<');
434 t = strchr(name, '>');
439 *namep = strdup(name);
445 static int lock__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms)
447 ops->locked.ops = zalloc(sizeof(*ops->locked.ops));
448 if (ops->locked.ops == NULL)
451 if (disasm_line__parse(ops->raw, &ops->locked.ins.name, &ops->locked.ops->raw) < 0)
454 ops->locked.ins.ops = ins__find(arch, ops->locked.ins.name);
456 if (ops->locked.ins.ops == NULL)
459 if (ops->locked.ins.ops->parse &&
460 ops->locked.ins.ops->parse(arch, ops->locked.ops, ms) < 0)
466 zfree(&ops->locked.ops);
470 static int lock__scnprintf(struct ins *ins, char *bf, size_t size,
471 struct ins_operands *ops)
475 if (ops->locked.ins.ops == NULL)
476 return ins__raw_scnprintf(ins, bf, size, ops);
478 printed = scnprintf(bf, size, "%-6s ", ins->name);
479 return printed + ins__scnprintf(&ops->locked.ins, bf + printed,
480 size - printed, ops->locked.ops);
483 static void lock__delete(struct ins_operands *ops)
485 struct ins *ins = &ops->locked.ins;
487 if (ins->ops && ins->ops->free)
488 ins->ops->free(ops->locked.ops);
490 ins__delete(ops->locked.ops);
492 zfree(&ops->locked.ops);
493 zfree(&ops->target.raw);
494 zfree(&ops->target.name);
497 static struct ins_ops lock_ops = {
498 .free = lock__delete,
499 .parse = lock__parse,
500 .scnprintf = lock__scnprintf,
503 static int mov__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms __maybe_unused)
505 char *s = strchr(ops->raw, ','), *target, *comment, prev;
511 ops->source.raw = strdup(ops->raw);
514 if (ops->source.raw == NULL)
518 comment = strchr(s, arch->objdump.comment_char);
523 s = strchr(s, '\0') - 1;
525 while (s > target && isspace(s[0]))
531 ops->target.raw = strdup(target);
534 if (ops->target.raw == NULL)
535 goto out_free_source;
540 comment = ltrim(comment);
541 comment__symbol(ops->source.raw, comment + 1, &ops->source.addr, &ops->source.name);
542 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);
547 zfree(&ops->source.raw);
551 static int mov__scnprintf(struct ins *ins, char *bf, size_t size,
552 struct ins_operands *ops)
554 return scnprintf(bf, size, "%-6s %s,%s", ins->name,
555 ops->source.name ?: ops->source.raw,
556 ops->target.name ?: ops->target.raw);
559 static struct ins_ops mov_ops = {
561 .scnprintf = mov__scnprintf,
564 static int dec__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map_symbol *ms __maybe_unused)
566 char *target, *comment, *s, prev;
568 target = s = ops->raw;
570 while (s[0] != '\0' && !isspace(s[0]))
575 ops->target.raw = strdup(target);
578 if (ops->target.raw == NULL)
581 comment = strchr(s, arch->objdump.comment_char);
585 comment = ltrim(comment);
586 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);
591 static int dec__scnprintf(struct ins *ins, char *bf, size_t size,
592 struct ins_operands *ops)
594 return scnprintf(bf, size, "%-6s %s", ins->name,
595 ops->target.name ?: ops->target.raw);
598 static struct ins_ops dec_ops = {
600 .scnprintf = dec__scnprintf,
603 static int nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size,
604 struct ins_operands *ops __maybe_unused)
606 return scnprintf(bf, size, "%-6s", "nop");
609 static struct ins_ops nop_ops = {
610 .scnprintf = nop__scnprintf,
613 static struct ins_ops ret_ops = {
614 .scnprintf = ins__raw_scnprintf,
617 bool ins__is_ret(const struct ins *ins)
619 return ins->ops == &ret_ops;
622 bool ins__is_lock(const struct ins *ins)
624 return ins->ops == &lock_ops;
627 static int ins__key_cmp(const void *name, const void *insp)
629 const struct ins *ins = insp;
631 return strcmp(name, ins->name);
634 static int ins__cmp(const void *a, const void *b)
636 const struct ins *ia = a;
637 const struct ins *ib = b;
639 return strcmp(ia->name, ib->name);
642 static void ins__sort(struct arch *arch)
644 const int nmemb = arch->nr_instructions;
646 qsort(arch->instructions, nmemb, sizeof(struct ins), ins__cmp);
649 static struct ins_ops *__ins__find(struct arch *arch, const char *name)
652 const int nmemb = arch->nr_instructions;
654 if (!arch->sorted_instructions) {
656 arch->sorted_instructions = true;
659 ins = bsearch(name, arch->instructions, nmemb, sizeof(struct ins), ins__key_cmp);
660 return ins ? ins->ops : NULL;
663 static struct ins_ops *ins__find(struct arch *arch, const char *name)
665 struct ins_ops *ops = __ins__find(arch, name);
667 if (!ops && arch->associate_instruction_ops)
668 ops = arch->associate_instruction_ops(arch, name);
673 static int arch__key_cmp(const void *name, const void *archp)
675 const struct arch *arch = archp;
677 return strcmp(name, arch->name);
680 static int arch__cmp(const void *a, const void *b)
682 const struct arch *aa = a;
683 const struct arch *ab = b;
685 return strcmp(aa->name, ab->name);
688 static void arch__sort(void)
690 const int nmemb = ARRAY_SIZE(architectures);
692 qsort(architectures, nmemb, sizeof(struct arch), arch__cmp);
695 static struct arch *arch__find(const char *name)
697 const int nmemb = ARRAY_SIZE(architectures);
705 return bsearch(name, architectures, nmemb, sizeof(struct arch), arch__key_cmp);
708 static struct annotated_source *annotated_source__new(void)
710 struct annotated_source *src = zalloc(sizeof(*src));
713 INIT_LIST_HEAD(&src->source);
718 static __maybe_unused void annotated_source__delete(struct annotated_source *src)
722 zfree(&src->histograms);
723 zfree(&src->cycles_hist);
727 static int annotated_source__alloc_histograms(struct annotated_source *src,
728 size_t size, int nr_hists)
730 size_t sizeof_sym_hist;
733 * Add buffer of one element for zero length symbol.
734 * When sample is taken from first instruction of
735 * zero length symbol, perf still resolves it and
736 * shows symbol name in perf report and allows to
742 /* Check for overflow when calculating sizeof_sym_hist */
743 if (size > (SIZE_MAX - sizeof(struct sym_hist)) / sizeof(struct sym_hist_entry))
746 sizeof_sym_hist = (sizeof(struct sym_hist) + size * sizeof(struct sym_hist_entry));
748 /* Check for overflow in zalloc argument */
749 if (sizeof_sym_hist > SIZE_MAX / nr_hists)
752 src->sizeof_sym_hist = sizeof_sym_hist;
753 src->nr_histograms = nr_hists;
754 src->histograms = calloc(nr_hists, sizeof_sym_hist) ;
755 return src->histograms ? 0 : -1;
758 /* The cycles histogram is lazily allocated. */
759 static int symbol__alloc_hist_cycles(struct symbol *sym)
761 struct annotation *notes = symbol__annotation(sym);
762 const size_t size = symbol__size(sym);
764 notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist));
765 if (notes->src->cycles_hist == NULL)
770 void symbol__annotate_zero_histograms(struct symbol *sym)
772 struct annotation *notes = symbol__annotation(sym);
774 pthread_mutex_lock(¬es->lock);
775 if (notes->src != NULL) {
776 memset(notes->src->histograms, 0,
777 notes->src->nr_histograms * notes->src->sizeof_sym_hist);
778 if (notes->src->cycles_hist)
779 memset(notes->src->cycles_hist, 0,
780 symbol__size(sym) * sizeof(struct cyc_hist));
782 pthread_mutex_unlock(¬es->lock);
785 static int __symbol__account_cycles(struct cyc_hist *ch,
787 unsigned offset, unsigned cycles,
791 * For now we can only account one basic block per
792 * final jump. But multiple could be overlapping.
793 * Always account the longest one. So when
794 * a shorter one has been already seen throw it away.
796 * We separately always account the full cycles.
798 ch[offset].num_aggr++;
799 ch[offset].cycles_aggr += cycles;
801 if (cycles > ch[offset].cycles_max)
802 ch[offset].cycles_max = cycles;
804 if (ch[offset].cycles_min) {
805 if (cycles && cycles < ch[offset].cycles_min)
806 ch[offset].cycles_min = cycles;
808 ch[offset].cycles_min = cycles;
810 if (!have_start && ch[offset].have_start)
812 if (ch[offset].num) {
813 if (have_start && (!ch[offset].have_start ||
814 ch[offset].start > start)) {
815 ch[offset].have_start = 0;
816 ch[offset].cycles = 0;
818 if (ch[offset].reset < 0xffff)
820 } else if (have_start &&
821 ch[offset].start < start)
824 ch[offset].have_start = have_start;
825 ch[offset].start = start;
826 ch[offset].cycles += cycles;
831 static int __symbol__inc_addr_samples(struct symbol *sym, struct map *map,
832 struct annotated_source *src, int evidx, u64 addr,
833 struct perf_sample *sample)
838 pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, map->unmap_ip(map, addr));
840 if ((addr < sym->start || addr >= sym->end) &&
841 (addr != sym->end || sym->start != sym->end)) {
842 pr_debug("%s(%d): ERANGE! sym->name=%s, start=%#" PRIx64 ", addr=%#" PRIx64 ", end=%#" PRIx64 "\n",
843 __func__, __LINE__, sym->name, sym->start, addr, sym->end);
847 offset = addr - sym->start;
848 h = annotated_source__histogram(src, evidx);
850 pr_debug("%s(%d): ENOMEM! sym->name=%s, start=%#" PRIx64 ", addr=%#" PRIx64 ", end=%#" PRIx64 ", func: %d\n",
851 __func__, __LINE__, sym->name, sym->start, addr, sym->end, sym->type == STT_FUNC);
855 h->addr[offset].nr_samples++;
856 h->period += sample->period;
857 h->addr[offset].period += sample->period;
859 pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64
860 ", evidx=%d] => nr_samples: %" PRIu64 ", period: %" PRIu64 "\n",
861 sym->start, sym->name, addr, addr - sym->start, evidx,
862 h->addr[offset].nr_samples, h->addr[offset].period);
866 static struct cyc_hist *symbol__cycles_hist(struct symbol *sym)
868 struct annotation *notes = symbol__annotation(sym);
870 if (notes->src == NULL) {
871 notes->src = annotated_source__new();
872 if (notes->src == NULL)
874 goto alloc_cycles_hist;
877 if (!notes->src->cycles_hist) {
879 symbol__alloc_hist_cycles(sym);
882 return notes->src->cycles_hist;
885 struct annotated_source *symbol__hists(struct symbol *sym, int nr_hists)
887 struct annotation *notes = symbol__annotation(sym);
889 if (notes->src == NULL) {
890 notes->src = annotated_source__new();
891 if (notes->src == NULL)
893 goto alloc_histograms;
896 if (notes->src->histograms == NULL) {
898 annotated_source__alloc_histograms(notes->src, symbol__size(sym),
905 static int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
906 struct perf_evsel *evsel, u64 addr,
907 struct perf_sample *sample)
909 struct annotated_source *src;
913 src = symbol__hists(sym, evsel->evlist->nr_entries);
914 return (src) ? __symbol__inc_addr_samples(sym, map, src, evsel->idx,
918 static int symbol__account_cycles(u64 addr, u64 start,
919 struct symbol *sym, unsigned cycles)
921 struct cyc_hist *cycles_hist;
926 cycles_hist = symbol__cycles_hist(sym);
927 if (cycles_hist == NULL)
929 if (addr < sym->start || addr >= sym->end)
933 if (start < sym->start || start >= sym->end)
938 offset = addr - sym->start;
939 return __symbol__account_cycles(cycles_hist,
940 start ? start - sym->start : 0,
945 int addr_map_symbol__account_cycles(struct addr_map_symbol *ams,
946 struct addr_map_symbol *start,
956 * Only set start when IPC can be computed. We can only
957 * compute it when the basic block is completely in a single
959 * Special case the case when the jump is elsewhere, but
960 * it starts on the function start.
963 (start->sym == ams->sym ||
965 start->addr == ams->sym->start + ams->map->start)))
966 saddr = start->al_addr;
968 pr_debug2("BB with bad start: addr %"PRIx64" start %"PRIx64" sym %"PRIx64" saddr %"PRIx64"\n",
970 start ? start->addr : 0,
971 ams->sym ? ams->sym->start + ams->map->start : 0,
973 err = symbol__account_cycles(ams->al_addr, saddr, ams->sym, cycles);
975 pr_debug2("account_cycles failed %d\n", err);
979 static unsigned annotation__count_insn(struct annotation *notes, u64 start, u64 end)
984 for (offset = start; offset <= end; offset++) {
985 if (notes->offsets[offset])
991 static void annotation__count_and_fill(struct annotation *notes, u64 start, u64 end, struct cyc_hist *ch)
996 n_insn = annotation__count_insn(notes, start, end);
997 if (n_insn && ch->num && ch->cycles) {
998 float ipc = n_insn / ((double)ch->cycles / (double)ch->num);
1000 /* Hide data when there are too many overlaps. */
1001 if (ch->reset >= 0x7fff || ch->reset >= ch->num / 2)
1004 for (offset = start; offset <= end; offset++) {
1005 struct annotation_line *al = notes->offsets[offset];
1013 void annotation__compute_ipc(struct annotation *notes, size_t size)
1017 if (!notes->src || !notes->src->cycles_hist)
1020 pthread_mutex_lock(¬es->lock);
1021 for (offset = 0; offset < size; ++offset) {
1022 struct cyc_hist *ch;
1024 ch = ¬es->src->cycles_hist[offset];
1025 if (ch && ch->cycles) {
1026 struct annotation_line *al;
1029 annotation__count_and_fill(notes, ch->start, offset, ch);
1030 al = notes->offsets[offset];
1031 if (al && ch->num_aggr) {
1032 al->cycles = ch->cycles_aggr / ch->num_aggr;
1033 al->cycles_max = ch->cycles_max;
1034 al->cycles_min = ch->cycles_min;
1036 notes->have_cycles = true;
1039 pthread_mutex_unlock(¬es->lock);
1042 int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample,
1043 struct perf_evsel *evsel)
1045 return symbol__inc_addr_samples(ams->sym, ams->map, evsel, ams->al_addr, sample);
1048 int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample,
1049 struct perf_evsel *evsel, u64 ip)
1051 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evsel, ip, sample);
1054 static void disasm_line__init_ins(struct disasm_line *dl, struct arch *arch, struct map_symbol *ms)
1056 dl->ins.ops = ins__find(arch, dl->ins.name);
1061 if (dl->ins.ops->parse && dl->ins.ops->parse(arch, &dl->ops, ms) < 0)
1065 static int disasm_line__parse(char *line, const char **namep, char **rawp)
1067 char tmp, *name = ltrim(line);
1069 if (name[0] == '\0')
1074 while ((*rawp)[0] != '\0' && !isspace((*rawp)[0]))
1079 *namep = strdup(name);
1085 *rawp = ltrim(*rawp);
1093 struct annotate_args {
1096 struct map_symbol ms;
1097 struct perf_evsel *evsel;
1098 struct annotation_options *options;
1104 static void annotation_line__delete(struct annotation_line *al)
1106 void *ptr = (void *) al - al->privsize;
1108 free_srcline(al->path);
1114 * Allocating the annotation line data with following
1117 * --------------------------------------
1118 * private space | struct annotation_line
1119 * --------------------------------------
1121 * Size of the private space is stored in 'struct annotation_line'.
1124 static struct annotation_line *
1125 annotation_line__new(struct annotate_args *args, size_t privsize)
1127 struct annotation_line *al;
1128 struct perf_evsel *evsel = args->evsel;
1129 size_t size = privsize + sizeof(*al);
1132 if (perf_evsel__is_group_event(evsel))
1133 nr = evsel->nr_members;
1135 size += sizeof(al->data[0]) * nr;
1139 al = (void *) al + privsize;
1140 al->privsize = privsize;
1141 al->offset = args->offset;
1142 al->line = strdup(args->line);
1143 al->line_nr = args->line_nr;
1151 * Allocating the disasm annotation line data with
1152 * following structure:
1154 * ------------------------------------------------------------
1155 * privsize space | struct disasm_line | struct annotation_line
1156 * ------------------------------------------------------------
1158 * We have 'struct annotation_line' member as last member
1159 * of 'struct disasm_line' to have an easy access.
1162 static struct disasm_line *disasm_line__new(struct annotate_args *args)
1164 struct disasm_line *dl = NULL;
1165 struct annotation_line *al;
1166 size_t privsize = args->privsize + offsetof(struct disasm_line, al);
1168 al = annotation_line__new(args, privsize);
1170 dl = disasm_line(al);
1172 if (dl->al.line == NULL)
1175 if (args->offset != -1) {
1176 if (disasm_line__parse(dl->al.line, &dl->ins.name, &dl->ops.raw) < 0)
1179 disasm_line__init_ins(dl, args->arch, &args->ms);
1186 zfree(&dl->al.line);
1192 void disasm_line__free(struct disasm_line *dl)
1194 if (dl->ins.ops && dl->ins.ops->free)
1195 dl->ins.ops->free(&dl->ops);
1197 ins__delete(&dl->ops);
1198 free((void *)dl->ins.name);
1199 dl->ins.name = NULL;
1200 annotation_line__delete(&dl->al);
1203 int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw)
1205 if (raw || !dl->ins.ops)
1206 return scnprintf(bf, size, "%-6s %s", dl->ins.name, dl->ops.raw);
1208 return ins__scnprintf(&dl->ins, bf, size, &dl->ops);
1211 static void annotation_line__add(struct annotation_line *al, struct list_head *head)
1213 list_add_tail(&al->node, head);
1216 struct annotation_line *
1217 annotation_line__next(struct annotation_line *pos, struct list_head *head)
1219 list_for_each_entry_continue(pos, head, node)
1220 if (pos->offset >= 0)
1226 static const char *annotate__address_color(struct block_range *br)
1228 double cov = block_range__coverage(br);
1231 /* mark red for >75% coverage */
1233 return PERF_COLOR_RED;
1235 /* mark dull for <1% coverage */
1237 return PERF_COLOR_NORMAL;
1240 return PERF_COLOR_MAGENTA;
1243 static const char *annotate__asm_color(struct block_range *br)
1245 double cov = block_range__coverage(br);
1248 /* mark dull for <1% coverage */
1250 return PERF_COLOR_NORMAL;
1253 return PERF_COLOR_BLUE;
1256 static void annotate__branch_printf(struct block_range *br, u64 addr)
1258 bool emit_comment = true;
1264 if (br->is_target && br->start == addr) {
1265 struct block_range *branch = br;
1269 * Find matching branch to our target.
1271 while (!branch->is_branch)
1272 branch = block_range__next(branch);
1274 p = 100 *(double)br->entry / branch->coverage;
1278 emit_comment = false;
1283 * The percentage of coverage joined at this target in relation
1284 * to the next branch.
1286 printf(" +%.2f%%", p);
1290 if (br->is_branch && br->end == addr) {
1291 double p = 100*(double)br->taken / br->coverage;
1295 emit_comment = false;
1300 * The percentage of coverage leaving at this branch, and
1301 * its prediction ratio.
1303 printf(" -%.2f%% (p:%.2f%%)", p, 100*(double)br->pred / br->taken);
1308 static int disasm_line__print(struct disasm_line *dl, u64 start, int addr_fmt_width)
1310 s64 offset = dl->al.offset;
1311 const u64 addr = start + offset;
1312 struct block_range *br;
1314 br = block_range__find(addr);
1315 color_fprintf(stdout, annotate__address_color(br), " %*" PRIx64 ":", addr_fmt_width, addr);
1316 color_fprintf(stdout, annotate__asm_color(br), "%s", dl->al.line);
1317 annotate__branch_printf(br, addr);
1322 annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start,
1323 struct perf_evsel *evsel, u64 len, int min_pcnt, int printed,
1324 int max_lines, struct annotation_line *queue, int addr_fmt_width,
1327 struct disasm_line *dl = container_of(al, struct disasm_line, al);
1328 static const char *prev_line;
1329 static const char *prev_color;
1331 if (al->offset != -1) {
1332 double max_percent = 0.0;
1333 int i, nr_percent = 1;
1335 struct annotation *notes = symbol__annotation(sym);
1337 for (i = 0; i < al->data_nr; i++) {
1340 percent = annotation_data__percent(&al->data[i],
1343 if (percent > max_percent)
1344 max_percent = percent;
1347 if (al->data_nr > nr_percent)
1348 nr_percent = al->data_nr;
1350 if (max_percent < min_pcnt)
1353 if (max_lines && printed >= max_lines)
1356 if (queue != NULL) {
1357 list_for_each_entry_from(queue, ¬es->src->source, node) {
1360 annotation_line__print(queue, sym, start, evsel, len,
1361 0, 0, 1, NULL, addr_fmt_width,
1366 color = get_percent_color(max_percent);
1369 * Also color the filename and line if needed, with
1370 * the same color than the percentage. Don't print it
1371 * twice for close colored addr with the same filename:line
1374 if (!prev_line || strcmp(prev_line, al->path)
1375 || color != prev_color) {
1376 color_fprintf(stdout, color, " %s", al->path);
1377 prev_line = al->path;
1382 for (i = 0; i < nr_percent; i++) {
1383 struct annotation_data *data = &al->data[i];
1386 percent = annotation_data__percent(data, percent_type);
1387 color = get_percent_color(percent);
1389 if (symbol_conf.show_total_period)
1390 color_fprintf(stdout, color, " %11" PRIu64,
1392 else if (symbol_conf.show_nr_samples)
1393 color_fprintf(stdout, color, " %7" PRIu64,
1394 data->he.nr_samples);
1396 color_fprintf(stdout, color, " %7.2f", percent);
1401 disasm_line__print(dl, start, addr_fmt_width);
1403 } else if (max_lines && printed >= max_lines)
1406 int width = symbol_conf.show_total_period ? 12 : 8;
1411 if (perf_evsel__is_group_event(evsel))
1412 width *= evsel->nr_members;
1415 printf(" %*s:\n", width, " ");
1417 printf(" %*s: %*s %s\n", width, " ", addr_fmt_width, " ", al->line);
1424 * symbol__parse_objdump_line() parses objdump output (with -d --no-show-raw)
1425 * which looks like following
1427 * 0000000000415500 <_init>:
1428 * 415500: sub $0x8,%rsp
1429 * 415504: mov 0x2f5ad5(%rip),%rax # 70afe0 <_DYNAMIC+0x2f8>
1430 * 41550b: test %rax,%rax
1431 * 41550e: je 415515 <_init+0x15>
1432 * 415510: callq 416e70 <__gmon_start__@plt>
1433 * 415515: add $0x8,%rsp
1436 * it will be parsed and saved into struct disasm_line as
1437 * <offset> <name> <ops.raw>
1439 * The offset will be a relative offset from the start of the symbol and -1
1440 * means that it's not a disassembly line so should be treated differently.
1441 * The ops.raw part will be parsed further according to type of the instruction.
1443 static int symbol__parse_objdump_line(struct symbol *sym, FILE *file,
1444 struct annotate_args *args,
1447 struct map *map = args->ms.map;
1448 struct annotation *notes = symbol__annotation(sym);
1449 struct disasm_line *dl;
1450 char *line = NULL, *parsed_line, *tmp, *tmp2;
1452 s64 line_ip, offset = -1;
1453 regmatch_t match[2];
1455 if (getline(&line, &line_len, file) < 0)
1462 parsed_line = rtrim(line);
1464 /* /filename:linenr ? Save line number and ignore. */
1465 if (regexec(&file_lineno, parsed_line, 2, match, 0) == 0) {
1466 *line_nr = atoi(parsed_line + match[1].rm_so);
1470 tmp = ltrim(parsed_line);
1473 * Parse hexa addresses followed by ':'
1475 line_ip = strtoull(tmp, &tmp2, 16);
1476 if (*tmp2 != ':' || tmp == tmp2 || tmp2[1] == '\0')
1480 if (line_ip != -1) {
1481 u64 start = map__rip_2objdump(map, sym->start),
1482 end = map__rip_2objdump(map, sym->end);
1484 offset = line_ip - start;
1485 if ((u64)line_ip < start || (u64)line_ip >= end)
1488 parsed_line = tmp2 + 1;
1491 args->offset = offset;
1492 args->line = parsed_line;
1493 args->line_nr = *line_nr;
1496 dl = disasm_line__new(args);
1503 if (!disasm_line__has_local_offset(dl)) {
1504 dl->ops.target.offset = dl->ops.target.addr -
1505 map__rip_2objdump(map, sym->start);
1506 dl->ops.target.offset_avail = true;
1509 /* kcore has no symbols, so add the call target symbol */
1510 if (dl->ins.ops && ins__is_call(&dl->ins) && !dl->ops.target.sym) {
1511 struct addr_map_symbol target = {
1513 .addr = dl->ops.target.addr,
1516 if (!map_groups__find_ams(&target) &&
1517 target.sym->start == target.al_addr)
1518 dl->ops.target.sym = target.sym;
1521 annotation_line__add(&dl->al, ¬es->src->source);
1526 static __attribute__((constructor)) void symbol__init_regexpr(void)
1528 regcomp(&file_lineno, "^/[^:]+:([0-9]+)", REG_EXTENDED);
1531 static void delete_last_nop(struct symbol *sym)
1533 struct annotation *notes = symbol__annotation(sym);
1534 struct list_head *list = ¬es->src->source;
1535 struct disasm_line *dl;
1537 while (!list_empty(list)) {
1538 dl = list_entry(list->prev, struct disasm_line, al.node);
1541 if (dl->ins.ops != &nop_ops)
1544 if (!strstr(dl->al.line, " nop ") &&
1545 !strstr(dl->al.line, " nopl ") &&
1546 !strstr(dl->al.line, " nopw "))
1550 list_del(&dl->al.node);
1551 disasm_line__free(dl);
1555 int symbol__strerror_disassemble(struct symbol *sym __maybe_unused, struct map *map,
1556 int errnum, char *buf, size_t buflen)
1558 struct dso *dso = map->dso;
1560 BUG_ON(buflen == 0);
1563 str_error_r(errnum, buf, buflen);
1568 case SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX: {
1569 char bf[SBUILD_ID_SIZE + 15] = " with build id ";
1570 char *build_id_msg = NULL;
1572 if (dso->has_build_id) {
1573 build_id__sprintf(dso->build_id,
1574 sizeof(dso->build_id), bf + 15);
1577 scnprintf(buf, buflen,
1578 "No vmlinux file%s\nwas found in the path.\n\n"
1579 "Note that annotation using /proc/kcore requires CAP_SYS_RAWIO capability.\n\n"
1581 " perf buildid-cache -vu vmlinux\n\n"
1583 " --vmlinux vmlinux\n", build_id_msg ?: "");
1587 scnprintf(buf, buflen, "Internal error: Invalid %d error code\n", errnum);
1594 static int dso__disassemble_filename(struct dso *dso, char *filename, size_t filename_size)
1596 char linkname[PATH_MAX];
1597 char *build_id_filename;
1598 char *build_id_path = NULL;
1601 if (dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS &&
1602 !dso__is_kcore(dso))
1603 return SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX;
1605 build_id_filename = dso__build_id_filename(dso, NULL, 0, false);
1606 if (build_id_filename) {
1607 __symbol__join_symfs(filename, filename_size, build_id_filename);
1608 free(build_id_filename);
1610 if (dso->has_build_id)
1615 build_id_path = strdup(filename);
1620 * old style build-id cache has name of XX/XXXXXXX.. while
1621 * new style has XX/XXXXXXX../{elf,kallsyms,vdso}.
1622 * extract the build-id part of dirname in the new style only.
1624 pos = strrchr(build_id_path, '/');
1625 if (pos && strlen(pos) < SBUILD_ID_SIZE - 2)
1626 dirname(build_id_path);
1628 if (dso__is_kcore(dso) ||
1629 readlink(build_id_path, linkname, sizeof(linkname)) < 0 ||
1630 strstr(linkname, DSO__NAME_KALLSYMS) ||
1631 access(filename, R_OK)) {
1634 * If we don't have build-ids or the build-id file isn't in the
1635 * cache, or is just a kallsyms file, well, lets hope that this
1636 * DSO is the same as when 'perf record' ran.
1638 __symbol__join_symfs(filename, filename_size, dso->long_name);
1641 free(build_id_path);
1645 static int symbol__disassemble(struct symbol *sym, struct annotate_args *args)
1647 struct annotation_options *opts = args->options;
1648 struct map *map = args->ms.map;
1649 struct dso *dso = map->dso;
1652 char symfs_filename[PATH_MAX];
1653 struct kcore_extract kce;
1654 bool delete_extract = false;
1655 bool decomp = false;
1660 int err = dso__disassemble_filename(dso, symfs_filename, sizeof(symfs_filename));
1665 pr_debug("%s: filename=%s, sym=%s, start=%#" PRIx64 ", end=%#" PRIx64 "\n", __func__,
1666 symfs_filename, sym->name, map->unmap_ip(map, sym->start),
1667 map->unmap_ip(map, sym->end));
1669 pr_debug("annotating [%p] %30s : [%p] %30s\n",
1670 dso, dso->long_name, sym, sym->name);
1672 if (dso__is_kcore(dso)) {
1673 kce.kcore_filename = symfs_filename;
1674 kce.addr = map__rip_2objdump(map, sym->start);
1675 kce.offs = sym->start;
1676 kce.len = sym->end - sym->start;
1677 if (!kcore_extract__create(&kce)) {
1678 delete_extract = true;
1679 strlcpy(symfs_filename, kce.extract_filename,
1680 sizeof(symfs_filename));
1682 } else if (dso__needs_decompress(dso)) {
1683 char tmp[KMOD_DECOMP_LEN];
1685 if (dso__decompress_kmodule_path(dso, symfs_filename,
1686 tmp, sizeof(tmp)) < 0)
1690 strcpy(symfs_filename, tmp);
1693 err = asprintf(&command,
1694 "%s %s%s --start-address=0x%016" PRIx64
1695 " --stop-address=0x%016" PRIx64
1696 " -l -d %s %s -C \"%s\" 2>/dev/null|grep -v \"%s:\"|expand",
1697 opts->objdump_path ?: "objdump",
1698 opts->disassembler_style ? "-M " : "",
1699 opts->disassembler_style ?: "",
1700 map__rip_2objdump(map, sym->start),
1701 map__rip_2objdump(map, sym->end),
1702 opts->show_asm_raw ? "" : "--no-show-raw",
1703 opts->annotate_src ? "-S" : "",
1704 symfs_filename, symfs_filename);
1707 pr_err("Failure allocating memory for the command to run\n");
1708 goto out_remove_tmp;
1711 pr_debug("Executing: %s\n", command);
1714 if (pipe(stdout_fd) < 0) {
1715 pr_err("Failure creating the pipe to run %s\n", command);
1716 goto out_free_command;
1721 pr_err("Failure forking to run %s\n", command);
1722 goto out_close_stdout;
1726 close(stdout_fd[0]);
1727 dup2(stdout_fd[1], 1);
1728 close(stdout_fd[1]);
1729 execl("/bin/sh", "sh", "-c", command, NULL);
1734 close(stdout_fd[1]);
1736 file = fdopen(stdout_fd[0], "r");
1738 pr_err("Failure creating FILE stream for %s\n", command);
1740 * If we were using debug info should retry with
1743 goto out_free_command;
1747 while (!feof(file)) {
1749 * The source code line number (lineno) needs to be kept in
1750 * accross calls to symbol__parse_objdump_line(), so that it
1751 * can associate it with the instructions till the next one.
1752 * See disasm_line__new() and struct disasm_line::line_nr.
1754 if (symbol__parse_objdump_line(sym, file, args, &lineno) < 0)
1760 pr_err("No output from %s\n", command);
1763 * kallsyms does not have symbol sizes so there may a nop at the end.
1766 if (dso__is_kcore(dso))
1767 delete_last_nop(sym);
1774 close(stdout_fd[0]);
1777 unlink(symfs_filename);
1780 kcore_extract__delete(&kce);
1785 close(stdout_fd[1]);
1786 goto out_free_command;
1789 static void calc_percent(struct sym_hist *sym_hist,
1790 struct hists *hists,
1791 struct annotation_data *data,
1792 s64 offset, s64 end)
1794 unsigned int hits = 0;
1797 while (offset < end) {
1798 hits += sym_hist->addr[offset].nr_samples;
1799 period += sym_hist->addr[offset].period;
1803 if (sym_hist->nr_samples) {
1804 data->he.period = period;
1805 data->he.nr_samples = hits;
1806 data->percent[PERCENT_HITS_LOCAL] = 100.0 * hits / sym_hist->nr_samples;
1809 if (hists->stats.nr_non_filtered_samples)
1810 data->percent[PERCENT_HITS_GLOBAL] = 100.0 * hits / hists->stats.nr_non_filtered_samples;
1812 if (sym_hist->period)
1813 data->percent[PERCENT_PERIOD_LOCAL] = 100.0 * period / sym_hist->period;
1815 if (hists->stats.total_period)
1816 data->percent[PERCENT_PERIOD_GLOBAL] = 100.0 * period / hists->stats.total_period;
1819 static void annotation__calc_percent(struct annotation *notes,
1820 struct perf_evsel *leader, s64 len)
1822 struct annotation_line *al, *next;
1823 struct perf_evsel *evsel;
1825 list_for_each_entry(al, ¬es->src->source, node) {
1829 if (al->offset == -1)
1832 next = annotation_line__next(al, ¬es->src->source);
1833 end = next ? next->offset : len;
1835 for_each_group_evsel(evsel, leader) {
1836 struct hists *hists = evsel__hists(evsel);
1837 struct annotation_data *data;
1838 struct sym_hist *sym_hist;
1840 BUG_ON(i >= al->data_nr);
1842 sym_hist = annotation__histogram(notes, evsel->idx);
1843 data = &al->data[i++];
1845 calc_percent(sym_hist, hists, data, al->offset, end);
1850 void symbol__calc_percent(struct symbol *sym, struct perf_evsel *evsel)
1852 struct annotation *notes = symbol__annotation(sym);
1854 annotation__calc_percent(notes, evsel, symbol__size(sym));
1857 int symbol__annotate(struct symbol *sym, struct map *map,
1858 struct perf_evsel *evsel, size_t privsize,
1859 struct annotation_options *options,
1860 struct arch **parch)
1862 struct annotation *notes = symbol__annotation(sym);
1863 struct annotate_args args = {
1864 .privsize = privsize,
1868 struct perf_env *env = perf_evsel__env(evsel);
1869 const char *arch_name = perf_env__arch(env);
1876 args.arch = arch = arch__find(arch_name);
1884 err = arch->init(arch, env ? env->cpuid : NULL);
1886 pr_err("%s: failed to initialize %s arch priv area\n", __func__, arch->name);
1893 notes->start = map__rip_2objdump(map, sym->start);
1895 return symbol__disassemble(sym, &args);
1898 static void insert_source_line(struct rb_root *root, struct annotation_line *al,
1899 struct annotation_options *opts)
1901 struct annotation_line *iter;
1902 struct rb_node **p = &root->rb_node;
1903 struct rb_node *parent = NULL;
1906 while (*p != NULL) {
1908 iter = rb_entry(parent, struct annotation_line, rb_node);
1910 ret = strcmp(iter->path, al->path);
1912 for (i = 0; i < al->data_nr; i++) {
1913 iter->data[i].percent_sum += annotation_data__percent(&al->data[i],
1914 opts->percent_type);
1922 p = &(*p)->rb_right;
1925 for (i = 0; i < al->data_nr; i++) {
1926 al->data[i].percent_sum = annotation_data__percent(&al->data[i],
1927 opts->percent_type);
1930 rb_link_node(&al->rb_node, parent, p);
1931 rb_insert_color(&al->rb_node, root);
1934 static int cmp_source_line(struct annotation_line *a, struct annotation_line *b)
1938 for (i = 0; i < a->data_nr; i++) {
1939 if (a->data[i].percent_sum == b->data[i].percent_sum)
1941 return a->data[i].percent_sum > b->data[i].percent_sum;
1947 static void __resort_source_line(struct rb_root *root, struct annotation_line *al)
1949 struct annotation_line *iter;
1950 struct rb_node **p = &root->rb_node;
1951 struct rb_node *parent = NULL;
1953 while (*p != NULL) {
1955 iter = rb_entry(parent, struct annotation_line, rb_node);
1957 if (cmp_source_line(al, iter))
1960 p = &(*p)->rb_right;
1963 rb_link_node(&al->rb_node, parent, p);
1964 rb_insert_color(&al->rb_node, root);
1967 static void resort_source_line(struct rb_root *dest_root, struct rb_root *src_root)
1969 struct annotation_line *al;
1970 struct rb_node *node;
1972 node = rb_first(src_root);
1974 struct rb_node *next;
1976 al = rb_entry(node, struct annotation_line, rb_node);
1977 next = rb_next(node);
1978 rb_erase(node, src_root);
1980 __resort_source_line(dest_root, al);
1985 static void print_summary(struct rb_root *root, const char *filename)
1987 struct annotation_line *al;
1988 struct rb_node *node;
1990 printf("\nSorted summary for file %s\n", filename);
1991 printf("----------------------------------------------\n\n");
1993 if (RB_EMPTY_ROOT(root)) {
1994 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN);
1998 node = rb_first(root);
2000 double percent, percent_max = 0.0;
2005 al = rb_entry(node, struct annotation_line, rb_node);
2006 for (i = 0; i < al->data_nr; i++) {
2007 percent = al->data[i].percent_sum;
2008 color = get_percent_color(percent);
2009 color_fprintf(stdout, color, " %7.2f", percent);
2011 if (percent > percent_max)
2012 percent_max = percent;
2016 color = get_percent_color(percent_max);
2017 color_fprintf(stdout, color, " %s\n", path);
2019 node = rb_next(node);
2023 static void symbol__annotate_hits(struct symbol *sym, struct perf_evsel *evsel)
2025 struct annotation *notes = symbol__annotation(sym);
2026 struct sym_hist *h = annotation__histogram(notes, evsel->idx);
2027 u64 len = symbol__size(sym), offset;
2029 for (offset = 0; offset < len; ++offset)
2030 if (h->addr[offset].nr_samples != 0)
2031 printf("%*" PRIx64 ": %" PRIu64 "\n", BITS_PER_LONG / 2,
2032 sym->start + offset, h->addr[offset].nr_samples);
2033 printf("%*s: %" PRIu64 "\n", BITS_PER_LONG / 2, "h->nr_samples", h->nr_samples);
2036 static int annotated_source__addr_fmt_width(struct list_head *lines, u64 start)
2039 struct annotation_line *line;
2041 list_for_each_entry_reverse(line, lines, node) {
2042 if (line->offset != -1)
2043 return scnprintf(bf, sizeof(bf), "%" PRIx64, start + line->offset);
2049 int symbol__annotate_printf(struct symbol *sym, struct map *map,
2050 struct perf_evsel *evsel,
2051 struct annotation_options *opts)
2053 struct dso *dso = map->dso;
2055 const char *d_filename;
2056 const char *evsel_name = perf_evsel__name(evsel);
2057 struct annotation *notes = symbol__annotation(sym);
2058 struct sym_hist *h = annotation__histogram(notes, evsel->idx);
2059 struct annotation_line *pos, *queue = NULL;
2060 u64 start = map__rip_2objdump(map, sym->start);
2061 int printed = 2, queue_len = 0, addr_fmt_width;
2063 bool context = opts->context;
2065 int width = symbol_conf.show_total_period ? 12 : 8;
2066 int graph_dotted_len;
2069 filename = strdup(dso->long_name);
2073 if (opts->full_path)
2074 d_filename = filename;
2076 d_filename = basename(filename);
2078 len = symbol__size(sym);
2080 if (perf_evsel__is_group_event(evsel)) {
2081 width *= evsel->nr_members;
2082 perf_evsel__group_desc(evsel, buf, sizeof(buf));
2086 graph_dotted_len = printf(" %-*.*s| Source code & Disassembly of %s for %s (%" PRIu64 " samples, "
2088 width, width, symbol_conf.show_total_period ? "Period" :
2089 symbol_conf.show_nr_samples ? "Samples" : "Percent",
2090 d_filename, evsel_name, h->nr_samples,
2091 percent_type_str(opts->percent_type));
2093 printf("%-*.*s----\n",
2094 graph_dotted_len, graph_dotted_len, graph_dotted_line);
2097 symbol__annotate_hits(sym, evsel);
2099 addr_fmt_width = annotated_source__addr_fmt_width(¬es->src->source, start);
2101 list_for_each_entry(pos, ¬es->src->source, node) {
2104 if (context && queue == NULL) {
2109 err = annotation_line__print(pos, sym, start, evsel, len,
2110 opts->min_pcnt, printed, opts->max_lines,
2111 queue, addr_fmt_width, opts->percent_type);
2117 printed += queue_len;
2123 /* filtered by max_lines */
2129 * Filtered by min_pcnt or non IP lines when
2134 if (queue_len == context)
2135 queue = list_entry(queue->node.next, typeof(*queue), node);
2147 static void FILE__set_percent_color(void *fp __maybe_unused,
2148 double percent __maybe_unused,
2149 bool current __maybe_unused)
2153 static int FILE__set_jumps_percent_color(void *fp __maybe_unused,
2154 int nr __maybe_unused, bool current __maybe_unused)
2159 static int FILE__set_color(void *fp __maybe_unused, int color __maybe_unused)
2164 static void FILE__printf(void *fp, const char *fmt, ...)
2168 va_start(args, fmt);
2169 vfprintf(fp, fmt, args);
2173 static void FILE__write_graph(void *fp, int graph)
2178 case DARROW_CHAR: s = "↓"; break;
2179 case UARROW_CHAR: s = "↑"; break;
2180 case LARROW_CHAR: s = "←"; break;
2181 case RARROW_CHAR: s = "→"; break;
2182 default: s = "?"; break;
2188 static int symbol__annotate_fprintf2(struct symbol *sym, FILE *fp,
2189 struct annotation_options *opts)
2191 struct annotation *notes = symbol__annotation(sym);
2192 struct annotation_write_ops wops = {
2195 .set_color = FILE__set_color,
2196 .set_percent_color = FILE__set_percent_color,
2197 .set_jumps_percent_color = FILE__set_jumps_percent_color,
2198 .printf = FILE__printf,
2199 .write_graph = FILE__write_graph,
2201 struct annotation_line *al;
2203 list_for_each_entry(al, ¬es->src->source, node) {
2204 if (annotation_line__filter(al, notes))
2206 annotation_line__write(al, notes, &wops, opts);
2208 wops.first_line = false;
2214 int map_symbol__annotation_dump(struct map_symbol *ms, struct perf_evsel *evsel,
2215 struct annotation_options *opts)
2217 const char *ev_name = perf_evsel__name(evsel);
2223 if (asprintf(&filename, "%s.annotation", ms->sym->name) < 0)
2226 fp = fopen(filename, "w");
2228 goto out_free_filename;
2230 if (perf_evsel__is_group_event(evsel)) {
2231 perf_evsel__group_desc(evsel, buf, sizeof(buf));
2235 fprintf(fp, "%s() %s\nEvent: %s\n\n",
2236 ms->sym->name, ms->map->dso->long_name, ev_name);
2237 symbol__annotate_fprintf2(ms->sym, fp, opts);
2246 void symbol__annotate_zero_histogram(struct symbol *sym, int evidx)
2248 struct annotation *notes = symbol__annotation(sym);
2249 struct sym_hist *h = annotation__histogram(notes, evidx);
2251 memset(h, 0, notes->src->sizeof_sym_hist);
2254 void symbol__annotate_decay_histogram(struct symbol *sym, int evidx)
2256 struct annotation *notes = symbol__annotation(sym);
2257 struct sym_hist *h = annotation__histogram(notes, evidx);
2258 int len = symbol__size(sym), offset;
2261 for (offset = 0; offset < len; ++offset) {
2262 h->addr[offset].nr_samples = h->addr[offset].nr_samples * 7 / 8;
2263 h->nr_samples += h->addr[offset].nr_samples;
2267 void annotated_source__purge(struct annotated_source *as)
2269 struct annotation_line *al, *n;
2271 list_for_each_entry_safe(al, n, &as->source, node) {
2272 list_del(&al->node);
2273 disasm_line__free(disasm_line(al));
2277 static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp)
2281 if (dl->al.offset == -1)
2282 return fprintf(fp, "%s\n", dl->al.line);
2284 printed = fprintf(fp, "%#" PRIx64 " %s", dl->al.offset, dl->ins.name);
2286 if (dl->ops.raw[0] != '\0') {
2287 printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ",
2291 return printed + fprintf(fp, "\n");
2294 size_t disasm__fprintf(struct list_head *head, FILE *fp)
2296 struct disasm_line *pos;
2299 list_for_each_entry(pos, head, al.node)
2300 printed += disasm_line__fprintf(pos, fp);
2305 bool disasm_line__is_valid_local_jump(struct disasm_line *dl, struct symbol *sym)
2307 if (!dl || !dl->ins.ops || !ins__is_jump(&dl->ins) ||
2308 !disasm_line__has_local_offset(dl) || dl->ops.target.offset < 0 ||
2309 dl->ops.target.offset >= (s64)symbol__size(sym))
2315 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym)
2317 u64 offset, size = symbol__size(sym);
2319 /* PLT symbols contain external offsets */
2320 if (strstr(sym->name, "@plt"))
2323 for (offset = 0; offset < size; ++offset) {
2324 struct annotation_line *al = notes->offsets[offset];
2325 struct disasm_line *dl;
2327 dl = disasm_line(al);
2329 if (!disasm_line__is_valid_local_jump(dl, sym))
2332 al = notes->offsets[dl->ops.target.offset];
2335 * FIXME: Oops, no jump target? Buggy disassembler? Or do we
2336 * have to adjust to the previous offset?
2341 if (++al->jump_sources > notes->max_jump_sources)
2342 notes->max_jump_sources = al->jump_sources;
2348 void annotation__set_offsets(struct annotation *notes, s64 size)
2350 struct annotation_line *al;
2352 notes->max_line_len = 0;
2354 list_for_each_entry(al, ¬es->src->source, node) {
2355 size_t line_len = strlen(al->line);
2357 if (notes->max_line_len < line_len)
2358 notes->max_line_len = line_len;
2359 al->idx = notes->nr_entries++;
2360 if (al->offset != -1) {
2361 al->idx_asm = notes->nr_asm_entries++;
2363 * FIXME: short term bandaid to cope with assembly
2364 * routines that comes with labels in the same column
2365 * as the address in objdump, sigh.
2367 * E.g. copy_user_generic_unrolled
2369 if (al->offset < size)
2370 notes->offsets[al->offset] = al;
2376 static inline int width_jumps(int n)
2385 void annotation__init_column_widths(struct annotation *notes, struct symbol *sym)
2387 notes->widths.addr = notes->widths.target =
2388 notes->widths.min_addr = hex_width(symbol__size(sym));
2389 notes->widths.max_addr = hex_width(sym->end);
2390 notes->widths.jumps = width_jumps(notes->max_jump_sources);
2393 void annotation__update_column_widths(struct annotation *notes)
2395 if (notes->options->use_offset)
2396 notes->widths.target = notes->widths.min_addr;
2398 notes->widths.target = notes->widths.max_addr;
2400 notes->widths.addr = notes->widths.target;
2402 if (notes->options->show_nr_jumps)
2403 notes->widths.addr += notes->widths.jumps + 1;
2406 static void annotation__calc_lines(struct annotation *notes, struct map *map,
2407 struct rb_root *root,
2408 struct annotation_options *opts)
2410 struct annotation_line *al;
2411 struct rb_root tmp_root = RB_ROOT;
2413 list_for_each_entry(al, ¬es->src->source, node) {
2414 double percent_max = 0.0;
2417 for (i = 0; i < al->data_nr; i++) {
2420 percent = annotation_data__percent(&al->data[i],
2421 opts->percent_type);
2423 if (percent > percent_max)
2424 percent_max = percent;
2427 if (percent_max <= 0.5)
2430 al->path = get_srcline(map->dso, notes->start + al->offset, NULL,
2431 false, true, notes->start + al->offset);
2432 insert_source_line(&tmp_root, al, opts);
2435 resort_source_line(root, &tmp_root);
2438 static void symbol__calc_lines(struct symbol *sym, struct map *map,
2439 struct rb_root *root,
2440 struct annotation_options *opts)
2442 struct annotation *notes = symbol__annotation(sym);
2444 annotation__calc_lines(notes, map, root, opts);
2447 int symbol__tty_annotate2(struct symbol *sym, struct map *map,
2448 struct perf_evsel *evsel,
2449 struct annotation_options *opts)
2451 struct dso *dso = map->dso;
2452 struct rb_root source_line = RB_ROOT;
2453 struct hists *hists = evsel__hists(evsel);
2456 if (symbol__annotate2(sym, map, evsel, opts, NULL) < 0)
2459 if (opts->print_lines) {
2460 srcline_full_filename = opts->full_path;
2461 symbol__calc_lines(sym, map, &source_line, opts);
2462 print_summary(&source_line, dso->long_name);
2465 hists__scnprintf_title(hists, buf, sizeof(buf));
2466 fprintf(stdout, "%s, [percent: %s]\n%s() %s\n",
2467 buf, percent_type_str(opts->percent_type), sym->name, dso->long_name);
2468 symbol__annotate_fprintf2(sym, stdout, opts);
2470 annotated_source__purge(symbol__annotation(sym)->src);
2475 int symbol__tty_annotate(struct symbol *sym, struct map *map,
2476 struct perf_evsel *evsel,
2477 struct annotation_options *opts)
2479 struct dso *dso = map->dso;
2480 struct rb_root source_line = RB_ROOT;
2482 if (symbol__annotate(sym, map, evsel, 0, opts, NULL) < 0)
2485 symbol__calc_percent(sym, evsel);
2487 if (opts->print_lines) {
2488 srcline_full_filename = opts->full_path;
2489 symbol__calc_lines(sym, map, &source_line, opts);
2490 print_summary(&source_line, dso->long_name);
2493 symbol__annotate_printf(sym, map, evsel, opts);
2495 annotated_source__purge(symbol__annotation(sym)->src);
2500 bool ui__has_annotation(void)
2502 return use_browser == 1 && perf_hpp_list.sym;
2506 static double annotation_line__max_percent(struct annotation_line *al,
2507 struct annotation *notes,
2508 unsigned int percent_type)
2510 double percent_max = 0.0;
2513 for (i = 0; i < notes->nr_events; i++) {
2516 percent = annotation_data__percent(&al->data[i],
2519 if (percent > percent_max)
2520 percent_max = percent;
2526 static void disasm_line__write(struct disasm_line *dl, struct annotation *notes,
2527 void *obj, char *bf, size_t size,
2528 void (*obj__printf)(void *obj, const char *fmt, ...),
2529 void (*obj__write_graph)(void *obj, int graph))
2531 if (dl->ins.ops && dl->ins.ops->scnprintf) {
2532 if (ins__is_jump(&dl->ins)) {
2535 if (dl->ops.target.outside)
2537 fwd = dl->ops.target.offset > dl->al.offset;
2538 obj__write_graph(obj, fwd ? DARROW_CHAR : UARROW_CHAR);
2539 obj__printf(obj, " ");
2540 } else if (ins__is_call(&dl->ins)) {
2542 obj__write_graph(obj, RARROW_CHAR);
2543 obj__printf(obj, " ");
2544 } else if (ins__is_ret(&dl->ins)) {
2545 obj__write_graph(obj, LARROW_CHAR);
2546 obj__printf(obj, " ");
2548 obj__printf(obj, " ");
2551 obj__printf(obj, " ");
2554 disasm_line__scnprintf(dl, bf, size, !notes->options->use_offset);
2557 static void __annotation_line__write(struct annotation_line *al, struct annotation *notes,
2558 bool first_line, bool current_entry, bool change_color, int width,
2559 void *obj, unsigned int percent_type,
2560 int (*obj__set_color)(void *obj, int color),
2561 void (*obj__set_percent_color)(void *obj, double percent, bool current),
2562 int (*obj__set_jumps_percent_color)(void *obj, int nr, bool current),
2563 void (*obj__printf)(void *obj, const char *fmt, ...),
2564 void (*obj__write_graph)(void *obj, int graph))
2567 double percent_max = annotation_line__max_percent(al, notes, percent_type);
2568 int pcnt_width = annotation__pcnt_width(notes),
2569 cycles_width = annotation__cycles_width(notes);
2570 bool show_title = false;
2574 if (first_line && (al->offset == -1 || percent_max == 0.0)) {
2575 if (notes->have_cycles) {
2576 if (al->ipc == 0.0 && al->cycles == 0)
2582 if (al->offset != -1 && percent_max != 0.0) {
2585 for (i = 0; i < notes->nr_events; i++) {
2588 percent = annotation_data__percent(&al->data[i], percent_type);
2590 obj__set_percent_color(obj, percent, current_entry);
2591 if (notes->options->show_total_period) {
2592 obj__printf(obj, "%11" PRIu64 " ", al->data[i].he.period);
2593 } else if (notes->options->show_nr_samples) {
2594 obj__printf(obj, "%6" PRIu64 " ",
2595 al->data[i].he.nr_samples);
2597 obj__printf(obj, "%6.2f ", percent);
2601 obj__set_percent_color(obj, 0, current_entry);
2604 obj__printf(obj, "%-*s", pcnt_width, " ");
2606 obj__printf(obj, "%-*s", pcnt_width,
2607 notes->options->show_total_period ? "Period" :
2608 notes->options->show_nr_samples ? "Samples" : "Percent");
2612 if (notes->have_cycles) {
2614 obj__printf(obj, "%*.2f ", ANNOTATION__IPC_WIDTH - 1, al->ipc);
2615 else if (!show_title)
2616 obj__printf(obj, "%*s", ANNOTATION__IPC_WIDTH, " ");
2618 obj__printf(obj, "%*s ", ANNOTATION__IPC_WIDTH - 1, "IPC");
2620 if (!notes->options->show_minmax_cycle) {
2622 obj__printf(obj, "%*" PRIu64 " ",
2623 ANNOTATION__CYCLES_WIDTH - 1, al->cycles);
2624 else if (!show_title)
2625 obj__printf(obj, "%*s",
2626 ANNOTATION__CYCLES_WIDTH, " ");
2628 obj__printf(obj, "%*s ",
2629 ANNOTATION__CYCLES_WIDTH - 1,
2635 scnprintf(str, sizeof(str),
2636 "%" PRIu64 "(%" PRIu64 "/%" PRIu64 ")",
2637 al->cycles, al->cycles_min,
2640 obj__printf(obj, "%*s ",
2641 ANNOTATION__MINMAX_CYCLES_WIDTH - 1,
2643 } else if (!show_title)
2644 obj__printf(obj, "%*s",
2645 ANNOTATION__MINMAX_CYCLES_WIDTH,
2648 obj__printf(obj, "%*s ",
2649 ANNOTATION__MINMAX_CYCLES_WIDTH - 1,
2654 obj__printf(obj, " ");
2657 obj__printf(obj, "%-*s", width - pcnt_width - cycles_width, " ");
2658 else if (al->offset == -1) {
2659 if (al->line_nr && notes->options->show_linenr)
2660 printed = scnprintf(bf, sizeof(bf), "%-*d ", notes->widths.addr + 1, al->line_nr);
2662 printed = scnprintf(bf, sizeof(bf), "%-*s ", notes->widths.addr, " ");
2663 obj__printf(obj, bf);
2664 obj__printf(obj, "%-*s", width - printed - pcnt_width - cycles_width + 1, al->line);
2666 u64 addr = al->offset;
2669 if (!notes->options->use_offset)
2670 addr += notes->start;
2672 if (!notes->options->use_offset) {
2673 printed = scnprintf(bf, sizeof(bf), "%" PRIx64 ": ", addr);
2675 if (al->jump_sources &&
2676 notes->options->offset_level >= ANNOTATION__OFFSET_JUMP_TARGETS) {
2677 if (notes->options->show_nr_jumps) {
2679 printed = scnprintf(bf, sizeof(bf), "%*d ",
2680 notes->widths.jumps,
2682 prev = obj__set_jumps_percent_color(obj, al->jump_sources,
2684 obj__printf(obj, bf);
2685 obj__set_color(obj, prev);
2688 printed = scnprintf(bf, sizeof(bf), "%*" PRIx64 ": ",
2689 notes->widths.target, addr);
2690 } else if (ins__is_call(&disasm_line(al)->ins) &&
2691 notes->options->offset_level >= ANNOTATION__OFFSET_CALL) {
2693 } else if (notes->options->offset_level == ANNOTATION__MAX_OFFSET_LEVEL) {
2696 printed = scnprintf(bf, sizeof(bf), "%-*s ",
2697 notes->widths.addr, " ");
2702 color = obj__set_color(obj, HE_COLORSET_ADDR);
2703 obj__printf(obj, bf);
2705 obj__set_color(obj, color);
2707 disasm_line__write(disasm_line(al), notes, obj, bf, sizeof(bf), obj__printf, obj__write_graph);
2709 obj__printf(obj, "%-*s", width - pcnt_width - cycles_width - 3 - printed, bf);
2714 void annotation_line__write(struct annotation_line *al, struct annotation *notes,
2715 struct annotation_write_ops *wops,
2716 struct annotation_options *opts)
2718 __annotation_line__write(al, notes, wops->first_line, wops->current_entry,
2719 wops->change_color, wops->width, wops->obj,
2721 wops->set_color, wops->set_percent_color,
2722 wops->set_jumps_percent_color, wops->printf,
2726 int symbol__annotate2(struct symbol *sym, struct map *map, struct perf_evsel *evsel,
2727 struct annotation_options *options, struct arch **parch)
2729 struct annotation *notes = symbol__annotation(sym);
2730 size_t size = symbol__size(sym);
2731 int nr_pcnt = 1, err;
2733 notes->offsets = zalloc(size * sizeof(struct annotation_line *));
2734 if (notes->offsets == NULL)
2737 if (perf_evsel__is_group_event(evsel))
2738 nr_pcnt = evsel->nr_members;
2740 err = symbol__annotate(sym, map, evsel, 0, options, parch);
2742 goto out_free_offsets;
2744 notes->options = options;
2746 symbol__calc_percent(sym, evsel);
2748 annotation__set_offsets(notes, size);
2749 annotation__mark_jump_targets(notes, sym);
2750 annotation__compute_ipc(notes, size);
2751 annotation__init_column_widths(notes, sym);
2752 notes->nr_events = nr_pcnt;
2754 annotation__update_column_widths(notes);
2759 zfree(¬es->offsets);
2763 #define ANNOTATION__CFG(n) \
2764 { .name = #n, .value = &annotation__default_options.n, }
2767 * Keep the entries sorted, they are bsearch'ed
2769 static struct annotation_config {
2772 } annotation__configs[] = {
2773 ANNOTATION__CFG(hide_src_code),
2774 ANNOTATION__CFG(jump_arrows),
2775 ANNOTATION__CFG(offset_level),
2776 ANNOTATION__CFG(show_linenr),
2777 ANNOTATION__CFG(show_nr_jumps),
2778 ANNOTATION__CFG(show_nr_samples),
2779 ANNOTATION__CFG(show_total_period),
2780 ANNOTATION__CFG(use_offset),
2783 #undef ANNOTATION__CFG
2785 static int annotation_config__cmp(const void *name, const void *cfgp)
2787 const struct annotation_config *cfg = cfgp;
2789 return strcmp(name, cfg->name);
2792 static int annotation__config(const char *var, const char *value,
2793 void *data __maybe_unused)
2795 struct annotation_config *cfg;
2798 if (!strstarts(var, "annotate."))
2802 cfg = bsearch(name, annotation__configs, ARRAY_SIZE(annotation__configs),
2803 sizeof(struct annotation_config), annotation_config__cmp);
2806 pr_debug("%s variable unknown, ignoring...", var);
2807 else if (strcmp(var, "annotate.offset_level") == 0) {
2808 perf_config_int(cfg->value, name, value);
2810 if (*(int *)cfg->value > ANNOTATION__MAX_OFFSET_LEVEL)
2811 *(int *)cfg->value = ANNOTATION__MAX_OFFSET_LEVEL;
2812 else if (*(int *)cfg->value < ANNOTATION__MIN_OFFSET_LEVEL)
2813 *(int *)cfg->value = ANNOTATION__MIN_OFFSET_LEVEL;
2815 *(bool *)cfg->value = perf_config_bool(name, value);
2820 void annotation_config__init(void)
2822 perf_config(annotation__config, NULL);
2824 annotation__default_options.show_total_period = symbol_conf.show_total_period;
2825 annotation__default_options.show_nr_samples = symbol_conf.show_nr_samples;
2828 static unsigned int parse_percent_type(char *str1, char *str2)
2830 unsigned int type = (unsigned int) -1;
2832 if (!strcmp("period", str1)) {
2833 if (!strcmp("local", str2))
2834 type = PERCENT_PERIOD_LOCAL;
2835 else if (!strcmp("global", str2))
2836 type = PERCENT_PERIOD_GLOBAL;
2839 if (!strcmp("hits", str1)) {
2840 if (!strcmp("local", str2))
2841 type = PERCENT_HITS_LOCAL;
2842 else if (!strcmp("global", str2))
2843 type = PERCENT_HITS_GLOBAL;
2849 int annotate_parse_percent_type(const struct option *opt, const char *_str,
2850 int unset __maybe_unused)
2852 struct annotation_options *opts = opt->value;
2857 str1 = strdup(_str);
2861 str2 = strchr(str1, '-');
2867 type = parse_percent_type(str1, str2);
2868 if (type == (unsigned int) -1)
2869 type = parse_percent_type(str2, str1);
2870 if (type != (unsigned int) -1) {
2871 opts->percent_type = type;