blob: af755156d2785b7963d834adcd5e1ee3cc07b4be [file] [log] [blame]
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001#ifndef __PERF_ANNOTATE_H
2#define __PERF_ANNOTATE_H
3
4#include <stdbool.h>
Arnaldo Carvalho de Melofb29fa52012-04-25 14:16:03 -03005#include <stdint.h>
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02006#include "types.h"
7#include "symbol.h"
Namhyung Kim9783adf2012-11-02 14:50:05 +09008#include "hist.h"
Namhyung Kim2b676bf2013-02-07 18:02:08 +09009#include "sort.h"
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020010#include <linux/list.h>
11#include <linux/rbtree.h>
Irina Tirdea27683dc2012-09-08 03:43:19 +030012#include <pthread.h>
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020013
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -030014struct ins;
15
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030016struct ins_operands {
17 char *raw;
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -030018 struct {
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -030019 char *raw;
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -030020 char *name;
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -030021 u64 addr;
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -030022 u64 offset;
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -030023 } target;
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -030024 union {
25 struct {
26 char *raw;
27 char *name;
28 u64 addr;
29 } source;
30 struct {
31 struct ins *ins;
32 struct ins_operands *ops;
33 } locked;
34 };
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030035};
36
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030037struct ins_ops {
Arnaldo Carvalho de Meloc46219ac2012-05-12 13:26:20 -030038 void (*free)(struct ins_operands *ops);
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030039 int (*parse)(struct ins_operands *ops);
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -030040 int (*scnprintf)(struct ins *ins, char *bf, size_t size,
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -030041 struct ins_operands *ops);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030042};
43
44struct ins {
45 const char *name;
46 struct ins_ops *ops;
47};
48
49bool ins__is_jump(const struct ins *ins);
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -030050bool ins__is_call(const struct ins *ins);
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -030051int ins__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030052
Namhyung Kime64aa752013-03-05 14:53:30 +090053struct annotation;
54
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030055struct disasm_line {
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030056 struct list_head node;
57 s64 offset;
58 char *line;
59 char *name;
60 struct ins *ins;
61 struct ins_operands ops;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020062};
63
Arnaldo Carvalho de Melofb29fa52012-04-25 14:16:03 -030064static inline bool disasm_line__has_offset(const struct disasm_line *dl)
65{
66 return dl->ops.target.offset != UINT64_MAX;
67}
68
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030069void disasm_line__free(struct disasm_line *dl);
70struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos);
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -030071int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -030072size_t disasm__fprintf(struct list_head *head, FILE *fp);
Namhyung Kime64aa752013-03-05 14:53:30 +090073double disasm__calc_percent(struct annotation *notes, int evidx, s64 offset,
74 s64 end, const char **path);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020075
76struct sym_hist {
77 u64 sum;
78 u64 addr[0];
79};
80
Namhyung Kimc5a83682013-03-05 14:53:27 +090081struct source_line_percent {
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020082 double percent;
Namhyung Kim41127962012-11-09 14:58:49 +090083 double percent_sum;
Namhyung Kimc5a83682013-03-05 14:53:27 +090084};
85
86struct source_line {
87 struct rb_node node;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020088 char *path;
Namhyung Kim1491c222013-03-05 14:53:28 +090089 int nr_pcnt;
Namhyung Kimc5a83682013-03-05 14:53:27 +090090 struct source_line_percent p[1];
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020091};
92
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020093/** struct annotated_source - symbols with hits have this attached as in sannotation
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020094 *
95 * @histogram: Array of addr hit histograms per event being monitored
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020096 * @lines: If 'print_lines' is specified, per source code line percentages
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030097 * @source: source parsed from a disassembler like objdump -dS
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020098 *
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020099 * lines is allocated, percentages calculated and all sorted by percentage
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200100 * when the annotation is about to be presented, so the percentages are for
101 * one of the entries in the histogram array, i.e. for the event/counter being
102 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate
103 * returns.
104 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200105struct annotated_source {
106 struct list_head source;
107 struct source_line *lines;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200108 int nr_histograms;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200109 int sizeof_sym_hist;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200110 struct sym_hist histograms[0];
111};
112
113struct annotation {
114 pthread_mutex_t lock;
115 struct annotated_source *src;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200116};
117
118struct sannotation {
119 struct annotation annotation;
120 struct symbol symbol;
121};
122
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200123static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
124{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200125 return (((void *)&notes->src->histograms) +
126 (notes->src->sizeof_sym_hist * idx));
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200127}
128
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200129static inline struct annotation *symbol__annotation(struct symbol *sym)
130{
131 struct sannotation *a = container_of(sym, struct sannotation, symbol);
132 return &a->annotation;
133}
134
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200135int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
136 int evidx, u64 addr);
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200137int symbol__alloc_hist(struct symbol *sym);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200138void symbol__annotate_zero_histograms(struct symbol *sym);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200139
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200140int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300141int symbol__annotate_init(struct map *map __maybe_unused, struct symbol *sym);
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900142int symbol__annotate_printf(struct symbol *sym, struct map *map,
143 struct perf_evsel *evsel, bool full_paths,
144 int min_pcnt, int max_lines, int context);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200145void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200146void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -0300147void disasm__purge(struct list_head *head);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200148
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900149int symbol__tty_annotate(struct symbol *sym, struct map *map,
150 struct perf_evsel *evsel, bool print_lines,
151 bool full_paths, int min_pcnt, int max_lines);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200152
Arnaldo Carvalho de Melo6692c262013-03-28 11:34:10 -0300153#ifdef SLANG_SUPPORT
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900154int symbol__tui_annotate(struct symbol *sym, struct map *map,
155 struct perf_evsel *evsel,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900156 struct hist_browser_timer *hbt);
Namhyung Kim1254b512012-09-28 18:32:02 +0900157#else
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300158static inline int symbol__tui_annotate(struct symbol *sym __maybe_unused,
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900159 struct map *map __maybe_unused,
160 struct perf_evsel *evsel __maybe_unused,
161 struct hist_browser_timer *hbt
162 __maybe_unused)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200163{
164 return 0;
165}
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200166#endif
167
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900168#ifdef GTK2_SUPPORT
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900169int symbol__gtk_annotate(struct symbol *sym, struct map *map,
170 struct perf_evsel *evsel,
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900171 struct hist_browser_timer *hbt);
172
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900173static inline int hist_entry__gtk_annotate(struct hist_entry *he,
174 struct perf_evsel *evsel,
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900175 struct hist_browser_timer *hbt)
176{
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900177 return symbol__gtk_annotate(he->ms.sym, he->ms.map, evsel, hbt);
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900178}
Namhyung Kim7a60ba92013-02-07 18:02:09 +0900179
180void perf_gtk__show_annotations(void);
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900181#else
182static inline int hist_entry__gtk_annotate(struct hist_entry *he __maybe_unused,
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900183 struct perf_evsel *evsel __maybe_unused,
184 struct hist_browser_timer *hbt __maybe_unused)
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900185{
186 return 0;
187}
Namhyung Kim7a60ba92013-02-07 18:02:09 +0900188
189static inline void perf_gtk__show_annotations(void) {}
Namhyung Kim2b676bf2013-02-07 18:02:08 +0900190#endif
191
Andi Kleenf69b64f2011-09-15 14:31:41 -0700192extern const char *disassembler_style;
193
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200194#endif /* __PERF_ANNOTATE_H */