]> git.ipfire.org Git - thirdparty/linux.git/blame - tools/perf/util/annotate.h
perf trace: Use generated syscall table on s390 too
[thirdparty/linux.git] / tools / perf / util / annotate.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
78f7defe
ACM
2#ifndef __PERF_ANNOTATE_H
3#define __PERF_ANNOTATE_H
4
5#include <stdbool.h>
fb29fa58 6#include <stdint.h>
d944c4ee 7#include <linux/types.h>
78f7defe 8#include "symbol.h"
9783adf7 9#include "hist.h"
2b676bf0 10#include "sort.h"
78f7defe
ACM
11#include <linux/list.h>
12#include <linux/rbtree.h>
27683dc5 13#include <pthread.h>
78f7defe 14
75b49202
ACM
15struct ins_ops;
16
17struct ins {
18 const char *name;
19 struct ins_ops *ops;
20};
28548d78 21
c7e6ead7
ACM
22struct ins_operands {
23 char *raw;
44d1a3ed 24 struct {
6de783b6 25 char *raw;
44d1a3ed 26 char *name;
44d1a3ed 27 u64 addr;
e216874c
RB
28 s64 offset;
29 bool offset_avail;
44d1a3ed 30 } target;
7a997fe4
ACM
31 union {
32 struct {
33 char *raw;
34 char *name;
35 u64 addr;
36 } source;
37 struct {
75b49202 38 struct ins ins;
7a997fe4
ACM
39 struct ins_operands *ops;
40 } locked;
41 };
c7e6ead7
ACM
42};
43
786c1b51
ACM
44struct arch;
45
4f9d0325 46struct ins_ops {
c46219ac 47 void (*free)(struct ins_operands *ops);
786c1b51 48 int (*parse)(struct arch *arch, struct ins_operands *ops, struct map *map);
28548d78 49 int (*scnprintf)(struct ins *ins, char *bf, size_t size,
5417072b 50 struct ins_operands *ops);
4f9d0325
ACM
51};
52
4f9d0325 53bool ins__is_jump(const struct ins *ins);
d86b0597 54bool ins__is_call(const struct ins *ins);
6ef94929 55bool ins__is_ret(const struct ins *ins);
7e63a13a 56bool ins__is_lock(const struct ins *ins);
5417072b 57int ins__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops);
69fb09f6 58bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2);
4f9d0325 59
e64aa75b
NK
60struct annotation;
61
7e304557
JO
62struct sym_hist_entry {
63 u64 nr_samples;
64 u64 period;
65};
66
67struct annotation_data {
68 double percent;
8b4c74dc 69 double percent_sum;
7e304557
JO
70 struct sym_hist_entry he;
71};
72
a17c4ca0
JO
73struct annotation_line {
74 struct list_head node;
5b12adc8 75 struct rb_node rb_node;
d5490b96
JO
76 s64 offset;
77 char *line;
78 int line_nr;
37236d5e
JO
79 float ipc;
80 u64 cycles;
c835e191 81 size_t privsize;
8b4c74dc 82 char *path;
7e304557
JO
83 int samples_nr;
84 struct annotation_data samples[0];
a17c4ca0
JO
85};
86
29ed6e76 87struct disasm_line {
a17c4ca0 88 struct ins ins;
a17c4ca0 89 struct ins_operands ops;
c835e191
JO
90
91 /* This needs to be at the end. */
92 struct annotation_line al;
78f7defe
ACM
93};
94
c835e191
JO
95static inline struct disasm_line *disasm_line(struct annotation_line *al)
96{
97 return al ? container_of(al, struct disasm_line, al) : NULL;
98}
99
fb29fa58
ACM
100static inline bool disasm_line__has_offset(const struct disasm_line *dl)
101{
e216874c 102 return dl->ops.target.offset_avail;
fb29fa58
ACM
103}
104
29ed6e76 105void disasm_line__free(struct disasm_line *dl);
c4c72436
JO
106struct annotation_line *
107annotation_line__next(struct annotation_line *pos, struct list_head *head);
5417072b 108int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw);
5145418b 109size_t disasm__fprintf(struct list_head *head, FILE *fp);
9e4e0a9d 110void symbol__calc_percent(struct symbol *sym, struct perf_evsel *evsel);
78f7defe
ACM
111
112struct sym_hist {
8158683d 113 u64 nr_samples;
461c17f0 114 u64 period;
896bccd3 115 struct sym_hist_entry addr[0];
78f7defe
ACM
116};
117
d4957633
AK
118struct 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;
127};
128
ce6f4fab 129/** struct annotated_source - symbols with hits have this attached as in sannotation
2f525d01
ACM
130 *
131 * @histogram: Array of addr hit histograms per event being monitored
ce6f4fab 132 * @lines: If 'print_lines' is specified, per source code line percentages
29ed6e76 133 * @source: source parsed from a disassembler like objdump -dS
d4957633 134 * @cyc_hist: Average cycles per basic block
2f525d01 135 *
ce6f4fab 136 * lines is allocated, percentages calculated and all sorted by percentage
2f525d01
ACM
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.
141 */
ce6f4fab
ACM
142struct annotated_source {
143 struct list_head source;
36532461 144 int nr_histograms;
5ec4502d 145 size_t sizeof_sym_hist;
d4957633 146 struct cyc_hist *cycles_hist;
ce6f4fab
ACM
147 struct sym_hist histograms[0];
148};
149
150struct annotation {
151 pthread_mutex_t lock;
70fbe057 152 u64 max_coverage;
ce6f4fab 153 struct annotated_source *src;
78f7defe
ACM
154};
155
2f525d01
ACM
156static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
157{
ce6f4fab
ACM
158 return (((void *)&notes->src->histograms) +
159 (notes->src->sizeof_sym_hist * idx));
2f525d01
ACM
160}
161
78f7defe
ACM
162static inline struct annotation *symbol__annotation(struct symbol *sym)
163{
813ccd15 164 return (void *)sym - symbol_conf.priv_size;
78f7defe
ACM
165}
166
bab89f6a
TS
167int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample,
168 int evidx);
0f4e7a24 169
d4957633
AK
170int addr_map_symbol__account_cycles(struct addr_map_symbol *ams,
171 struct addr_map_symbol *start,
172 unsigned cycles);
173
bab89f6a
TS
174int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample,
175 int evidx, u64 addr);
f626adff 176
d04b35f8 177int symbol__alloc_hist(struct symbol *sym);
36532461 178void symbol__annotate_zero_histograms(struct symbol *sym);
78f7defe 179
c34df25b 180int symbol__annotate(struct symbol *sym, struct map *map,
d03a686e 181 struct perf_evsel *evsel, size_t privsize,
c34df25b 182 struct arch **parch, char *cpuid);
f626adff 183
ee51d851
ACM
184enum symbol_disassemble_errno {
185 SYMBOL_ANNOTATE_ERRNO__SUCCESS = 0,
186
187 /*
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.
191 *
192 * http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html
193 */
194 __SYMBOL_ANNOTATE_ERRNO__START = -10000,
195
196 SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX = __SYMBOL_ANNOTATE_ERRNO__START,
197
198 __SYMBOL_ANNOTATE_ERRNO__END,
199};
200
201int symbol__strerror_disassemble(struct symbol *sym, struct map *map,
202 int errnum, char *buf, size_t buflen);
203
db8fd07a
NK
204int 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);
36532461 207void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
ce6f4fab 208void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
f8eb37bd 209void annotated_source__purge(struct annotated_source *as);
78f7defe 210
48c65bda
NK
211bool ui__has_annotation(void);
212
db8fd07a
NK
213int 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);
78f7defe 216
89fe808a 217#ifdef HAVE_SLANG_SUPPORT
db8fd07a
NK
218int symbol__tui_annotate(struct symbol *sym, struct map *map,
219 struct perf_evsel *evsel,
9783adf7 220 struct hist_browser_timer *hbt);
1254b51e 221#else
1d037ca1 222static inline int symbol__tui_annotate(struct symbol *sym __maybe_unused,
db8fd07a
NK
223 struct map *map __maybe_unused,
224 struct perf_evsel *evsel __maybe_unused,
225 struct hist_browser_timer *hbt
226 __maybe_unused)
78f7defe
ACM
227{
228 return 0;
229}
78f7defe
ACM
230#endif
231
f69b64f7
AK
232extern const char *disassembler_style;
233
78f7defe 234#endif /* __PERF_ANNOTATE_H */