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)
22 #include "block-range.h"
24 #include "arch/common.h"
27 #include <linux/bitops.h>
28 #include <linux/kernel.h>
30 #include "sane_ctype.h"
32 const char *disassembler_style
;
33 const char *objdump_path
;
34 static regex_t file_lineno
;
36 static struct ins_ops
*ins__find(struct arch
*arch
, const char *name
);
37 static void ins__sort(struct arch
*arch
);
38 static int disasm_line__parse(char *line
, const char **namep
, char **rawp
);
42 struct ins
*instructions
;
43 size_t nr_instructions
;
44 size_t nr_instructions_allocated
;
45 struct ins_ops
*(*associate_instruction_ops
)(struct arch
*arch
, const char *name
);
46 bool sorted_instructions
;
51 int (*init
)(struct arch
*arch
, char *cpuid
);
52 bool (*ins_is_fused
)(struct arch
*arch
, const char *ins1
,
56 char skip_functions_char
;
60 static struct ins_ops call_ops
;
61 static struct ins_ops dec_ops
;
62 static struct ins_ops jump_ops
;
63 static struct ins_ops mov_ops
;
64 static struct ins_ops nop_ops
;
65 static struct ins_ops lock_ops
;
66 static struct ins_ops ret_ops
;
68 static int arch__grow_instructions(struct arch
*arch
)
70 struct ins
*new_instructions
;
71 size_t new_nr_allocated
;
73 if (arch
->nr_instructions_allocated
== 0 && arch
->instructions
)
74 goto grow_from_non_allocated_table
;
76 new_nr_allocated
= arch
->nr_instructions_allocated
+ 128;
77 new_instructions
= realloc(arch
->instructions
, new_nr_allocated
* sizeof(struct ins
));
78 if (new_instructions
== NULL
)
81 out_update_instructions
:
82 arch
->instructions
= new_instructions
;
83 arch
->nr_instructions_allocated
= new_nr_allocated
;
86 grow_from_non_allocated_table
:
87 new_nr_allocated
= arch
->nr_instructions
+ 128;
88 new_instructions
= calloc(new_nr_allocated
, sizeof(struct ins
));
89 if (new_instructions
== NULL
)
92 memcpy(new_instructions
, arch
->instructions
, arch
->nr_instructions
);
93 goto out_update_instructions
;
96 static int arch__associate_ins_ops(struct arch
* arch
, const char *name
, struct ins_ops
*ops
)
100 if (arch
->nr_instructions
== arch
->nr_instructions_allocated
&&
101 arch__grow_instructions(arch
))
104 ins
= &arch
->instructions
[arch
->nr_instructions
];
105 ins
->name
= strdup(name
);
110 arch
->nr_instructions
++;
116 #include "arch/arm/annotate/instructions.c"
117 #include "arch/arm64/annotate/instructions.c"
118 #include "arch/x86/annotate/instructions.c"
119 #include "arch/powerpc/annotate/instructions.c"
120 #include "arch/s390/annotate/instructions.c"
122 static struct arch architectures
[] = {
125 .init
= arm__annotate_init
,
129 .init
= arm64__annotate_init
,
133 .init
= x86__annotate_init
,
134 .instructions
= x86__instructions
,
135 .nr_instructions
= ARRAY_SIZE(x86__instructions
),
136 .ins_is_fused
= x86__ins_is_fused
,
143 .init
= powerpc__annotate_init
,
147 .init
= s390__annotate_init
,
154 static void ins__delete(struct ins_operands
*ops
)
158 zfree(&ops
->source
.raw
);
159 zfree(&ops
->source
.name
);
160 zfree(&ops
->target
.raw
);
161 zfree(&ops
->target
.name
);
164 static int ins__raw_scnprintf(struct ins
*ins
, char *bf
, size_t size
,
165 struct ins_operands
*ops
)
167 return scnprintf(bf
, size
, "%-6s %s", ins
->name
, ops
->raw
);
170 int ins__scnprintf(struct ins
*ins
, char *bf
, size_t size
,
171 struct ins_operands
*ops
)
173 if (ins
->ops
->scnprintf
)
174 return ins
->ops
->scnprintf(ins
, bf
, size
, ops
);
176 return ins__raw_scnprintf(ins
, bf
, size
, ops
);
179 bool ins__is_fused(struct arch
*arch
, const char *ins1
, const char *ins2
)
181 if (!arch
|| !arch
->ins_is_fused
)
184 return arch
->ins_is_fused(arch
, ins1
, ins2
);
187 static int call__parse(struct arch
*arch
, struct ins_operands
*ops
, struct map
*map
)
189 char *endptr
, *tok
, *name
;
191 ops
->target
.addr
= strtoull(ops
->raw
, &endptr
, 16);
193 name
= strchr(endptr
, '<');
199 if (arch
->objdump
.skip_functions_char
&&
200 strchr(name
, arch
->objdump
.skip_functions_char
))
203 tok
= strchr(name
, '>');
208 ops
->target
.name
= strdup(name
);
211 return ops
->target
.name
== NULL
? -1 : 0;
214 tok
= strchr(endptr
, '*');
216 struct symbol
*sym
= map__find_symbol(map
, map
->map_ip(map
, ops
->target
.addr
));
218 ops
->target
.name
= strdup(sym
->name
);
220 ops
->target
.addr
= 0;
224 ops
->target
.addr
= strtoull(tok
+ 1, NULL
, 16);
228 static int call__scnprintf(struct ins
*ins
, char *bf
, size_t size
,
229 struct ins_operands
*ops
)
231 if (ops
->target
.name
)
232 return scnprintf(bf
, size
, "%-6s %s", ins
->name
, ops
->target
.name
);
234 if (ops
->target
.addr
== 0)
235 return ins__raw_scnprintf(ins
, bf
, size
, ops
);
237 return scnprintf(bf
, size
, "%-6s *%" PRIx64
, ins
->name
, ops
->target
.addr
);
240 static struct ins_ops call_ops
= {
241 .parse
= call__parse
,
242 .scnprintf
= call__scnprintf
,
245 bool ins__is_call(const struct ins
*ins
)
247 return ins
->ops
== &call_ops
;
250 static int jump__parse(struct arch
*arch __maybe_unused
, struct ins_operands
*ops
, struct map
*map __maybe_unused
)
252 const char *s
= strchr(ops
->raw
, '+');
253 const char *c
= strchr(ops
->raw
, ',');
256 * skip over possible up to 2 operands to get to address, e.g.:
257 * tbnz w0, #26, ffff0000083cd190 <security_file_permission+0xd0>
260 ops
->target
.addr
= strtoull(c
, NULL
, 16);
261 if (!ops
->target
.addr
) {
264 ops
->target
.addr
= strtoull(c
, NULL
, 16);
267 ops
->target
.addr
= strtoull(ops
->raw
, NULL
, 16);
271 ops
->target
.offset
= strtoull(s
, NULL
, 16);
272 ops
->target
.offset_avail
= true;
274 ops
->target
.offset_avail
= false;
280 static int jump__scnprintf(struct ins
*ins
, char *bf
, size_t size
,
281 struct ins_operands
*ops
)
283 const char *c
= strchr(ops
->raw
, ',');
285 if (!ops
->target
.addr
|| ops
->target
.offset
< 0)
286 return ins__raw_scnprintf(ins
, bf
, size
, ops
);
289 const char *c2
= strchr(c
+ 1, ',');
291 /* check for 3-op insn */
296 /* mirror arch objdump's space-after-comma style */
301 return scnprintf(bf
, size
, "%-6s %.*s%" PRIx64
,
302 ins
->name
, c
? c
- ops
->raw
: 0, ops
->raw
,
306 static struct ins_ops jump_ops
= {
307 .parse
= jump__parse
,
308 .scnprintf
= jump__scnprintf
,
311 bool ins__is_jump(const struct ins
*ins
)
313 return ins
->ops
== &jump_ops
;
316 static int comment__symbol(char *raw
, char *comment
, u64
*addrp
, char **namep
)
318 char *endptr
, *name
, *t
;
320 if (strstr(raw
, "(%rip)") == NULL
)
323 *addrp
= strtoull(comment
, &endptr
, 16);
324 if (endptr
== comment
)
326 name
= strchr(endptr
, '<');
332 t
= strchr(name
, '>');
337 *namep
= strdup(name
);
343 static int lock__parse(struct arch
*arch
, struct ins_operands
*ops
, struct map
*map
)
345 ops
->locked
.ops
= zalloc(sizeof(*ops
->locked
.ops
));
346 if (ops
->locked
.ops
== NULL
)
349 if (disasm_line__parse(ops
->raw
, &ops
->locked
.ins
.name
, &ops
->locked
.ops
->raw
) < 0)
352 ops
->locked
.ins
.ops
= ins__find(arch
, ops
->locked
.ins
.name
);
354 if (ops
->locked
.ins
.ops
== NULL
)
357 if (ops
->locked
.ins
.ops
->parse
&&
358 ops
->locked
.ins
.ops
->parse(arch
, ops
->locked
.ops
, map
) < 0)
364 zfree(&ops
->locked
.ops
);
368 static int lock__scnprintf(struct ins
*ins
, char *bf
, size_t size
,
369 struct ins_operands
*ops
)
373 if (ops
->locked
.ins
.ops
== NULL
)
374 return ins__raw_scnprintf(ins
, bf
, size
, ops
);
376 printed
= scnprintf(bf
, size
, "%-6s ", ins
->name
);
377 return printed
+ ins__scnprintf(&ops
->locked
.ins
, bf
+ printed
,
378 size
- printed
, ops
->locked
.ops
);
381 static void lock__delete(struct ins_operands
*ops
)
383 struct ins
*ins
= &ops
->locked
.ins
;
385 if (ins
->ops
&& ins
->ops
->free
)
386 ins
->ops
->free(ops
->locked
.ops
);
388 ins__delete(ops
->locked
.ops
);
390 zfree(&ops
->locked
.ops
);
391 zfree(&ops
->target
.raw
);
392 zfree(&ops
->target
.name
);
395 static struct ins_ops lock_ops
= {
396 .free
= lock__delete
,
397 .parse
= lock__parse
,
398 .scnprintf
= lock__scnprintf
,
401 static int mov__parse(struct arch
*arch
, struct ins_operands
*ops
, struct map
*map __maybe_unused
)
403 char *s
= strchr(ops
->raw
, ','), *target
, *comment
, prev
;
409 ops
->source
.raw
= strdup(ops
->raw
);
412 if (ops
->source
.raw
== NULL
)
416 comment
= strchr(s
, arch
->objdump
.comment_char
);
421 s
= strchr(s
, '\0') - 1;
423 while (s
> target
&& isspace(s
[0]))
429 ops
->target
.raw
= strdup(target
);
432 if (ops
->target
.raw
== NULL
)
433 goto out_free_source
;
438 comment
= ltrim(comment
);
439 comment__symbol(ops
->source
.raw
, comment
+ 1, &ops
->source
.addr
, &ops
->source
.name
);
440 comment__symbol(ops
->target
.raw
, comment
+ 1, &ops
->target
.addr
, &ops
->target
.name
);
445 zfree(&ops
->source
.raw
);
449 static int mov__scnprintf(struct ins
*ins
, char *bf
, size_t size
,
450 struct ins_operands
*ops
)
452 return scnprintf(bf
, size
, "%-6s %s,%s", ins
->name
,
453 ops
->source
.name
?: ops
->source
.raw
,
454 ops
->target
.name
?: ops
->target
.raw
);
457 static struct ins_ops mov_ops
= {
459 .scnprintf
= mov__scnprintf
,
462 static int dec__parse(struct arch
*arch __maybe_unused
, struct ins_operands
*ops
, struct map
*map __maybe_unused
)
464 char *target
, *comment
, *s
, prev
;
466 target
= s
= ops
->raw
;
468 while (s
[0] != '\0' && !isspace(s
[0]))
473 ops
->target
.raw
= strdup(target
);
476 if (ops
->target
.raw
== NULL
)
479 comment
= strchr(s
, arch
->objdump
.comment_char
);
483 comment
= ltrim(comment
);
484 comment__symbol(ops
->target
.raw
, comment
+ 1, &ops
->target
.addr
, &ops
->target
.name
);
489 static int dec__scnprintf(struct ins
*ins
, char *bf
, size_t size
,
490 struct ins_operands
*ops
)
492 return scnprintf(bf
, size
, "%-6s %s", ins
->name
,
493 ops
->target
.name
?: ops
->target
.raw
);
496 static struct ins_ops dec_ops
= {
498 .scnprintf
= dec__scnprintf
,
501 static int nop__scnprintf(struct ins
*ins __maybe_unused
, char *bf
, size_t size
,
502 struct ins_operands
*ops __maybe_unused
)
504 return scnprintf(bf
, size
, "%-6s", "nop");
507 static struct ins_ops nop_ops
= {
508 .scnprintf
= nop__scnprintf
,
511 static struct ins_ops ret_ops
= {
512 .scnprintf
= ins__raw_scnprintf
,
515 bool ins__is_ret(const struct ins
*ins
)
517 return ins
->ops
== &ret_ops
;
520 bool ins__is_lock(const struct ins
*ins
)
522 return ins
->ops
== &lock_ops
;
525 static int ins__key_cmp(const void *name
, const void *insp
)
527 const struct ins
*ins
= insp
;
529 return strcmp(name
, ins
->name
);
532 static int ins__cmp(const void *a
, const void *b
)
534 const struct ins
*ia
= a
;
535 const struct ins
*ib
= b
;
537 return strcmp(ia
->name
, ib
->name
);
540 static void ins__sort(struct arch
*arch
)
542 const int nmemb
= arch
->nr_instructions
;
544 qsort(arch
->instructions
, nmemb
, sizeof(struct ins
), ins__cmp
);
547 static struct ins_ops
*__ins__find(struct arch
*arch
, const char *name
)
550 const int nmemb
= arch
->nr_instructions
;
552 if (!arch
->sorted_instructions
) {
554 arch
->sorted_instructions
= true;
557 ins
= bsearch(name
, arch
->instructions
, nmemb
, sizeof(struct ins
), ins__key_cmp
);
558 return ins
? ins
->ops
: NULL
;
561 static struct ins_ops
*ins__find(struct arch
*arch
, const char *name
)
563 struct ins_ops
*ops
= __ins__find(arch
, name
);
565 if (!ops
&& arch
->associate_instruction_ops
)
566 ops
= arch
->associate_instruction_ops(arch
, name
);
571 static int arch__key_cmp(const void *name
, const void *archp
)
573 const struct arch
*arch
= archp
;
575 return strcmp(name
, arch
->name
);
578 static int arch__cmp(const void *a
, const void *b
)
580 const struct arch
*aa
= a
;
581 const struct arch
*ab
= b
;
583 return strcmp(aa
->name
, ab
->name
);
586 static void arch__sort(void)
588 const int nmemb
= ARRAY_SIZE(architectures
);
590 qsort(architectures
, nmemb
, sizeof(struct arch
), arch__cmp
);
593 static struct arch
*arch__find(const char *name
)
595 const int nmemb
= ARRAY_SIZE(architectures
);
603 return bsearch(name
, architectures
, nmemb
, sizeof(struct arch
), arch__key_cmp
);
606 int symbol__alloc_hist(struct symbol
*sym
)
608 struct annotation
*notes
= symbol__annotation(sym
);
609 size_t size
= symbol__size(sym
);
610 size_t sizeof_sym_hist
;
613 * Add buffer of one element for zero length symbol.
614 * When sample is taken from first instruction of
615 * zero length symbol, perf still resolves it and
616 * shows symbol name in perf report and allows to
622 /* Check for overflow when calculating sizeof_sym_hist */
623 if (size
> (SIZE_MAX
- sizeof(struct sym_hist
)) / sizeof(struct sym_hist_entry
))
626 sizeof_sym_hist
= (sizeof(struct sym_hist
) + size
* sizeof(struct sym_hist_entry
));
628 /* Check for overflow in zalloc argument */
629 if (sizeof_sym_hist
> (SIZE_MAX
- sizeof(*notes
->src
))
630 / symbol_conf
.nr_events
)
633 notes
->src
= zalloc(sizeof(*notes
->src
) + symbol_conf
.nr_events
* sizeof_sym_hist
);
634 if (notes
->src
== NULL
)
636 notes
->src
->sizeof_sym_hist
= sizeof_sym_hist
;
637 notes
->src
->nr_histograms
= symbol_conf
.nr_events
;
638 INIT_LIST_HEAD(¬es
->src
->source
);
642 /* The cycles histogram is lazily allocated. */
643 static int symbol__alloc_hist_cycles(struct symbol
*sym
)
645 struct annotation
*notes
= symbol__annotation(sym
);
646 const size_t size
= symbol__size(sym
);
648 notes
->src
->cycles_hist
= calloc(size
, sizeof(struct cyc_hist
));
649 if (notes
->src
->cycles_hist
== NULL
)
654 void symbol__annotate_zero_histograms(struct symbol
*sym
)
656 struct annotation
*notes
= symbol__annotation(sym
);
658 pthread_mutex_lock(¬es
->lock
);
659 if (notes
->src
!= NULL
) {
660 memset(notes
->src
->histograms
, 0,
661 notes
->src
->nr_histograms
* notes
->src
->sizeof_sym_hist
);
662 if (notes
->src
->cycles_hist
)
663 memset(notes
->src
->cycles_hist
, 0,
664 symbol__size(sym
) * sizeof(struct cyc_hist
));
666 pthread_mutex_unlock(¬es
->lock
);
669 static int __symbol__account_cycles(struct annotation
*notes
,
671 unsigned offset
, unsigned cycles
,
676 ch
= notes
->src
->cycles_hist
;
678 * For now we can only account one basic block per
679 * final jump. But multiple could be overlapping.
680 * Always account the longest one. So when
681 * a shorter one has been already seen throw it away.
683 * We separately always account the full cycles.
685 ch
[offset
].num_aggr
++;
686 ch
[offset
].cycles_aggr
+= cycles
;
688 if (!have_start
&& ch
[offset
].have_start
)
690 if (ch
[offset
].num
) {
691 if (have_start
&& (!ch
[offset
].have_start
||
692 ch
[offset
].start
> start
)) {
693 ch
[offset
].have_start
= 0;
694 ch
[offset
].cycles
= 0;
696 if (ch
[offset
].reset
< 0xffff)
698 } else if (have_start
&&
699 ch
[offset
].start
< start
)
702 ch
[offset
].have_start
= have_start
;
703 ch
[offset
].start
= start
;
704 ch
[offset
].cycles
+= cycles
;
709 static int __symbol__inc_addr_samples(struct symbol
*sym
, struct map
*map
,
710 struct annotation
*notes
, int evidx
, u64 addr
,
711 struct perf_sample
*sample
)
716 pr_debug3("%s: addr=%#" PRIx64
"\n", __func__
, map
->unmap_ip(map
, addr
));
718 if ((addr
< sym
->start
|| addr
>= sym
->end
) &&
719 (addr
!= sym
->end
|| sym
->start
!= sym
->end
)) {
720 pr_debug("%s(%d): ERANGE! sym->name=%s, start=%#" PRIx64
", addr=%#" PRIx64
", end=%#" PRIx64
"\n",
721 __func__
, __LINE__
, sym
->name
, sym
->start
, addr
, sym
->end
);
725 offset
= addr
- sym
->start
;
726 h
= annotation__histogram(notes
, evidx
);
728 h
->addr
[offset
].nr_samples
++;
729 h
->period
+= sample
->period
;
730 h
->addr
[offset
].period
+= sample
->period
;
732 pr_debug3("%#" PRIx64
" %s: period++ [addr: %#" PRIx64
", %#" PRIx64
733 ", evidx=%d] => nr_samples: %" PRIu64
", period: %" PRIu64
"\n",
734 sym
->start
, sym
->name
, addr
, addr
- sym
->start
, evidx
,
735 h
->addr
[offset
].nr_samples
, h
->addr
[offset
].period
);
739 static struct annotation
*symbol__get_annotation(struct symbol
*sym
, bool cycles
)
741 struct annotation
*notes
= symbol__annotation(sym
);
743 if (notes
->src
== NULL
) {
744 if (symbol__alloc_hist(sym
) < 0)
747 if (!notes
->src
->cycles_hist
&& cycles
) {
748 if (symbol__alloc_hist_cycles(sym
) < 0)
754 static int symbol__inc_addr_samples(struct symbol
*sym
, struct map
*map
,
756 struct perf_sample
*sample
)
758 struct annotation
*notes
;
762 notes
= symbol__get_annotation(sym
, false);
765 return __symbol__inc_addr_samples(sym
, map
, notes
, evidx
, addr
, sample
);
768 static int symbol__account_cycles(u64 addr
, u64 start
,
769 struct symbol
*sym
, unsigned cycles
)
771 struct annotation
*notes
;
776 notes
= symbol__get_annotation(sym
, true);
779 if (addr
< sym
->start
|| addr
>= sym
->end
)
783 if (start
< sym
->start
|| start
>= sym
->end
)
788 offset
= addr
- sym
->start
;
789 return __symbol__account_cycles(notes
,
790 start
? start
- sym
->start
: 0,
795 int addr_map_symbol__account_cycles(struct addr_map_symbol
*ams
,
796 struct addr_map_symbol
*start
,
806 * Only set start when IPC can be computed. We can only
807 * compute it when the basic block is completely in a single
809 * Special case the case when the jump is elsewhere, but
810 * it starts on the function start.
813 (start
->sym
== ams
->sym
||
815 start
->addr
== ams
->sym
->start
+ ams
->map
->start
)))
816 saddr
= start
->al_addr
;
818 pr_debug2("BB with bad start: addr %"PRIx64
" start %"PRIx64
" sym %"PRIx64
" saddr %"PRIx64
"\n",
820 start
? start
->addr
: 0,
821 ams
->sym
? ams
->sym
->start
+ ams
->map
->start
: 0,
823 err
= symbol__account_cycles(ams
->al_addr
, saddr
, ams
->sym
, cycles
);
825 pr_debug2("account_cycles failed %d\n", err
);
829 int addr_map_symbol__inc_samples(struct addr_map_symbol
*ams
, struct perf_sample
*sample
,
832 return symbol__inc_addr_samples(ams
->sym
, ams
->map
, evidx
, ams
->al_addr
, sample
);
835 int hist_entry__inc_addr_samples(struct hist_entry
*he
, struct perf_sample
*sample
,
838 return symbol__inc_addr_samples(he
->ms
.sym
, he
->ms
.map
, evidx
, ip
, sample
);
841 static void disasm_line__init_ins(struct disasm_line
*dl
, struct arch
*arch
, struct map
*map
)
843 dl
->ins
.ops
= ins__find(arch
, dl
->ins
.name
);
848 if (dl
->ins
.ops
->parse
&& dl
->ins
.ops
->parse(arch
, &dl
->ops
, map
) < 0)
852 static int disasm_line__parse(char *line
, const char **namep
, char **rawp
)
854 char tmp
, *name
= ltrim(line
);
861 while ((*rawp
)[0] != '\0' && !isspace((*rawp
)[0]))
866 *namep
= strdup(name
);
872 *rawp
= ltrim(*rawp
);
882 struct annotate_args
{
886 struct perf_evsel
*evsel
;
892 static void annotation_line__delete(struct annotation_line
*al
)
894 void *ptr
= (void *) al
- al
->privsize
;
896 free_srcline(al
->path
);
902 * Allocating the annotation line data with following
905 * --------------------------------------
906 * private space | struct annotation_line
907 * --------------------------------------
909 * Size of the private space is stored in 'struct annotation_line'.
912 static struct annotation_line
*
913 annotation_line__new(struct annotate_args
*args
, size_t privsize
)
915 struct annotation_line
*al
;
916 struct perf_evsel
*evsel
= args
->evsel
;
917 size_t size
= privsize
+ sizeof(*al
);
920 if (perf_evsel__is_group_event(evsel
))
921 nr
= evsel
->nr_members
;
923 size
+= sizeof(al
->samples
[0]) * nr
;
927 al
= (void *) al
+ privsize
;
928 al
->privsize
= privsize
;
929 al
->offset
= args
->offset
;
930 al
->line
= strdup(args
->line
);
931 al
->line_nr
= args
->line_nr
;
939 * Allocating the disasm annotation line data with
940 * following structure:
942 * ------------------------------------------------------------
943 * privsize space | struct disasm_line | struct annotation_line
944 * ------------------------------------------------------------
946 * We have 'struct annotation_line' member as last member
947 * of 'struct disasm_line' to have an easy access.
950 static struct disasm_line
*disasm_line__new(struct annotate_args
*args
)
952 struct disasm_line
*dl
= NULL
;
953 struct annotation_line
*al
;
954 size_t privsize
= args
->privsize
+ offsetof(struct disasm_line
, al
);
956 al
= annotation_line__new(args
, privsize
);
958 dl
= disasm_line(al
);
960 if (dl
->al
.line
== NULL
)
963 if (args
->offset
!= -1) {
964 if (disasm_line__parse(dl
->al
.line
, &dl
->ins
.name
, &dl
->ops
.raw
) < 0)
967 disasm_line__init_ins(dl
, args
->arch
, args
->map
);
980 void disasm_line__free(struct disasm_line
*dl
)
982 if (dl
->ins
.ops
&& dl
->ins
.ops
->free
)
983 dl
->ins
.ops
->free(&dl
->ops
);
985 ins__delete(&dl
->ops
);
986 free((void *)dl
->ins
.name
);
988 annotation_line__delete(&dl
->al
);
991 int disasm_line__scnprintf(struct disasm_line
*dl
, char *bf
, size_t size
, bool raw
)
993 if (raw
|| !dl
->ins
.ops
)
994 return scnprintf(bf
, size
, "%-6s %s", dl
->ins
.name
, dl
->ops
.raw
);
996 return ins__scnprintf(&dl
->ins
, bf
, size
, &dl
->ops
);
999 static void annotation_line__add(struct annotation_line
*al
, struct list_head
*head
)
1001 list_add_tail(&al
->node
, head
);
1004 struct annotation_line
*
1005 annotation_line__next(struct annotation_line
*pos
, struct list_head
*head
)
1007 list_for_each_entry_continue(pos
, head
, node
)
1008 if (pos
->offset
>= 0)
1014 static const char *annotate__address_color(struct block_range
*br
)
1016 double cov
= block_range__coverage(br
);
1019 /* mark red for >75% coverage */
1021 return PERF_COLOR_RED
;
1023 /* mark dull for <1% coverage */
1025 return PERF_COLOR_NORMAL
;
1028 return PERF_COLOR_MAGENTA
;
1031 static const char *annotate__asm_color(struct block_range
*br
)
1033 double cov
= block_range__coverage(br
);
1036 /* mark dull for <1% coverage */
1038 return PERF_COLOR_NORMAL
;
1041 return PERF_COLOR_BLUE
;
1044 static void annotate__branch_printf(struct block_range
*br
, u64 addr
)
1046 bool emit_comment
= true;
1052 if (br
->is_target
&& br
->start
== addr
) {
1053 struct block_range
*branch
= br
;
1057 * Find matching branch to our target.
1059 while (!branch
->is_branch
)
1060 branch
= block_range__next(branch
);
1062 p
= 100 *(double)br
->entry
/ branch
->coverage
;
1066 emit_comment
= false;
1071 * The percentage of coverage joined at this target in relation
1072 * to the next branch.
1074 printf(" +%.2f%%", p
);
1078 if (br
->is_branch
&& br
->end
== addr
) {
1079 double p
= 100*(double)br
->taken
/ br
->coverage
;
1083 emit_comment
= false;
1088 * The percentage of coverage leaving at this branch, and
1089 * its prediction ratio.
1091 printf(" -%.2f%% (p:%.2f%%)", p
, 100*(double)br
->pred
/ br
->taken
);
1096 static int disasm_line__print(struct disasm_line
*dl
, u64 start
, int addr_fmt_width
)
1098 s64 offset
= dl
->al
.offset
;
1099 const u64 addr
= start
+ offset
;
1100 struct block_range
*br
;
1102 br
= block_range__find(addr
);
1103 color_fprintf(stdout
, annotate__address_color(br
), " %*" PRIx64
":", addr_fmt_width
, addr
);
1104 color_fprintf(stdout
, annotate__asm_color(br
), "%s", dl
->al
.line
);
1105 annotate__branch_printf(br
, addr
);
1110 annotation_line__print(struct annotation_line
*al
, struct symbol
*sym
, u64 start
,
1111 struct perf_evsel
*evsel
, u64 len
, int min_pcnt
, int printed
,
1112 int max_lines
, struct annotation_line
*queue
, int addr_fmt_width
)
1114 struct disasm_line
*dl
= container_of(al
, struct disasm_line
, al
);
1115 static const char *prev_line
;
1116 static const char *prev_color
;
1118 if (al
->offset
!= -1) {
1119 double max_percent
= 0.0;
1120 int i
, nr_percent
= 1;
1122 struct annotation
*notes
= symbol__annotation(sym
);
1124 for (i
= 0; i
< al
->samples_nr
; i
++) {
1125 struct annotation_data
*sample
= &al
->samples
[i
];
1127 if (sample
->percent
> max_percent
)
1128 max_percent
= sample
->percent
;
1131 if (max_percent
< min_pcnt
)
1134 if (max_lines
&& printed
>= max_lines
)
1137 if (queue
!= NULL
) {
1138 list_for_each_entry_from(queue
, ¬es
->src
->source
, node
) {
1141 annotation_line__print(queue
, sym
, start
, evsel
, len
,
1142 0, 0, 1, NULL
, addr_fmt_width
);
1146 color
= get_percent_color(max_percent
);
1149 * Also color the filename and line if needed, with
1150 * the same color than the percentage. Don't print it
1151 * twice for close colored addr with the same filename:line
1154 if (!prev_line
|| strcmp(prev_line
, al
->path
)
1155 || color
!= prev_color
) {
1156 color_fprintf(stdout
, color
, " %s", al
->path
);
1157 prev_line
= al
->path
;
1162 for (i
= 0; i
< nr_percent
; i
++) {
1163 struct annotation_data
*sample
= &al
->samples
[i
];
1165 color
= get_percent_color(sample
->percent
);
1167 if (symbol_conf
.show_total_period
)
1168 color_fprintf(stdout
, color
, " %11" PRIu64
,
1170 else if (symbol_conf
.show_nr_samples
)
1171 color_fprintf(stdout
, color
, " %7" PRIu64
,
1172 sample
->he
.nr_samples
);
1174 color_fprintf(stdout
, color
, " %7.2f", sample
->percent
);
1179 disasm_line__print(dl
, start
, addr_fmt_width
);
1181 } else if (max_lines
&& printed
>= max_lines
)
1184 int width
= symbol_conf
.show_total_period
? 12 : 8;
1189 if (perf_evsel__is_group_event(evsel
))
1190 width
*= evsel
->nr_members
;
1193 printf(" %*s:\n", width
, " ");
1195 printf(" %*s: %*s %s\n", width
, " ", addr_fmt_width
, " ", al
->line
);
1202 * symbol__parse_objdump_line() parses objdump output (with -d --no-show-raw)
1203 * which looks like following
1205 * 0000000000415500 <_init>:
1206 * 415500: sub $0x8,%rsp
1207 * 415504: mov 0x2f5ad5(%rip),%rax # 70afe0 <_DYNAMIC+0x2f8>
1208 * 41550b: test %rax,%rax
1209 * 41550e: je 415515 <_init+0x15>
1210 * 415510: callq 416e70 <__gmon_start__@plt>
1211 * 415515: add $0x8,%rsp
1214 * it will be parsed and saved into struct disasm_line as
1215 * <offset> <name> <ops.raw>
1217 * The offset will be a relative offset from the start of the symbol and -1
1218 * means that it's not a disassembly line so should be treated differently.
1219 * The ops.raw part will be parsed further according to type of the instruction.
1221 static int symbol__parse_objdump_line(struct symbol
*sym
, FILE *file
,
1222 struct annotate_args
*args
,
1225 struct map
*map
= args
->map
;
1226 struct annotation
*notes
= symbol__annotation(sym
);
1227 struct disasm_line
*dl
;
1228 char *line
= NULL
, *parsed_line
, *tmp
, *tmp2
;
1230 s64 line_ip
, offset
= -1;
1231 regmatch_t match
[2];
1233 if (getline(&line
, &line_len
, file
) < 0)
1240 parsed_line
= rtrim(line
);
1242 /* /filename:linenr ? Save line number and ignore. */
1243 if (regexec(&file_lineno
, parsed_line
, 2, match
, 0) == 0) {
1244 *line_nr
= atoi(parsed_line
+ match
[1].rm_so
);
1248 tmp
= ltrim(parsed_line
);
1251 * Parse hexa addresses followed by ':'
1253 line_ip
= strtoull(tmp
, &tmp2
, 16);
1254 if (*tmp2
!= ':' || tmp
== tmp2
|| tmp2
[1] == '\0')
1258 if (line_ip
!= -1) {
1259 u64 start
= map__rip_2objdump(map
, sym
->start
),
1260 end
= map__rip_2objdump(map
, sym
->end
);
1262 offset
= line_ip
- start
;
1263 if ((u64
)line_ip
< start
|| (u64
)line_ip
>= end
)
1266 parsed_line
= tmp2
+ 1;
1269 args
->offset
= offset
;
1270 args
->line
= parsed_line
;
1271 args
->line_nr
= *line_nr
;
1273 dl
= disasm_line__new(args
);
1280 if (!disasm_line__has_offset(dl
)) {
1281 dl
->ops
.target
.offset
= dl
->ops
.target
.addr
-
1282 map__rip_2objdump(map
, sym
->start
);
1283 dl
->ops
.target
.offset_avail
= true;
1286 /* kcore has no symbols, so add the call target name */
1287 if (dl
->ins
.ops
&& ins__is_call(&dl
->ins
) && !dl
->ops
.target
.name
) {
1288 struct addr_map_symbol target
= {
1290 .addr
= dl
->ops
.target
.addr
,
1293 if (!map_groups__find_ams(&target
) &&
1294 target
.sym
->start
== target
.al_addr
)
1295 dl
->ops
.target
.name
= strdup(target
.sym
->name
);
1298 annotation_line__add(&dl
->al
, ¬es
->src
->source
);
1303 static __attribute__((constructor
)) void symbol__init_regexpr(void)
1305 regcomp(&file_lineno
, "^/[^:]+:([0-9]+)", REG_EXTENDED
);
1308 static void delete_last_nop(struct symbol
*sym
)
1310 struct annotation
*notes
= symbol__annotation(sym
);
1311 struct list_head
*list
= ¬es
->src
->source
;
1312 struct disasm_line
*dl
;
1314 while (!list_empty(list
)) {
1315 dl
= list_entry(list
->prev
, struct disasm_line
, al
.node
);
1318 if (dl
->ins
.ops
!= &nop_ops
)
1321 if (!strstr(dl
->al
.line
, " nop ") &&
1322 !strstr(dl
->al
.line
, " nopl ") &&
1323 !strstr(dl
->al
.line
, " nopw "))
1327 list_del(&dl
->al
.node
);
1328 disasm_line__free(dl
);
1332 int symbol__strerror_disassemble(struct symbol
*sym __maybe_unused
, struct map
*map
,
1333 int errnum
, char *buf
, size_t buflen
)
1335 struct dso
*dso
= map
->dso
;
1337 BUG_ON(buflen
== 0);
1340 str_error_r(errnum
, buf
, buflen
);
1345 case SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX
: {
1346 char bf
[SBUILD_ID_SIZE
+ 15] = " with build id ";
1347 char *build_id_msg
= NULL
;
1349 if (dso
->has_build_id
) {
1350 build_id__sprintf(dso
->build_id
,
1351 sizeof(dso
->build_id
), bf
+ 15);
1354 scnprintf(buf
, buflen
,
1355 "No vmlinux file%s\nwas found in the path.\n\n"
1356 "Note that annotation using /proc/kcore requires CAP_SYS_RAWIO capability.\n\n"
1358 " perf buildid-cache -vu vmlinux\n\n"
1360 " --vmlinux vmlinux\n", build_id_msg
?: "");
1364 scnprintf(buf
, buflen
, "Internal error: Invalid %d error code\n", errnum
);
1371 static int dso__disassemble_filename(struct dso
*dso
, char *filename
, size_t filename_size
)
1373 char linkname
[PATH_MAX
];
1374 char *build_id_filename
;
1375 char *build_id_path
= NULL
;
1378 if (dso
->symtab_type
== DSO_BINARY_TYPE__KALLSYMS
&&
1379 !dso__is_kcore(dso
))
1380 return SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX
;
1382 build_id_filename
= dso__build_id_filename(dso
, NULL
, 0, false);
1383 if (build_id_filename
) {
1384 __symbol__join_symfs(filename
, filename_size
, build_id_filename
);
1385 free(build_id_filename
);
1387 if (dso
->has_build_id
)
1392 build_id_path
= strdup(filename
);
1397 * old style build-id cache has name of XX/XXXXXXX.. while
1398 * new style has XX/XXXXXXX../{elf,kallsyms,vdso}.
1399 * extract the build-id part of dirname in the new style only.
1401 pos
= strrchr(build_id_path
, '/');
1402 if (pos
&& strlen(pos
) < SBUILD_ID_SIZE
- 2)
1403 dirname(build_id_path
);
1405 if (dso__is_kcore(dso
) ||
1406 readlink(build_id_path
, linkname
, sizeof(linkname
)) < 0 ||
1407 strstr(linkname
, DSO__NAME_KALLSYMS
) ||
1408 access(filename
, R_OK
)) {
1411 * If we don't have build-ids or the build-id file isn't in the
1412 * cache, or is just a kallsyms file, well, lets hope that this
1413 * DSO is the same as when 'perf record' ran.
1415 __symbol__join_symfs(filename
, filename_size
, dso
->long_name
);
1418 free(build_id_path
);
1422 static int symbol__disassemble(struct symbol
*sym
, struct annotate_args
*args
)
1424 struct map
*map
= args
->map
;
1425 struct dso
*dso
= map
->dso
;
1426 char command
[PATH_MAX
* 2];
1428 char symfs_filename
[PATH_MAX
];
1429 struct kcore_extract kce
;
1430 bool delete_extract
= false;
1435 int err
= dso__disassemble_filename(dso
, symfs_filename
, sizeof(symfs_filename
));
1440 pr_debug("%s: filename=%s, sym=%s, start=%#" PRIx64
", end=%#" PRIx64
"\n", __func__
,
1441 symfs_filename
, sym
->name
, map
->unmap_ip(map
, sym
->start
),
1442 map
->unmap_ip(map
, sym
->end
));
1444 pr_debug("annotating [%p] %30s : [%p] %30s\n",
1445 dso
, dso
->long_name
, sym
, sym
->name
);
1447 if (dso__is_kcore(dso
)) {
1448 kce
.kcore_filename
= symfs_filename
;
1449 kce
.addr
= map__rip_2objdump(map
, sym
->start
);
1450 kce
.offs
= sym
->start
;
1451 kce
.len
= sym
->end
- sym
->start
;
1452 if (!kcore_extract__create(&kce
)) {
1453 delete_extract
= true;
1454 strlcpy(symfs_filename
, kce
.extract_filename
,
1455 sizeof(symfs_filename
));
1457 } else if (dso__needs_decompress(dso
)) {
1458 char tmp
[KMOD_DECOMP_LEN
];
1460 if (dso__decompress_kmodule_path(dso
, symfs_filename
,
1461 tmp
, sizeof(tmp
)) < 0)
1464 strcpy(symfs_filename
, tmp
);
1467 snprintf(command
, sizeof(command
),
1468 "%s %s%s --start-address=0x%016" PRIx64
1469 " --stop-address=0x%016" PRIx64
1470 " -l -d %s %s -C \"%s\" 2>/dev/null|grep -v \"%s:\"|expand",
1471 objdump_path
? objdump_path
: "objdump",
1472 disassembler_style
? "-M " : "",
1473 disassembler_style
? disassembler_style
: "",
1474 map__rip_2objdump(map
, sym
->start
),
1475 map__rip_2objdump(map
, sym
->end
),
1476 symbol_conf
.annotate_asm_raw
? "" : "--no-show-raw",
1477 symbol_conf
.annotate_src
? "-S" : "",
1478 symfs_filename
, symfs_filename
);
1480 pr_debug("Executing: %s\n", command
);
1483 if (pipe(stdout_fd
) < 0) {
1484 pr_err("Failure creating the pipe to run %s\n", command
);
1485 goto out_remove_tmp
;
1490 pr_err("Failure forking to run %s\n", command
);
1491 goto out_close_stdout
;
1495 close(stdout_fd
[0]);
1496 dup2(stdout_fd
[1], 1);
1497 close(stdout_fd
[1]);
1498 execl("/bin/sh", "sh", "-c", command
, NULL
);
1503 close(stdout_fd
[1]);
1505 file
= fdopen(stdout_fd
[0], "r");
1507 pr_err("Failure creating FILE stream for %s\n", command
);
1509 * If we were using debug info should retry with
1512 goto out_remove_tmp
;
1516 while (!feof(file
)) {
1518 * The source code line number (lineno) needs to be kept in
1519 * accross calls to symbol__parse_objdump_line(), so that it
1520 * can associate it with the instructions till the next one.
1521 * See disasm_line__new() and struct disasm_line::line_nr.
1523 if (symbol__parse_objdump_line(sym
, file
, args
, &lineno
) < 0)
1529 pr_err("No output from %s\n", command
);
1532 * kallsyms does not have symbol sizes so there may a nop at the end.
1535 if (dso__is_kcore(dso
))
1536 delete_last_nop(sym
);
1541 close(stdout_fd
[0]);
1543 if (dso__needs_decompress(dso
))
1544 unlink(symfs_filename
);
1547 kcore_extract__delete(&kce
);
1552 close(stdout_fd
[1]);
1553 goto out_remove_tmp
;
1556 static void calc_percent(struct sym_hist
*hist
,
1557 struct annotation_data
*sample
,
1558 s64 offset
, s64 end
)
1560 unsigned int hits
= 0;
1563 while (offset
< end
) {
1564 hits
+= hist
->addr
[offset
].nr_samples
;
1565 period
+= hist
->addr
[offset
].period
;
1569 if (hist
->nr_samples
) {
1570 sample
->he
.period
= period
;
1571 sample
->he
.nr_samples
= hits
;
1572 sample
->percent
= 100.0 * hits
/ hist
->nr_samples
;
1576 static void annotation__calc_percent(struct annotation
*notes
,
1577 struct perf_evsel
*evsel
, s64 len
)
1579 struct annotation_line
*al
, *next
;
1581 list_for_each_entry(al
, ¬es
->src
->source
, node
) {
1585 if (al
->offset
== -1)
1588 next
= annotation_line__next(al
, ¬es
->src
->source
);
1589 end
= next
? next
->offset
: len
;
1591 for (i
= 0; i
< al
->samples_nr
; i
++) {
1592 struct annotation_data
*sample
;
1593 struct sym_hist
*hist
;
1595 hist
= annotation__histogram(notes
, evsel
->idx
+ i
);
1596 sample
= &al
->samples
[i
];
1598 calc_percent(hist
, sample
, al
->offset
, end
);
1603 void symbol__calc_percent(struct symbol
*sym
, struct perf_evsel
*evsel
)
1605 struct annotation
*notes
= symbol__annotation(sym
);
1607 annotation__calc_percent(notes
, evsel
, symbol__size(sym
));
1610 int symbol__annotate(struct symbol
*sym
, struct map
*map
,
1611 struct perf_evsel
*evsel
, size_t privsize
,
1612 struct arch
**parch
)
1614 struct annotate_args args
= {
1615 .privsize
= privsize
,
1619 struct perf_env
*env
= perf_evsel__env(evsel
);
1620 const char *arch_name
= perf_env__arch(env
);
1627 args
.arch
= arch
= arch__find(arch_name
);
1635 err
= arch
->init(arch
, env
? env
->cpuid
: NULL
);
1637 pr_err("%s: failed to initialize %s arch priv area\n", __func__
, arch
->name
);
1642 return symbol__disassemble(sym
, &args
);
1645 static void insert_source_line(struct rb_root
*root
, struct annotation_line
*al
)
1647 struct annotation_line
*iter
;
1648 struct rb_node
**p
= &root
->rb_node
;
1649 struct rb_node
*parent
= NULL
;
1652 while (*p
!= NULL
) {
1654 iter
= rb_entry(parent
, struct annotation_line
, rb_node
);
1656 ret
= strcmp(iter
->path
, al
->path
);
1658 for (i
= 0; i
< al
->samples_nr
; i
++)
1659 iter
->samples
[i
].percent_sum
+= al
->samples
[i
].percent
;
1666 p
= &(*p
)->rb_right
;
1669 for (i
= 0; i
< al
->samples_nr
; i
++)
1670 al
->samples
[i
].percent_sum
= al
->samples
[i
].percent
;
1672 rb_link_node(&al
->rb_node
, parent
, p
);
1673 rb_insert_color(&al
->rb_node
, root
);
1676 static int cmp_source_line(struct annotation_line
*a
, struct annotation_line
*b
)
1680 for (i
= 0; i
< a
->samples_nr
; i
++) {
1681 if (a
->samples
[i
].percent_sum
== b
->samples
[i
].percent_sum
)
1683 return a
->samples
[i
].percent_sum
> b
->samples
[i
].percent_sum
;
1689 static void __resort_source_line(struct rb_root
*root
, struct annotation_line
*al
)
1691 struct annotation_line
*iter
;
1692 struct rb_node
**p
= &root
->rb_node
;
1693 struct rb_node
*parent
= NULL
;
1695 while (*p
!= NULL
) {
1697 iter
= rb_entry(parent
, struct annotation_line
, rb_node
);
1699 if (cmp_source_line(al
, iter
))
1702 p
= &(*p
)->rb_right
;
1705 rb_link_node(&al
->rb_node
, parent
, p
);
1706 rb_insert_color(&al
->rb_node
, root
);
1709 static void resort_source_line(struct rb_root
*dest_root
, struct rb_root
*src_root
)
1711 struct annotation_line
*al
;
1712 struct rb_node
*node
;
1714 node
= rb_first(src_root
);
1716 struct rb_node
*next
;
1718 al
= rb_entry(node
, struct annotation_line
, rb_node
);
1719 next
= rb_next(node
);
1720 rb_erase(node
, src_root
);
1722 __resort_source_line(dest_root
, al
);
1727 static void print_summary(struct rb_root
*root
, const char *filename
)
1729 struct annotation_line
*al
;
1730 struct rb_node
*node
;
1732 printf("\nSorted summary for file %s\n", filename
);
1733 printf("----------------------------------------------\n\n");
1735 if (RB_EMPTY_ROOT(root
)) {
1736 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN
);
1740 node
= rb_first(root
);
1742 double percent
, percent_max
= 0.0;
1747 al
= rb_entry(node
, struct annotation_line
, rb_node
);
1748 for (i
= 0; i
< al
->samples_nr
; i
++) {
1749 percent
= al
->samples
[i
].percent_sum
;
1750 color
= get_percent_color(percent
);
1751 color_fprintf(stdout
, color
, " %7.2f", percent
);
1753 if (percent
> percent_max
)
1754 percent_max
= percent
;
1758 color
= get_percent_color(percent_max
);
1759 color_fprintf(stdout
, color
, " %s\n", path
);
1761 node
= rb_next(node
);
1765 static void symbol__annotate_hits(struct symbol
*sym
, struct perf_evsel
*evsel
)
1767 struct annotation
*notes
= symbol__annotation(sym
);
1768 struct sym_hist
*h
= annotation__histogram(notes
, evsel
->idx
);
1769 u64 len
= symbol__size(sym
), offset
;
1771 for (offset
= 0; offset
< len
; ++offset
)
1772 if (h
->addr
[offset
].nr_samples
!= 0)
1773 printf("%*" PRIx64
": %" PRIu64
"\n", BITS_PER_LONG
/ 2,
1774 sym
->start
+ offset
, h
->addr
[offset
].nr_samples
);
1775 printf("%*s: %" PRIu64
"\n", BITS_PER_LONG
/ 2, "h->nr_samples", h
->nr_samples
);
1778 static int annotated_source__addr_fmt_width(struct list_head
*lines
, u64 start
)
1781 struct annotation_line
*line
;
1783 list_for_each_entry_reverse(line
, lines
, node
) {
1784 if (line
->offset
!= -1)
1785 return scnprintf(bf
, sizeof(bf
), "%" PRIx64
, start
+ line
->offset
);
1791 int symbol__annotate_printf(struct symbol
*sym
, struct map
*map
,
1792 struct perf_evsel
*evsel
, bool full_paths
,
1793 int min_pcnt
, int max_lines
, int context
)
1795 struct dso
*dso
= map
->dso
;
1797 const char *d_filename
;
1798 const char *evsel_name
= perf_evsel__name(evsel
);
1799 struct annotation
*notes
= symbol__annotation(sym
);
1800 struct sym_hist
*h
= annotation__histogram(notes
, evsel
->idx
);
1801 struct annotation_line
*pos
, *queue
= NULL
;
1802 u64 start
= map__rip_2objdump(map
, sym
->start
);
1803 int printed
= 2, queue_len
= 0, addr_fmt_width
;
1806 int width
= symbol_conf
.show_total_period
? 12 : 8;
1807 int graph_dotted_len
;
1809 filename
= strdup(dso
->long_name
);
1814 d_filename
= filename
;
1816 d_filename
= basename(filename
);
1818 len
= symbol__size(sym
);
1820 if (perf_evsel__is_group_event(evsel
))
1821 width
*= evsel
->nr_members
;
1823 graph_dotted_len
= printf(" %-*.*s| Source code & Disassembly of %s for %s (%" PRIu64
" samples)\n",
1824 width
, width
, symbol_conf
.show_total_period
? "Period" :
1825 symbol_conf
.show_nr_samples
? "Samples" : "Percent",
1826 d_filename
, evsel_name
, h
->nr_samples
);
1828 printf("%-*.*s----\n",
1829 graph_dotted_len
, graph_dotted_len
, graph_dotted_line
);
1832 symbol__annotate_hits(sym
, evsel
);
1834 addr_fmt_width
= annotated_source__addr_fmt_width(¬es
->src
->source
, start
);
1836 list_for_each_entry(pos
, ¬es
->src
->source
, node
) {
1839 if (context
&& queue
== NULL
) {
1844 err
= annotation_line__print(pos
, sym
, start
, evsel
, len
,
1845 min_pcnt
, printed
, max_lines
,
1846 queue
, addr_fmt_width
);
1852 printed
+= queue_len
;
1858 /* filtered by max_lines */
1864 * Filtered by min_pcnt or non IP lines when
1869 if (queue_len
== context
)
1870 queue
= list_entry(queue
->node
.next
, typeof(*queue
), node
);
1882 void symbol__annotate_zero_histogram(struct symbol
*sym
, int evidx
)
1884 struct annotation
*notes
= symbol__annotation(sym
);
1885 struct sym_hist
*h
= annotation__histogram(notes
, evidx
);
1887 memset(h
, 0, notes
->src
->sizeof_sym_hist
);
1890 void symbol__annotate_decay_histogram(struct symbol
*sym
, int evidx
)
1892 struct annotation
*notes
= symbol__annotation(sym
);
1893 struct sym_hist
*h
= annotation__histogram(notes
, evidx
);
1894 int len
= symbol__size(sym
), offset
;
1897 for (offset
= 0; offset
< len
; ++offset
) {
1898 h
->addr
[offset
].nr_samples
= h
->addr
[offset
].nr_samples
* 7 / 8;
1899 h
->nr_samples
+= h
->addr
[offset
].nr_samples
;
1903 void annotated_source__purge(struct annotated_source
*as
)
1905 struct annotation_line
*al
, *n
;
1907 list_for_each_entry_safe(al
, n
, &as
->source
, node
) {
1908 list_del(&al
->node
);
1909 disasm_line__free(disasm_line(al
));
1913 static size_t disasm_line__fprintf(struct disasm_line
*dl
, FILE *fp
)
1917 if (dl
->al
.offset
== -1)
1918 return fprintf(fp
, "%s\n", dl
->al
.line
);
1920 printed
= fprintf(fp
, "%#" PRIx64
" %s", dl
->al
.offset
, dl
->ins
.name
);
1922 if (dl
->ops
.raw
[0] != '\0') {
1923 printed
+= fprintf(fp
, "%.*s %s\n", 6 - (int)printed
, " ",
1927 return printed
+ fprintf(fp
, "\n");
1930 size_t disasm__fprintf(struct list_head
*head
, FILE *fp
)
1932 struct disasm_line
*pos
;
1935 list_for_each_entry(pos
, head
, al
.node
)
1936 printed
+= disasm_line__fprintf(pos
, fp
);
1941 static void annotation__calc_lines(struct annotation
*notes
, struct map
*map
,
1942 struct rb_root
*root
, u64 start
)
1944 struct annotation_line
*al
;
1945 struct rb_root tmp_root
= RB_ROOT
;
1947 list_for_each_entry(al
, ¬es
->src
->source
, node
) {
1948 double percent_max
= 0.0;
1951 for (i
= 0; i
< al
->samples_nr
; i
++) {
1952 struct annotation_data
*sample
;
1954 sample
= &al
->samples
[i
];
1956 if (sample
->percent
> percent_max
)
1957 percent_max
= sample
->percent
;
1960 if (percent_max
<= 0.5)
1963 al
->path
= get_srcline(map
->dso
, start
+ al
->offset
, NULL
,
1964 false, true, start
+ al
->offset
);
1965 insert_source_line(&tmp_root
, al
);
1968 resort_source_line(root
, &tmp_root
);
1971 static void symbol__calc_lines(struct symbol
*sym
, struct map
*map
,
1972 struct rb_root
*root
)
1974 struct annotation
*notes
= symbol__annotation(sym
);
1975 u64 start
= map__rip_2objdump(map
, sym
->start
);
1977 annotation__calc_lines(notes
, map
, root
, start
);
1980 int symbol__tty_annotate(struct symbol
*sym
, struct map
*map
,
1981 struct perf_evsel
*evsel
, bool print_lines
,
1982 bool full_paths
, int min_pcnt
, int max_lines
)
1984 struct dso
*dso
= map
->dso
;
1985 struct rb_root source_line
= RB_ROOT
;
1987 if (symbol__annotate(sym
, map
, evsel
, 0, NULL
) < 0)
1990 symbol__calc_percent(sym
, evsel
);
1993 srcline_full_filename
= full_paths
;
1994 symbol__calc_lines(sym
, map
, &source_line
);
1995 print_summary(&source_line
, dso
->long_name
);
1998 symbol__annotate_printf(sym
, map
, evsel
, full_paths
,
1999 min_pcnt
, max_lines
, 0);
2001 annotated_source__purge(symbol__annotation(sym
)->src
);
2006 bool ui__has_annotation(void)
2008 return use_browser
== 1 && perf_hpp_list
.sym
;