blob: 2b9e3e038a8439335658a9631da401b13ffcbf9e [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 Melo44d1a3e2012-04-25 08:00:23 -030014 struct {
15 char *name;
16 u64 offset;
17 u64 addr;
18 } target;
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030019};
20
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030021struct ins_ops {
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030022 int (*parse)(struct ins_operands *ops);
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -030023 int (*scnprintf)(struct ins *ins, char *bf, size_t size,
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030024 struct ins_operands *ops, bool addrs);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030025};
26
27struct ins {
28 const char *name;
29 struct ins_ops *ops;
30};
31
32bool ins__is_jump(const struct ins *ins);
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -030033bool ins__is_call(const struct ins *ins);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030034
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030035struct disasm_line {
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -030036 struct list_head node;
37 s64 offset;
38 char *line;
39 char *name;
40 struct ins *ins;
41 struct ins_operands ops;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020042};
43
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030044void disasm_line__free(struct disasm_line *dl);
45struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -030046size_t disasm__fprintf(struct list_head *head, FILE *fp);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020047
48struct sym_hist {
49 u64 sum;
50 u64 addr[0];
51};
52
53struct source_line {
54 struct rb_node node;
55 double percent;
56 char *path;
57};
58
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020059/** struct annotated_source - symbols with hits have this attached as in sannotation
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020060 *
61 * @histogram: Array of addr hit histograms per event being monitored
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020062 * @lines: If 'print_lines' is specified, per source code line percentages
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030063 * @source: source parsed from a disassembler like objdump -dS
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020064 *
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020065 * lines is allocated, percentages calculated and all sorted by percentage
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020066 * when the annotation is about to be presented, so the percentages are for
67 * one of the entries in the histogram array, i.e. for the event/counter being
68 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate
69 * returns.
70 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020071struct annotated_source {
72 struct list_head source;
73 struct source_line *lines;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020074 int nr_histograms;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020075 int sizeof_sym_hist;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020076 struct sym_hist histograms[0];
77};
78
79struct annotation {
80 pthread_mutex_t lock;
81 struct annotated_source *src;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020082};
83
84struct sannotation {
85 struct annotation annotation;
86 struct symbol symbol;
87};
88
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020089static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
90{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020091 return (((void *)&notes->src->histograms) +
92 (notes->src->sizeof_sym_hist * idx));
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020093}
94
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020095static inline struct annotation *symbol__annotation(struct symbol *sym)
96{
97 struct sannotation *a = container_of(sym, struct sannotation, symbol);
98 return &a->annotation;
99}
100
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200101int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
102 int evidx, u64 addr);
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200103int symbol__alloc_hist(struct symbol *sym);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200104void symbol__annotate_zero_histograms(struct symbol *sym);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200105
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200106int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
107int symbol__annotate_init(struct map *map __used, struct symbol *sym);
108int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -0200109 bool full_paths, int min_pcnt, int max_lines,
110 int context);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200111void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200112void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -0300113void disasm__purge(struct list_head *head);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200114
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200115int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod040bd32011-02-05 15:37:31 -0200116 bool print_lines, bool full_paths, int min_pcnt,
117 int max_lines);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200118
119#ifdef NO_NEWT_SUPPORT
Borislav Petkova2221792011-02-07 15:32:18 +0100120static inline int symbol__tui_annotate(struct symbol *sym __used,
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300121 struct map *map __used,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300122 int evidx __used,
123 void(*timer)(void *arg) __used,
124 void *arg __used, int delay_secs __used)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200125{
126 return 0;
127}
128#else
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300129int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200130 void(*timer)(void *arg), void *arg, int delay_secs);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200131#endif
132
Andi Kleenf69b64f2011-09-15 14:31:41 -0700133extern const char *disassembler_style;
134
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200135#endif /* __PERF_ANNOTATE_H */