blob: ce427445671f5b85278d87b868e048d0d9dbc92c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02002#ifndef __PERF_ANNOTATE_H
3#define __PERF_ANNOTATE_H
4
5#include <stdbool.h>
Arnaldo Carvalho de Melofb29fa52012-04-25 14:16:03 -03006#include <stdint.h>
Borislav Petkovd944c4e2014-04-25 21:31:02 +02007#include <linux/types.h>
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02008#include "symbol.h"
Namhyung Kim9783adf2012-11-02 14:50:05 +09009#include "hist.h"
Namhyung Kim2b676bf2013-02-07 18:02:08 +090010#include "sort.h"
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020011#include <linux/list.h>
12#include <linux/rbtree.h>
Irina Tirdea27683dc2012-09-08 03:43:19 +030013#include <pthread.h>
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020014
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -030015struct ins_ops;
16
17struct ins {
18 const char *name;
19 struct ins_ops *ops;
20};
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -030021
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030022struct ins_operands {
23 char *raw;
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -030024 struct {
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -030025 char *raw;
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -030026 char *name;
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -030027 u64 addr;
Ravi Bangoriae2168742016-12-05 21:26:47 +053028 s64 offset;
29 bool offset_avail;
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -030030 } target;
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -030031 union {
32 struct {
33 char *raw;
34 char *name;
35 u64 addr;
36 } source;
37 struct {
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -030038 struct ins ins;
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -030039 struct ins_operands *ops;
40 } locked;
41 };
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030042};
43
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -030044struct arch;
45
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030046struct ins_ops {
Arnaldo Carvalho de Meloc46219ac2012-05-12 13:26:20 -030047 void (*free)(struct ins_operands *ops);
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -030048 int (*parse)(struct arch *arch, struct ins_operands *ops, struct map *map);
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -030049 int (*scnprintf)(struct ins *ins, char *bf, size_t size,
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -030050 struct ins_operands *ops);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030051};
52
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030053bool ins__is_jump(const struct ins *ins);
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -030054bool ins__is_call(const struct ins *ins);
Naveen N. Rao6ef94922016-06-24 17:23:58 +053055bool ins__is_ret(const struct ins *ins);
Jin Yao7e63a132017-07-07 13:06:35 +080056bool ins__is_lock(const struct ins *ins);
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -030057int ins__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops);
Jin Yao69fb09f2017-07-07 13:06:34 +080058bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030059
Namhyung Kime64aa752013-03-05 14:53:30 +090060struct annotation;
61
Jiri Olsa7e304552017-10-11 17:01:39 +020062struct sym_hist_entry {
63 u64 nr_samples;
64 u64 period;
65};
66
67struct annotation_data {
68 double percent;
Jiri Olsa8b4c74d2017-10-11 17:01:41 +020069 double percent_sum;
Jiri Olsa7e304552017-10-11 17:01:39 +020070 struct sym_hist_entry he;
71};
72
Jiri Olsaa17c4ca2017-10-11 17:01:25 +020073struct annotation_line {
74 struct list_head node;
Jiri Olsa5b12adc2017-10-11 17:01:36 +020075 struct rb_node rb_node;
Jiri Olsad5490b92017-10-11 17:01:26 +020076 s64 offset;
77 char *line;
78 int line_nr;
Jiri Olsa37236d52017-10-11 17:01:27 +020079 float ipc;
80 u64 cycles;
Jiri Olsac835e192017-10-11 17:01:37 +020081 size_t privsize;
Jiri Olsa8b4c74d2017-10-11 17:01:41 +020082 char *path;
Jiri Olsa7e304552017-10-11 17:01:39 +020083 int samples_nr;
84 struct annotation_data samples[0];
Jiri Olsaa17c4ca2017-10-11 17:01:25 +020085};
86
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030087struct disasm_line {
Jiri Olsaa17c4ca2017-10-11 17:01:25 +020088 struct ins ins;
Jiri Olsaa17c4ca2017-10-11 17:01:25 +020089 struct ins_operands ops;
Jiri Olsac835e192017-10-11 17:01:37 +020090
91 /* This needs to be at the end. */
92 struct annotation_line al;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020093};
94
Jiri Olsac835e192017-10-11 17:01:37 +020095static inline struct disasm_line *disasm_line(struct annotation_line *al)
96{
97 return al ? container_of(al, struct disasm_line, al) : NULL;
98}
99
Arnaldo Carvalho de Melofb29fa52012-04-25 14:16:03 -0300100static inline bool disasm_line__has_offset(const struct disasm_line *dl)
101{
Ravi Bangoriae2168742016-12-05 21:26:47 +0530102 return dl->ops.target.offset_avail;
Arnaldo Carvalho de Melofb29fa52012-04-25 14:16:03 -0300103}
104
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -0300105void disasm_line__free(struct disasm_line *dl);
Jiri Olsac4c72432017-10-11 17:01:34 +0200106struct annotation_line *
107annotation_line__next(struct annotation_line *pos, struct list_head *head);
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -0300108int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -0300109size_t disasm__fprintf(struct list_head *head, FILE *fp);
Jiri Olsa9e4e0a92017-11-15 12:05:59 +0100110void symbol__calc_percent(struct symbol *sym, struct perf_evsel *evsel);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200111
112struct sym_hist {
Taeung Song8158683d2017-07-20 06:36:51 +0900113 u64 nr_samples;
Taeung Song461c17f2017-07-20 17:18:05 -0300114 u64 period;
Taeung Song896bccd2017-07-20 06:36:45 +0900115 struct sym_hist_entry addr[0];
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200116};
117
Andi Kleend4957632015-07-18 08:24:48 -0700118struct 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
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200129/** struct annotated_source - symbols with hits have this attached as in sannotation
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200130 *
131 * @histogram: Array of addr hit histograms per event being monitored
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200132 * @lines: If 'print_lines' is specified, per source code line percentages
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -0300133 * @source: source parsed from a disassembler like objdump -dS
Andi Kleend4957632015-07-18 08:24:48 -0700134 * @cyc_hist: Average cycles per basic block
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200135 *
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200136 * lines is allocated, percentages calculated and all sorted by percentage
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200137 * 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 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200142struct annotated_source {
143 struct list_head source;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200144 int nr_histograms;
Jiri Olsa5ec45022015-10-05 20:06:03 +0200145 size_t sizeof_sym_hist;
Andi Kleend4957632015-07-18 08:24:48 -0700146 struct cyc_hist *cycles_hist;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200147 struct sym_hist histograms[0];
148};
149
150struct annotation {
151 pthread_mutex_t lock;
Peter Zijlstra70fbe052016-09-05 16:08:12 -0300152 u64 max_coverage;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200153 struct annotated_source *src;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200154};
155
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200156static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
157{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200158 return (((void *)&notes->src->histograms) +
159 (notes->src->sizeof_sym_hist * idx));
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200160}
161
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200162static inline struct annotation *symbol__annotation(struct symbol *sym)
163{
Namhyung Kim813ccd12015-01-14 20:18:05 +0900164 return (void *)sym - symbol_conf.priv_size;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200165}
166
Taeung Songbab89f62017-07-20 16:28:53 -0300167int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample,
168 int evidx);
Arnaldo Carvalho de Melo0f4e7a22013-12-18 16:48:29 -0300169
Andi Kleend4957632015-07-18 08:24:48 -0700170int addr_map_symbol__account_cycles(struct addr_map_symbol *ams,
171 struct addr_map_symbol *start,
172 unsigned cycles);
173
Taeung Songbab89f62017-07-20 16:28:53 -0300174int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample,
175 int evidx, u64 addr);
Arnaldo Carvalho de Melof626adf2013-12-18 17:10:15 -0300176
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200177int symbol__alloc_hist(struct symbol *sym);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200178void symbol__annotate_zero_histograms(struct symbol *sym);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200179
Jiri Olsac34df252017-10-11 17:01:28 +0200180int symbol__annotate(struct symbol *sym, struct map *map,
Jiri Olsad03a6862017-10-11 17:01:33 +0200181 struct perf_evsel *evsel, size_t privsize,
Arnaldo Carvalho de Melo5449f132017-12-11 12:46:11 -0300182 struct arch **parch);
Arnaldo Carvalho de Melof626adf2013-12-18 17:10:15 -0300183
Arnaldo Carvalho de Meloee51d852016-07-29 16:27:18 -0300184enum 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
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900204int 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);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200207void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200208void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
Jiri Olsaf8eb37b2017-10-11 17:01:38 +0200209void annotated_source__purge(struct annotated_source *as);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200210
Namhyung Kim48c65bd2014-02-20 10:32:53 +0900211bool ui__has_annotation(void);
212
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900213int 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);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200216
Ingo Molnar89fe8082013-09-30 12:07:11 +0200217#ifdef HAVE_SLANG_SUPPORT
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900218int symbol__tui_annotate(struct symbol *sym, struct map *map,
219 struct perf_evsel *evsel,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900220 struct hist_browser_timer *hbt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900221#else
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300222static inline int symbol__tui_annotate(struct symbol *sym __maybe_unused,
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900223 struct map *map __maybe_unused,
224 struct perf_evsel *evsel __maybe_unused,
225 struct hist_browser_timer *hbt
226 __maybe_unused)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200227{
228 return 0;
229}
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200230#endif
231
Andi Kleenf69b64f2011-09-15 14:31:41 -0700232extern const char *disassembler_style;
233
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200234#endif /* __PERF_ANNOTATE_H */