blob: 8a8af0d82b07ea93c5d6b942fd87a50f1b4ac0b9 [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>
5#include "types.h"
6#include "symbol.h"
7#include <linux/list.h>
8#include <linux/rbtree.h>
9
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -030010struct ins;
11
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030012struct ins_operands {
13 char *raw;
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -030014 char *target_name;
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030015 u64 target;
16};
17
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030018struct ins_ops {
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030019 int (*parse)(struct ins_operands *ops);
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -030020 int (*scnprintf)(struct ins *ins, char *bf, size_t size,
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030021 struct ins_operands *ops, bool addrs);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030022};
23
24struct ins {
25 const char *name;
26 struct ins_ops *ops;
27};
28
29bool ins__is_jump(const struct ins *ins);
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -030030bool ins__is_call(const struct ins *ins);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030031
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030032struct disasm_line {
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030033 struct list_head node;
34 s64 offset;
35 char *line;
36 char *name;
37 struct ins *ins;
38 struct ins_operands ops;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020039};
40
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030041void disasm_line__free(struct disasm_line *dl);
42struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -030043size_t disasm__fprintf(struct list_head *head, FILE *fp);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020044
45struct sym_hist {
46 u64 sum;
47 u64 addr[0];
48};
49
50struct source_line {
51 struct rb_node node;
52 double percent;
53 char *path;
54};
55
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020056/** struct annotated_source - symbols with hits have this attached as in sannotation
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020057 *
58 * @histogram: Array of addr hit histograms per event being monitored
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020059 * @lines: If 'print_lines' is specified, per source code line percentages
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030060 * @source: source parsed from a disassembler like objdump -dS
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020061 *
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020062 * lines is allocated, percentages calculated and all sorted by percentage
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020063 * when the annotation is about to be presented, so the percentages are for
64 * one of the entries in the histogram array, i.e. for the event/counter being
65 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate
66 * returns.
67 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020068struct annotated_source {
69 struct list_head source;
70 struct source_line *lines;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020071 int nr_histograms;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020072 int sizeof_sym_hist;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020073 struct sym_hist histograms[0];
74};
75
76struct annotation {
77 pthread_mutex_t lock;
78 struct annotated_source *src;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020079};
80
81struct sannotation {
82 struct annotation annotation;
83 struct symbol symbol;
84};
85
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020086static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
87{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020088 return (((void *)&notes->src->histograms) +
89 (notes->src->sizeof_sym_hist * idx));
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020090}
91
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020092static inline struct annotation *symbol__annotation(struct symbol *sym)
93{
94 struct sannotation *a = container_of(sym, struct sannotation, symbol);
95 return &a->annotation;
96}
97
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020098int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
99 int evidx, u64 addr);
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200100int symbol__alloc_hist(struct symbol *sym);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200101void symbol__annotate_zero_histograms(struct symbol *sym);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200102
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200103int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
104int symbol__annotate_init(struct map *map __used, struct symbol *sym);
105int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -0200106 bool full_paths, int min_pcnt, int max_lines,
107 int context);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200108void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200109void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -0300110void disasm__purge(struct list_head *head);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200111
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200112int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod040bd32011-02-05 15:37:31 -0200113 bool print_lines, bool full_paths, int min_pcnt,
114 int max_lines);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200115
116#ifdef NO_NEWT_SUPPORT
Borislav Petkova2221792011-02-07 15:32:18 +0100117static inline int symbol__tui_annotate(struct symbol *sym __used,
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300118 struct map *map __used,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300119 int evidx __used,
120 void(*timer)(void *arg) __used,
121 void *arg __used, int delay_secs __used)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200122{
123 return 0;
124}
125#else
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300126int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200127 void(*timer)(void *arg), void *arg, int delay_secs);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200128#endif
129
Andi Kleenf69b64f2011-09-15 14:31:41 -0700130extern const char *disassembler_style;
131
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200132#endif /* __PERF_ANNOTATE_H */