blob: dd7636d24133987760ba17f3ef5c4280b836ac81 [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;
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -030014 char *name;
15 char *operands;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020016};
17
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030018void disasm_line__free(struct disasm_line *dl);
19struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -030020size_t disasm__fprintf(struct list_head *head, FILE *fp);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020021
22struct sym_hist {
23 u64 sum;
24 u64 addr[0];
25};
26
27struct source_line {
28 struct rb_node node;
29 double percent;
30 char *path;
31};
32
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020033/** struct annotated_source - symbols with hits have this attached as in sannotation
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020034 *
35 * @histogram: Array of addr hit histograms per event being monitored
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020036 * @lines: If 'print_lines' is specified, per source code line percentages
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030037 * @source: source parsed from a disassembler like objdump -dS
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020038 *
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020039 * lines is allocated, percentages calculated and all sorted by percentage
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020040 * when the annotation is about to be presented, so the percentages are for
41 * one of the entries in the histogram array, i.e. for the event/counter being
42 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate
43 * returns.
44 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020045struct annotated_source {
46 struct list_head source;
47 struct source_line *lines;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020048 int nr_histograms;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020049 int sizeof_sym_hist;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020050 struct sym_hist histograms[0];
51};
52
53struct annotation {
54 pthread_mutex_t lock;
55 struct annotated_source *src;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020056};
57
58struct sannotation {
59 struct annotation annotation;
60 struct symbol symbol;
61};
62
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020063static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
64{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020065 return (((void *)&notes->src->histograms) +
66 (notes->src->sizeof_sym_hist * idx));
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020067}
68
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020069static inline struct annotation *symbol__annotation(struct symbol *sym)
70{
71 struct sannotation *a = container_of(sym, struct sannotation, symbol);
72 return &a->annotation;
73}
74
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020075int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
76 int evidx, u64 addr);
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -020077int symbol__alloc_hist(struct symbol *sym);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020078void symbol__annotate_zero_histograms(struct symbol *sym);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020079
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020080int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
81int symbol__annotate_init(struct map *map __used, struct symbol *sym);
82int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -020083 bool full_paths, int min_pcnt, int max_lines,
84 int context);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020085void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020086void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030087void disasm__purge(struct list_head *head);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020088
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020089int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod040bd32011-02-05 15:37:31 -020090 bool print_lines, bool full_paths, int min_pcnt,
91 int max_lines);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020092
93#ifdef NO_NEWT_SUPPORT
Borislav Petkova2221792011-02-07 15:32:18 +010094static inline int symbol__tui_annotate(struct symbol *sym __used,
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -030095 struct map *map __used,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -030096 int evidx __used,
97 void(*timer)(void *arg) __used,
98 void *arg __used, int delay_secs __used)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020099{
100 return 0;
101}
102#else
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300103int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200104 void(*timer)(void *arg), void *arg, int delay_secs);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200105#endif
106
Andi Kleenf69b64f2011-09-15 14:31:41 -0700107extern const char *disassembler_style;
108
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200109#endif /* __PERF_ANNOTATE_H */