blob: 8bb68bb2a04a9f722f9cc92568f91fb10850ad5e [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 Melo29ed6e72012-04-15 15:24:39 -030010struct disasm_line {
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020011 struct list_head node;
12 s64 offset;
13 char *line;
14};
15
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030016void disasm_line__free(struct disasm_line *dl);
17struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020018
19struct sym_hist {
20 u64 sum;
21 u64 addr[0];
22};
23
24struct source_line {
25 struct rb_node node;
26 double percent;
27 char *path;
28};
29
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020030/** struct annotated_source - symbols with hits have this attached as in sannotation
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020031 *
32 * @histogram: Array of addr hit histograms per event being monitored
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020033 * @lines: If 'print_lines' is specified, per source code line percentages
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030034 * @source: source parsed from a disassembler like objdump -dS
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020035 *
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020036 * lines is allocated, percentages calculated and all sorted by percentage
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020037 * when the annotation is about to be presented, so the percentages are for
38 * one of the entries in the histogram array, i.e. for the event/counter being
39 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate
40 * returns.
41 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020042struct annotated_source {
43 struct list_head source;
44 struct source_line *lines;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020045 int nr_histograms;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020046 int sizeof_sym_hist;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020047 struct sym_hist histograms[0];
48};
49
50struct annotation {
51 pthread_mutex_t lock;
52 struct annotated_source *src;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020053};
54
55struct sannotation {
56 struct annotation annotation;
57 struct symbol symbol;
58};
59
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020060static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
61{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020062 return (((void *)&notes->src->histograms) +
63 (notes->src->sizeof_sym_hist * idx));
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020064}
65
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020066static inline struct annotation *symbol__annotation(struct symbol *sym)
67{
68 struct sannotation *a = container_of(sym, struct sannotation, symbol);
69 return &a->annotation;
70}
71
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020072int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
73 int evidx, u64 addr);
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -020074int symbol__alloc_hist(struct symbol *sym);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020075void symbol__annotate_zero_histograms(struct symbol *sym);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020076
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020077int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
78int symbol__annotate_init(struct map *map __used, struct symbol *sym);
79int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -020080 bool full_paths, int min_pcnt, int max_lines,
81 int context);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020082void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020083void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030084void disasm__purge(struct list_head *head);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020085
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020086int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod040bd32011-02-05 15:37:31 -020087 bool print_lines, bool full_paths, int min_pcnt,
88 int max_lines);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020089
90#ifdef NO_NEWT_SUPPORT
Borislav Petkova2221792011-02-07 15:32:18 +010091static inline int symbol__tui_annotate(struct symbol *sym __used,
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -030092 struct map *map __used,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -030093 int evidx __used,
94 void(*timer)(void *arg) __used,
95 void *arg __used, int delay_secs __used)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020096{
97 return 0;
98}
99#else
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300100int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200101 void(*timer)(void *arg), void *arg, int delay_secs);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200102#endif
103
Andi Kleenf69b64f2011-09-15 14:31:41 -0700104extern const char *disassembler_style;
105
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200106#endif /* __PERF_ANNOTATE_H */