1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __PERF_ANNOTATE_H 3 #define __PERF_ANNOTATE_H 4 5 #include <stdbool.h> 6 #include <stdint.h> 7 #include <stdio.h> 8 #include <linux/types.h> 9 #include <linux/list.h> 10 #include <linux/rbtree.h> 11 #include <asm/bug.h> 12 #include "symbol_conf.h" 13 #include "mutex.h" 14 #include "spark.h" 15 #include "hashmap.h" 16 17 struct hist_browser_timer; 18 struct hist_entry; 19 struct ins_ops; 20 struct map; 21 struct map_symbol; 22 struct addr_map_symbol; 23 struct option; 24 struct perf_sample; 25 struct evsel; 26 struct symbol; 27 struct annotated_data_type; 28 29 struct ins { 30 const char *name; 31 struct ins_ops *ops; 32 }; 33 34 struct ins_operands { 35 char *raw; 36 struct { 37 char *raw; 38 char *name; 39 struct symbol *sym; 40 u64 addr; 41 s64 offset; 42 bool offset_avail; 43 bool outside; 44 bool multi_regs; 45 } target; 46 union { 47 struct { 48 char *raw; 49 char *name; 50 u64 addr; 51 bool multi_regs; 52 } source; 53 struct { 54 struct ins ins; 55 struct ins_operands *ops; 56 } locked; 57 struct { 58 char *raw_comment; 59 char *raw_func_start; 60 } jump; 61 }; 62 }; 63 64 struct arch; 65 66 bool arch__is(struct arch *arch, const char *name); 67 68 struct ins_ops { 69 void (*free)(struct ins_operands *ops); 70 int (*parse)(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms); 71 int (*scnprintf)(struct ins *ins, char *bf, size_t size, 72 struct ins_operands *ops, int max_ins_name); 73 }; 74 75 bool ins__is_jump(const struct ins *ins); 76 bool ins__is_call(const struct ins *ins); 77 bool ins__is_ret(const struct ins *ins); 78 bool ins__is_lock(const struct ins *ins); 79 int ins__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops, int max_ins_name); 80 bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2); 81 82 #define ANNOTATION__IPC_WIDTH 6 83 #define ANNOTATION__CYCLES_WIDTH 6 84 #define ANNOTATION__MINMAX_CYCLES_WIDTH 19 85 #define ANNOTATION__AVG_IPC_WIDTH 36 86 #define ANNOTATION_DUMMY_LEN 256 87 88 struct annotation_options { 89 bool hide_src_code, 90 use_offset, 91 jump_arrows, 92 print_lines, 93 full_path, 94 show_linenr, 95 show_fileloc, 96 show_nr_jumps, 97 show_minmax_cycle, 98 show_asm_raw, 99 annotate_src, 100 full_addr; 101 u8 offset_level; 102 int min_pcnt; 103 int max_lines; 104 int context; 105 char *objdump_path; 106 char *disassembler_style; 107 const char *prefix; 108 const char *prefix_strip; 109 unsigned int percent_type; 110 }; 111 112 extern struct annotation_options annotate_opts; 113 114 enum { 115 ANNOTATION__OFFSET_JUMP_TARGETS = 1, 116 ANNOTATION__OFFSET_CALL, 117 ANNOTATION__MAX_OFFSET_LEVEL, 118 }; 119 120 #define ANNOTATION__MIN_OFFSET_LEVEL ANNOTATION__OFFSET_JUMP_TARGETS 121 122 struct annotation; 123 124 struct sym_hist_entry { 125 u64 nr_samples; 126 u64 period; 127 }; 128 129 enum { 130 PERCENT_HITS_LOCAL, 131 PERCENT_HITS_GLOBAL, 132 PERCENT_PERIOD_LOCAL, 133 PERCENT_PERIOD_GLOBAL, 134 PERCENT_MAX, 135 }; 136 137 struct annotation_data { 138 double percent[PERCENT_MAX]; 139 double percent_sum; 140 struct sym_hist_entry he; 141 }; 142 143 struct cycles_info { 144 float ipc; 145 u64 avg; 146 u64 max; 147 u64 min; 148 }; 149 150 struct annotation_line { 151 struct list_head node; 152 struct rb_node rb_node; 153 s64 offset; 154 char *line; 155 int line_nr; 156 char *fileloc; 157 char *path; 158 struct cycles_info *cycles; 159 int jump_sources; 160 u32 idx; 161 int idx_asm; 162 int data_nr; 163 struct annotation_data data[]; 164 }; 165 166 struct disasm_line { 167 struct ins ins; 168 struct ins_operands ops; 169 170 /* This needs to be at the end. */ 171 struct annotation_line al; 172 }; 173 174 static inline double annotation_data__percent(struct annotation_data *data, 175 unsigned int which) 176 { 177 return which < PERCENT_MAX ? data->percent[which] : -1; 178 } 179 180 static inline const char *percent_type_str(unsigned int type) 181 { 182 static const char *str[PERCENT_MAX] = { 183 "local hits", 184 "global hits", 185 "local period", 186 "global period", 187 }; 188 189 if (WARN_ON(type >= PERCENT_MAX)) 190 return "N/A"; 191 192 return str[type]; 193 } 194 195 static inline struct disasm_line *disasm_line(struct annotation_line *al) 196 { 197 return al ? container_of(al, struct disasm_line, al) : NULL; 198 } 199 200 /* 201 * Is this offset in the same function as the line it is used? 202 * asm functions jump to other functions, for instance. 203 */ 204 static inline bool disasm_line__has_local_offset(const struct disasm_line *dl) 205 { 206 return dl->ops.target.offset_avail && !dl->ops.target.outside; 207 } 208 209 /* 210 * Can we draw an arrow from the jump to its target, for instance? I.e. 211 * is the jump and its target in the same function? 212 */ 213 bool disasm_line__is_valid_local_jump(struct disasm_line *dl, struct symbol *sym); 214 215 void disasm_line__free(struct disasm_line *dl); 216 struct annotation_line * 217 annotation_line__next(struct annotation_line *pos, struct list_head *head); 218 219 struct annotation_write_ops { 220 bool first_line, current_entry, change_color; 221 int width; 222 void *obj; 223 int (*set_color)(void *obj, int color); 224 void (*set_percent_color)(void *obj, double percent, bool current); 225 int (*set_jumps_percent_color)(void *obj, int nr, bool current); 226 void (*printf)(void *obj, const char *fmt, ...); 227 void (*write_graph)(void *obj, int graph); 228 }; 229 230 void annotation_line__write(struct annotation_line *al, struct annotation *notes, 231 struct annotation_write_ops *ops); 232 233 int __annotation__scnprintf_samples_period(struct annotation *notes, 234 char *bf, size_t size, 235 struct evsel *evsel, 236 bool show_freq); 237 238 int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw, int max_ins_name); 239 size_t disasm__fprintf(struct list_head *head, FILE *fp); 240 void symbol__calc_percent(struct symbol *sym, struct evsel *evsel); 241 242 struct sym_hist { 243 u64 nr_samples; 244 u64 period; 245 struct sym_hist_entry addr[]; 246 }; 247 248 struct cyc_hist { 249 u64 start; 250 u64 cycles; 251 u64 cycles_aggr; 252 u64 cycles_max; 253 u64 cycles_min; 254 s64 cycles_spark[NUM_SPARKS]; 255 u32 num; 256 u32 num_aggr; 257 u8 have_start; 258 /* 1 byte padding */ 259 u16 reset; 260 }; 261 262 /** struct annotated_source - symbols with hits have this attached as in sannotation 263 * 264 * @histograms: Array of addr hit histograms per event being monitored 265 * nr_histograms: This may not be the same as evsel->evlist->core.nr_entries if 266 * we have more than a group in a evlist, where we will want 267 * to see each group separately, that is why symbol__annotate2() 268 * sets src->nr_histograms to evsel->nr_members. 269 * @lines: If 'print_lines' is specified, per source code line percentages 270 * @source: source parsed from a disassembler like objdump -dS 271 * @cyc_hist: Average cycles per basic block 272 * 273 * lines is allocated, percentages calculated and all sorted by percentage 274 * when the annotation is about to be presented, so the percentages are for 275 * one of the entries in the histogram array, i.e. for the event/counter being 276 * presented. It is deallocated right after symbol__{tui,tty,etc}_annotate 277 * returns. 278 */ 279 struct annotated_source { 280 struct list_head source; 281 size_t sizeof_sym_hist; 282 struct sym_hist *histograms; 283 struct annotation_line **offsets; 284 struct hashmap *samples; 285 int nr_histograms; 286 int nr_entries; 287 int nr_asm_entries; 288 u16 max_line_len; 289 }; 290 291 struct annotated_branch { 292 u64 hit_cycles; 293 u64 hit_insn; 294 unsigned int total_insn; 295 unsigned int cover_insn; 296 struct cyc_hist *cycles_hist; 297 u64 max_coverage; 298 }; 299 300 struct LOCKABLE annotation { 301 u64 start; 302 int nr_events; 303 int max_jump_sources; 304 struct { 305 u8 addr; 306 u8 jumps; 307 u8 target; 308 u8 min_addr; 309 u8 max_addr; 310 u8 max_ins_name; 311 } widths; 312 struct annotated_source *src; 313 struct annotated_branch *branch; 314 }; 315 316 static inline void annotation__init(struct annotation *notes __maybe_unused) 317 { 318 } 319 void annotation__exit(struct annotation *notes); 320 321 void annotation__lock(struct annotation *notes) EXCLUSIVE_LOCK_FUNCTION(*notes); 322 void annotation__unlock(struct annotation *notes) UNLOCK_FUNCTION(*notes); 323 bool annotation__trylock(struct annotation *notes) EXCLUSIVE_TRYLOCK_FUNCTION(true, *notes); 324 325 static inline int annotation__cycles_width(struct annotation *notes) 326 { 327 if (notes->branch && annotate_opts.show_minmax_cycle) 328 return ANNOTATION__IPC_WIDTH + ANNOTATION__MINMAX_CYCLES_WIDTH; 329 330 return notes->branch ? ANNOTATION__IPC_WIDTH + ANNOTATION__CYCLES_WIDTH : 0; 331 } 332 333 static inline int annotation__pcnt_width(struct annotation *notes) 334 { 335 return (symbol_conf.show_total_period ? 12 : 7) * notes->nr_events; 336 } 337 338 static inline bool annotation_line__filter(struct annotation_line *al) 339 { 340 return annotate_opts.hide_src_code && al->offset == -1; 341 } 342 343 void annotation__set_offsets(struct annotation *notes, s64 size); 344 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym); 345 void annotation__update_column_widths(struct annotation *notes); 346 void annotation__init_column_widths(struct annotation *notes, struct symbol *sym); 347 void annotation__toggle_full_addr(struct annotation *notes, struct map_symbol *ms); 348 349 static inline struct sym_hist *annotated_source__histogram(struct annotated_source *src, int idx) 350 { 351 return ((void *)src->histograms) + (src->sizeof_sym_hist * idx); 352 } 353 354 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) 355 { 356 return annotated_source__histogram(notes->src, idx); 357 } 358 359 static inline struct sym_hist_entry * 360 annotated_source__hist_entry(struct annotated_source *src, int idx, u64 offset) 361 { 362 struct sym_hist_entry *entry; 363 long key = offset << 16 | idx; 364 365 if (!hashmap__find(src->samples, key, &entry)) 366 return NULL; 367 return entry; 368 } 369 370 static inline struct annotation *symbol__annotation(struct symbol *sym) 371 { 372 return (void *)sym - symbol_conf.priv_size; 373 } 374 375 int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample, 376 struct evsel *evsel); 377 378 struct annotated_branch *annotation__get_branch(struct annotation *notes); 379 380 int addr_map_symbol__account_cycles(struct addr_map_symbol *ams, 381 struct addr_map_symbol *start, 382 unsigned cycles); 383 384 int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample, 385 struct evsel *evsel, u64 addr); 386 387 struct annotated_source *symbol__hists(struct symbol *sym, int nr_hists); 388 void symbol__annotate_zero_histograms(struct symbol *sym); 389 390 int symbol__annotate(struct map_symbol *ms, 391 struct evsel *evsel, 392 struct arch **parch); 393 int symbol__annotate2(struct map_symbol *ms, 394 struct evsel *evsel, 395 struct arch **parch); 396 397 enum symbol_disassemble_errno { 398 SYMBOL_ANNOTATE_ERRNO__SUCCESS = 0, 399 400 /* 401 * Choose an arbitrary negative big number not to clash with standard 402 * errno since SUS requires the errno has distinct positive values. 403 * See 'Issue 6' in the link below. 404 * 405 * http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html 406 */ 407 __SYMBOL_ANNOTATE_ERRNO__START = -10000, 408 409 SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX = __SYMBOL_ANNOTATE_ERRNO__START, 410 SYMBOL_ANNOTATE_ERRNO__NO_LIBOPCODES_FOR_BPF, 411 SYMBOL_ANNOTATE_ERRNO__ARCH_INIT_CPUID_PARSING, 412 SYMBOL_ANNOTATE_ERRNO__ARCH_INIT_REGEXP, 413 SYMBOL_ANNOTATE_ERRNO__BPF_INVALID_FILE, 414 SYMBOL_ANNOTATE_ERRNO__BPF_MISSING_BTF, 415 416 __SYMBOL_ANNOTATE_ERRNO__END, 417 }; 418 419 int symbol__strerror_disassemble(struct map_symbol *ms, int errnum, char *buf, size_t buflen); 420 421 int symbol__annotate_printf(struct map_symbol *ms, struct evsel *evsel); 422 void symbol__annotate_zero_histogram(struct symbol *sym, int evidx); 423 void symbol__annotate_decay_histogram(struct symbol *sym, int evidx); 424 void annotated_source__purge(struct annotated_source *as); 425 426 int map_symbol__annotation_dump(struct map_symbol *ms, struct evsel *evsel); 427 428 bool ui__has_annotation(void); 429 430 int symbol__tty_annotate(struct map_symbol *ms, struct evsel *evsel); 431 432 int symbol__tty_annotate2(struct map_symbol *ms, struct evsel *evsel); 433 434 #ifdef HAVE_SLANG_SUPPORT 435 int symbol__tui_annotate(struct map_symbol *ms, struct evsel *evsel, 436 struct hist_browser_timer *hbt); 437 #else 438 static inline int symbol__tui_annotate(struct map_symbol *ms __maybe_unused, 439 struct evsel *evsel __maybe_unused, 440 struct hist_browser_timer *hbt __maybe_unused) 441 { 442 return 0; 443 } 444 #endif 445 446 void annotation_options__init(void); 447 void annotation_options__exit(void); 448 449 void annotation_config__init(void); 450 451 int annotate_parse_percent_type(const struct option *opt, const char *_str, 452 int unset); 453 454 int annotate_check_args(void); 455 456 /** 457 * struct annotated_op_loc - Location info of instruction operand 458 * @reg1: First register in the operand 459 * @reg2: Second register in the operand 460 * @offset: Memory access offset in the operand 461 * @mem_ref: Whether the operand accesses memory 462 * @multi_regs: Whether the second register is used 463 */ 464 struct annotated_op_loc { 465 int reg1; 466 int reg2; 467 int offset; 468 bool mem_ref; 469 bool multi_regs; 470 }; 471 472 enum annotated_insn_ops { 473 INSN_OP_SOURCE = 0, 474 INSN_OP_TARGET = 1, 475 476 INSN_OP_MAX, 477 }; 478 479 /** 480 * struct annotated_insn_loc - Location info of instruction 481 * @ops: Array of location info for source and target operands 482 */ 483 struct annotated_insn_loc { 484 struct annotated_op_loc ops[INSN_OP_MAX]; 485 }; 486 487 #define for_each_insn_op_loc(insn_loc, i, op_loc) \ 488 for (i = INSN_OP_SOURCE, op_loc = &(insn_loc)->ops[i]; \ 489 i < INSN_OP_MAX; \ 490 i++, op_loc++) 491 492 /* Get detailed location info in the instruction */ 493 int annotate_get_insn_location(struct arch *arch, struct disasm_line *dl, 494 struct annotated_insn_loc *loc); 495 496 /* Returns a data type from the sample instruction (if any) */ 497 struct annotated_data_type *hist_entry__get_data_type(struct hist_entry *he); 498 499 struct annotated_item_stat { 500 struct list_head list; 501 char *name; 502 int good; 503 int bad; 504 }; 505 extern struct list_head ann_insn_stat; 506 507 /* Calculate PC-relative address */ 508 u64 annotate_calc_pcrel(struct map_symbol *ms, u64 ip, int offset, 509 struct disasm_line *dl); 510 511 #endif /* __PERF_ANNOTATE_H */ 512