Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 2 | #ifndef __PERF_ANNOTATE_H |
| 3 | #define __PERF_ANNOTATE_H |
| 4 | |
| 5 | #include <stdbool.h> |
Arnaldo Carvalho de Melo | fb29fa5 | 2012-04-25 14:16:03 -0300 | [diff] [blame] | 6 | #include <stdint.h> |
Borislav Petkov | d944c4e | 2014-04-25 21:31:02 +0200 | [diff] [blame] | 7 | #include <linux/types.h> |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 8 | #include "symbol.h" |
Namhyung Kim | 9783adf | 2012-11-02 14:50:05 +0900 | [diff] [blame] | 9 | #include "hist.h" |
Namhyung Kim | 2b676bf | 2013-02-07 18:02:08 +0900 | [diff] [blame] | 10 | #include "sort.h" |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 11 | #include <linux/list.h> |
| 12 | #include <linux/rbtree.h> |
Irina Tirdea | 27683dc | 2012-09-08 03:43:19 +0300 | [diff] [blame] | 13 | #include <pthread.h> |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 14 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 15 | struct ins_ops; |
| 16 | |
| 17 | struct ins { |
| 18 | const char *name; |
| 19 | struct ins_ops *ops; |
| 20 | }; |
Arnaldo Carvalho de Melo | 28548d7 | 2012-04-19 10:16:27 -0300 | [diff] [blame] | 21 | |
Arnaldo Carvalho de Melo | c7e6ead | 2012-04-20 14:38:46 -0300 | [diff] [blame] | 22 | struct ins_operands { |
| 23 | char *raw; |
Arnaldo Carvalho de Melo | 44d1a3e | 2012-04-25 08:00:23 -0300 | [diff] [blame] | 24 | struct { |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 25 | char *raw; |
Arnaldo Carvalho de Melo | 44d1a3e | 2012-04-25 08:00:23 -0300 | [diff] [blame] | 26 | char *name; |
Arnaldo Carvalho de Melo | 696703a | 2018-03-02 11:59:36 -0300 | [diff] [blame] | 27 | struct symbol *sym; |
Arnaldo Carvalho de Melo | 44d1a3e | 2012-04-25 08:00:23 -0300 | [diff] [blame] | 28 | u64 addr; |
Ravi Bangoria | e216874 | 2016-12-05 21:26:47 +0530 | [diff] [blame] | 29 | s64 offset; |
| 30 | bool offset_avail; |
Arnaldo Carvalho de Melo | 44d1a3e | 2012-04-25 08:00:23 -0300 | [diff] [blame] | 31 | } target; |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 32 | union { |
| 33 | struct { |
| 34 | char *raw; |
| 35 | char *name; |
| 36 | u64 addr; |
| 37 | } source; |
| 38 | struct { |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 39 | struct ins ins; |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 40 | struct ins_operands *ops; |
| 41 | } locked; |
| 42 | }; |
Arnaldo Carvalho de Melo | c7e6ead | 2012-04-20 14:38:46 -0300 | [diff] [blame] | 43 | }; |
| 44 | |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 45 | struct arch; |
| 46 | |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 47 | struct ins_ops { |
Arnaldo Carvalho de Melo | c46219ac | 2012-05-12 13:26:20 -0300 | [diff] [blame] | 48 | void (*free)(struct ins_operands *ops); |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 49 | int (*parse)(struct arch *arch, struct ins_operands *ops, struct map *map); |
Arnaldo Carvalho de Melo | 28548d7 | 2012-04-19 10:16:27 -0300 | [diff] [blame] | 50 | int (*scnprintf)(struct ins *ins, char *bf, size_t size, |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 51 | struct ins_operands *ops); |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 52 | }; |
| 53 | |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 54 | bool ins__is_jump(const struct ins *ins); |
Arnaldo Carvalho de Melo | d86b059 | 2012-04-18 16:07:38 -0300 | [diff] [blame] | 55 | bool ins__is_call(const struct ins *ins); |
Naveen N. Rao | 6ef9492 | 2016-06-24 17:23:58 +0530 | [diff] [blame] | 56 | bool ins__is_ret(const struct ins *ins); |
Jin Yao | 7e63a13 | 2017-07-07 13:06:35 +0800 | [diff] [blame] | 57 | bool ins__is_lock(const struct ins *ins); |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 58 | int ins__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops); |
Jin Yao | 69fb09f | 2017-07-07 13:06:34 +0800 | [diff] [blame] | 59 | bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2); |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 60 | |
Arnaldo Carvalho de Melo | c426e58 | 2018-03-15 10:26:17 -0300 | [diff] [blame] | 61 | #define ANNOTATION__IPC_WIDTH 6 |
| 62 | #define ANNOTATION__CYCLES_WIDTH 6 |
| 63 | |
Arnaldo Carvalho de Melo | 98bc80b | 2018-03-15 10:03:34 -0300 | [diff] [blame] | 64 | struct annotation_options { |
| 65 | bool hide_src_code, |
| 66 | use_offset, |
| 67 | jump_arrows, |
| 68 | show_linenr, |
| 69 | show_nr_jumps, |
| 70 | show_nr_samples, |
| 71 | show_total_period; |
| 72 | }; |
| 73 | |
Namhyung Kim | e64aa75 | 2013-03-05 14:53:30 +0900 | [diff] [blame] | 74 | struct annotation; |
| 75 | |
Jiri Olsa | 7e30455 | 2017-10-11 17:01:39 +0200 | [diff] [blame] | 76 | struct sym_hist_entry { |
| 77 | u64 nr_samples; |
| 78 | u64 period; |
| 79 | }; |
| 80 | |
| 81 | struct annotation_data { |
| 82 | double percent; |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 83 | double percent_sum; |
Jiri Olsa | 7e30455 | 2017-10-11 17:01:39 +0200 | [diff] [blame] | 84 | struct sym_hist_entry he; |
| 85 | }; |
| 86 | |
Jiri Olsa | a17c4ca | 2017-10-11 17:01:25 +0200 | [diff] [blame] | 87 | struct annotation_line { |
| 88 | struct list_head node; |
Jiri Olsa | 5b12adc | 2017-10-11 17:01:36 +0200 | [diff] [blame] | 89 | struct rb_node rb_node; |
Jiri Olsa | d5490b9 | 2017-10-11 17:01:26 +0200 | [diff] [blame] | 90 | s64 offset; |
| 91 | char *line; |
| 92 | int line_nr; |
Jiri Olsa | 37236d5 | 2017-10-11 17:01:27 +0200 | [diff] [blame] | 93 | float ipc; |
| 94 | u64 cycles; |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 95 | size_t privsize; |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 96 | char *path; |
Jiri Olsa | 7e30455 | 2017-10-11 17:01:39 +0200 | [diff] [blame] | 97 | int samples_nr; |
| 98 | struct annotation_data samples[0]; |
Jiri Olsa | a17c4ca | 2017-10-11 17:01:25 +0200 | [diff] [blame] | 99 | }; |
| 100 | |
Arnaldo Carvalho de Melo | 29ed6e7 | 2012-04-15 15:24:39 -0300 | [diff] [blame] | 101 | struct disasm_line { |
Jiri Olsa | a17c4ca | 2017-10-11 17:01:25 +0200 | [diff] [blame] | 102 | struct ins ins; |
Jiri Olsa | a17c4ca | 2017-10-11 17:01:25 +0200 | [diff] [blame] | 103 | struct ins_operands ops; |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 104 | |
| 105 | /* This needs to be at the end. */ |
| 106 | struct annotation_line al; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 107 | }; |
| 108 | |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 109 | static inline struct disasm_line *disasm_line(struct annotation_line *al) |
| 110 | { |
| 111 | return al ? container_of(al, struct disasm_line, al) : NULL; |
| 112 | } |
| 113 | |
Arnaldo Carvalho de Melo | fb29fa5 | 2012-04-25 14:16:03 -0300 | [diff] [blame] | 114 | static inline bool disasm_line__has_offset(const struct disasm_line *dl) |
| 115 | { |
Ravi Bangoria | e216874 | 2016-12-05 21:26:47 +0530 | [diff] [blame] | 116 | return dl->ops.target.offset_avail; |
Arnaldo Carvalho de Melo | fb29fa5 | 2012-04-25 14:16:03 -0300 | [diff] [blame] | 117 | } |
| 118 | |
Arnaldo Carvalho de Melo | 29ed6e7 | 2012-04-15 15:24:39 -0300 | [diff] [blame] | 119 | void disasm_line__free(struct disasm_line *dl); |
Jiri Olsa | c4c7243 | 2017-10-11 17:01:34 +0200 | [diff] [blame] | 120 | struct annotation_line * |
| 121 | annotation_line__next(struct annotation_line *pos, struct list_head *head); |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 122 | int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw); |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 123 | size_t disasm__fprintf(struct list_head *head, FILE *fp); |
Jiri Olsa | 9e4e0a9 | 2017-11-15 12:05:59 +0100 | [diff] [blame] | 124 | void symbol__calc_percent(struct symbol *sym, struct perf_evsel *evsel); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 125 | |
| 126 | struct sym_hist { |
Taeung Song | 8158683d | 2017-07-20 06:36:51 +0900 | [diff] [blame] | 127 | u64 nr_samples; |
Taeung Song | 461c17f | 2017-07-20 17:18:05 -0300 | [diff] [blame] | 128 | u64 period; |
Taeung Song | 896bccd | 2017-07-20 06:36:45 +0900 | [diff] [blame] | 129 | struct sym_hist_entry addr[0]; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 130 | }; |
| 131 | |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 132 | struct cyc_hist { |
| 133 | u64 start; |
| 134 | u64 cycles; |
| 135 | u64 cycles_aggr; |
| 136 | u32 num; |
| 137 | u32 num_aggr; |
| 138 | u8 have_start; |
| 139 | /* 1 byte padding */ |
| 140 | u16 reset; |
| 141 | }; |
| 142 | |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 143 | /** 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] | 144 | * |
| 145 | * @histogram: Array of addr hit histograms per event being monitored |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 146 | * @lines: If 'print_lines' is specified, per source code line percentages |
Arnaldo Carvalho de Melo | 29ed6e7 | 2012-04-15 15:24:39 -0300 | [diff] [blame] | 147 | * @source: source parsed from a disassembler like objdump -dS |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 148 | * @cyc_hist: Average cycles per basic block |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 149 | * |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 150 | * lines is allocated, percentages calculated and all sorted by percentage |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 151 | * when the annotation is about to be presented, so the percentages are for |
| 152 | * one of the entries in the histogram array, i.e. for the event/counter being |
| 153 | * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate |
| 154 | * returns. |
| 155 | */ |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 156 | struct annotated_source { |
| 157 | struct list_head source; |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 158 | int nr_histograms; |
Jiri Olsa | 5ec4502 | 2015-10-05 20:06:03 +0200 | [diff] [blame] | 159 | size_t sizeof_sym_hist; |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 160 | struct cyc_hist *cycles_hist; |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 161 | struct sym_hist histograms[0]; |
| 162 | }; |
| 163 | |
| 164 | struct annotation { |
| 165 | pthread_mutex_t lock; |
Peter Zijlstra | 70fbe05 | 2016-09-05 16:08:12 -0300 | [diff] [blame] | 166 | u64 max_coverage; |
Arnaldo Carvalho de Melo | 16932d7 | 2018-03-15 12:33:56 -0300 | [diff] [blame] | 167 | struct annotation_options *options; |
Arnaldo Carvalho de Melo | 9d6bb41 | 2018-03-15 10:47:54 -0300 | [diff] [blame] | 168 | struct annotation_line **offsets; |
Arnaldo Carvalho de Melo | 0553e83 | 2018-03-15 11:52:32 -0300 | [diff] [blame] | 169 | int nr_events; |
Arnaldo Carvalho de Melo | 0e83a7e | 2018-03-15 10:35:04 -0300 | [diff] [blame] | 170 | bool have_cycles; |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 171 | struct annotated_source *src; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 172 | }; |
| 173 | |
Arnaldo Carvalho de Melo | 0e83a7e | 2018-03-15 10:35:04 -0300 | [diff] [blame] | 174 | static inline int annotation__cycles_width(struct annotation *notes) |
| 175 | { |
| 176 | return notes->have_cycles ? ANNOTATION__IPC_WIDTH + ANNOTATION__CYCLES_WIDTH : 0; |
| 177 | } |
| 178 | |
Arnaldo Carvalho de Melo | 6af612d | 2018-03-15 12:41:39 -0300 | [diff] [blame^] | 179 | static inline int annotation__pcnt_width(struct annotation *notes) |
| 180 | { |
| 181 | return (notes->options->show_total_period ? 12 : 7) * notes->nr_events; |
| 182 | } |
| 183 | |
Arnaldo Carvalho de Melo | f56c083 | 2018-03-15 11:46:23 -0300 | [diff] [blame] | 184 | void annotation__compute_ipc(struct annotation *notes, size_t size); |
| 185 | |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 186 | static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) |
| 187 | { |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 188 | return (((void *)¬es->src->histograms) + |
| 189 | (notes->src->sizeof_sym_hist * idx)); |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 190 | } |
| 191 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 192 | static inline struct annotation *symbol__annotation(struct symbol *sym) |
| 193 | { |
Namhyung Kim | 813ccd1 | 2015-01-14 20:18:05 +0900 | [diff] [blame] | 194 | return (void *)sym - symbol_conf.priv_size; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 195 | } |
| 196 | |
Taeung Song | bab89f6 | 2017-07-20 16:28:53 -0300 | [diff] [blame] | 197 | int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample, |
| 198 | int evidx); |
Arnaldo Carvalho de Melo | 0f4e7a2 | 2013-12-18 16:48:29 -0300 | [diff] [blame] | 199 | |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 200 | int addr_map_symbol__account_cycles(struct addr_map_symbol *ams, |
| 201 | struct addr_map_symbol *start, |
| 202 | unsigned cycles); |
| 203 | |
Taeung Song | bab89f6 | 2017-07-20 16:28:53 -0300 | [diff] [blame] | 204 | int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample, |
| 205 | int evidx, u64 addr); |
Arnaldo Carvalho de Melo | f626adf | 2013-12-18 17:10:15 -0300 | [diff] [blame] | 206 | |
Arnaldo Carvalho de Melo | d04b35f | 2011-11-11 22:17:32 -0200 | [diff] [blame] | 207 | int symbol__alloc_hist(struct symbol *sym); |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 208 | void symbol__annotate_zero_histograms(struct symbol *sym); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 209 | |
Jiri Olsa | c34df25 | 2017-10-11 17:01:28 +0200 | [diff] [blame] | 210 | int symbol__annotate(struct symbol *sym, struct map *map, |
Jiri Olsa | d03a686 | 2017-10-11 17:01:33 +0200 | [diff] [blame] | 211 | struct perf_evsel *evsel, size_t privsize, |
Arnaldo Carvalho de Melo | 5449f13 | 2017-12-11 12:46:11 -0300 | [diff] [blame] | 212 | struct arch **parch); |
Arnaldo Carvalho de Melo | f626adf | 2013-12-18 17:10:15 -0300 | [diff] [blame] | 213 | |
Arnaldo Carvalho de Melo | ee51d85 | 2016-07-29 16:27:18 -0300 | [diff] [blame] | 214 | enum symbol_disassemble_errno { |
| 215 | SYMBOL_ANNOTATE_ERRNO__SUCCESS = 0, |
| 216 | |
| 217 | /* |
| 218 | * Choose an arbitrary negative big number not to clash with standard |
| 219 | * errno since SUS requires the errno has distinct positive values. |
| 220 | * See 'Issue 6' in the link below. |
| 221 | * |
| 222 | * http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html |
| 223 | */ |
| 224 | __SYMBOL_ANNOTATE_ERRNO__START = -10000, |
| 225 | |
| 226 | SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX = __SYMBOL_ANNOTATE_ERRNO__START, |
| 227 | |
| 228 | __SYMBOL_ANNOTATE_ERRNO__END, |
| 229 | }; |
| 230 | |
| 231 | int symbol__strerror_disassemble(struct symbol *sym, struct map *map, |
| 232 | int errnum, char *buf, size_t buflen); |
| 233 | |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 234 | int symbol__annotate_printf(struct symbol *sym, struct map *map, |
| 235 | struct perf_evsel *evsel, bool full_paths, |
| 236 | int min_pcnt, int max_lines, int context); |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 237 | void symbol__annotate_zero_histogram(struct symbol *sym, int evidx); |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 238 | void symbol__annotate_decay_histogram(struct symbol *sym, int evidx); |
Jiri Olsa | f8eb37b | 2017-10-11 17:01:38 +0200 | [diff] [blame] | 239 | void annotated_source__purge(struct annotated_source *as); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 240 | |
Namhyung Kim | 48c65bd | 2014-02-20 10:32:53 +0900 | [diff] [blame] | 241 | bool ui__has_annotation(void); |
| 242 | |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 243 | int symbol__tty_annotate(struct symbol *sym, struct map *map, |
| 244 | struct perf_evsel *evsel, bool print_lines, |
| 245 | bool full_paths, int min_pcnt, int max_lines); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 246 | |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 247 | #ifdef HAVE_SLANG_SUPPORT |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 248 | int symbol__tui_annotate(struct symbol *sym, struct map *map, |
| 249 | struct perf_evsel *evsel, |
Namhyung Kim | 9783adf | 2012-11-02 14:50:05 +0900 | [diff] [blame] | 250 | struct hist_browser_timer *hbt); |
Namhyung Kim | 1254b51e | 2012-09-28 18:32:02 +0900 | [diff] [blame] | 251 | #else |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 252 | static inline int symbol__tui_annotate(struct symbol *sym __maybe_unused, |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 253 | struct map *map __maybe_unused, |
| 254 | struct perf_evsel *evsel __maybe_unused, |
| 255 | struct hist_browser_timer *hbt |
| 256 | __maybe_unused) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 257 | { |
| 258 | return 0; |
| 259 | } |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 260 | #endif |
| 261 | |
Andi Kleen | f69b64f | 2011-09-15 14:31:41 -0700 | [diff] [blame] | 262 | extern const char *disassembler_style; |
| 263 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 264 | #endif /* __PERF_ANNOTATE_H */ |