Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / tools / perf / util / annotate.h
blobce427445671f5b85278d87b868e048d0d9dbc92c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_ANNOTATE_H
3 #define __PERF_ANNOTATE_H
5 #include <stdbool.h>
6 #include <stdint.h>
7 #include <linux/types.h>
8 #include "symbol.h"
9 #include "hist.h"
10 #include "sort.h"
11 #include <linux/list.h>
12 #include <linux/rbtree.h>
13 #include <pthread.h>
15 struct ins_ops;
17 struct ins {
18 const char *name;
19 struct ins_ops *ops;
22 struct ins_operands {
23 char *raw;
24 struct {
25 char *raw;
26 char *name;
27 u64 addr;
28 s64 offset;
29 bool offset_avail;
30 } target;
31 union {
32 struct {
33 char *raw;
34 char *name;
35 u64 addr;
36 } source;
37 struct {
38 struct ins ins;
39 struct ins_operands *ops;
40 } locked;
44 struct arch;
46 struct ins_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);
60 struct annotation;
62 struct sym_hist_entry {
63 u64 nr_samples;
64 u64 period;
67 struct annotation_data {
68 double percent;
69 double percent_sum;
70 struct sym_hist_entry he;
73 struct annotation_line {
74 struct list_head node;
75 struct rb_node rb_node;
76 s64 offset;
77 char *line;
78 int line_nr;
79 float ipc;
80 u64 cycles;
81 size_t privsize;
82 char *path;
83 int samples_nr;
84 struct annotation_data samples[0];
87 struct disasm_line {
88 struct ins ins;
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);
112 struct sym_hist {
113 u64 nr_samples;
114 u64 period;
115 struct sym_hist_entry addr[0];
118 struct cyc_hist {
119 u64 start;
120 u64 cycles;
121 u64 cycles_aggr;
122 u32 num;
123 u32 num_aggr;
124 u8 have_start;
125 /* 1 byte padding */
126 u16 reset;
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
140 * returns.
142 struct annotated_source {
143 struct list_head source;
144 int nr_histograms;
145 size_t sizeof_sym_hist;
146 struct cyc_hist *cycles_hist;
147 struct sym_hist histograms[0];
150 struct annotation {
151 pthread_mutex_t lock;
152 u64 max_coverage;
153 struct annotated_source *src;
156 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
158 return (((void *)&notes->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,
168 int evidx);
170 int addr_map_symbol__account_cycles(struct addr_map_symbol *ams,
171 struct addr_map_symbol *start,
172 unsigned cycles);
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);
221 #else
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
226 __maybe_unused)
228 return 0;
230 #endif
232 extern const char *disassembler_style;
234 #endif /* __PERF_ANNOTATE_H */