blob: a6f60d5c51382baa77bc92504269fb217ea25498 [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;
14 u64 target;
15};
16
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030017struct ins_ops {
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030018 int (*parse)(struct ins_operands *ops);
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -030019 int (*scnprintf)(struct ins *ins, char *bf, size_t size,
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030020 struct ins_operands *ops, bool addrs);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030021};
22
23struct ins {
24 const char *name;
25 struct ins_ops *ops;
26};
27
28bool ins__is_jump(const struct ins *ins);
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -030029bool ins__is_call(const struct ins *ins);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030030
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030031struct disasm_line {
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030032 struct list_head node;
33 s64 offset;
34 char *line;
35 char *name;
36 struct ins *ins;
37 struct ins_operands ops;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020038};
39
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030040void disasm_line__free(struct disasm_line *dl);
41struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -030042size_t disasm__fprintf(struct list_head *head, FILE *fp);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020043
44struct sym_hist {
45 u64 sum;
46 u64 addr[0];
47};
48
49struct source_line {
50 struct rb_node node;
51 double percent;
52 char *path;
53};
54
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020055/** struct annotated_source - symbols with hits have this attached as in sannotation
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020056 *
57 * @histogram: Array of addr hit histograms per event being monitored
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020058 * @lines: If 'print_lines' is specified, per source code line percentages
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030059 * @source: source parsed from a disassembler like objdump -dS
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020060 *
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020061 * lines is allocated, percentages calculated and all sorted by percentage
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020062 * when the annotation is about to be presented, so the percentages are for
63 * one of the entries in the histogram array, i.e. for the event/counter being
64 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate
65 * returns.
66 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020067struct annotated_source {
68 struct list_head source;
69 struct source_line *lines;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020070 int nr_histograms;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020071 int sizeof_sym_hist;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020072 struct sym_hist histograms[0];
73};
74
75struct annotation {
76 pthread_mutex_t lock;
77 struct annotated_source *src;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020078};
79
80struct sannotation {
81 struct annotation annotation;
82 struct symbol symbol;
83};
84
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020085static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
86{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020087 return (((void *)&notes->src->histograms) +
88 (notes->src->sizeof_sym_hist * idx));
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020089}
90
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020091static inline struct annotation *symbol__annotation(struct symbol *sym)
92{
93 struct sannotation *a = container_of(sym, struct sannotation, symbol);
94 return &a->annotation;
95}
96
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020097int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
98 int evidx, u64 addr);
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -020099int symbol__alloc_hist(struct symbol *sym);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200100void symbol__annotate_zero_histograms(struct symbol *sym);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200101
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200102int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
103int symbol__annotate_init(struct map *map __used, struct symbol *sym);
104int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -0200105 bool full_paths, int min_pcnt, int max_lines,
106 int context);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200107void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200108void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -0300109void disasm__purge(struct list_head *head);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200110
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200111int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod040bd32011-02-05 15:37:31 -0200112 bool print_lines, bool full_paths, int min_pcnt,
113 int max_lines);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200114
115#ifdef NO_NEWT_SUPPORT
Borislav Petkova2221792011-02-07 15:32:18 +0100116static inline int symbol__tui_annotate(struct symbol *sym __used,
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300117 struct map *map __used,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300118 int evidx __used,
119 void(*timer)(void *arg) __used,
120 void *arg __used, int delay_secs __used)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200121{
122 return 0;
123}
124#else
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300125int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200126 void(*timer)(void *arg), void *arg, int delay_secs);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200127#endif
128
Andi Kleenf69b64f2011-09-15 14:31:41 -0700129extern const char *disassembler_style;
130
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200131#endif /* __PERF_ANNOTATE_H */