blob: 934c6fe3a91bb5da326c22504511ecab88ac1267 [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 Melo4f9d0322012-04-18 13:58:34 -030010struct ins_ops {
11 int (*parse_target)(const char *operands, u64 *target);
12};
13
14struct ins {
15 const char *name;
16 struct ins_ops *ops;
17};
18
19bool ins__is_jump(const struct ins *ins);
20
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030021struct disasm_line {
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020022 struct list_head node;
23 s64 offset;
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030024 u64 target;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020025 char *line;
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -030026 char *name;
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -030027 struct ins *ins;
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -030028 char *operands;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020029};
30
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030031void disasm_line__free(struct disasm_line *dl);
32struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -030033size_t disasm__fprintf(struct list_head *head, FILE *fp);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020034
35struct sym_hist {
36 u64 sum;
37 u64 addr[0];
38};
39
40struct source_line {
41 struct rb_node node;
42 double percent;
43 char *path;
44};
45
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020046/** struct annotated_source - symbols with hits have this attached as in sannotation
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020047 *
48 * @histogram: Array of addr hit histograms per event being monitored
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020049 * @lines: If 'print_lines' is specified, per source code line percentages
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -030050 * @source: source parsed from a disassembler like objdump -dS
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020051 *
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020052 * lines is allocated, percentages calculated and all sorted by percentage
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020053 * when the annotation is about to be presented, so the percentages are for
54 * one of the entries in the histogram array, i.e. for the event/counter being
55 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate
56 * returns.
57 */
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020058struct annotated_source {
59 struct list_head source;
60 struct source_line *lines;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020061 int nr_histograms;
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020062 int sizeof_sym_hist;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020063 struct sym_hist histograms[0];
64};
65
66struct annotation {
67 pthread_mutex_t lock;
68 struct annotated_source *src;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020069};
70
71struct sannotation {
72 struct annotation annotation;
73 struct symbol symbol;
74};
75
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020076static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
77{
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020078 return (((void *)&notes->src->histograms) +
79 (notes->src->sizeof_sym_hist * idx));
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020080}
81
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020082static inline struct annotation *symbol__annotation(struct symbol *sym)
83{
84 struct sannotation *a = container_of(sym, struct sannotation, symbol);
85 return &a->annotation;
86}
87
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -020088int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
89 int evidx, u64 addr);
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -020090int symbol__alloc_hist(struct symbol *sym);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020091void symbol__annotate_zero_histograms(struct symbol *sym);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020092
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020093int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
94int symbol__annotate_init(struct map *map __used, struct symbol *sym);
95int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -020096 bool full_paths, int min_pcnt, int max_lines,
97 int context);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -020098void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020099void symbol__annotate_decay_histogram(struct symbol *sym, int evidx);
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -0300100void disasm__purge(struct list_head *head);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200101
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200102int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod040bd32011-02-05 15:37:31 -0200103 bool print_lines, bool full_paths, int min_pcnt,
104 int max_lines);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200105
106#ifdef NO_NEWT_SUPPORT
Borislav Petkova2221792011-02-07 15:32:18 +0100107static inline int symbol__tui_annotate(struct symbol *sym __used,
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300108 struct map *map __used,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300109 int evidx __used,
110 void(*timer)(void *arg) __used,
111 void *arg __used, int delay_secs __used)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200112{
113 return 0;
114}
115#else
Arnaldo Carvalho de Meloc97cf422011-02-22 12:02:07 -0300116int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200117 void(*timer)(void *arg), void *arg, int delay_secs);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200118#endif
119
Andi Kleenf69b64f2011-09-15 14:31:41 -0700120extern const char *disassembler_style;
121
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200122#endif /* __PERF_ANNOTATE_H */