1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_ANNOTATE_H
3 #define __PERF_ANNOTATE_H
7 #include <linux/types.h>
11 #include <linux/list.h>
12 #include <linux/rbtree.h>
39 struct ins_operands
*ops
;
47 void (*free
)(struct ins_operands
*ops
);
48 int (*parse
)(struct arch
*arch
, struct ins_operands
*ops
, struct map
*map
);
49 int (*scnprintf
)(struct ins
*ins
, char *bf
, size_t size
,
50 struct ins_operands
*ops
);
53 bool ins__is_jump(const struct ins
*ins
);
54 bool ins__is_call(const struct ins
*ins
);
55 bool ins__is_ret(const struct ins
*ins
);
56 bool ins__is_lock(const struct ins
*ins
);
57 int ins__scnprintf(struct ins
*ins
, char *bf
, size_t size
, struct ins_operands
*ops
);
58 bool ins__is_fused(struct arch
*arch
, const char *ins1
, const char *ins2
);
62 struct sym_hist_entry
{
67 struct annotation_data
{
70 struct sym_hist_entry he
;
73 struct annotation_line
{
74 struct list_head node
;
75 struct rb_node rb_node
;
84 struct annotation_data samples
[0];
89 struct ins_operands ops
;
91 /* This needs to be at the end. */
92 struct annotation_line al
;
95 static inline struct disasm_line
*disasm_line(struct annotation_line
*al
)
97 return al
? container_of(al
, struct disasm_line
, al
) : NULL
;
100 static inline bool disasm_line__has_offset(const struct disasm_line
*dl
)
102 return dl
->ops
.target
.offset_avail
;
105 void disasm_line__free(struct disasm_line
*dl
);
106 struct annotation_line
*
107 annotation_line__next(struct annotation_line
*pos
, struct list_head
*head
);
108 int disasm_line__scnprintf(struct disasm_line
*dl
, char *bf
, size_t size
, bool raw
);
109 size_t disasm__fprintf(struct list_head
*head
, FILE *fp
);
110 void symbol__calc_percent(struct symbol
*sym
, struct perf_evsel
*evsel
);
115 struct sym_hist_entry addr
[0];
129 /** struct annotated_source - symbols with hits have this attached as in sannotation
131 * @histogram: Array of addr hit histograms per event being monitored
132 * @lines: If 'print_lines' is specified, per source code line percentages
133 * @source: source parsed from a disassembler like objdump -dS
134 * @cyc_hist: Average cycles per basic block
136 * lines is allocated, percentages calculated and all sorted by percentage
137 * when the annotation is about to be presented, so the percentages are for
138 * one of the entries in the histogram array, i.e. for the event/counter being
139 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate
142 struct annotated_source
{
143 struct list_head source
;
145 size_t sizeof_sym_hist
;
146 struct cyc_hist
*cycles_hist
;
147 struct sym_hist histograms
[0];
151 pthread_mutex_t lock
;
153 struct annotated_source
*src
;
156 static inline struct sym_hist
*annotation__histogram(struct annotation
*notes
, int idx
)
158 return (((void *)¬es
->src
->histograms
) +
159 (notes
->src
->sizeof_sym_hist
* idx
));
162 static inline struct annotation
*symbol__annotation(struct symbol
*sym
)
164 return (void *)sym
- symbol_conf
.priv_size
;
167 int addr_map_symbol__inc_samples(struct addr_map_symbol
*ams
, struct perf_sample
*sample
,
170 int addr_map_symbol__account_cycles(struct addr_map_symbol
*ams
,
171 struct addr_map_symbol
*start
,
174 int hist_entry__inc_addr_samples(struct hist_entry
*he
, struct perf_sample
*sample
,
175 int evidx
, u64 addr
);
177 int symbol__alloc_hist(struct symbol
*sym
);
178 void symbol__annotate_zero_histograms(struct symbol
*sym
);
180 int symbol__annotate(struct symbol
*sym
, struct map
*map
,
181 struct perf_evsel
*evsel
, size_t privsize
,
182 struct arch
**parch
);
184 enum symbol_disassemble_errno
{
185 SYMBOL_ANNOTATE_ERRNO__SUCCESS
= 0,
188 * Choose an arbitrary negative big number not to clash with standard
189 * errno since SUS requires the errno has distinct positive values.
190 * See 'Issue 6' in the link below.
192 * http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html
194 __SYMBOL_ANNOTATE_ERRNO__START
= -10000,
196 SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX
= __SYMBOL_ANNOTATE_ERRNO__START
,
198 __SYMBOL_ANNOTATE_ERRNO__END
,
201 int symbol__strerror_disassemble(struct symbol
*sym
, struct map
*map
,
202 int errnum
, char *buf
, size_t buflen
);
204 int symbol__annotate_printf(struct symbol
*sym
, struct map
*map
,
205 struct perf_evsel
*evsel
, bool full_paths
,
206 int min_pcnt
, int max_lines
, int context
);
207 void symbol__annotate_zero_histogram(struct symbol
*sym
, int evidx
);
208 void symbol__annotate_decay_histogram(struct symbol
*sym
, int evidx
);
209 void annotated_source__purge(struct annotated_source
*as
);
211 bool ui__has_annotation(void);
213 int symbol__tty_annotate(struct symbol
*sym
, struct map
*map
,
214 struct perf_evsel
*evsel
, bool print_lines
,
215 bool full_paths
, int min_pcnt
, int max_lines
);
217 #ifdef HAVE_SLANG_SUPPORT
218 int symbol__tui_annotate(struct symbol
*sym
, struct map
*map
,
219 struct perf_evsel
*evsel
,
220 struct hist_browser_timer
*hbt
);
222 static inline int symbol__tui_annotate(struct symbol
*sym __maybe_unused
,
223 struct map
*map __maybe_unused
,
224 struct perf_evsel
*evsel __maybe_unused
,
225 struct hist_browser_timer
*hbt
232 extern const char *disassembler_style
;
234 #endif /* __PERF_ANNOTATE_H */