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