Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1 | #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 | |
| 10 | struct objdump_line { |
| 11 | struct list_head node; |
| 12 | s64 offset; |
| 13 | char *line; |
| 14 | }; |
| 15 | |
| 16 | void objdump_line__free(struct objdump_line *self); |
| 17 | struct objdump_line *objdump__get_next_ip_line(struct list_head *head, |
| 18 | struct objdump_line *pos); |
| 19 | |
| 20 | struct sym_hist { |
| 21 | u64 sum; |
| 22 | u64 addr[0]; |
| 23 | }; |
| 24 | |
| 25 | struct source_line { |
| 26 | struct rb_node node; |
| 27 | double percent; |
| 28 | char *path; |
| 29 | }; |
| 30 | |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 31 | /** struct annotated_source - symbols with hits have this attached as in sannotation |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 32 | * |
| 33 | * @histogram: Array of addr hit histograms per event being monitored |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 34 | * @lines: If 'print_lines' is specified, per source code line percentages |
| 35 | * @source: source parsed from objdump -dS |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 36 | * |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 37 | * lines is allocated, percentages calculated and all sorted by percentage |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 38 | * when the annotation is about to be presented, so the percentages are for |
| 39 | * one of the entries in the histogram array, i.e. for the event/counter being |
| 40 | * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate |
| 41 | * returns. |
| 42 | */ |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 43 | struct annotated_source { |
| 44 | struct list_head source; |
| 45 | struct source_line *lines; |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 46 | int nr_histograms; |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 47 | int sizeof_sym_hist; |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 48 | struct sym_hist histograms[0]; |
| 49 | }; |
| 50 | |
| 51 | struct annotation { |
| 52 | pthread_mutex_t lock; |
| 53 | struct annotated_source *src; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | struct sannotation { |
| 57 | struct annotation annotation; |
| 58 | struct symbol symbol; |
| 59 | }; |
| 60 | |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 61 | static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) |
| 62 | { |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 63 | return (((void *)¬es->src->histograms) + |
| 64 | (notes->src->sizeof_sym_hist * idx)); |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 65 | } |
| 66 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 67 | static inline struct annotation *symbol__annotation(struct symbol *sym) |
| 68 | { |
| 69 | struct sannotation *a = container_of(sym, struct sannotation, symbol); |
| 70 | return &a->annotation; |
| 71 | } |
| 72 | |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 73 | int symbol__inc_addr_samples(struct symbol *sym, struct map *map, |
| 74 | int evidx, u64 addr); |
| 75 | int symbol__alloc_hist(struct symbol *sym, int nevents); |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 76 | void symbol__annotate_zero_histograms(struct symbol *sym); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 77 | |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 78 | int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize); |
| 79 | int symbol__annotate_init(struct map *map __used, struct symbol *sym); |
| 80 | int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx, |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 81 | bool full_paths, int min_pcnt, int max_lines, |
| 82 | int context); |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 83 | void symbol__annotate_zero_histogram(struct symbol *sym, int evidx); |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 84 | void symbol__annotate_decay_histogram(struct symbol *sym, int evidx); |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 85 | void objdump_line_list__purge(struct list_head *head); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 86 | |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 87 | int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx, |
Arnaldo Carvalho de Melo | d040bd3 | 2011-02-05 15:37:31 -0200 | [diff] [blame] | 88 | bool print_lines, bool full_paths, int min_pcnt, |
| 89 | int max_lines); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 90 | |
| 91 | #ifdef NO_NEWT_SUPPORT |
Borislav Petkov | a222179 | 2011-02-07 15:32:18 +0100 | [diff] [blame] | 92 | static inline int symbol__tui_annotate(struct symbol *sym __used, |
Arnaldo Carvalho de Melo | c97cf42 | 2011-02-22 12:02:07 -0300 | [diff] [blame] | 93 | struct map *map __used, |
Arnaldo Carvalho de Melo | 81cce8d | 2011-10-05 19:11:32 -0300 | [diff] [blame] | 94 | int evidx __used, |
| 95 | void(*timer)(void *arg) __used, |
| 96 | void *arg __used, int delay_secs __used) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 97 | { |
| 98 | return 0; |
| 99 | } |
| 100 | #else |
Arnaldo Carvalho de Melo | c97cf42 | 2011-02-22 12:02:07 -0300 | [diff] [blame] | 101 | int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx, |
Arnaldo Carvalho de Melo | 3495854 | 2011-10-05 19:35:54 -0300 | [diff] [blame] | 102 | int nr_events, void(*timer)(void *arg), void *arg, |
Arnaldo Carvalho de Melo | 81cce8d | 2011-10-05 19:11:32 -0300 | [diff] [blame] | 103 | int delay_secs); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 104 | #endif |
| 105 | |
Andi Kleen | f69b64f | 2011-09-15 14:31:41 -0700 | [diff] [blame] | 106 | extern const char *disassembler_style; |
| 107 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 108 | #endif /* __PERF_ANNOTATE_H */ |