1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> 4 * 5 * Parts came from builtin-annotate.c, see those files for further 6 * copyright notes. 7 */ 8 9 #include <errno.h> 10 #include <inttypes.h> 11 #include <libgen.h> 12 #include <bpf/bpf.h> 13 #include <bpf/btf.h> 14 #include <bpf/libbpf.h> 15 #include <linux/btf.h> 16 #include "util.h" 17 #include "ui/ui.h" 18 #include "sort.h" 19 #include "build-id.h" 20 #include "color.h" 21 #include "config.h" 22 #include "cache.h" 23 #include "dso.h" 24 #include "map.h" 25 #include "symbol.h" 26 #include "srcline.h" 27 #include "units.h" 28 #include "debug.h" 29 #include "annotate.h" 30 #include "evsel.h" 31 #include "evlist.h" 32 #include "bpf-event.h" 33 #include "block-range.h" 34 #include "string2.h" 35 #include "arch/common.h" 36 #include <regex.h> 37 #include <pthread.h> 38 #include <linux/bitops.h> 39 #include <linux/kernel.h> 40 #include <linux/string.h> 41 #include <bpf/libbpf.h> 42 #include <subcmd/parse-options.h> 43 44 /* FIXME: For the HE_COLORSET */ 45 #include "ui/browser.h" 46 47 /* 48 * FIXME: Using the same values as slang.h, 49 * but that header may not be available everywhere 50 */ 51 #define LARROW_CHAR ((unsigned char)',') 52 #define RARROW_CHAR ((unsigned char)'+') 53 #define DARROW_CHAR ((unsigned char)'.') 54 #define UARROW_CHAR ((unsigned char)'-') 55 56 #include <linux/ctype.h> 57 58 struct annotation_options annotation__default_options = { 59 .use_offset = true, 60 .jump_arrows = true, 61 .annotate_src = true, 62 .offset_level = ANNOTATION__OFFSET_JUMP_TARGETS, 63 .percent_type = PERCENT_PERIOD_LOCAL, 64 }; 65 66 static regex_t file_lineno; 67 68 static struct ins_ops *ins__find(struct arch *arch, const char *name); 69 static void ins__sort(struct arch *arch); 70 static int disasm_line__parse(char *line, const char **namep, char **rawp); 71 72 struct arch { 73 const char *name; 74 struct ins *instructions; 75 size_t nr_instructions; 76 size_t nr_instructions_allocated; 77 struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name); 78 bool sorted_instructions; 79 bool initialized; 80 void *priv; 81 unsigned int model; 82 unsigned int family; 83 int (*init)(struct arch *arch, char *cpuid); 84 bool (*ins_is_fused)(struct arch *arch, const char *ins1, 85 const char *ins2); 86 struct { 87 char comment_char; 88 char skip_functions_char; 89 } objdump; 90 }; 91 92 static struct ins_ops call_ops; 93 static struct ins_ops dec_ops; 94 static struct ins_ops jump_ops; 95 static struct ins_ops mov_ops; 96 static struct ins_ops nop_ops; 97 static struct ins_ops lock_ops; 98 static struct ins_ops ret_ops; 99 100 static int arch__grow_instructions(struct arch *arch) 101 { 102 struct ins *new_instructions; 103 size_t new_nr_allocated; 104 105 if (arch->nr_instructions_allocated == 0 && arch->instructions) 106 goto grow_from_non_allocated_table; 107 108 new_nr_allocated = arch->nr_instructions_allocated + 128; 109 new_instructions = realloc(arch->instructions, new_nr_allocated * sizeof(struct ins)); 110 if (new_instructions == NULL) 111 return -1; 112 113 out_update_instructions: 114 arch->instructions = new_instructions; 115 arch->nr_instructions_allocated = new_nr_allocated; 116 return 0; 117 118 grow_from_non_allocated_table: 119 new_nr_allocated = arch->nr_instructions + 128; 120 new_instructions = calloc(new_nr_allocated, sizeof(struct ins)); 121 if (new_instructions == NULL) 122 return -1; 123 124 memcpy(new_instructions, arch->instructions, arch->nr_instructions); 125 goto out_update_instructions; 126 } 127 128 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops) 129 { 130 struct ins *ins; 131 132 if (arch->nr_instructions == arch->nr_instructions_allocated && 133 arch__grow_instructions(arch)) 134 return -1; 135 136 ins = &arch->instructions[arch->nr_instructions]; 137 ins->name = strdup(name); 138 if (!ins->name) 139 return -1; 140 141 ins->ops = ops; 142 arch->nr_instructions++; 143 144 ins__sort(arch); 145 return 0; 146 } 147 148 #include "arch/arc/annotate/instructions.c" 149 #include "arch/arm/annotate/instructions.c" 150 #include "arch/arm64/annotate/instructions.c" 151 #include "arch/csky/annotate/instructions.c" 152 #include "arch/x86/annotate/instructions.c" 153 #include "arch/powerpc/annotate/instructions.c" 154 #include "arch/s390/annotate/instructions.c" 155 #include "arch/sparc/annotate/instructions.c" 156 157 static struct arch architectures[] = { 158 { 159 .name = "arc", 160 .init = arc__annotate_init, 161 }, 162 { 163 .name = "arm", 164 .init = arm__annotate_init, 165 }, 166 { 167 .name = "arm64", 168 .init = arm64__annotate_init, 169 }, 170 { 171 .name = "csky", 172 .init = csky__annotate_init, 173 }, 174 { 175 .name = "x86", 176 .init = x86__annotate_init, 177 .instructions = x86__instructions, 178 .nr_instructions = ARRAY_SIZE(x86__instructions), 179 .ins_is_fused = x86__ins_is_fused, 180 .objdump = { 181 .comment_char = '#', 182 }, 183 }, 184 { 185 .name = "powerpc", 186 .init = powerpc__annotate_init, 187 }, 188 { 189 .name = "s390", 190 .init = s390__annotate_init, 191 .objdump = { 192 .comment_char = '#', 193 }, 194 }, 195 { 196 .name = "sparc", 197 .init = sparc__annotate_init, 198 .objdump = { 199 .comment_char = '#', 200 }, 201 }, 202 }; 203 204 static void ins__delete(struct ins_operands *ops) 205 { 206 if (ops == NULL) 207 return; 208 zfree(&ops->source.raw); 209 zfree(&ops->source.name); 210 zfree(&ops->target.raw); 211 zfree(&ops->target.name); 212 } 213 214 static int ins__raw_scnprintf(struct ins *ins, char *bf, size_t size, 215 struct ins_operands *ops, int max_ins_name) 216 { 217 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, ops->raw); 218 } 219 220 int ins__scnprintf(struct ins *ins, char *bf, size_t size, 221 struct ins_operands *ops, int max_ins_name) 222 { 223 if (ins->ops->scnprintf) 224 return ins->ops->scnprintf(ins, bf, size, ops, max_ins_name); 225 226 return ins__raw_scnprintf(ins, bf, size, ops, max_ins_name); 227 } 228 229 bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2) 230 { 231 if (!arch || !arch->ins_is_fused) 232 return false; 233 234 return arch->ins_is_fused(arch, ins1, ins2); 235 } 236 237 static int call__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms) 238 { 239 char *endptr, *tok, *name; 240 struct map *map = ms->map; 241 struct addr_map_symbol target = { 242 .map = map, 243 }; 244 245 ops->target.addr = strtoull(ops->raw, &endptr, 16); 246 247 name = strchr(endptr, '<'); 248 if (name == NULL) 249 goto indirect_call; 250 251 name++; 252 253 if (arch->objdump.skip_functions_char && 254 strchr(name, arch->objdump.skip_functions_char)) 255 return -1; 256 257 tok = strchr(name, '>'); 258 if (tok == NULL) 259 return -1; 260 261 *tok = '\0'; 262 ops->target.name = strdup(name); 263 *tok = '>'; 264 265 if (ops->target.name == NULL) 266 return -1; 267 find_target: 268 target.addr = map__objdump_2mem(map, ops->target.addr); 269 270 if (map_groups__find_ams(&target) == 0 && 271 map__rip_2objdump(target.map, map->map_ip(target.map, target.addr)) == ops->target.addr) 272 ops->target.sym = target.sym; 273 274 return 0; 275 276 indirect_call: 277 tok = strchr(endptr, '*'); 278 if (tok != NULL) { 279 endptr++; 280 281 /* Indirect call can use a non-rip register and offset: callq *0x8(%rbx). 282 * Do not parse such instruction. */ 283 if (strstr(endptr, "(%r") == NULL) 284 ops->target.addr = strtoull(endptr, NULL, 16); 285 } 286 goto find_target; 287 } 288 289 static int call__scnprintf(struct ins *ins, char *bf, size_t size, 290 struct ins_operands *ops, int max_ins_name) 291 { 292 if (ops->target.sym) 293 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, ops->target.sym->name); 294 295 if (ops->target.addr == 0) 296 return ins__raw_scnprintf(ins, bf, size, ops, max_ins_name); 297 298 if (ops->target.name) 299 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, ops->target.name); 300 301 return scnprintf(bf, size, "%-*s *%" PRIx64, max_ins_name, ins->name, ops->target.addr); 302 } 303 304 static struct ins_ops call_ops = { 305 .parse = call__parse, 306 .scnprintf = call__scnprintf, 307 }; 308 309 bool ins__is_call(const struct ins *ins) 310 { 311 return ins->ops == &call_ops || ins->ops == &s390_call_ops; 312 } 313 314 /* 315 * Prevents from matching commas in the comment section, e.g.: 316 * ffff200008446e70: b.cs ffff2000084470f4 <generic_exec_single+0x314> // b.hs, b.nlast 317 */ 318 static inline const char *validate_comma(const char *c, struct ins_operands *ops) 319 { 320 if (ops->raw_comment && c > ops->raw_comment) 321 return NULL; 322 323 return c; 324 } 325 326 static int jump__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms) 327 { 328 struct map *map = ms->map; 329 struct symbol *sym = ms->sym; 330 struct addr_map_symbol target = { 331 .map = map, 332 }; 333 const char *c = strchr(ops->raw, ','); 334 u64 start, end; 335 336 ops->raw_comment = strchr(ops->raw, arch->objdump.comment_char); 337 c = validate_comma(c, ops); 338 339 /* 340 * Examples of lines to parse for the _cpp_lex_token@@Base 341 * function: 342 * 343 * 1159e6c: jne 115aa32 <_cpp_lex_token@@Base+0xf92> 344 * 1159e8b: jne c469be <cpp_named_operator2name@@Base+0xa72> 345 * 346 * The first is a jump to an offset inside the same function, 347 * the second is to another function, i.e. that 0xa72 is an 348 * offset in the cpp_named_operator2name@@base function. 349 */ 350 /* 351 * skip over possible up to 2 operands to get to address, e.g.: 352 * tbnz w0, #26, ffff0000083cd190 <security_file_permission+0xd0> 353 */ 354 if (c++ != NULL) { 355 ops->target.addr = strtoull(c, NULL, 16); 356 if (!ops->target.addr) { 357 c = strchr(c, ','); 358 c = validate_comma(c, ops); 359 if (c++ != NULL) 360 ops->target.addr = strtoull(c, NULL, 16); 361 } 362 } else { 363 ops->target.addr = strtoull(ops->raw, NULL, 16); 364 } 365 366 target.addr = map__objdump_2mem(map, ops->target.addr); 367 start = map->unmap_ip(map, sym->start), 368 end = map->unmap_ip(map, sym->end); 369 370 ops->target.outside = target.addr < start || target.addr > end; 371 372 /* 373 * FIXME: things like this in _cpp_lex_token (gcc's cc1 program): 374 375 cpp_named_operator2name@@Base+0xa72 376 377 * Point to a place that is after the cpp_named_operator2name 378 * boundaries, i.e. in the ELF symbol table for cc1 379 * cpp_named_operator2name is marked as being 32-bytes long, but it in 380 * fact is much larger than that, so we seem to need a symbols__find() 381 * routine that looks for >= current->start and < next_symbol->start, 382 * possibly just for C++ objects? 383 * 384 * For now lets just make some progress by marking jumps to outside the 385 * current function as call like. 386 * 387 * Actual navigation will come next, with further understanding of how 388 * the symbol searching and disassembly should be done. 389 */ 390 if (map_groups__find_ams(&target) == 0 && 391 map__rip_2objdump(target.map, map->map_ip(target.map, target.addr)) == ops->target.addr) 392 ops->target.sym = target.sym; 393 394 if (!ops->target.outside) { 395 ops->target.offset = target.addr - start; 396 ops->target.offset_avail = true; 397 } else { 398 ops->target.offset_avail = false; 399 } 400 401 return 0; 402 } 403 404 static int jump__scnprintf(struct ins *ins, char *bf, size_t size, 405 struct ins_operands *ops, int max_ins_name) 406 { 407 const char *c; 408 409 if (!ops->target.addr || ops->target.offset < 0) 410 return ins__raw_scnprintf(ins, bf, size, ops, max_ins_name); 411 412 if (ops->target.outside && ops->target.sym != NULL) 413 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, ops->target.sym->name); 414 415 c = strchr(ops->raw, ','); 416 c = validate_comma(c, ops); 417 418 if (c != NULL) { 419 const char *c2 = strchr(c + 1, ','); 420 421 c2 = validate_comma(c2, ops); 422 /* check for 3-op insn */ 423 if (c2 != NULL) 424 c = c2; 425 c++; 426 427 /* mirror arch objdump's space-after-comma style */ 428 if (*c == ' ') 429 c++; 430 } 431 432 return scnprintf(bf, size, "%-*s %.*s%" PRIx64, max_ins_name, 433 ins->name, c ? c - ops->raw : 0, ops->raw, 434 ops->target.offset); 435 } 436 437 static struct ins_ops jump_ops = { 438 .parse = jump__parse, 439 .scnprintf = jump__scnprintf, 440 }; 441 442 bool ins__is_jump(const struct ins *ins) 443 { 444 return ins->ops == &jump_ops; 445 } 446 447 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep) 448 { 449 char *endptr, *name, *t; 450 451 if (strstr(raw, "(%rip)") == NULL) 452 return 0; 453 454 *addrp = strtoull(comment, &endptr, 16); 455 if (endptr == comment) 456 return 0; 457 name = strchr(endptr, '<'); 458 if (name == NULL) 459 return -1; 460 461 name++; 462 463 t = strchr(name, '>'); 464 if (t == NULL) 465 return 0; 466 467 *t = '\0'; 468 *namep = strdup(name); 469 *t = '>'; 470 471 return 0; 472 } 473 474 static int lock__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms) 475 { 476 ops->locked.ops = zalloc(sizeof(*ops->locked.ops)); 477 if (ops->locked.ops == NULL) 478 return 0; 479 480 if (disasm_line__parse(ops->raw, &ops->locked.ins.name, &ops->locked.ops->raw) < 0) 481 goto out_free_ops; 482 483 ops->locked.ins.ops = ins__find(arch, ops->locked.ins.name); 484 485 if (ops->locked.ins.ops == NULL) 486 goto out_free_ops; 487 488 if (ops->locked.ins.ops->parse && 489 ops->locked.ins.ops->parse(arch, ops->locked.ops, ms) < 0) 490 goto out_free_ops; 491 492 return 0; 493 494 out_free_ops: 495 zfree(&ops->locked.ops); 496 return 0; 497 } 498 499 static int lock__scnprintf(struct ins *ins, char *bf, size_t size, 500 struct ins_operands *ops, int max_ins_name) 501 { 502 int printed; 503 504 if (ops->locked.ins.ops == NULL) 505 return ins__raw_scnprintf(ins, bf, size, ops, max_ins_name); 506 507 printed = scnprintf(bf, size, "%-*s ", max_ins_name, ins->name); 508 return printed + ins__scnprintf(&ops->locked.ins, bf + printed, 509 size - printed, ops->locked.ops, max_ins_name); 510 } 511 512 static void lock__delete(struct ins_operands *ops) 513 { 514 struct ins *ins = &ops->locked.ins; 515 516 if (ins->ops && ins->ops->free) 517 ins->ops->free(ops->locked.ops); 518 else 519 ins__delete(ops->locked.ops); 520 521 zfree(&ops->locked.ops); 522 zfree(&ops->target.raw); 523 zfree(&ops->target.name); 524 } 525 526 static struct ins_ops lock_ops = { 527 .free = lock__delete, 528 .parse = lock__parse, 529 .scnprintf = lock__scnprintf, 530 }; 531 532 static int mov__parse(struct arch *arch, struct ins_operands *ops, struct map_symbol *ms __maybe_unused) 533 { 534 char *s = strchr(ops->raw, ','), *target, *comment, prev; 535 536 if (s == NULL) 537 return -1; 538 539 *s = '\0'; 540 ops->source.raw = strdup(ops->raw); 541 *s = ','; 542 543 if (ops->source.raw == NULL) 544 return -1; 545 546 target = ++s; 547 comment = strchr(s, arch->objdump.comment_char); 548 549 if (comment != NULL) 550 s = comment - 1; 551 else 552 s = strchr(s, '\0') - 1; 553 554 while (s > target && isspace(s[0])) 555 --s; 556 s++; 557 prev = *s; 558 *s = '\0'; 559 560 ops->target.raw = strdup(target); 561 *s = prev; 562 563 if (ops->target.raw == NULL) 564 goto out_free_source; 565 566 if (comment == NULL) 567 return 0; 568 569 comment = skip_spaces(comment); 570 comment__symbol(ops->source.raw, comment + 1, &ops->source.addr, &ops->source.name); 571 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name); 572 573 return 0; 574 575 out_free_source: 576 zfree(&ops->source.raw); 577 return -1; 578 } 579 580 static int mov__scnprintf(struct ins *ins, char *bf, size_t size, 581 struct ins_operands *ops, int max_ins_name) 582 { 583 return scnprintf(bf, size, "%-*s %s,%s", max_ins_name, ins->name, 584 ops->source.name ?: ops->source.raw, 585 ops->target.name ?: ops->target.raw); 586 } 587 588 static struct ins_ops mov_ops = { 589 .parse = mov__parse, 590 .scnprintf = mov__scnprintf, 591 }; 592 593 static int dec__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map_symbol *ms __maybe_unused) 594 { 595 char *target, *comment, *s, prev; 596 597 target = s = ops->raw; 598 599 while (s[0] != '\0' && !isspace(s[0])) 600 ++s; 601 prev = *s; 602 *s = '\0'; 603 604 ops->target.raw = strdup(target); 605 *s = prev; 606 607 if (ops->target.raw == NULL) 608 return -1; 609 610 comment = strchr(s, arch->objdump.comment_char); 611 if (comment == NULL) 612 return 0; 613 614 comment = skip_spaces(comment); 615 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name); 616 617 return 0; 618 } 619 620 static int dec__scnprintf(struct ins *ins, char *bf, size_t size, 621 struct ins_operands *ops, int max_ins_name) 622 { 623 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, 624 ops->target.name ?: ops->target.raw); 625 } 626 627 static struct ins_ops dec_ops = { 628 .parse = dec__parse, 629 .scnprintf = dec__scnprintf, 630 }; 631 632 static int nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size, 633 struct ins_operands *ops __maybe_unused, int max_ins_name) 634 { 635 return scnprintf(bf, size, "%-*s", max_ins_name, "nop"); 636 } 637 638 static struct ins_ops nop_ops = { 639 .scnprintf = nop__scnprintf, 640 }; 641 642 static struct ins_ops ret_ops = { 643 .scnprintf = ins__raw_scnprintf, 644 }; 645 646 bool ins__is_ret(const struct ins *ins) 647 { 648 return ins->ops == &ret_ops; 649 } 650 651 bool ins__is_lock(const struct ins *ins) 652 { 653 return ins->ops == &lock_ops; 654 } 655 656 static int ins__key_cmp(const void *name, const void *insp) 657 { 658 const struct ins *ins = insp; 659 660 return strcmp(name, ins->name); 661 } 662 663 static int ins__cmp(const void *a, const void *b) 664 { 665 const struct ins *ia = a; 666 const struct ins *ib = b; 667 668 return strcmp(ia->name, ib->name); 669 } 670 671 static void ins__sort(struct arch *arch) 672 { 673 const int nmemb = arch->nr_instructions; 674 675 qsort(arch->instructions, nmemb, sizeof(struct ins), ins__cmp); 676 } 677 678 static struct ins_ops *__ins__find(struct arch *arch, const char *name) 679 { 680 struct ins *ins; 681 const int nmemb = arch->nr_instructions; 682 683 if (!arch->sorted_instructions) { 684 ins__sort(arch); 685 arch->sorted_instructions = true; 686 } 687 688 ins = bsearch(name, arch->instructions, nmemb, sizeof(struct ins), ins__key_cmp); 689 return ins ? ins->ops : NULL; 690 } 691 692 static struct ins_ops *ins__find(struct arch *arch, const char *name) 693 { 694 struct ins_ops *ops = __ins__find(arch, name); 695 696 if (!ops && arch->associate_instruction_ops) 697 ops = arch->associate_instruction_ops(arch, name); 698 699 return ops; 700 } 701 702 static int arch__key_cmp(const void *name, const void *archp) 703 { 704 const struct arch *arch = archp; 705 706 return strcmp(name, arch->name); 707 } 708 709 static int arch__cmp(const void *a, const void *b) 710 { 711 const struct arch *aa = a; 712 const struct arch *ab = b; 713 714 return strcmp(aa->name, ab->name); 715 } 716 717 static void arch__sort(void) 718 { 719 const int nmemb = ARRAY_SIZE(architectures); 720 721 qsort(architectures, nmemb, sizeof(struct arch), arch__cmp); 722 } 723 724 static struct arch *arch__find(const char *name) 725 { 726 const int nmemb = ARRAY_SIZE(architectures); 727 static bool sorted; 728 729 if (!sorted) { 730 arch__sort(); 731 sorted = true; 732 } 733 734 return bsearch(name, architectures, nmemb, sizeof(struct arch), arch__key_cmp); 735 } 736 737 static struct annotated_source *annotated_source__new(void) 738 { 739 struct annotated_source *src = zalloc(sizeof(*src)); 740 741 if (src != NULL) 742 INIT_LIST_HEAD(&src->source); 743 744 return src; 745 } 746 747 static __maybe_unused void annotated_source__delete(struct annotated_source *src) 748 { 749 if (src == NULL) 750 return; 751 zfree(&src->histograms); 752 zfree(&src->cycles_hist); 753 free(src); 754 } 755 756 static int annotated_source__alloc_histograms(struct annotated_source *src, 757 size_t size, int nr_hists) 758 { 759 size_t sizeof_sym_hist; 760 761 /* 762 * Add buffer of one element for zero length symbol. 763 * When sample is taken from first instruction of 764 * zero length symbol, perf still resolves it and 765 * shows symbol name in perf report and allows to 766 * annotate it. 767 */ 768 if (size == 0) 769 size = 1; 770 771 /* Check for overflow when calculating sizeof_sym_hist */ 772 if (size > (SIZE_MAX - sizeof(struct sym_hist)) / sizeof(struct sym_hist_entry)) 773 return -1; 774 775 sizeof_sym_hist = (sizeof(struct sym_hist) + size * sizeof(struct sym_hist_entry)); 776 777 /* Check for overflow in zalloc argument */ 778 if (sizeof_sym_hist > SIZE_MAX / nr_hists) 779 return -1; 780 781 src->sizeof_sym_hist = sizeof_sym_hist; 782 src->nr_histograms = nr_hists; 783 src->histograms = calloc(nr_hists, sizeof_sym_hist) ; 784 return src->histograms ? 0 : -1; 785 } 786 787 /* The cycles histogram is lazily allocated. */ 788 static int symbol__alloc_hist_cycles(struct symbol *sym) 789 { 790 struct annotation *notes = symbol__annotation(sym); 791 const size_t size = symbol__size(sym); 792 793 notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist)); 794 if (notes->src->cycles_hist == NULL) 795 return -1; 796 return 0; 797 } 798 799 void symbol__annotate_zero_histograms(struct symbol *sym) 800 { 801 struct annotation *notes = symbol__annotation(sym); 802 803 pthread_mutex_lock(¬es->lock); 804 if (notes->src != NULL) { 805 memset(notes->src->histograms, 0, 806 notes->src->nr_histograms * notes->src->sizeof_sym_hist); 807 if (notes->src->cycles_hist) 808 memset(notes->src->cycles_hist, 0, 809 symbol__size(sym) * sizeof(struct cyc_hist)); 810 } 811 pthread_mutex_unlock(¬es->lock); 812 } 813 814 static int __symbol__account_cycles(struct cyc_hist *ch, 815 u64 start, 816 unsigned offset, unsigned cycles, 817 unsigned have_start) 818 { 819 /* 820 * For now we can only account one basic block per 821 * final jump. But multiple could be overlapping. 822 * Always account the longest one. So when 823 * a shorter one has been already seen throw it away. 824 * 825 * We separately always account the full cycles. 826 */ 827 ch[offset].num_aggr++; 828 ch[offset].cycles_aggr += cycles; 829 830 if (cycles > ch[offset].cycles_max) 831 ch[offset].cycles_max = cycles; 832 833 if (ch[offset].cycles_min) { 834 if (cycles && cycles < ch[offset].cycles_min) 835 ch[offset].cycles_min = cycles; 836 } else 837 ch[offset].cycles_min = cycles; 838 839 if (!have_start && ch[offset].have_start) 840 return 0; 841 if (ch[offset].num) { 842 if (have_start && (!ch[offset].have_start || 843 ch[offset].start > start)) { 844 ch[offset].have_start = 0; 845 ch[offset].cycles = 0; 846 ch[offset].num = 0; 847 if (ch[offset].reset < 0xffff) 848 ch[offset].reset++; 849 } else if (have_start && 850 ch[offset].start < start) 851 return 0; 852 } 853 ch[offset].have_start = have_start; 854 ch[offset].start = start; 855 ch[offset].cycles += cycles; 856 ch[offset].num++; 857 return 0; 858 } 859 860 static int __symbol__inc_addr_samples(struct symbol *sym, struct map *map, 861 struct annotated_source *src, int evidx, u64 addr, 862 struct perf_sample *sample) 863 { 864 unsigned offset; 865 struct sym_hist *h; 866 867 pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, map->unmap_ip(map, addr)); 868 869 if ((addr < sym->start || addr >= sym->end) && 870 (addr != sym->end || sym->start != sym->end)) { 871 pr_debug("%s(%d): ERANGE! sym->name=%s, start=%#" PRIx64 ", addr=%#" PRIx64 ", end=%#" PRIx64 "\n", 872 __func__, __LINE__, sym->name, sym->start, addr, sym->end); 873 return -ERANGE; 874 } 875 876 offset = addr - sym->start; 877 h = annotated_source__histogram(src, evidx); 878 if (h == NULL) { 879 pr_debug("%s(%d): ENOMEM! sym->name=%s, start=%#" PRIx64 ", addr=%#" PRIx64 ", end=%#" PRIx64 ", func: %d\n", 880 __func__, __LINE__, sym->name, sym->start, addr, sym->end, sym->type == STT_FUNC); 881 return -ENOMEM; 882 } 883 h->nr_samples++; 884 h->addr[offset].nr_samples++; 885 h->period += sample->period; 886 h->addr[offset].period += sample->period; 887 888 pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64 889 ", evidx=%d] => nr_samples: %" PRIu64 ", period: %" PRIu64 "\n", 890 sym->start, sym->name, addr, addr - sym->start, evidx, 891 h->addr[offset].nr_samples, h->addr[offset].period); 892 return 0; 893 } 894 895 static struct cyc_hist *symbol__cycles_hist(struct symbol *sym) 896 { 897 struct annotation *notes = symbol__annotation(sym); 898 899 if (notes->src == NULL) { 900 notes->src = annotated_source__new(); 901 if (notes->src == NULL) 902 return NULL; 903 goto alloc_cycles_hist; 904 } 905 906 if (!notes->src->cycles_hist) { 907 alloc_cycles_hist: 908 symbol__alloc_hist_cycles(sym); 909 } 910 911 return notes->src->cycles_hist; 912 } 913 914 struct annotated_source *symbol__hists(struct symbol *sym, int nr_hists) 915 { 916 struct annotation *notes = symbol__annotation(sym); 917 918 if (notes->src == NULL) { 919 notes->src = annotated_source__new(); 920 if (notes->src == NULL) 921 return NULL; 922 goto alloc_histograms; 923 } 924 925 if (notes->src->histograms == NULL) { 926 alloc_histograms: 927 annotated_source__alloc_histograms(notes->src, symbol__size(sym), 928 nr_hists); 929 } 930 931 return notes->src; 932 } 933 934 static int symbol__inc_addr_samples(struct symbol *sym, struct map *map, 935 struct evsel *evsel, u64 addr, 936 struct perf_sample *sample) 937 { 938 struct annotated_source *src; 939 940 if (sym == NULL) 941 return 0; 942 src = symbol__hists(sym, evsel->evlist->core.nr_entries); 943 return (src) ? __symbol__inc_addr_samples(sym, map, src, evsel->idx, 944 addr, sample) : 0; 945 } 946 947 static int symbol__account_cycles(u64 addr, u64 start, 948 struct symbol *sym, unsigned cycles) 949 { 950 struct cyc_hist *cycles_hist; 951 unsigned offset; 952 953 if (sym == NULL) 954 return 0; 955 cycles_hist = symbol__cycles_hist(sym); 956 if (cycles_hist == NULL) 957 return -ENOMEM; 958 if (addr < sym->start || addr >= sym->end) 959 return -ERANGE; 960 961 if (start) { 962 if (start < sym->start || start >= sym->end) 963 return -ERANGE; 964 if (start >= addr) 965 start = 0; 966 } 967 offset = addr - sym->start; 968 return __symbol__account_cycles(cycles_hist, 969 start ? start - sym->start : 0, 970 offset, cycles, 971 !!start); 972 } 973 974 int addr_map_symbol__account_cycles(struct addr_map_symbol *ams, 975 struct addr_map_symbol *start, 976 unsigned cycles) 977 { 978 u64 saddr = 0; 979 int err; 980 981 if (!cycles) 982 return 0; 983 984 /* 985 * Only set start when IPC can be computed. We can only 986 * compute it when the basic block is completely in a single 987 * function. 988 * Special case the case when the jump is elsewhere, but 989 * it starts on the function start. 990 */ 991 if (start && 992 (start->sym == ams->sym || 993 (ams->sym && 994 start->addr == ams->sym->start + ams->map->start))) 995 saddr = start->al_addr; 996 if (saddr == 0) 997 pr_debug2("BB with bad start: addr %"PRIx64" start %"PRIx64" sym %"PRIx64" saddr %"PRIx64"\n", 998 ams->addr, 999 start ? start->addr : 0, 1000 ams->sym ? ams->sym->start + ams->map->start : 0, 1001 saddr); 1002 err = symbol__account_cycles(ams->al_addr, saddr, ams->sym, cycles); 1003 if (err) 1004 pr_debug2("account_cycles failed %d\n", err); 1005 return err; 1006 } 1007 1008 static unsigned annotation__count_insn(struct annotation *notes, u64 start, u64 end) 1009 { 1010 unsigned n_insn = 0; 1011 u64 offset; 1012 1013 for (offset = start; offset <= end; offset++) { 1014 if (notes->offsets[offset]) 1015 n_insn++; 1016 } 1017 return n_insn; 1018 } 1019 1020 static void annotation__count_and_fill(struct annotation *notes, u64 start, u64 end, struct cyc_hist *ch) 1021 { 1022 unsigned n_insn; 1023 unsigned int cover_insn = 0; 1024 u64 offset; 1025 1026 n_insn = annotation__count_insn(notes, start, end); 1027 if (n_insn && ch->num && ch->cycles) { 1028 float ipc = n_insn / ((double)ch->cycles / (double)ch->num); 1029 1030 /* Hide data when there are too many overlaps. */ 1031 if (ch->reset >= 0x7fff) 1032 return; 1033 1034 for (offset = start; offset <= end; offset++) { 1035 struct annotation_line *al = notes->offsets[offset]; 1036 1037 if (al && al->ipc == 0.0) { 1038 al->ipc = ipc; 1039 cover_insn++; 1040 } 1041 } 1042 1043 if (cover_insn) { 1044 notes->hit_cycles += ch->cycles; 1045 notes->hit_insn += n_insn * ch->num; 1046 notes->cover_insn += cover_insn; 1047 } 1048 } 1049 } 1050 1051 void annotation__compute_ipc(struct annotation *notes, size_t size) 1052 { 1053 s64 offset; 1054 1055 if (!notes->src || !notes->src->cycles_hist) 1056 return; 1057 1058 notes->total_insn = annotation__count_insn(notes, 0, size - 1); 1059 notes->hit_cycles = 0; 1060 notes->hit_insn = 0; 1061 notes->cover_insn = 0; 1062 1063 pthread_mutex_lock(¬es->lock); 1064 for (offset = size - 1; offset >= 0; --offset) { 1065 struct cyc_hist *ch; 1066 1067 ch = ¬es->src->cycles_hist[offset]; 1068 if (ch && ch->cycles) { 1069 struct annotation_line *al; 1070 1071 if (ch->have_start) 1072 annotation__count_and_fill(notes, ch->start, offset, ch); 1073 al = notes->offsets[offset]; 1074 if (al && ch->num_aggr) { 1075 al->cycles = ch->cycles_aggr / ch->num_aggr; 1076 al->cycles_max = ch->cycles_max; 1077 al->cycles_min = ch->cycles_min; 1078 } 1079 notes->have_cycles = true; 1080 } 1081 } 1082 pthread_mutex_unlock(¬es->lock); 1083 } 1084 1085 int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample, 1086 struct evsel *evsel) 1087 { 1088 return symbol__inc_addr_samples(ams->sym, ams->map, evsel, ams->al_addr, sample); 1089 } 1090 1091 int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample, 1092 struct evsel *evsel, u64 ip) 1093 { 1094 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evsel, ip, sample); 1095 } 1096 1097 static void disasm_line__init_ins(struct disasm_line *dl, struct arch *arch, struct map_symbol *ms) 1098 { 1099 dl->ins.ops = ins__find(arch, dl->ins.name); 1100 1101 if (!dl->ins.ops) 1102 return; 1103 1104 if (dl->ins.ops->parse && dl->ins.ops->parse(arch, &dl->ops, ms) < 0) 1105 dl->ins.ops = NULL; 1106 } 1107 1108 static int disasm_line__parse(char *line, const char **namep, char **rawp) 1109 { 1110 char tmp, *name = skip_spaces(line); 1111 1112 if (name[0] == '\0') 1113 return -1; 1114 1115 *rawp = name + 1; 1116 1117 while ((*rawp)[0] != '\0' && !isspace((*rawp)[0])) 1118 ++*rawp; 1119 1120 tmp = (*rawp)[0]; 1121 (*rawp)[0] = '\0'; 1122 *namep = strdup(name); 1123 1124 if (*namep == NULL) 1125 goto out; 1126 1127 (*rawp)[0] = tmp; 1128 *rawp = strim(*rawp); 1129 1130 return 0; 1131 1132 out: 1133 return -1; 1134 } 1135 1136 struct annotate_args { 1137 size_t privsize; 1138 struct arch *arch; 1139 struct map_symbol ms; 1140 struct evsel *evsel; 1141 struct annotation_options *options; 1142 s64 offset; 1143 char *line; 1144 int line_nr; 1145 }; 1146 1147 static void annotation_line__delete(struct annotation_line *al) 1148 { 1149 void *ptr = (void *) al - al->privsize; 1150 1151 free_srcline(al->path); 1152 zfree(&al->line); 1153 free(ptr); 1154 } 1155 1156 /* 1157 * Allocating the annotation line data with following 1158 * structure: 1159 * 1160 * -------------------------------------- 1161 * private space | struct annotation_line 1162 * -------------------------------------- 1163 * 1164 * Size of the private space is stored in 'struct annotation_line'. 1165 * 1166 */ 1167 static struct annotation_line * 1168 annotation_line__new(struct annotate_args *args, size_t privsize) 1169 { 1170 struct annotation_line *al; 1171 struct evsel *evsel = args->evsel; 1172 size_t size = privsize + sizeof(*al); 1173 int nr = 1; 1174 1175 if (perf_evsel__is_group_event(evsel)) 1176 nr = evsel->core.nr_members; 1177 1178 size += sizeof(al->data[0]) * nr; 1179 1180 al = zalloc(size); 1181 if (al) { 1182 al = (void *) al + privsize; 1183 al->privsize = privsize; 1184 al->offset = args->offset; 1185 al->line = strdup(args->line); 1186 al->line_nr = args->line_nr; 1187 al->data_nr = nr; 1188 } 1189 1190 return al; 1191 } 1192 1193 /* 1194 * Allocating the disasm annotation line data with 1195 * following structure: 1196 * 1197 * ------------------------------------------------------------ 1198 * privsize space | struct disasm_line | struct annotation_line 1199 * ------------------------------------------------------------ 1200 * 1201 * We have 'struct annotation_line' member as last member 1202 * of 'struct disasm_line' to have an easy access. 1203 * 1204 */ 1205 static struct disasm_line *disasm_line__new(struct annotate_args *args) 1206 { 1207 struct disasm_line *dl = NULL; 1208 struct annotation_line *al; 1209 size_t privsize = args->privsize + offsetof(struct disasm_line, al); 1210 1211 al = annotation_line__new(args, privsize); 1212 if (al != NULL) { 1213 dl = disasm_line(al); 1214 1215 if (dl->al.line == NULL) 1216 goto out_delete; 1217 1218 if (args->offset != -1) { 1219 if (disasm_line__parse(dl->al.line, &dl->ins.name, &dl->ops.raw) < 0) 1220 goto out_free_line; 1221 1222 disasm_line__init_ins(dl, args->arch, &args->ms); 1223 } 1224 } 1225 1226 return dl; 1227 1228 out_free_line: 1229 zfree(&dl->al.line); 1230 out_delete: 1231 free(dl); 1232 return NULL; 1233 } 1234 1235 void disasm_line__free(struct disasm_line *dl) 1236 { 1237 if (dl->ins.ops && dl->ins.ops->free) 1238 dl->ins.ops->free(&dl->ops); 1239 else 1240 ins__delete(&dl->ops); 1241 zfree(&dl->ins.name); 1242 annotation_line__delete(&dl->al); 1243 } 1244 1245 int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw, int max_ins_name) 1246 { 1247 if (raw || !dl->ins.ops) 1248 return scnprintf(bf, size, "%-*s %s", max_ins_name, dl->ins.name, dl->ops.raw); 1249 1250 return ins__scnprintf(&dl->ins, bf, size, &dl->ops, max_ins_name); 1251 } 1252 1253 static void annotation_line__add(struct annotation_line *al, struct list_head *head) 1254 { 1255 list_add_tail(&al->node, head); 1256 } 1257 1258 struct annotation_line * 1259 annotation_line__next(struct annotation_line *pos, struct list_head *head) 1260 { 1261 list_for_each_entry_continue(pos, head, node) 1262 if (pos->offset >= 0) 1263 return pos; 1264 1265 return NULL; 1266 } 1267 1268 static const char *annotate__address_color(struct block_range *br) 1269 { 1270 double cov = block_range__coverage(br); 1271 1272 if (cov >= 0) { 1273 /* mark red for >75% coverage */ 1274 if (cov > 0.75) 1275 return PERF_COLOR_RED; 1276 1277 /* mark dull for <1% coverage */ 1278 if (cov < 0.01) 1279 return PERF_COLOR_NORMAL; 1280 } 1281 1282 return PERF_COLOR_MAGENTA; 1283 } 1284 1285 static const char *annotate__asm_color(struct block_range *br) 1286 { 1287 double cov = block_range__coverage(br); 1288 1289 if (cov >= 0) { 1290 /* mark dull for <1% coverage */ 1291 if (cov < 0.01) 1292 return PERF_COLOR_NORMAL; 1293 } 1294 1295 return PERF_COLOR_BLUE; 1296 } 1297 1298 static void annotate__branch_printf(struct block_range *br, u64 addr) 1299 { 1300 bool emit_comment = true; 1301 1302 if (!br) 1303 return; 1304 1305 #if 1 1306 if (br->is_target && br->start == addr) { 1307 struct block_range *branch = br; 1308 double p; 1309 1310 /* 1311 * Find matching branch to our target. 1312 */ 1313 while (!branch->is_branch) 1314 branch = block_range__next(branch); 1315 1316 p = 100 *(double)br->entry / branch->coverage; 1317 1318 if (p > 0.1) { 1319 if (emit_comment) { 1320 emit_comment = false; 1321 printf("\t#"); 1322 } 1323 1324 /* 1325 * The percentage of coverage joined at this target in relation 1326 * to the next branch. 1327 */ 1328 printf(" +%.2f%%", p); 1329 } 1330 } 1331 #endif 1332 if (br->is_branch && br->end == addr) { 1333 double p = 100*(double)br->taken / br->coverage; 1334 1335 if (p > 0.1) { 1336 if (emit_comment) { 1337 emit_comment = false; 1338 printf("\t#"); 1339 } 1340 1341 /* 1342 * The percentage of coverage leaving at this branch, and 1343 * its prediction ratio. 1344 */ 1345 printf(" -%.2f%% (p:%.2f%%)", p, 100*(double)br->pred / br->taken); 1346 } 1347 } 1348 } 1349 1350 static int disasm_line__print(struct disasm_line *dl, u64 start, int addr_fmt_width) 1351 { 1352 s64 offset = dl->al.offset; 1353 const u64 addr = start + offset; 1354 struct block_range *br; 1355 1356 br = block_range__find(addr); 1357 color_fprintf(stdout, annotate__address_color(br), " %*" PRIx64 ":", addr_fmt_width, addr); 1358 color_fprintf(stdout, annotate__asm_color(br), "%s", dl->al.line); 1359 annotate__branch_printf(br, addr); 1360 return 0; 1361 } 1362 1363 static int 1364 annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start, 1365 struct evsel *evsel, u64 len, int min_pcnt, int printed, 1366 int max_lines, struct annotation_line *queue, int addr_fmt_width, 1367 int percent_type) 1368 { 1369 struct disasm_line *dl = container_of(al, struct disasm_line, al); 1370 static const char *prev_line; 1371 static const char *prev_color; 1372 1373 if (al->offset != -1) { 1374 double max_percent = 0.0; 1375 int i, nr_percent = 1; 1376 const char *color; 1377 struct annotation *notes = symbol__annotation(sym); 1378 1379 for (i = 0; i < al->data_nr; i++) { 1380 double percent; 1381 1382 percent = annotation_data__percent(&al->data[i], 1383 percent_type); 1384 1385 if (percent > max_percent) 1386 max_percent = percent; 1387 } 1388 1389 if (al->data_nr > nr_percent) 1390 nr_percent = al->data_nr; 1391 1392 if (max_percent < min_pcnt) 1393 return -1; 1394 1395 if (max_lines && printed >= max_lines) 1396 return 1; 1397 1398 if (queue != NULL) { 1399 list_for_each_entry_from(queue, ¬es->src->source, node) { 1400 if (queue == al) 1401 break; 1402 annotation_line__print(queue, sym, start, evsel, len, 1403 0, 0, 1, NULL, addr_fmt_width, 1404 percent_type); 1405 } 1406 } 1407 1408 color = get_percent_color(max_percent); 1409 1410 /* 1411 * Also color the filename and line if needed, with 1412 * the same color than the percentage. Don't print it 1413 * twice for close colored addr with the same filename:line 1414 */ 1415 if (al->path) { 1416 if (!prev_line || strcmp(prev_line, al->path) 1417 || color != prev_color) { 1418 color_fprintf(stdout, color, " %s", al->path); 1419 prev_line = al->path; 1420 prev_color = color; 1421 } 1422 } 1423 1424 for (i = 0; i < nr_percent; i++) { 1425 struct annotation_data *data = &al->data[i]; 1426 double percent; 1427 1428 percent = annotation_data__percent(data, percent_type); 1429 color = get_percent_color(percent); 1430 1431 if (symbol_conf.show_total_period) 1432 color_fprintf(stdout, color, " %11" PRIu64, 1433 data->he.period); 1434 else if (symbol_conf.show_nr_samples) 1435 color_fprintf(stdout, color, " %7" PRIu64, 1436 data->he.nr_samples); 1437 else 1438 color_fprintf(stdout, color, " %7.2f", percent); 1439 } 1440 1441 printf(" : "); 1442 1443 disasm_line__print(dl, start, addr_fmt_width); 1444 printf("\n"); 1445 } else if (max_lines && printed >= max_lines) 1446 return 1; 1447 else { 1448 int width = symbol_conf.show_total_period ? 12 : 8; 1449 1450 if (queue) 1451 return -1; 1452 1453 if (perf_evsel__is_group_event(evsel)) 1454 width *= evsel->core.nr_members; 1455 1456 if (!*al->line) 1457 printf(" %*s:\n", width, " "); 1458 else 1459 printf(" %*s: %*s %s\n", width, " ", addr_fmt_width, " ", al->line); 1460 } 1461 1462 return 0; 1463 } 1464 1465 /* 1466 * symbol__parse_objdump_line() parses objdump output (with -d --no-show-raw) 1467 * which looks like following 1468 * 1469 * 0000000000415500 <_init>: 1470 * 415500: sub $0x8,%rsp 1471 * 415504: mov 0x2f5ad5(%rip),%rax # 70afe0 <_DYNAMIC+0x2f8> 1472 * 41550b: test %rax,%rax 1473 * 41550e: je 415515 <_init+0x15> 1474 * 415510: callq 416e70 <__gmon_start__@plt> 1475 * 415515: add $0x8,%rsp 1476 * 415519: retq 1477 * 1478 * it will be parsed and saved into struct disasm_line as 1479 * <offset> <name> <ops.raw> 1480 * 1481 * The offset will be a relative offset from the start of the symbol and -1 1482 * means that it's not a disassembly line so should be treated differently. 1483 * The ops.raw part will be parsed further according to type of the instruction. 1484 */ 1485 static int symbol__parse_objdump_line(struct symbol *sym, FILE *file, 1486 struct annotate_args *args, 1487 int *line_nr) 1488 { 1489 struct map *map = args->ms.map; 1490 struct annotation *notes = symbol__annotation(sym); 1491 struct disasm_line *dl; 1492 char *line = NULL, *parsed_line, *tmp, *tmp2; 1493 size_t line_len; 1494 s64 line_ip, offset = -1; 1495 regmatch_t match[2]; 1496 1497 if (getline(&line, &line_len, file) < 0) 1498 return -1; 1499 1500 if (!line) 1501 return -1; 1502 1503 line_ip = -1; 1504 parsed_line = strim(line); 1505 1506 /* /filename:linenr ? Save line number and ignore. */ 1507 if (regexec(&file_lineno, parsed_line, 2, match, 0) == 0) { 1508 *line_nr = atoi(parsed_line + match[1].rm_so); 1509 return 0; 1510 } 1511 1512 tmp = skip_spaces(parsed_line); 1513 if (*tmp) { 1514 /* 1515 * Parse hexa addresses followed by ':' 1516 */ 1517 line_ip = strtoull(tmp, &tmp2, 16); 1518 if (*tmp2 != ':' || tmp == tmp2 || tmp2[1] == '\0') 1519 line_ip = -1; 1520 } 1521 1522 if (line_ip != -1) { 1523 u64 start = map__rip_2objdump(map, sym->start), 1524 end = map__rip_2objdump(map, sym->end); 1525 1526 offset = line_ip - start; 1527 if ((u64)line_ip < start || (u64)line_ip >= end) 1528 offset = -1; 1529 else 1530 parsed_line = tmp2 + 1; 1531 } 1532 1533 args->offset = offset; 1534 args->line = parsed_line; 1535 args->line_nr = *line_nr; 1536 args->ms.sym = sym; 1537 1538 dl = disasm_line__new(args); 1539 free(line); 1540 (*line_nr)++; 1541 1542 if (dl == NULL) 1543 return -1; 1544 1545 if (!disasm_line__has_local_offset(dl)) { 1546 dl->ops.target.offset = dl->ops.target.addr - 1547 map__rip_2objdump(map, sym->start); 1548 dl->ops.target.offset_avail = true; 1549 } 1550 1551 /* kcore has no symbols, so add the call target symbol */ 1552 if (dl->ins.ops && ins__is_call(&dl->ins) && !dl->ops.target.sym) { 1553 struct addr_map_symbol target = { 1554 .map = map, 1555 .addr = dl->ops.target.addr, 1556 }; 1557 1558 if (!map_groups__find_ams(&target) && 1559 target.sym->start == target.al_addr) 1560 dl->ops.target.sym = target.sym; 1561 } 1562 1563 annotation_line__add(&dl->al, ¬es->src->source); 1564 1565 return 0; 1566 } 1567 1568 static __attribute__((constructor)) void symbol__init_regexpr(void) 1569 { 1570 regcomp(&file_lineno, "^/[^:]+:([0-9]+)", REG_EXTENDED); 1571 } 1572 1573 static void delete_last_nop(struct symbol *sym) 1574 { 1575 struct annotation *notes = symbol__annotation(sym); 1576 struct list_head *list = ¬es->src->source; 1577 struct disasm_line *dl; 1578 1579 while (!list_empty(list)) { 1580 dl = list_entry(list->prev, struct disasm_line, al.node); 1581 1582 if (dl->ins.ops) { 1583 if (dl->ins.ops != &nop_ops) 1584 return; 1585 } else { 1586 if (!strstr(dl->al.line, " nop ") && 1587 !strstr(dl->al.line, " nopl ") && 1588 !strstr(dl->al.line, " nopw ")) 1589 return; 1590 } 1591 1592 list_del_init(&dl->al.node); 1593 disasm_line__free(dl); 1594 } 1595 } 1596 1597 int symbol__strerror_disassemble(struct symbol *sym __maybe_unused, struct map *map, 1598 int errnum, char *buf, size_t buflen) 1599 { 1600 struct dso *dso = map->dso; 1601 1602 BUG_ON(buflen == 0); 1603 1604 if (errnum >= 0) { 1605 str_error_r(errnum, buf, buflen); 1606 return 0; 1607 } 1608 1609 switch (errnum) { 1610 case SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX: { 1611 char bf[SBUILD_ID_SIZE + 15] = " with build id "; 1612 char *build_id_msg = NULL; 1613 1614 if (dso->has_build_id) { 1615 build_id__sprintf(dso->build_id, 1616 sizeof(dso->build_id), bf + 15); 1617 build_id_msg = bf; 1618 } 1619 scnprintf(buf, buflen, 1620 "No vmlinux file%s\nwas found in the path.\n\n" 1621 "Note that annotation using /proc/kcore requires CAP_SYS_RAWIO capability.\n\n" 1622 "Please use:\n\n" 1623 " perf buildid-cache -vu vmlinux\n\n" 1624 "or:\n\n" 1625 " --vmlinux vmlinux\n", build_id_msg ?: ""); 1626 } 1627 break; 1628 case SYMBOL_ANNOTATE_ERRNO__NO_LIBOPCODES_FOR_BPF: 1629 scnprintf(buf, buflen, "Please link with binutils's libopcode to enable BPF annotation"); 1630 break; 1631 default: 1632 scnprintf(buf, buflen, "Internal error: Invalid %d error code\n", errnum); 1633 break; 1634 } 1635 1636 return 0; 1637 } 1638 1639 static int dso__disassemble_filename(struct dso *dso, char *filename, size_t filename_size) 1640 { 1641 char linkname[PATH_MAX]; 1642 char *build_id_filename; 1643 char *build_id_path = NULL; 1644 char *pos; 1645 1646 if (dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS && 1647 !dso__is_kcore(dso)) 1648 return SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX; 1649 1650 build_id_filename = dso__build_id_filename(dso, NULL, 0, false); 1651 if (build_id_filename) { 1652 __symbol__join_symfs(filename, filename_size, build_id_filename); 1653 free(build_id_filename); 1654 } else { 1655 if (dso->has_build_id) 1656 return ENOMEM; 1657 goto fallback; 1658 } 1659 1660 build_id_path = strdup(filename); 1661 if (!build_id_path) 1662 return -1; 1663 1664 /* 1665 * old style build-id cache has name of XX/XXXXXXX.. while 1666 * new style has XX/XXXXXXX../{elf,kallsyms,vdso}. 1667 * extract the build-id part of dirname in the new style only. 1668 */ 1669 pos = strrchr(build_id_path, '/'); 1670 if (pos && strlen(pos) < SBUILD_ID_SIZE - 2) 1671 dirname(build_id_path); 1672 1673 if (dso__is_kcore(dso) || 1674 readlink(build_id_path, linkname, sizeof(linkname)) < 0 || 1675 strstr(linkname, DSO__NAME_KALLSYMS) || 1676 access(filename, R_OK)) { 1677 fallback: 1678 /* 1679 * If we don't have build-ids or the build-id file isn't in the 1680 * cache, or is just a kallsyms file, well, lets hope that this 1681 * DSO is the same as when 'perf record' ran. 1682 */ 1683 __symbol__join_symfs(filename, filename_size, dso->long_name); 1684 } 1685 1686 free(build_id_path); 1687 return 0; 1688 } 1689 1690 #if defined(HAVE_LIBBFD_SUPPORT) && defined(HAVE_LIBBPF_SUPPORT) 1691 #define PACKAGE "perf" 1692 #include <bfd.h> 1693 #include <dis-asm.h> 1694 1695 static int symbol__disassemble_bpf(struct symbol *sym, 1696 struct annotate_args *args) 1697 { 1698 struct annotation *notes = symbol__annotation(sym); 1699 struct annotation_options *opts = args->options; 1700 struct bpf_prog_info_linear *info_linear; 1701 struct bpf_prog_linfo *prog_linfo = NULL; 1702 struct bpf_prog_info_node *info_node; 1703 int len = sym->end - sym->start; 1704 disassembler_ftype disassemble; 1705 struct map *map = args->ms.map; 1706 struct disassemble_info info; 1707 struct dso *dso = map->dso; 1708 int pc = 0, count, sub_id; 1709 struct btf *btf = NULL; 1710 char tpath[PATH_MAX]; 1711 size_t buf_size; 1712 int nr_skip = 0; 1713 int ret = -1; 1714 char *buf; 1715 bfd *bfdf; 1716 FILE *s; 1717 1718 if (dso->binary_type != DSO_BINARY_TYPE__BPF_PROG_INFO) 1719 return -1; 1720 1721 pr_debug("%s: handling sym %s addr %" PRIx64 " len %" PRIx64 "\n", __func__, 1722 sym->name, sym->start, sym->end - sym->start); 1723 1724 memset(tpath, 0, sizeof(tpath)); 1725 perf_exe(tpath, sizeof(tpath)); 1726 1727 bfdf = bfd_openr(tpath, NULL); 1728 assert(bfdf); 1729 assert(bfd_check_format(bfdf, bfd_object)); 1730 1731 s = open_memstream(&buf, &buf_size); 1732 if (!s) 1733 goto out; 1734 init_disassemble_info(&info, s, 1735 (fprintf_ftype) fprintf); 1736 1737 info.arch = bfd_get_arch(bfdf); 1738 info.mach = bfd_get_mach(bfdf); 1739 1740 info_node = perf_env__find_bpf_prog_info(dso->bpf_prog.env, 1741 dso->bpf_prog.id); 1742 if (!info_node) 1743 goto out; 1744 info_linear = info_node->info_linear; 1745 sub_id = dso->bpf_prog.sub_id; 1746 1747 info.buffer = (void *)(uintptr_t)(info_linear->info.jited_prog_insns); 1748 info.buffer_length = info_linear->info.jited_prog_len; 1749 1750 if (info_linear->info.nr_line_info) 1751 prog_linfo = bpf_prog_linfo__new(&info_linear->info); 1752 1753 if (info_linear->info.btf_id) { 1754 struct btf_node *node; 1755 1756 node = perf_env__find_btf(dso->bpf_prog.env, 1757 info_linear->info.btf_id); 1758 if (node) 1759 btf = btf__new((__u8 *)(node->data), 1760 node->data_size); 1761 } 1762 1763 disassemble_init_for_target(&info); 1764 1765 #ifdef DISASM_FOUR_ARGS_SIGNATURE 1766 disassemble = disassembler(info.arch, 1767 bfd_big_endian(bfdf), 1768 info.mach, 1769 bfdf); 1770 #else 1771 disassemble = disassembler(bfdf); 1772 #endif 1773 assert(disassemble); 1774 1775 fflush(s); 1776 do { 1777 const struct bpf_line_info *linfo = NULL; 1778 struct disasm_line *dl; 1779 size_t prev_buf_size; 1780 const char *srcline; 1781 u64 addr; 1782 1783 addr = pc + ((u64 *)(uintptr_t)(info_linear->info.jited_ksyms))[sub_id]; 1784 count = disassemble(pc, &info); 1785 1786 if (prog_linfo) 1787 linfo = bpf_prog_linfo__lfind_addr_func(prog_linfo, 1788 addr, sub_id, 1789 nr_skip); 1790 1791 if (linfo && btf) { 1792 srcline = btf__name_by_offset(btf, linfo->line_off); 1793 nr_skip++; 1794 } else 1795 srcline = NULL; 1796 1797 fprintf(s, "\n"); 1798 prev_buf_size = buf_size; 1799 fflush(s); 1800 1801 if (!opts->hide_src_code && srcline) { 1802 args->offset = -1; 1803 args->line = strdup(srcline); 1804 args->line_nr = 0; 1805 args->ms.sym = sym; 1806 dl = disasm_line__new(args); 1807 if (dl) { 1808 annotation_line__add(&dl->al, 1809 ¬es->src->source); 1810 } 1811 } 1812 1813 args->offset = pc; 1814 args->line = buf + prev_buf_size; 1815 args->line_nr = 0; 1816 args->ms.sym = sym; 1817 dl = disasm_line__new(args); 1818 if (dl) 1819 annotation_line__add(&dl->al, ¬es->src->source); 1820 1821 pc += count; 1822 } while (count > 0 && pc < len); 1823 1824 ret = 0; 1825 out: 1826 free(prog_linfo); 1827 free(btf); 1828 fclose(s); 1829 bfd_close(bfdf); 1830 return ret; 1831 } 1832 #else // defined(HAVE_LIBBFD_SUPPORT) && defined(HAVE_LIBBPF_SUPPORT) 1833 static int symbol__disassemble_bpf(struct symbol *sym __maybe_unused, 1834 struct annotate_args *args __maybe_unused) 1835 { 1836 return SYMBOL_ANNOTATE_ERRNO__NO_LIBOPCODES_FOR_BPF; 1837 } 1838 #endif // defined(HAVE_LIBBFD_SUPPORT) && defined(HAVE_LIBBPF_SUPPORT) 1839 1840 static int symbol__disassemble(struct symbol *sym, struct annotate_args *args) 1841 { 1842 struct annotation_options *opts = args->options; 1843 struct map *map = args->ms.map; 1844 struct dso *dso = map->dso; 1845 char *command; 1846 FILE *file; 1847 char symfs_filename[PATH_MAX]; 1848 struct kcore_extract kce; 1849 bool delete_extract = false; 1850 bool decomp = false; 1851 int stdout_fd[2]; 1852 int lineno = 0; 1853 int nline; 1854 pid_t pid; 1855 int err = dso__disassemble_filename(dso, symfs_filename, sizeof(symfs_filename)); 1856 1857 if (err) 1858 return err; 1859 1860 pr_debug("%s: filename=%s, sym=%s, start=%#" PRIx64 ", end=%#" PRIx64 "\n", __func__, 1861 symfs_filename, sym->name, map->unmap_ip(map, sym->start), 1862 map->unmap_ip(map, sym->end)); 1863 1864 pr_debug("annotating [%p] %30s : [%p] %30s\n", 1865 dso, dso->long_name, sym, sym->name); 1866 1867 if (dso->binary_type == DSO_BINARY_TYPE__BPF_PROG_INFO) { 1868 return symbol__disassemble_bpf(sym, args); 1869 } else if (dso__is_kcore(dso)) { 1870 kce.kcore_filename = symfs_filename; 1871 kce.addr = map__rip_2objdump(map, sym->start); 1872 kce.offs = sym->start; 1873 kce.len = sym->end - sym->start; 1874 if (!kcore_extract__create(&kce)) { 1875 delete_extract = true; 1876 strlcpy(symfs_filename, kce.extract_filename, 1877 sizeof(symfs_filename)); 1878 } 1879 } else if (dso__needs_decompress(dso)) { 1880 char tmp[KMOD_DECOMP_LEN]; 1881 1882 if (dso__decompress_kmodule_path(dso, symfs_filename, 1883 tmp, sizeof(tmp)) < 0) 1884 goto out; 1885 1886 decomp = true; 1887 strcpy(symfs_filename, tmp); 1888 } 1889 1890 err = asprintf(&command, 1891 "%s %s%s --start-address=0x%016" PRIx64 1892 " --stop-address=0x%016" PRIx64 1893 " -l -d %s %s -C \"$1\" 2>/dev/null|grep -v \"$1:\"|expand", 1894 opts->objdump_path ?: "objdump", 1895 opts->disassembler_style ? "-M " : "", 1896 opts->disassembler_style ?: "", 1897 map__rip_2objdump(map, sym->start), 1898 map__rip_2objdump(map, sym->end), 1899 opts->show_asm_raw ? "" : "--no-show-raw", 1900 opts->annotate_src ? "-S" : ""); 1901 1902 if (err < 0) { 1903 pr_err("Failure allocating memory for the command to run\n"); 1904 goto out_remove_tmp; 1905 } 1906 1907 pr_debug("Executing: %s\n", command); 1908 1909 err = -1; 1910 if (pipe(stdout_fd) < 0) { 1911 pr_err("Failure creating the pipe to run %s\n", command); 1912 goto out_free_command; 1913 } 1914 1915 pid = fork(); 1916 if (pid < 0) { 1917 pr_err("Failure forking to run %s\n", command); 1918 goto out_close_stdout; 1919 } 1920 1921 if (pid == 0) { 1922 close(stdout_fd[0]); 1923 dup2(stdout_fd[1], 1); 1924 close(stdout_fd[1]); 1925 execl("/bin/sh", "sh", "-c", command, "--", symfs_filename, 1926 NULL); 1927 perror(command); 1928 exit(-1); 1929 } 1930 1931 close(stdout_fd[1]); 1932 1933 file = fdopen(stdout_fd[0], "r"); 1934 if (!file) { 1935 pr_err("Failure creating FILE stream for %s\n", command); 1936 /* 1937 * If we were using debug info should retry with 1938 * original binary. 1939 */ 1940 goto out_free_command; 1941 } 1942 1943 nline = 0; 1944 while (!feof(file)) { 1945 /* 1946 * The source code line number (lineno) needs to be kept in 1947 * across calls to symbol__parse_objdump_line(), so that it 1948 * can associate it with the instructions till the next one. 1949 * See disasm_line__new() and struct disasm_line::line_nr. 1950 */ 1951 if (symbol__parse_objdump_line(sym, file, args, &lineno) < 0) 1952 break; 1953 nline++; 1954 } 1955 1956 if (nline == 0) 1957 pr_err("No output from %s\n", command); 1958 1959 /* 1960 * kallsyms does not have symbol sizes so there may a nop at the end. 1961 * Remove it. 1962 */ 1963 if (dso__is_kcore(dso)) 1964 delete_last_nop(sym); 1965 1966 fclose(file); 1967 err = 0; 1968 out_free_command: 1969 free(command); 1970 out_remove_tmp: 1971 close(stdout_fd[0]); 1972 1973 if (decomp) 1974 unlink(symfs_filename); 1975 1976 if (delete_extract) 1977 kcore_extract__delete(&kce); 1978 out: 1979 return err; 1980 1981 out_close_stdout: 1982 close(stdout_fd[1]); 1983 goto out_free_command; 1984 } 1985 1986 static void calc_percent(struct sym_hist *sym_hist, 1987 struct hists *hists, 1988 struct annotation_data *data, 1989 s64 offset, s64 end) 1990 { 1991 unsigned int hits = 0; 1992 u64 period = 0; 1993 1994 while (offset < end) { 1995 hits += sym_hist->addr[offset].nr_samples; 1996 period += sym_hist->addr[offset].period; 1997 ++offset; 1998 } 1999 2000 if (sym_hist->nr_samples) { 2001 data->he.period = period; 2002 data->he.nr_samples = hits; 2003 data->percent[PERCENT_HITS_LOCAL] = 100.0 * hits / sym_hist->nr_samples; 2004 } 2005 2006 if (hists->stats.nr_non_filtered_samples) 2007 data->percent[PERCENT_HITS_GLOBAL] = 100.0 * hits / hists->stats.nr_non_filtered_samples; 2008 2009 if (sym_hist->period) 2010 data->percent[PERCENT_PERIOD_LOCAL] = 100.0 * period / sym_hist->period; 2011 2012 if (hists->stats.total_period) 2013 data->percent[PERCENT_PERIOD_GLOBAL] = 100.0 * period / hists->stats.total_period; 2014 } 2015 2016 static void annotation__calc_percent(struct annotation *notes, 2017 struct evsel *leader, s64 len) 2018 { 2019 struct annotation_line *al, *next; 2020 struct evsel *evsel; 2021 2022 list_for_each_entry(al, ¬es->src->source, node) { 2023 s64 end; 2024 int i = 0; 2025 2026 if (al->offset == -1) 2027 continue; 2028 2029 next = annotation_line__next(al, ¬es->src->source); 2030 end = next ? next->offset : len; 2031 2032 for_each_group_evsel(evsel, leader) { 2033 struct hists *hists = evsel__hists(evsel); 2034 struct annotation_data *data; 2035 struct sym_hist *sym_hist; 2036 2037 BUG_ON(i >= al->data_nr); 2038 2039 sym_hist = annotation__histogram(notes, evsel->idx); 2040 data = &al->data[i++]; 2041 2042 calc_percent(sym_hist, hists, data, al->offset, end); 2043 } 2044 } 2045 } 2046 2047 void symbol__calc_percent(struct symbol *sym, struct evsel *evsel) 2048 { 2049 struct annotation *notes = symbol__annotation(sym); 2050 2051 annotation__calc_percent(notes, evsel, symbol__size(sym)); 2052 } 2053 2054 int symbol__annotate(struct symbol *sym, struct map *map, 2055 struct evsel *evsel, size_t privsize, 2056 struct annotation_options *options, 2057 struct arch **parch) 2058 { 2059 struct annotation *notes = symbol__annotation(sym); 2060 struct annotate_args args = { 2061 .privsize = privsize, 2062 .evsel = evsel, 2063 .options = options, 2064 }; 2065 struct perf_env *env = perf_evsel__env(evsel); 2066 const char *arch_name = perf_env__arch(env); 2067 struct arch *arch; 2068 int err; 2069 2070 if (!arch_name) 2071 return -1; 2072 2073 args.arch = arch = arch__find(arch_name); 2074 if (arch == NULL) 2075 return -ENOTSUP; 2076 2077 if (parch) 2078 *parch = arch; 2079 2080 if (arch->init) { 2081 err = arch->init(arch, env ? env->cpuid : NULL); 2082 if (err) { 2083 pr_err("%s: failed to initialize %s arch priv area\n", __func__, arch->name); 2084 return err; 2085 } 2086 } 2087 2088 args.ms.map = map; 2089 args.ms.sym = sym; 2090 notes->start = map__rip_2objdump(map, sym->start); 2091 2092 return symbol__disassemble(sym, &args); 2093 } 2094 2095 static void insert_source_line(struct rb_root *root, struct annotation_line *al, 2096 struct annotation_options *opts) 2097 { 2098 struct annotation_line *iter; 2099 struct rb_node **p = &root->rb_node; 2100 struct rb_node *parent = NULL; 2101 int i, ret; 2102 2103 while (*p != NULL) { 2104 parent = *p; 2105 iter = rb_entry(parent, struct annotation_line, rb_node); 2106 2107 ret = strcmp(iter->path, al->path); 2108 if (ret == 0) { 2109 for (i = 0; i < al->data_nr; i++) { 2110 iter->data[i].percent_sum += annotation_data__percent(&al->data[i], 2111 opts->percent_type); 2112 } 2113 return; 2114 } 2115 2116 if (ret < 0) 2117 p = &(*p)->rb_left; 2118 else 2119 p = &(*p)->rb_right; 2120 } 2121 2122 for (i = 0; i < al->data_nr; i++) { 2123 al->data[i].percent_sum = annotation_data__percent(&al->data[i], 2124 opts->percent_type); 2125 } 2126 2127 rb_link_node(&al->rb_node, parent, p); 2128 rb_insert_color(&al->rb_node, root); 2129 } 2130 2131 static int cmp_source_line(struct annotation_line *a, struct annotation_line *b) 2132 { 2133 int i; 2134 2135 for (i = 0; i < a->data_nr; i++) { 2136 if (a->data[i].percent_sum == b->data[i].percent_sum) 2137 continue; 2138 return a->data[i].percent_sum > b->data[i].percent_sum; 2139 } 2140 2141 return 0; 2142 } 2143 2144 static void __resort_source_line(struct rb_root *root, struct annotation_line *al) 2145 { 2146 struct annotation_line *iter; 2147 struct rb_node **p = &root->rb_node; 2148 struct rb_node *parent = NULL; 2149 2150 while (*p != NULL) { 2151 parent = *p; 2152 iter = rb_entry(parent, struct annotation_line, rb_node); 2153 2154 if (cmp_source_line(al, iter)) 2155 p = &(*p)->rb_left; 2156 else 2157 p = &(*p)->rb_right; 2158 } 2159 2160 rb_link_node(&al->rb_node, parent, p); 2161 rb_insert_color(&al->rb_node, root); 2162 } 2163 2164 static void resort_source_line(struct rb_root *dest_root, struct rb_root *src_root) 2165 { 2166 struct annotation_line *al; 2167 struct rb_node *node; 2168 2169 node = rb_first(src_root); 2170 while (node) { 2171 struct rb_node *next; 2172 2173 al = rb_entry(node, struct annotation_line, rb_node); 2174 next = rb_next(node); 2175 rb_erase(node, src_root); 2176 2177 __resort_source_line(dest_root, al); 2178 node = next; 2179 } 2180 } 2181 2182 static void print_summary(struct rb_root *root, const char *filename) 2183 { 2184 struct annotation_line *al; 2185 struct rb_node *node; 2186 2187 printf("\nSorted summary for file %s\n", filename); 2188 printf("----------------------------------------------\n\n"); 2189 2190 if (RB_EMPTY_ROOT(root)) { 2191 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN); 2192 return; 2193 } 2194 2195 node = rb_first(root); 2196 while (node) { 2197 double percent, percent_max = 0.0; 2198 const char *color; 2199 char *path; 2200 int i; 2201 2202 al = rb_entry(node, struct annotation_line, rb_node); 2203 for (i = 0; i < al->data_nr; i++) { 2204 percent = al->data[i].percent_sum; 2205 color = get_percent_color(percent); 2206 color_fprintf(stdout, color, " %7.2f", percent); 2207 2208 if (percent > percent_max) 2209 percent_max = percent; 2210 } 2211 2212 path = al->path; 2213 color = get_percent_color(percent_max); 2214 color_fprintf(stdout, color, " %s\n", path); 2215 2216 node = rb_next(node); 2217 } 2218 } 2219 2220 static void symbol__annotate_hits(struct symbol *sym, struct evsel *evsel) 2221 { 2222 struct annotation *notes = symbol__annotation(sym); 2223 struct sym_hist *h = annotation__histogram(notes, evsel->idx); 2224 u64 len = symbol__size(sym), offset; 2225 2226 for (offset = 0; offset < len; ++offset) 2227 if (h->addr[offset].nr_samples != 0) 2228 printf("%*" PRIx64 ": %" PRIu64 "\n", BITS_PER_LONG / 2, 2229 sym->start + offset, h->addr[offset].nr_samples); 2230 printf("%*s: %" PRIu64 "\n", BITS_PER_LONG / 2, "h->nr_samples", h->nr_samples); 2231 } 2232 2233 static int annotated_source__addr_fmt_width(struct list_head *lines, u64 start) 2234 { 2235 char bf[32]; 2236 struct annotation_line *line; 2237 2238 list_for_each_entry_reverse(line, lines, node) { 2239 if (line->offset != -1) 2240 return scnprintf(bf, sizeof(bf), "%" PRIx64, start + line->offset); 2241 } 2242 2243 return 0; 2244 } 2245 2246 int symbol__annotate_printf(struct symbol *sym, struct map *map, 2247 struct evsel *evsel, 2248 struct annotation_options *opts) 2249 { 2250 struct dso *dso = map->dso; 2251 char *filename; 2252 const char *d_filename; 2253 const char *evsel_name = perf_evsel__name(evsel); 2254 struct annotation *notes = symbol__annotation(sym); 2255 struct sym_hist *h = annotation__histogram(notes, evsel->idx); 2256 struct annotation_line *pos, *queue = NULL; 2257 u64 start = map__rip_2objdump(map, sym->start); 2258 int printed = 2, queue_len = 0, addr_fmt_width; 2259 int more = 0; 2260 bool context = opts->context; 2261 u64 len; 2262 int width = symbol_conf.show_total_period ? 12 : 8; 2263 int graph_dotted_len; 2264 char buf[512]; 2265 2266 filename = strdup(dso->long_name); 2267 if (!filename) 2268 return -ENOMEM; 2269 2270 if (opts->full_path) 2271 d_filename = filename; 2272 else 2273 d_filename = basename(filename); 2274 2275 len = symbol__size(sym); 2276 2277 if (perf_evsel__is_group_event(evsel)) { 2278 width *= evsel->core.nr_members; 2279 perf_evsel__group_desc(evsel, buf, sizeof(buf)); 2280 evsel_name = buf; 2281 } 2282 2283 graph_dotted_len = printf(" %-*.*s| Source code & Disassembly of %s for %s (%" PRIu64 " samples, " 2284 "percent: %s)\n", 2285 width, width, symbol_conf.show_total_period ? "Period" : 2286 symbol_conf.show_nr_samples ? "Samples" : "Percent", 2287 d_filename, evsel_name, h->nr_samples, 2288 percent_type_str(opts->percent_type)); 2289 2290 printf("%-*.*s----\n", 2291 graph_dotted_len, graph_dotted_len, graph_dotted_line); 2292 2293 if (verbose > 0) 2294 symbol__annotate_hits(sym, evsel); 2295 2296 addr_fmt_width = annotated_source__addr_fmt_width(¬es->src->source, start); 2297 2298 list_for_each_entry(pos, ¬es->src->source, node) { 2299 int err; 2300 2301 if (context && queue == NULL) { 2302 queue = pos; 2303 queue_len = 0; 2304 } 2305 2306 err = annotation_line__print(pos, sym, start, evsel, len, 2307 opts->min_pcnt, printed, opts->max_lines, 2308 queue, addr_fmt_width, opts->percent_type); 2309 2310 switch (err) { 2311 case 0: 2312 ++printed; 2313 if (context) { 2314 printed += queue_len; 2315 queue = NULL; 2316 queue_len = 0; 2317 } 2318 break; 2319 case 1: 2320 /* filtered by max_lines */ 2321 ++more; 2322 break; 2323 case -1: 2324 default: 2325 /* 2326 * Filtered by min_pcnt or non IP lines when 2327 * context != 0 2328 */ 2329 if (!context) 2330 break; 2331 if (queue_len == context) 2332 queue = list_entry(queue->node.next, typeof(*queue), node); 2333 else 2334 ++queue_len; 2335 break; 2336 } 2337 } 2338 2339 free(filename); 2340 2341 return more; 2342 } 2343 2344 static void FILE__set_percent_color(void *fp __maybe_unused, 2345 double percent __maybe_unused, 2346 bool current __maybe_unused) 2347 { 2348 } 2349 2350 static int FILE__set_jumps_percent_color(void *fp __maybe_unused, 2351 int nr __maybe_unused, bool current __maybe_unused) 2352 { 2353 return 0; 2354 } 2355 2356 static int FILE__set_color(void *fp __maybe_unused, int color __maybe_unused) 2357 { 2358 return 0; 2359 } 2360 2361 static void FILE__printf(void *fp, const char *fmt, ...) 2362 { 2363 va_list args; 2364 2365 va_start(args, fmt); 2366 vfprintf(fp, fmt, args); 2367 va_end(args); 2368 } 2369 2370 static void FILE__write_graph(void *fp, int graph) 2371 { 2372 const char *s; 2373 switch (graph) { 2374 2375 case DARROW_CHAR: s = "↓"; break; 2376 case UARROW_CHAR: s = "↑"; break; 2377 case LARROW_CHAR: s = "←"; break; 2378 case RARROW_CHAR: s = "→"; break; 2379 default: s = "?"; break; 2380 } 2381 2382 fputs(s, fp); 2383 } 2384 2385 static int symbol__annotate_fprintf2(struct symbol *sym, FILE *fp, 2386 struct annotation_options *opts) 2387 { 2388 struct annotation *notes = symbol__annotation(sym); 2389 struct annotation_write_ops wops = { 2390 .first_line = true, 2391 .obj = fp, 2392 .set_color = FILE__set_color, 2393 .set_percent_color = FILE__set_percent_color, 2394 .set_jumps_percent_color = FILE__set_jumps_percent_color, 2395 .printf = FILE__printf, 2396 .write_graph = FILE__write_graph, 2397 }; 2398 struct annotation_line *al; 2399 2400 list_for_each_entry(al, ¬es->src->source, node) { 2401 if (annotation_line__filter(al, notes)) 2402 continue; 2403 annotation_line__write(al, notes, &wops, opts); 2404 fputc('\n', fp); 2405 wops.first_line = false; 2406 } 2407 2408 return 0; 2409 } 2410 2411 int map_symbol__annotation_dump(struct map_symbol *ms, struct evsel *evsel, 2412 struct annotation_options *opts) 2413 { 2414 const char *ev_name = perf_evsel__name(evsel); 2415 char buf[1024]; 2416 char *filename; 2417 int err = -1; 2418 FILE *fp; 2419 2420 if (asprintf(&filename, "%s.annotation", ms->sym->name) < 0) 2421 return -1; 2422 2423 fp = fopen(filename, "w"); 2424 if (fp == NULL) 2425 goto out_free_filename; 2426 2427 if (perf_evsel__is_group_event(evsel)) { 2428 perf_evsel__group_desc(evsel, buf, sizeof(buf)); 2429 ev_name = buf; 2430 } 2431 2432 fprintf(fp, "%s() %s\nEvent: %s\n\n", 2433 ms->sym->name, ms->map->dso->long_name, ev_name); 2434 symbol__annotate_fprintf2(ms->sym, fp, opts); 2435 2436 fclose(fp); 2437 err = 0; 2438 out_free_filename: 2439 free(filename); 2440 return err; 2441 } 2442 2443 void symbol__annotate_zero_histogram(struct symbol *sym, int evidx) 2444 { 2445 struct annotation *notes = symbol__annotation(sym); 2446 struct sym_hist *h = annotation__histogram(notes, evidx); 2447 2448 memset(h, 0, notes->src->sizeof_sym_hist); 2449 } 2450 2451 void symbol__annotate_decay_histogram(struct symbol *sym, int evidx) 2452 { 2453 struct annotation *notes = symbol__annotation(sym); 2454 struct sym_hist *h = annotation__histogram(notes, evidx); 2455 int len = symbol__size(sym), offset; 2456 2457 h->nr_samples = 0; 2458 for (offset = 0; offset < len; ++offset) { 2459 h->addr[offset].nr_samples = h->addr[offset].nr_samples * 7 / 8; 2460 h->nr_samples += h->addr[offset].nr_samples; 2461 } 2462 } 2463 2464 void annotated_source__purge(struct annotated_source *as) 2465 { 2466 struct annotation_line *al, *n; 2467 2468 list_for_each_entry_safe(al, n, &as->source, node) { 2469 list_del_init(&al->node); 2470 disasm_line__free(disasm_line(al)); 2471 } 2472 } 2473 2474 static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp) 2475 { 2476 size_t printed; 2477 2478 if (dl->al.offset == -1) 2479 return fprintf(fp, "%s\n", dl->al.line); 2480 2481 printed = fprintf(fp, "%#" PRIx64 " %s", dl->al.offset, dl->ins.name); 2482 2483 if (dl->ops.raw[0] != '\0') { 2484 printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ", 2485 dl->ops.raw); 2486 } 2487 2488 return printed + fprintf(fp, "\n"); 2489 } 2490 2491 size_t disasm__fprintf(struct list_head *head, FILE *fp) 2492 { 2493 struct disasm_line *pos; 2494 size_t printed = 0; 2495 2496 list_for_each_entry(pos, head, al.node) 2497 printed += disasm_line__fprintf(pos, fp); 2498 2499 return printed; 2500 } 2501 2502 bool disasm_line__is_valid_local_jump(struct disasm_line *dl, struct symbol *sym) 2503 { 2504 if (!dl || !dl->ins.ops || !ins__is_jump(&dl->ins) || 2505 !disasm_line__has_local_offset(dl) || dl->ops.target.offset < 0 || 2506 dl->ops.target.offset >= (s64)symbol__size(sym)) 2507 return false; 2508 2509 return true; 2510 } 2511 2512 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym) 2513 { 2514 u64 offset, size = symbol__size(sym); 2515 2516 /* PLT symbols contain external offsets */ 2517 if (strstr(sym->name, "@plt")) 2518 return; 2519 2520 for (offset = 0; offset < size; ++offset) { 2521 struct annotation_line *al = notes->offsets[offset]; 2522 struct disasm_line *dl; 2523 2524 dl = disasm_line(al); 2525 2526 if (!disasm_line__is_valid_local_jump(dl, sym)) 2527 continue; 2528 2529 al = notes->offsets[dl->ops.target.offset]; 2530 2531 /* 2532 * FIXME: Oops, no jump target? Buggy disassembler? Or do we 2533 * have to adjust to the previous offset? 2534 */ 2535 if (al == NULL) 2536 continue; 2537 2538 if (++al->jump_sources > notes->max_jump_sources) 2539 notes->max_jump_sources = al->jump_sources; 2540 2541 ++notes->nr_jumps; 2542 } 2543 } 2544 2545 void annotation__set_offsets(struct annotation *notes, s64 size) 2546 { 2547 struct annotation_line *al; 2548 2549 notes->max_line_len = 0; 2550 2551 list_for_each_entry(al, ¬es->src->source, node) { 2552 size_t line_len = strlen(al->line); 2553 2554 if (notes->max_line_len < line_len) 2555 notes->max_line_len = line_len; 2556 al->idx = notes->nr_entries++; 2557 if (al->offset != -1) { 2558 al->idx_asm = notes->nr_asm_entries++; 2559 /* 2560 * FIXME: short term bandaid to cope with assembly 2561 * routines that comes with labels in the same column 2562 * as the address in objdump, sigh. 2563 * 2564 * E.g. copy_user_generic_unrolled 2565 */ 2566 if (al->offset < size) 2567 notes->offsets[al->offset] = al; 2568 } else 2569 al->idx_asm = -1; 2570 } 2571 } 2572 2573 static inline int width_jumps(int n) 2574 { 2575 if (n >= 100) 2576 return 5; 2577 if (n / 10) 2578 return 2; 2579 return 1; 2580 } 2581 2582 static int annotation__max_ins_name(struct annotation *notes) 2583 { 2584 int max_name = 0, len; 2585 struct annotation_line *al; 2586 2587 list_for_each_entry(al, ¬es->src->source, node) { 2588 if (al->offset == -1) 2589 continue; 2590 2591 len = strlen(disasm_line(al)->ins.name); 2592 if (max_name < len) 2593 max_name = len; 2594 } 2595 2596 return max_name; 2597 } 2598 2599 void annotation__init_column_widths(struct annotation *notes, struct symbol *sym) 2600 { 2601 notes->widths.addr = notes->widths.target = 2602 notes->widths.min_addr = hex_width(symbol__size(sym)); 2603 notes->widths.max_addr = hex_width(sym->end); 2604 notes->widths.jumps = width_jumps(notes->max_jump_sources); 2605 notes->widths.max_ins_name = annotation__max_ins_name(notes); 2606 } 2607 2608 void annotation__update_column_widths(struct annotation *notes) 2609 { 2610 if (notes->options->use_offset) 2611 notes->widths.target = notes->widths.min_addr; 2612 else 2613 notes->widths.target = notes->widths.max_addr; 2614 2615 notes->widths.addr = notes->widths.target; 2616 2617 if (notes->options->show_nr_jumps) 2618 notes->widths.addr += notes->widths.jumps + 1; 2619 } 2620 2621 static void annotation__calc_lines(struct annotation *notes, struct map *map, 2622 struct rb_root *root, 2623 struct annotation_options *opts) 2624 { 2625 struct annotation_line *al; 2626 struct rb_root tmp_root = RB_ROOT; 2627 2628 list_for_each_entry(al, ¬es->src->source, node) { 2629 double percent_max = 0.0; 2630 int i; 2631 2632 for (i = 0; i < al->data_nr; i++) { 2633 double percent; 2634 2635 percent = annotation_data__percent(&al->data[i], 2636 opts->percent_type); 2637 2638 if (percent > percent_max) 2639 percent_max = percent; 2640 } 2641 2642 if (percent_max <= 0.5) 2643 continue; 2644 2645 al->path = get_srcline(map->dso, notes->start + al->offset, NULL, 2646 false, true, notes->start + al->offset); 2647 insert_source_line(&tmp_root, al, opts); 2648 } 2649 2650 resort_source_line(root, &tmp_root); 2651 } 2652 2653 static void symbol__calc_lines(struct symbol *sym, struct map *map, 2654 struct rb_root *root, 2655 struct annotation_options *opts) 2656 { 2657 struct annotation *notes = symbol__annotation(sym); 2658 2659 annotation__calc_lines(notes, map, root, opts); 2660 } 2661 2662 int symbol__tty_annotate2(struct symbol *sym, struct map *map, 2663 struct evsel *evsel, 2664 struct annotation_options *opts) 2665 { 2666 struct dso *dso = map->dso; 2667 struct rb_root source_line = RB_ROOT; 2668 struct hists *hists = evsel__hists(evsel); 2669 char buf[1024]; 2670 2671 if (symbol__annotate2(sym, map, evsel, opts, NULL) < 0) 2672 return -1; 2673 2674 if (opts->print_lines) { 2675 srcline_full_filename = opts->full_path; 2676 symbol__calc_lines(sym, map, &source_line, opts); 2677 print_summary(&source_line, dso->long_name); 2678 } 2679 2680 hists__scnprintf_title(hists, buf, sizeof(buf)); 2681 fprintf(stdout, "%s, [percent: %s]\n%s() %s\n", 2682 buf, percent_type_str(opts->percent_type), sym->name, dso->long_name); 2683 symbol__annotate_fprintf2(sym, stdout, opts); 2684 2685 annotated_source__purge(symbol__annotation(sym)->src); 2686 2687 return 0; 2688 } 2689 2690 int symbol__tty_annotate(struct symbol *sym, struct map *map, 2691 struct evsel *evsel, 2692 struct annotation_options *opts) 2693 { 2694 struct dso *dso = map->dso; 2695 struct rb_root source_line = RB_ROOT; 2696 2697 if (symbol__annotate(sym, map, evsel, 0, opts, NULL) < 0) 2698 return -1; 2699 2700 symbol__calc_percent(sym, evsel); 2701 2702 if (opts->print_lines) { 2703 srcline_full_filename = opts->full_path; 2704 symbol__calc_lines(sym, map, &source_line, opts); 2705 print_summary(&source_line, dso->long_name); 2706 } 2707 2708 symbol__annotate_printf(sym, map, evsel, opts); 2709 2710 annotated_source__purge(symbol__annotation(sym)->src); 2711 2712 return 0; 2713 } 2714 2715 bool ui__has_annotation(void) 2716 { 2717 return use_browser == 1 && perf_hpp_list.sym; 2718 } 2719 2720 2721 static double annotation_line__max_percent(struct annotation_line *al, 2722 struct annotation *notes, 2723 unsigned int percent_type) 2724 { 2725 double percent_max = 0.0; 2726 int i; 2727 2728 for (i = 0; i < notes->nr_events; i++) { 2729 double percent; 2730 2731 percent = annotation_data__percent(&al->data[i], 2732 percent_type); 2733 2734 if (percent > percent_max) 2735 percent_max = percent; 2736 } 2737 2738 return percent_max; 2739 } 2740 2741 static void disasm_line__write(struct disasm_line *dl, struct annotation *notes, 2742 void *obj, char *bf, size_t size, 2743 void (*obj__printf)(void *obj, const char *fmt, ...), 2744 void (*obj__write_graph)(void *obj, int graph)) 2745 { 2746 if (dl->ins.ops && dl->ins.ops->scnprintf) { 2747 if (ins__is_jump(&dl->ins)) { 2748 bool fwd; 2749 2750 if (dl->ops.target.outside) 2751 goto call_like; 2752 fwd = dl->ops.target.offset > dl->al.offset; 2753 obj__write_graph(obj, fwd ? DARROW_CHAR : UARROW_CHAR); 2754 obj__printf(obj, " "); 2755 } else if (ins__is_call(&dl->ins)) { 2756 call_like: 2757 obj__write_graph(obj, RARROW_CHAR); 2758 obj__printf(obj, " "); 2759 } else if (ins__is_ret(&dl->ins)) { 2760 obj__write_graph(obj, LARROW_CHAR); 2761 obj__printf(obj, " "); 2762 } else { 2763 obj__printf(obj, " "); 2764 } 2765 } else { 2766 obj__printf(obj, " "); 2767 } 2768 2769 disasm_line__scnprintf(dl, bf, size, !notes->options->use_offset, notes->widths.max_ins_name); 2770 } 2771 2772 static void ipc_coverage_string(char *bf, int size, struct annotation *notes) 2773 { 2774 double ipc = 0.0, coverage = 0.0; 2775 2776 if (notes->hit_cycles) 2777 ipc = notes->hit_insn / ((double)notes->hit_cycles); 2778 2779 if (notes->total_insn) { 2780 coverage = notes->cover_insn * 100.0 / 2781 ((double)notes->total_insn); 2782 } 2783 2784 scnprintf(bf, size, "(Average IPC: %.2f, IPC Coverage: %.1f%%)", 2785 ipc, coverage); 2786 } 2787 2788 static void __annotation_line__write(struct annotation_line *al, struct annotation *notes, 2789 bool first_line, bool current_entry, bool change_color, int width, 2790 void *obj, unsigned int percent_type, 2791 int (*obj__set_color)(void *obj, int color), 2792 void (*obj__set_percent_color)(void *obj, double percent, bool current), 2793 int (*obj__set_jumps_percent_color)(void *obj, int nr, bool current), 2794 void (*obj__printf)(void *obj, const char *fmt, ...), 2795 void (*obj__write_graph)(void *obj, int graph)) 2796 2797 { 2798 double percent_max = annotation_line__max_percent(al, notes, percent_type); 2799 int pcnt_width = annotation__pcnt_width(notes), 2800 cycles_width = annotation__cycles_width(notes); 2801 bool show_title = false; 2802 char bf[256]; 2803 int printed; 2804 2805 if (first_line && (al->offset == -1 || percent_max == 0.0)) { 2806 if (notes->have_cycles) { 2807 if (al->ipc == 0.0 && al->cycles == 0) 2808 show_title = true; 2809 } else 2810 show_title = true; 2811 } 2812 2813 if (al->offset != -1 && percent_max != 0.0) { 2814 int i; 2815 2816 for (i = 0; i < notes->nr_events; i++) { 2817 double percent; 2818 2819 percent = annotation_data__percent(&al->data[i], percent_type); 2820 2821 obj__set_percent_color(obj, percent, current_entry); 2822 if (notes->options->show_total_period) { 2823 obj__printf(obj, "%11" PRIu64 " ", al->data[i].he.period); 2824 } else if (notes->options->show_nr_samples) { 2825 obj__printf(obj, "%6" PRIu64 " ", 2826 al->data[i].he.nr_samples); 2827 } else { 2828 obj__printf(obj, "%6.2f ", percent); 2829 } 2830 } 2831 } else { 2832 obj__set_percent_color(obj, 0, current_entry); 2833 2834 if (!show_title) 2835 obj__printf(obj, "%-*s", pcnt_width, " "); 2836 else { 2837 obj__printf(obj, "%-*s", pcnt_width, 2838 notes->options->show_total_period ? "Period" : 2839 notes->options->show_nr_samples ? "Samples" : "Percent"); 2840 } 2841 } 2842 2843 if (notes->have_cycles) { 2844 if (al->ipc) 2845 obj__printf(obj, "%*.2f ", ANNOTATION__IPC_WIDTH - 1, al->ipc); 2846 else if (!show_title) 2847 obj__printf(obj, "%*s", ANNOTATION__IPC_WIDTH, " "); 2848 else 2849 obj__printf(obj, "%*s ", ANNOTATION__IPC_WIDTH - 1, "IPC"); 2850 2851 if (!notes->options->show_minmax_cycle) { 2852 if (al->cycles) 2853 obj__printf(obj, "%*" PRIu64 " ", 2854 ANNOTATION__CYCLES_WIDTH - 1, al->cycles); 2855 else if (!show_title) 2856 obj__printf(obj, "%*s", 2857 ANNOTATION__CYCLES_WIDTH, " "); 2858 else 2859 obj__printf(obj, "%*s ", 2860 ANNOTATION__CYCLES_WIDTH - 1, 2861 "Cycle"); 2862 } else { 2863 if (al->cycles) { 2864 char str[32]; 2865 2866 scnprintf(str, sizeof(str), 2867 "%" PRIu64 "(%" PRIu64 "/%" PRIu64 ")", 2868 al->cycles, al->cycles_min, 2869 al->cycles_max); 2870 2871 obj__printf(obj, "%*s ", 2872 ANNOTATION__MINMAX_CYCLES_WIDTH - 1, 2873 str); 2874 } else if (!show_title) 2875 obj__printf(obj, "%*s", 2876 ANNOTATION__MINMAX_CYCLES_WIDTH, 2877 " "); 2878 else 2879 obj__printf(obj, "%*s ", 2880 ANNOTATION__MINMAX_CYCLES_WIDTH - 1, 2881 "Cycle(min/max)"); 2882 } 2883 2884 if (show_title && !*al->line) { 2885 ipc_coverage_string(bf, sizeof(bf), notes); 2886 obj__printf(obj, "%*s", ANNOTATION__AVG_IPC_WIDTH, bf); 2887 } 2888 } 2889 2890 obj__printf(obj, " "); 2891 2892 if (!*al->line) 2893 obj__printf(obj, "%-*s", width - pcnt_width - cycles_width, " "); 2894 else if (al->offset == -1) { 2895 if (al->line_nr && notes->options->show_linenr) 2896 printed = scnprintf(bf, sizeof(bf), "%-*d ", notes->widths.addr + 1, al->line_nr); 2897 else 2898 printed = scnprintf(bf, sizeof(bf), "%-*s ", notes->widths.addr, " "); 2899 obj__printf(obj, bf); 2900 obj__printf(obj, "%-*s", width - printed - pcnt_width - cycles_width + 1, al->line); 2901 } else { 2902 u64 addr = al->offset; 2903 int color = -1; 2904 2905 if (!notes->options->use_offset) 2906 addr += notes->start; 2907 2908 if (!notes->options->use_offset) { 2909 printed = scnprintf(bf, sizeof(bf), "%" PRIx64 ": ", addr); 2910 } else { 2911 if (al->jump_sources && 2912 notes->options->offset_level >= ANNOTATION__OFFSET_JUMP_TARGETS) { 2913 if (notes->options->show_nr_jumps) { 2914 int prev; 2915 printed = scnprintf(bf, sizeof(bf), "%*d ", 2916 notes->widths.jumps, 2917 al->jump_sources); 2918 prev = obj__set_jumps_percent_color(obj, al->jump_sources, 2919 current_entry); 2920 obj__printf(obj, bf); 2921 obj__set_color(obj, prev); 2922 } 2923 print_addr: 2924 printed = scnprintf(bf, sizeof(bf), "%*" PRIx64 ": ", 2925 notes->widths.target, addr); 2926 } else if (ins__is_call(&disasm_line(al)->ins) && 2927 notes->options->offset_level >= ANNOTATION__OFFSET_CALL) { 2928 goto print_addr; 2929 } else if (notes->options->offset_level == ANNOTATION__MAX_OFFSET_LEVEL) { 2930 goto print_addr; 2931 } else { 2932 printed = scnprintf(bf, sizeof(bf), "%-*s ", 2933 notes->widths.addr, " "); 2934 } 2935 } 2936 2937 if (change_color) 2938 color = obj__set_color(obj, HE_COLORSET_ADDR); 2939 obj__printf(obj, bf); 2940 if (change_color) 2941 obj__set_color(obj, color); 2942 2943 disasm_line__write(disasm_line(al), notes, obj, bf, sizeof(bf), obj__printf, obj__write_graph); 2944 2945 obj__printf(obj, "%-*s", width - pcnt_width - cycles_width - 3 - printed, bf); 2946 } 2947 2948 } 2949 2950 void annotation_line__write(struct annotation_line *al, struct annotation *notes, 2951 struct annotation_write_ops *wops, 2952 struct annotation_options *opts) 2953 { 2954 __annotation_line__write(al, notes, wops->first_line, wops->current_entry, 2955 wops->change_color, wops->width, wops->obj, 2956 opts->percent_type, 2957 wops->set_color, wops->set_percent_color, 2958 wops->set_jumps_percent_color, wops->printf, 2959 wops->write_graph); 2960 } 2961 2962 int symbol__annotate2(struct symbol *sym, struct map *map, struct evsel *evsel, 2963 struct annotation_options *options, struct arch **parch) 2964 { 2965 struct annotation *notes = symbol__annotation(sym); 2966 size_t size = symbol__size(sym); 2967 int nr_pcnt = 1, err; 2968 2969 notes->offsets = zalloc(size * sizeof(struct annotation_line *)); 2970 if (notes->offsets == NULL) 2971 return -1; 2972 2973 if (perf_evsel__is_group_event(evsel)) 2974 nr_pcnt = evsel->core.nr_members; 2975 2976 err = symbol__annotate(sym, map, evsel, 0, options, parch); 2977 if (err) 2978 goto out_free_offsets; 2979 2980 notes->options = options; 2981 2982 symbol__calc_percent(sym, evsel); 2983 2984 annotation__set_offsets(notes, size); 2985 annotation__mark_jump_targets(notes, sym); 2986 annotation__compute_ipc(notes, size); 2987 annotation__init_column_widths(notes, sym); 2988 notes->nr_events = nr_pcnt; 2989 2990 annotation__update_column_widths(notes); 2991 sym->annotate2 = true; 2992 2993 return 0; 2994 2995 out_free_offsets: 2996 zfree(¬es->offsets); 2997 return -1; 2998 } 2999 3000 #define ANNOTATION__CFG(n) \ 3001 { .name = #n, .value = &annotation__default_options.n, } 3002 3003 /* 3004 * Keep the entries sorted, they are bsearch'ed 3005 */ 3006 static struct annotation_config { 3007 const char *name; 3008 void *value; 3009 } annotation__configs[] = { 3010 ANNOTATION__CFG(hide_src_code), 3011 ANNOTATION__CFG(jump_arrows), 3012 ANNOTATION__CFG(offset_level), 3013 ANNOTATION__CFG(show_linenr), 3014 ANNOTATION__CFG(show_nr_jumps), 3015 ANNOTATION__CFG(show_nr_samples), 3016 ANNOTATION__CFG(show_total_period), 3017 ANNOTATION__CFG(use_offset), 3018 }; 3019 3020 #undef ANNOTATION__CFG 3021 3022 static int annotation_config__cmp(const void *name, const void *cfgp) 3023 { 3024 const struct annotation_config *cfg = cfgp; 3025 3026 return strcmp(name, cfg->name); 3027 } 3028 3029 static int annotation__config(const char *var, const char *value, 3030 void *data __maybe_unused) 3031 { 3032 struct annotation_config *cfg; 3033 const char *name; 3034 3035 if (!strstarts(var, "annotate.")) 3036 return 0; 3037 3038 name = var + 9; 3039 cfg = bsearch(name, annotation__configs, ARRAY_SIZE(annotation__configs), 3040 sizeof(struct annotation_config), annotation_config__cmp); 3041 3042 if (cfg == NULL) 3043 pr_debug("%s variable unknown, ignoring...", var); 3044 else if (strcmp(var, "annotate.offset_level") == 0) { 3045 perf_config_int(cfg->value, name, value); 3046 3047 if (*(int *)cfg->value > ANNOTATION__MAX_OFFSET_LEVEL) 3048 *(int *)cfg->value = ANNOTATION__MAX_OFFSET_LEVEL; 3049 else if (*(int *)cfg->value < ANNOTATION__MIN_OFFSET_LEVEL) 3050 *(int *)cfg->value = ANNOTATION__MIN_OFFSET_LEVEL; 3051 } else { 3052 *(bool *)cfg->value = perf_config_bool(name, value); 3053 } 3054 return 0; 3055 } 3056 3057 void annotation_config__init(void) 3058 { 3059 perf_config(annotation__config, NULL); 3060 3061 annotation__default_options.show_total_period = symbol_conf.show_total_period; 3062 annotation__default_options.show_nr_samples = symbol_conf.show_nr_samples; 3063 } 3064 3065 static unsigned int parse_percent_type(char *str1, char *str2) 3066 { 3067 unsigned int type = (unsigned int) -1; 3068 3069 if (!strcmp("period", str1)) { 3070 if (!strcmp("local", str2)) 3071 type = PERCENT_PERIOD_LOCAL; 3072 else if (!strcmp("global", str2)) 3073 type = PERCENT_PERIOD_GLOBAL; 3074 } 3075 3076 if (!strcmp("hits", str1)) { 3077 if (!strcmp("local", str2)) 3078 type = PERCENT_HITS_LOCAL; 3079 else if (!strcmp("global", str2)) 3080 type = PERCENT_HITS_GLOBAL; 3081 } 3082 3083 return type; 3084 } 3085 3086 int annotate_parse_percent_type(const struct option *opt, const char *_str, 3087 int unset __maybe_unused) 3088 { 3089 struct annotation_options *opts = opt->value; 3090 unsigned int type; 3091 char *str1, *str2; 3092 int err = -1; 3093 3094 str1 = strdup(_str); 3095 if (!str1) 3096 return -ENOMEM; 3097 3098 str2 = strchr(str1, '-'); 3099 if (!str2) 3100 goto out; 3101 3102 *str2++ = 0; 3103 3104 type = parse_percent_type(str1, str2); 3105 if (type == (unsigned int) -1) 3106 type = parse_percent_type(str2, str1); 3107 if (type != (unsigned int) -1) { 3108 opts->percent_type = type; 3109 err = 0; 3110 } 3111 3112 out: 3113 free(str1); 3114 return err; 3115 } 3116