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 "cache.h" 18 #include "symbol.h" 19 #include "debug.h" 20 #include "annotate.h" 21 #include "evsel.h" 22 #include "block-range.h" 23 #include "string2.h" 24 #include "arch/common.h" 25 #include <regex.h> 26 #include <pthread.h> 27 #include <linux/bitops.h> 28 #include <linux/kernel.h> 29 #include <sys/utsname.h> 30 31 #include "sane_ctype.h" 32 33 const char *disassembler_style; 34 const char *objdump_path; 35 static regex_t file_lineno; 36 37 static struct ins_ops *ins__find(struct arch *arch, const char *name); 38 static void ins__sort(struct arch *arch); 39 static int disasm_line__parse(char *line, const char **namep, char **rawp); 40 41 struct arch { 42 const char *name; 43 struct ins *instructions; 44 size_t nr_instructions; 45 size_t nr_instructions_allocated; 46 struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name); 47 bool sorted_instructions; 48 bool initialized; 49 void *priv; 50 unsigned int model; 51 unsigned int family; 52 int (*init)(struct arch *arch); 53 bool (*ins_is_fused)(struct arch *arch, const char *ins1, 54 const char *ins2); 55 int (*cpuid_parse)(struct arch *arch, char *cpuid); 56 struct { 57 char comment_char; 58 char skip_functions_char; 59 } objdump; 60 }; 61 62 static struct ins_ops call_ops; 63 static struct ins_ops dec_ops; 64 static struct ins_ops jump_ops; 65 static struct ins_ops mov_ops; 66 static struct ins_ops nop_ops; 67 static struct ins_ops lock_ops; 68 static struct ins_ops ret_ops; 69 70 static int arch__grow_instructions(struct arch *arch) 71 { 72 struct ins *new_instructions; 73 size_t new_nr_allocated; 74 75 if (arch->nr_instructions_allocated == 0 && arch->instructions) 76 goto grow_from_non_allocated_table; 77 78 new_nr_allocated = arch->nr_instructions_allocated + 128; 79 new_instructions = realloc(arch->instructions, new_nr_allocated * sizeof(struct ins)); 80 if (new_instructions == NULL) 81 return -1; 82 83 out_update_instructions: 84 arch->instructions = new_instructions; 85 arch->nr_instructions_allocated = new_nr_allocated; 86 return 0; 87 88 grow_from_non_allocated_table: 89 new_nr_allocated = arch->nr_instructions + 128; 90 new_instructions = calloc(new_nr_allocated, sizeof(struct ins)); 91 if (new_instructions == NULL) 92 return -1; 93 94 memcpy(new_instructions, arch->instructions, arch->nr_instructions); 95 goto out_update_instructions; 96 } 97 98 static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops) 99 { 100 struct ins *ins; 101 102 if (arch->nr_instructions == arch->nr_instructions_allocated && 103 arch__grow_instructions(arch)) 104 return -1; 105 106 ins = &arch->instructions[arch->nr_instructions]; 107 ins->name = strdup(name); 108 if (!ins->name) 109 return -1; 110 111 ins->ops = ops; 112 arch->nr_instructions++; 113 114 ins__sort(arch); 115 return 0; 116 } 117 118 #include "arch/arm/annotate/instructions.c" 119 #include "arch/arm64/annotate/instructions.c" 120 #include "arch/x86/annotate/instructions.c" 121 #include "arch/powerpc/annotate/instructions.c" 122 #include "arch/s390/annotate/instructions.c" 123 124 static struct arch architectures[] = { 125 { 126 .name = "arm", 127 .init = arm__annotate_init, 128 }, 129 { 130 .name = "arm64", 131 .init = arm64__annotate_init, 132 }, 133 { 134 .name = "x86", 135 .instructions = x86__instructions, 136 .nr_instructions = ARRAY_SIZE(x86__instructions), 137 .ins_is_fused = x86__ins_is_fused, 138 .cpuid_parse = x86__cpuid_parse, 139 .objdump = { 140 .comment_char = '#', 141 }, 142 }, 143 { 144 .name = "powerpc", 145 .init = powerpc__annotate_init, 146 }, 147 { 148 .name = "s390", 149 .init = s390__annotate_init, 150 .objdump = { 151 .comment_char = '#', 152 }, 153 }, 154 }; 155 156 static void ins__delete(struct ins_operands *ops) 157 { 158 if (ops == NULL) 159 return; 160 zfree(&ops->source.raw); 161 zfree(&ops->source.name); 162 zfree(&ops->target.raw); 163 zfree(&ops->target.name); 164 } 165 166 static int ins__raw_scnprintf(struct ins *ins, char *bf, size_t size, 167 struct ins_operands *ops) 168 { 169 return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->raw); 170 } 171 172 int ins__scnprintf(struct ins *ins, char *bf, size_t size, 173 struct ins_operands *ops) 174 { 175 if (ins->ops->scnprintf) 176 return ins->ops->scnprintf(ins, bf, size, ops); 177 178 return ins__raw_scnprintf(ins, bf, size, ops); 179 } 180 181 bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2) 182 { 183 if (!arch || !arch->ins_is_fused) 184 return false; 185 186 return arch->ins_is_fused(arch, ins1, ins2); 187 } 188 189 static int call__parse(struct arch *arch, struct ins_operands *ops, struct map *map) 190 { 191 char *endptr, *tok, *name; 192 193 ops->target.addr = strtoull(ops->raw, &endptr, 16); 194 195 name = strchr(endptr, '<'); 196 if (name == NULL) 197 goto indirect_call; 198 199 name++; 200 201 if (arch->objdump.skip_functions_char && 202 strchr(name, arch->objdump.skip_functions_char)) 203 return -1; 204 205 tok = strchr(name, '>'); 206 if (tok == NULL) 207 return -1; 208 209 *tok = '\0'; 210 ops->target.name = strdup(name); 211 *tok = '>'; 212 213 return ops->target.name == NULL ? -1 : 0; 214 215 indirect_call: 216 tok = strchr(endptr, '*'); 217 if (tok == NULL) { 218 struct symbol *sym = map__find_symbol(map, map->map_ip(map, ops->target.addr)); 219 if (sym != NULL) 220 ops->target.name = strdup(sym->name); 221 else 222 ops->target.addr = 0; 223 return 0; 224 } 225 226 ops->target.addr = strtoull(tok + 1, NULL, 16); 227 return 0; 228 } 229 230 static int call__scnprintf(struct ins *ins, char *bf, size_t size, 231 struct ins_operands *ops) 232 { 233 if (ops->target.name) 234 return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->target.name); 235 236 if (ops->target.addr == 0) 237 return ins__raw_scnprintf(ins, bf, size, ops); 238 239 return scnprintf(bf, size, "%-6.6s *%" PRIx64, ins->name, ops->target.addr); 240 } 241 242 static struct ins_ops call_ops = { 243 .parse = call__parse, 244 .scnprintf = call__scnprintf, 245 }; 246 247 bool ins__is_call(const struct ins *ins) 248 { 249 return ins->ops == &call_ops; 250 } 251 252 static int jump__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map *map __maybe_unused) 253 { 254 const char *s = strchr(ops->raw, '+'); 255 const char *c = strchr(ops->raw, ','); 256 257 /* 258 * skip over possible up to 2 operands to get to address, e.g.: 259 * tbnz w0, #26, ffff0000083cd190 <security_file_permission+0xd0> 260 */ 261 if (c++ != NULL) { 262 ops->target.addr = strtoull(c, NULL, 16); 263 if (!ops->target.addr) { 264 c = strchr(c, ','); 265 if (c++ != NULL) 266 ops->target.addr = strtoull(c, NULL, 16); 267 } 268 } else { 269 ops->target.addr = strtoull(ops->raw, NULL, 16); 270 } 271 272 if (s++ != NULL) { 273 ops->target.offset = strtoull(s, NULL, 16); 274 ops->target.offset_avail = true; 275 } else { 276 ops->target.offset_avail = false; 277 } 278 279 return 0; 280 } 281 282 static int jump__scnprintf(struct ins *ins, char *bf, size_t size, 283 struct ins_operands *ops) 284 { 285 const char *c = strchr(ops->raw, ','); 286 287 if (!ops->target.addr || ops->target.offset < 0) 288 return ins__raw_scnprintf(ins, bf, size, ops); 289 290 if (c != NULL) { 291 const char *c2 = strchr(c + 1, ','); 292 293 /* check for 3-op insn */ 294 if (c2 != NULL) 295 c = c2; 296 c++; 297 298 /* mirror arch objdump's space-after-comma style */ 299 if (*c == ' ') 300 c++; 301 } 302 303 return scnprintf(bf, size, "%-6.6s %.*s%" PRIx64, 304 ins->name, c ? c - ops->raw : 0, ops->raw, 305 ops->target.offset); 306 } 307 308 static struct ins_ops jump_ops = { 309 .parse = jump__parse, 310 .scnprintf = jump__scnprintf, 311 }; 312 313 bool ins__is_jump(const struct ins *ins) 314 { 315 return ins->ops == &jump_ops; 316 } 317 318 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep) 319 { 320 char *endptr, *name, *t; 321 322 if (strstr(raw, "(%rip)") == NULL) 323 return 0; 324 325 *addrp = strtoull(comment, &endptr, 16); 326 name = strchr(endptr, '<'); 327 if (name == NULL) 328 return -1; 329 330 name++; 331 332 t = strchr(name, '>'); 333 if (t == NULL) 334 return 0; 335 336 *t = '\0'; 337 *namep = strdup(name); 338 *t = '>'; 339 340 return 0; 341 } 342 343 static int lock__parse(struct arch *arch, struct ins_operands *ops, struct map *map) 344 { 345 ops->locked.ops = zalloc(sizeof(*ops->locked.ops)); 346 if (ops->locked.ops == NULL) 347 return 0; 348 349 if (disasm_line__parse(ops->raw, &ops->locked.ins.name, &ops->locked.ops->raw) < 0) 350 goto out_free_ops; 351 352 ops->locked.ins.ops = ins__find(arch, ops->locked.ins.name); 353 354 if (ops->locked.ins.ops == NULL) 355 goto out_free_ops; 356 357 if (ops->locked.ins.ops->parse && 358 ops->locked.ins.ops->parse(arch, ops->locked.ops, map) < 0) 359 goto out_free_ops; 360 361 return 0; 362 363 out_free_ops: 364 zfree(&ops->locked.ops); 365 return 0; 366 } 367 368 static int lock__scnprintf(struct ins *ins, char *bf, size_t size, 369 struct ins_operands *ops) 370 { 371 int printed; 372 373 if (ops->locked.ins.ops == NULL) 374 return ins__raw_scnprintf(ins, bf, size, ops); 375 376 printed = scnprintf(bf, size, "%-6.6s ", ins->name); 377 return printed + ins__scnprintf(&ops->locked.ins, bf + printed, 378 size - printed, ops->locked.ops); 379 } 380 381 static void lock__delete(struct ins_operands *ops) 382 { 383 struct ins *ins = &ops->locked.ins; 384 385 if (ins->ops && ins->ops->free) 386 ins->ops->free(ops->locked.ops); 387 else 388 ins__delete(ops->locked.ops); 389 390 zfree(&ops->locked.ops); 391 zfree(&ops->target.raw); 392 zfree(&ops->target.name); 393 } 394 395 static struct ins_ops lock_ops = { 396 .free = lock__delete, 397 .parse = lock__parse, 398 .scnprintf = lock__scnprintf, 399 }; 400 401 static int mov__parse(struct arch *arch, struct ins_operands *ops, struct map *map __maybe_unused) 402 { 403 char *s = strchr(ops->raw, ','), *target, *comment, prev; 404 405 if (s == NULL) 406 return -1; 407 408 *s = '\0'; 409 ops->source.raw = strdup(ops->raw); 410 *s = ','; 411 412 if (ops->source.raw == NULL) 413 return -1; 414 415 target = ++s; 416 comment = strchr(s, arch->objdump.comment_char); 417 418 if (comment != NULL) 419 s = comment - 1; 420 else 421 s = strchr(s, '\0') - 1; 422 423 while (s > target && isspace(s[0])) 424 --s; 425 s++; 426 prev = *s; 427 *s = '\0'; 428 429 ops->target.raw = strdup(target); 430 *s = prev; 431 432 if (ops->target.raw == NULL) 433 goto out_free_source; 434 435 if (comment == NULL) 436 return 0; 437 438 comment = ltrim(comment); 439 comment__symbol(ops->source.raw, comment, &ops->source.addr, &ops->source.name); 440 comment__symbol(ops->target.raw, comment, &ops->target.addr, &ops->target.name); 441 442 return 0; 443 444 out_free_source: 445 zfree(&ops->source.raw); 446 return -1; 447 } 448 449 static int mov__scnprintf(struct ins *ins, char *bf, size_t size, 450 struct ins_operands *ops) 451 { 452 return scnprintf(bf, size, "%-6.6s %s,%s", ins->name, 453 ops->source.name ?: ops->source.raw, 454 ops->target.name ?: ops->target.raw); 455 } 456 457 static struct ins_ops mov_ops = { 458 .parse = mov__parse, 459 .scnprintf = mov__scnprintf, 460 }; 461 462 static int dec__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map *map __maybe_unused) 463 { 464 char *target, *comment, *s, prev; 465 466 target = s = ops->raw; 467 468 while (s[0] != '\0' && !isspace(s[0])) 469 ++s; 470 prev = *s; 471 *s = '\0'; 472 473 ops->target.raw = strdup(target); 474 *s = prev; 475 476 if (ops->target.raw == NULL) 477 return -1; 478 479 comment = strchr(s, arch->objdump.comment_char); 480 if (comment == NULL) 481 return 0; 482 483 comment = ltrim(comment); 484 comment__symbol(ops->target.raw, comment, &ops->target.addr, &ops->target.name); 485 486 return 0; 487 } 488 489 static int dec__scnprintf(struct ins *ins, char *bf, size_t size, 490 struct ins_operands *ops) 491 { 492 return scnprintf(bf, size, "%-6.6s %s", ins->name, 493 ops->target.name ?: ops->target.raw); 494 } 495 496 static struct ins_ops dec_ops = { 497 .parse = dec__parse, 498 .scnprintf = dec__scnprintf, 499 }; 500 501 static int nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size, 502 struct ins_operands *ops __maybe_unused) 503 { 504 return scnprintf(bf, size, "%-6.6s", "nop"); 505 } 506 507 static struct ins_ops nop_ops = { 508 .scnprintf = nop__scnprintf, 509 }; 510 511 static struct ins_ops ret_ops = { 512 .scnprintf = ins__raw_scnprintf, 513 }; 514 515 bool ins__is_ret(const struct ins *ins) 516 { 517 return ins->ops == &ret_ops; 518 } 519 520 bool ins__is_lock(const struct ins *ins) 521 { 522 return ins->ops == &lock_ops; 523 } 524 525 static int ins__key_cmp(const void *name, const void *insp) 526 { 527 const struct ins *ins = insp; 528 529 return strcmp(name, ins->name); 530 } 531 532 static int ins__cmp(const void *a, const void *b) 533 { 534 const struct ins *ia = a; 535 const struct ins *ib = b; 536 537 return strcmp(ia->name, ib->name); 538 } 539 540 static void ins__sort(struct arch *arch) 541 { 542 const int nmemb = arch->nr_instructions; 543 544 qsort(arch->instructions, nmemb, sizeof(struct ins), ins__cmp); 545 } 546 547 static struct ins_ops *__ins__find(struct arch *arch, const char *name) 548 { 549 struct ins *ins; 550 const int nmemb = arch->nr_instructions; 551 552 if (!arch->sorted_instructions) { 553 ins__sort(arch); 554 arch->sorted_instructions = true; 555 } 556 557 ins = bsearch(name, arch->instructions, nmemb, sizeof(struct ins), ins__key_cmp); 558 return ins ? ins->ops : NULL; 559 } 560 561 static struct ins_ops *ins__find(struct arch *arch, const char *name) 562 { 563 struct ins_ops *ops = __ins__find(arch, name); 564 565 if (!ops && arch->associate_instruction_ops) 566 ops = arch->associate_instruction_ops(arch, name); 567 568 return ops; 569 } 570 571 static int arch__key_cmp(const void *name, const void *archp) 572 { 573 const struct arch *arch = archp; 574 575 return strcmp(name, arch->name); 576 } 577 578 static int arch__cmp(const void *a, const void *b) 579 { 580 const struct arch *aa = a; 581 const struct arch *ab = b; 582 583 return strcmp(aa->name, ab->name); 584 } 585 586 static void arch__sort(void) 587 { 588 const int nmemb = ARRAY_SIZE(architectures); 589 590 qsort(architectures, nmemb, sizeof(struct arch), arch__cmp); 591 } 592 593 static struct arch *arch__find(const char *name) 594 { 595 const int nmemb = ARRAY_SIZE(architectures); 596 static bool sorted; 597 598 if (!sorted) { 599 arch__sort(); 600 sorted = true; 601 } 602 603 return bsearch(name, architectures, nmemb, sizeof(struct arch), arch__key_cmp); 604 } 605 606 int symbol__alloc_hist(struct symbol *sym) 607 { 608 struct annotation *notes = symbol__annotation(sym); 609 const size_t size = symbol__size(sym); 610 size_t sizeof_sym_hist; 611 612 /* Check for overflow when calculating sizeof_sym_hist */ 613 if (size > (SIZE_MAX - sizeof(struct sym_hist)) / sizeof(struct sym_hist_entry)) 614 return -1; 615 616 sizeof_sym_hist = (sizeof(struct sym_hist) + size * sizeof(struct sym_hist_entry)); 617 618 /* Check for overflow in zalloc argument */ 619 if (sizeof_sym_hist > (SIZE_MAX - sizeof(*notes->src)) 620 / symbol_conf.nr_events) 621 return -1; 622 623 notes->src = zalloc(sizeof(*notes->src) + symbol_conf.nr_events * sizeof_sym_hist); 624 if (notes->src == NULL) 625 return -1; 626 notes->src->sizeof_sym_hist = sizeof_sym_hist; 627 notes->src->nr_histograms = symbol_conf.nr_events; 628 INIT_LIST_HEAD(¬es->src->source); 629 return 0; 630 } 631 632 /* The cycles histogram is lazily allocated. */ 633 static int symbol__alloc_hist_cycles(struct symbol *sym) 634 { 635 struct annotation *notes = symbol__annotation(sym); 636 const size_t size = symbol__size(sym); 637 638 notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist)); 639 if (notes->src->cycles_hist == NULL) 640 return -1; 641 return 0; 642 } 643 644 void symbol__annotate_zero_histograms(struct symbol *sym) 645 { 646 struct annotation *notes = symbol__annotation(sym); 647 648 pthread_mutex_lock(¬es->lock); 649 if (notes->src != NULL) { 650 memset(notes->src->histograms, 0, 651 notes->src->nr_histograms * notes->src->sizeof_sym_hist); 652 if (notes->src->cycles_hist) 653 memset(notes->src->cycles_hist, 0, 654 symbol__size(sym) * sizeof(struct cyc_hist)); 655 } 656 pthread_mutex_unlock(¬es->lock); 657 } 658 659 static int __symbol__account_cycles(struct annotation *notes, 660 u64 start, 661 unsigned offset, unsigned cycles, 662 unsigned have_start) 663 { 664 struct cyc_hist *ch; 665 666 ch = notes->src->cycles_hist; 667 /* 668 * For now we can only account one basic block per 669 * final jump. But multiple could be overlapping. 670 * Always account the longest one. So when 671 * a shorter one has been already seen throw it away. 672 * 673 * We separately always account the full cycles. 674 */ 675 ch[offset].num_aggr++; 676 ch[offset].cycles_aggr += cycles; 677 678 if (!have_start && ch[offset].have_start) 679 return 0; 680 if (ch[offset].num) { 681 if (have_start && (!ch[offset].have_start || 682 ch[offset].start > start)) { 683 ch[offset].have_start = 0; 684 ch[offset].cycles = 0; 685 ch[offset].num = 0; 686 if (ch[offset].reset < 0xffff) 687 ch[offset].reset++; 688 } else if (have_start && 689 ch[offset].start < start) 690 return 0; 691 } 692 ch[offset].have_start = have_start; 693 ch[offset].start = start; 694 ch[offset].cycles += cycles; 695 ch[offset].num++; 696 return 0; 697 } 698 699 static int __symbol__inc_addr_samples(struct symbol *sym, struct map *map, 700 struct annotation *notes, int evidx, u64 addr, 701 struct perf_sample *sample) 702 { 703 unsigned offset; 704 struct sym_hist *h; 705 706 pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, map->unmap_ip(map, addr)); 707 708 if ((addr < sym->start || addr >= sym->end) && 709 (addr != sym->end || sym->start != sym->end)) { 710 pr_debug("%s(%d): ERANGE! sym->name=%s, start=%#" PRIx64 ", addr=%#" PRIx64 ", end=%#" PRIx64 "\n", 711 __func__, __LINE__, sym->name, sym->start, addr, sym->end); 712 return -ERANGE; 713 } 714 715 offset = addr - sym->start; 716 h = annotation__histogram(notes, evidx); 717 h->nr_samples++; 718 h->addr[offset].nr_samples++; 719 h->period += sample->period; 720 h->addr[offset].period += sample->period; 721 722 pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64 723 ", evidx=%d] => nr_samples: %" PRIu64 ", period: %" PRIu64 "\n", 724 sym->start, sym->name, addr, addr - sym->start, evidx, 725 h->addr[offset].nr_samples, h->addr[offset].period); 726 return 0; 727 } 728 729 static struct annotation *symbol__get_annotation(struct symbol *sym, bool cycles) 730 { 731 struct annotation *notes = symbol__annotation(sym); 732 733 if (notes->src == NULL) { 734 if (symbol__alloc_hist(sym) < 0) 735 return NULL; 736 } 737 if (!notes->src->cycles_hist && cycles) { 738 if (symbol__alloc_hist_cycles(sym) < 0) 739 return NULL; 740 } 741 return notes; 742 } 743 744 static int symbol__inc_addr_samples(struct symbol *sym, struct map *map, 745 int evidx, u64 addr, 746 struct perf_sample *sample) 747 { 748 struct annotation *notes; 749 750 if (sym == NULL) 751 return 0; 752 notes = symbol__get_annotation(sym, false); 753 if (notes == NULL) 754 return -ENOMEM; 755 return __symbol__inc_addr_samples(sym, map, notes, evidx, addr, sample); 756 } 757 758 static int symbol__account_cycles(u64 addr, u64 start, 759 struct symbol *sym, unsigned cycles) 760 { 761 struct annotation *notes; 762 unsigned offset; 763 764 if (sym == NULL) 765 return 0; 766 notes = symbol__get_annotation(sym, true); 767 if (notes == NULL) 768 return -ENOMEM; 769 if (addr < sym->start || addr >= sym->end) 770 return -ERANGE; 771 772 if (start) { 773 if (start < sym->start || start >= sym->end) 774 return -ERANGE; 775 if (start >= addr) 776 start = 0; 777 } 778 offset = addr - sym->start; 779 return __symbol__account_cycles(notes, 780 start ? start - sym->start : 0, 781 offset, cycles, 782 !!start); 783 } 784 785 int addr_map_symbol__account_cycles(struct addr_map_symbol *ams, 786 struct addr_map_symbol *start, 787 unsigned cycles) 788 { 789 u64 saddr = 0; 790 int err; 791 792 if (!cycles) 793 return 0; 794 795 /* 796 * Only set start when IPC can be computed. We can only 797 * compute it when the basic block is completely in a single 798 * function. 799 * Special case the case when the jump is elsewhere, but 800 * it starts on the function start. 801 */ 802 if (start && 803 (start->sym == ams->sym || 804 (ams->sym && 805 start->addr == ams->sym->start + ams->map->start))) 806 saddr = start->al_addr; 807 if (saddr == 0) 808 pr_debug2("BB with bad start: addr %"PRIx64" start %"PRIx64" sym %"PRIx64" saddr %"PRIx64"\n", 809 ams->addr, 810 start ? start->addr : 0, 811 ams->sym ? ams->sym->start + ams->map->start : 0, 812 saddr); 813 err = symbol__account_cycles(ams->al_addr, saddr, ams->sym, cycles); 814 if (err) 815 pr_debug2("account_cycles failed %d\n", err); 816 return err; 817 } 818 819 int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample, 820 int evidx) 821 { 822 return symbol__inc_addr_samples(ams->sym, ams->map, evidx, ams->al_addr, sample); 823 } 824 825 int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample, 826 int evidx, u64 ip) 827 { 828 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip, sample); 829 } 830 831 static void disasm_line__init_ins(struct disasm_line *dl, struct arch *arch, struct map *map) 832 { 833 dl->ins.ops = ins__find(arch, dl->ins.name); 834 835 if (!dl->ins.ops) 836 return; 837 838 if (dl->ins.ops->parse && dl->ins.ops->parse(arch, &dl->ops, map) < 0) 839 dl->ins.ops = NULL; 840 } 841 842 static int disasm_line__parse(char *line, const char **namep, char **rawp) 843 { 844 char tmp, *name = ltrim(line); 845 846 if (name[0] == '\0') 847 return -1; 848 849 *rawp = name + 1; 850 851 while ((*rawp)[0] != '\0' && !isspace((*rawp)[0])) 852 ++*rawp; 853 854 tmp = (*rawp)[0]; 855 (*rawp)[0] = '\0'; 856 *namep = strdup(name); 857 858 if (*namep == NULL) 859 goto out_free_name; 860 861 (*rawp)[0] = tmp; 862 *rawp = ltrim(*rawp); 863 864 return 0; 865 866 out_free_name: 867 free((void *)namep); 868 *namep = NULL; 869 return -1; 870 } 871 872 static struct disasm_line *disasm_line__new(s64 offset, char *line, 873 size_t privsize, int line_nr, 874 struct arch *arch, 875 struct map *map) 876 { 877 struct disasm_line *dl = zalloc(sizeof(*dl) + privsize); 878 879 if (dl != NULL) { 880 dl->offset = offset; 881 dl->line = strdup(line); 882 dl->line_nr = line_nr; 883 if (dl->line == NULL) 884 goto out_delete; 885 886 if (offset != -1) { 887 if (disasm_line__parse(dl->line, &dl->ins.name, &dl->ops.raw) < 0) 888 goto out_free_line; 889 890 disasm_line__init_ins(dl, arch, map); 891 } 892 } 893 894 return dl; 895 896 out_free_line: 897 zfree(&dl->line); 898 out_delete: 899 free(dl); 900 return NULL; 901 } 902 903 void disasm_line__free(struct disasm_line *dl) 904 { 905 zfree(&dl->line); 906 if (dl->ins.ops && dl->ins.ops->free) 907 dl->ins.ops->free(&dl->ops); 908 else 909 ins__delete(&dl->ops); 910 free((void *)dl->ins.name); 911 dl->ins.name = NULL; 912 free(dl); 913 } 914 915 int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw) 916 { 917 if (raw || !dl->ins.ops) 918 return scnprintf(bf, size, "%-6.6s %s", dl->ins.name, dl->ops.raw); 919 920 return ins__scnprintf(&dl->ins, bf, size, &dl->ops); 921 } 922 923 static void disasm__add(struct list_head *head, struct disasm_line *line) 924 { 925 list_add_tail(&line->node, head); 926 } 927 928 struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos) 929 { 930 list_for_each_entry_continue(pos, head, node) 931 if (pos->offset >= 0) 932 return pos; 933 934 return NULL; 935 } 936 937 double disasm__calc_percent(struct annotation *notes, int evidx, s64 offset, 938 s64 end, const char **path, struct sym_hist_entry *sample) 939 { 940 struct source_line *src_line = notes->src->lines; 941 double percent = 0.0; 942 943 sample->nr_samples = sample->period = 0; 944 945 if (src_line) { 946 size_t sizeof_src_line = sizeof(*src_line) + 947 sizeof(src_line->samples) * (src_line->nr_pcnt - 1); 948 949 while (offset < end) { 950 src_line = (void *)notes->src->lines + 951 (sizeof_src_line * offset); 952 953 if (*path == NULL) 954 *path = src_line->path; 955 956 percent += src_line->samples[evidx].percent; 957 sample->nr_samples += src_line->samples[evidx].nr; 958 offset++; 959 } 960 } else { 961 struct sym_hist *h = annotation__histogram(notes, evidx); 962 unsigned int hits = 0; 963 u64 period = 0; 964 965 while (offset < end) { 966 hits += h->addr[offset].nr_samples; 967 period += h->addr[offset].period; 968 ++offset; 969 } 970 971 if (h->nr_samples) { 972 sample->period = period; 973 sample->nr_samples = hits; 974 percent = 100.0 * hits / h->nr_samples; 975 } 976 } 977 978 return percent; 979 } 980 981 static const char *annotate__address_color(struct block_range *br) 982 { 983 double cov = block_range__coverage(br); 984 985 if (cov >= 0) { 986 /* mark red for >75% coverage */ 987 if (cov > 0.75) 988 return PERF_COLOR_RED; 989 990 /* mark dull for <1% coverage */ 991 if (cov < 0.01) 992 return PERF_COLOR_NORMAL; 993 } 994 995 return PERF_COLOR_MAGENTA; 996 } 997 998 static const char *annotate__asm_color(struct block_range *br) 999 { 1000 double cov = block_range__coverage(br); 1001 1002 if (cov >= 0) { 1003 /* mark dull for <1% coverage */ 1004 if (cov < 0.01) 1005 return PERF_COLOR_NORMAL; 1006 } 1007 1008 return PERF_COLOR_BLUE; 1009 } 1010 1011 static void annotate__branch_printf(struct block_range *br, u64 addr) 1012 { 1013 bool emit_comment = true; 1014 1015 if (!br) 1016 return; 1017 1018 #if 1 1019 if (br->is_target && br->start == addr) { 1020 struct block_range *branch = br; 1021 double p; 1022 1023 /* 1024 * Find matching branch to our target. 1025 */ 1026 while (!branch->is_branch) 1027 branch = block_range__next(branch); 1028 1029 p = 100 *(double)br->entry / branch->coverage; 1030 1031 if (p > 0.1) { 1032 if (emit_comment) { 1033 emit_comment = false; 1034 printf("\t#"); 1035 } 1036 1037 /* 1038 * The percentage of coverage joined at this target in relation 1039 * to the next branch. 1040 */ 1041 printf(" +%.2f%%", p); 1042 } 1043 } 1044 #endif 1045 if (br->is_branch && br->end == addr) { 1046 double p = 100*(double)br->taken / br->coverage; 1047 1048 if (p > 0.1) { 1049 if (emit_comment) { 1050 emit_comment = false; 1051 printf("\t#"); 1052 } 1053 1054 /* 1055 * The percentage of coverage leaving at this branch, and 1056 * its prediction ratio. 1057 */ 1058 printf(" -%.2f%% (p:%.2f%%)", p, 100*(double)br->pred / br->taken); 1059 } 1060 } 1061 } 1062 1063 1064 static int disasm_line__print(struct disasm_line *dl, struct symbol *sym, u64 start, 1065 struct perf_evsel *evsel, u64 len, int min_pcnt, int printed, 1066 int max_lines, struct disasm_line *queue) 1067 { 1068 static const char *prev_line; 1069 static const char *prev_color; 1070 1071 if (dl->offset != -1) { 1072 const char *path = NULL; 1073 double percent, max_percent = 0.0; 1074 double *ppercents = &percent; 1075 struct sym_hist_entry sample; 1076 struct sym_hist_entry *psamples = &sample; 1077 int i, nr_percent = 1; 1078 const char *color; 1079 struct annotation *notes = symbol__annotation(sym); 1080 s64 offset = dl->offset; 1081 const u64 addr = start + offset; 1082 struct disasm_line *next; 1083 struct block_range *br; 1084 1085 next = disasm__get_next_ip_line(¬es->src->source, dl); 1086 1087 if (perf_evsel__is_group_event(evsel)) { 1088 nr_percent = evsel->nr_members; 1089 ppercents = calloc(nr_percent, sizeof(double)); 1090 psamples = calloc(nr_percent, sizeof(struct sym_hist_entry)); 1091 if (ppercents == NULL || psamples == NULL) { 1092 return -1; 1093 } 1094 } 1095 1096 for (i = 0; i < nr_percent; i++) { 1097 percent = disasm__calc_percent(notes, 1098 notes->src->lines ? i : evsel->idx + i, 1099 offset, 1100 next ? next->offset : (s64) len, 1101 &path, &sample); 1102 1103 ppercents[i] = percent; 1104 psamples[i] = sample; 1105 if (percent > max_percent) 1106 max_percent = percent; 1107 } 1108 1109 if (max_percent < min_pcnt) 1110 return -1; 1111 1112 if (max_lines && printed >= max_lines) 1113 return 1; 1114 1115 if (queue != NULL) { 1116 list_for_each_entry_from(queue, ¬es->src->source, node) { 1117 if (queue == dl) 1118 break; 1119 disasm_line__print(queue, sym, start, evsel, len, 1120 0, 0, 1, NULL); 1121 } 1122 } 1123 1124 color = get_percent_color(max_percent); 1125 1126 /* 1127 * Also color the filename and line if needed, with 1128 * the same color than the percentage. Don't print it 1129 * twice for close colored addr with the same filename:line 1130 */ 1131 if (path) { 1132 if (!prev_line || strcmp(prev_line, path) 1133 || color != prev_color) { 1134 color_fprintf(stdout, color, " %s", path); 1135 prev_line = path; 1136 prev_color = color; 1137 } 1138 } 1139 1140 for (i = 0; i < nr_percent; i++) { 1141 percent = ppercents[i]; 1142 sample = psamples[i]; 1143 color = get_percent_color(percent); 1144 1145 if (symbol_conf.show_total_period) 1146 color_fprintf(stdout, color, " %11" PRIu64, 1147 sample.period); 1148 else 1149 color_fprintf(stdout, color, " %7.2f", percent); 1150 } 1151 1152 printf(" : "); 1153 1154 br = block_range__find(addr); 1155 color_fprintf(stdout, annotate__address_color(br), " %" PRIx64 ":", addr); 1156 color_fprintf(stdout, annotate__asm_color(br), "%s", dl->line); 1157 annotate__branch_printf(br, addr); 1158 printf("\n"); 1159 1160 if (ppercents != &percent) 1161 free(ppercents); 1162 1163 if (psamples != &sample) 1164 free(psamples); 1165 1166 } else if (max_lines && printed >= max_lines) 1167 return 1; 1168 else { 1169 int width = symbol_conf.show_total_period ? 12 : 8; 1170 1171 if (queue) 1172 return -1; 1173 1174 if (perf_evsel__is_group_event(evsel)) 1175 width *= evsel->nr_members; 1176 1177 if (!*dl->line) 1178 printf(" %*s:\n", width, " "); 1179 else 1180 printf(" %*s: %s\n", width, " ", dl->line); 1181 } 1182 1183 return 0; 1184 } 1185 1186 /* 1187 * symbol__parse_objdump_line() parses objdump output (with -d --no-show-raw) 1188 * which looks like following 1189 * 1190 * 0000000000415500 <_init>: 1191 * 415500: sub $0x8,%rsp 1192 * 415504: mov 0x2f5ad5(%rip),%rax # 70afe0 <_DYNAMIC+0x2f8> 1193 * 41550b: test %rax,%rax 1194 * 41550e: je 415515 <_init+0x15> 1195 * 415510: callq 416e70 <__gmon_start__@plt> 1196 * 415515: add $0x8,%rsp 1197 * 415519: retq 1198 * 1199 * it will be parsed and saved into struct disasm_line as 1200 * <offset> <name> <ops.raw> 1201 * 1202 * The offset will be a relative offset from the start of the symbol and -1 1203 * means that it's not a disassembly line so should be treated differently. 1204 * The ops.raw part will be parsed further according to type of the instruction. 1205 */ 1206 static int symbol__parse_objdump_line(struct symbol *sym, struct map *map, 1207 struct arch *arch, 1208 FILE *file, size_t privsize, 1209 int *line_nr) 1210 { 1211 struct annotation *notes = symbol__annotation(sym); 1212 struct disasm_line *dl; 1213 char *line = NULL, *parsed_line, *tmp, *tmp2; 1214 size_t line_len; 1215 s64 line_ip, offset = -1; 1216 regmatch_t match[2]; 1217 1218 if (getline(&line, &line_len, file) < 0) 1219 return -1; 1220 1221 if (!line) 1222 return -1; 1223 1224 line_ip = -1; 1225 parsed_line = rtrim(line); 1226 1227 /* /filename:linenr ? Save line number and ignore. */ 1228 if (regexec(&file_lineno, parsed_line, 2, match, 0) == 0) { 1229 *line_nr = atoi(parsed_line + match[1].rm_so); 1230 return 0; 1231 } 1232 1233 tmp = ltrim(parsed_line); 1234 if (*tmp) { 1235 /* 1236 * Parse hexa addresses followed by ':' 1237 */ 1238 line_ip = strtoull(tmp, &tmp2, 16); 1239 if (*tmp2 != ':' || tmp == tmp2 || tmp2[1] == '\0') 1240 line_ip = -1; 1241 } 1242 1243 if (line_ip != -1) { 1244 u64 start = map__rip_2objdump(map, sym->start), 1245 end = map__rip_2objdump(map, sym->end); 1246 1247 offset = line_ip - start; 1248 if ((u64)line_ip < start || (u64)line_ip >= end) 1249 offset = -1; 1250 else 1251 parsed_line = tmp2 + 1; 1252 } 1253 1254 dl = disasm_line__new(offset, parsed_line, privsize, *line_nr, arch, map); 1255 free(line); 1256 (*line_nr)++; 1257 1258 if (dl == NULL) 1259 return -1; 1260 1261 if (!disasm_line__has_offset(dl)) { 1262 dl->ops.target.offset = dl->ops.target.addr - 1263 map__rip_2objdump(map, sym->start); 1264 dl->ops.target.offset_avail = true; 1265 } 1266 1267 /* kcore has no symbols, so add the call target name */ 1268 if (dl->ins.ops && ins__is_call(&dl->ins) && !dl->ops.target.name) { 1269 struct addr_map_symbol target = { 1270 .map = map, 1271 .addr = dl->ops.target.addr, 1272 }; 1273 1274 if (!map_groups__find_ams(&target) && 1275 target.sym->start == target.al_addr) 1276 dl->ops.target.name = strdup(target.sym->name); 1277 } 1278 1279 disasm__add(¬es->src->source, dl); 1280 1281 return 0; 1282 } 1283 1284 static __attribute__((constructor)) void symbol__init_regexpr(void) 1285 { 1286 regcomp(&file_lineno, "^/[^:]+:([0-9]+)", REG_EXTENDED); 1287 } 1288 1289 static void delete_last_nop(struct symbol *sym) 1290 { 1291 struct annotation *notes = symbol__annotation(sym); 1292 struct list_head *list = ¬es->src->source; 1293 struct disasm_line *dl; 1294 1295 while (!list_empty(list)) { 1296 dl = list_entry(list->prev, struct disasm_line, node); 1297 1298 if (dl->ins.ops) { 1299 if (dl->ins.ops != &nop_ops) 1300 return; 1301 } else { 1302 if (!strstr(dl->line, " nop ") && 1303 !strstr(dl->line, " nopl ") && 1304 !strstr(dl->line, " nopw ")) 1305 return; 1306 } 1307 1308 list_del(&dl->node); 1309 disasm_line__free(dl); 1310 } 1311 } 1312 1313 int symbol__strerror_disassemble(struct symbol *sym __maybe_unused, struct map *map, 1314 int errnum, char *buf, size_t buflen) 1315 { 1316 struct dso *dso = map->dso; 1317 1318 BUG_ON(buflen == 0); 1319 1320 if (errnum >= 0) { 1321 str_error_r(errnum, buf, buflen); 1322 return 0; 1323 } 1324 1325 switch (errnum) { 1326 case SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX: { 1327 char bf[SBUILD_ID_SIZE + 15] = " with build id "; 1328 char *build_id_msg = NULL; 1329 1330 if (dso->has_build_id) { 1331 build_id__sprintf(dso->build_id, 1332 sizeof(dso->build_id), bf + 15); 1333 build_id_msg = bf; 1334 } 1335 scnprintf(buf, buflen, 1336 "No vmlinux file%s\nwas found in the path.\n\n" 1337 "Note that annotation using /proc/kcore requires CAP_SYS_RAWIO capability.\n\n" 1338 "Please use:\n\n" 1339 " perf buildid-cache -vu vmlinux\n\n" 1340 "or:\n\n" 1341 " --vmlinux vmlinux\n", build_id_msg ?: ""); 1342 } 1343 break; 1344 default: 1345 scnprintf(buf, buflen, "Internal error: Invalid %d error code\n", errnum); 1346 break; 1347 } 1348 1349 return 0; 1350 } 1351 1352 static int dso__disassemble_filename(struct dso *dso, char *filename, size_t filename_size) 1353 { 1354 char linkname[PATH_MAX]; 1355 char *build_id_filename; 1356 char *build_id_path = NULL; 1357 char *pos; 1358 1359 if (dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS && 1360 !dso__is_kcore(dso)) 1361 return SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX; 1362 1363 build_id_filename = dso__build_id_filename(dso, NULL, 0, false); 1364 if (build_id_filename) { 1365 __symbol__join_symfs(filename, filename_size, build_id_filename); 1366 free(build_id_filename); 1367 } else { 1368 if (dso->has_build_id) 1369 return ENOMEM; 1370 goto fallback; 1371 } 1372 1373 build_id_path = strdup(filename); 1374 if (!build_id_path) 1375 return -1; 1376 1377 /* 1378 * old style build-id cache has name of XX/XXXXXXX.. while 1379 * new style has XX/XXXXXXX../{elf,kallsyms,vdso}. 1380 * extract the build-id part of dirname in the new style only. 1381 */ 1382 pos = strrchr(build_id_path, '/'); 1383 if (pos && strlen(pos) < SBUILD_ID_SIZE - 2) 1384 dirname(build_id_path); 1385 1386 if (dso__is_kcore(dso) || 1387 readlink(build_id_path, linkname, sizeof(linkname)) < 0 || 1388 strstr(linkname, DSO__NAME_KALLSYMS) || 1389 access(filename, R_OK)) { 1390 fallback: 1391 /* 1392 * If we don't have build-ids or the build-id file isn't in the 1393 * cache, or is just a kallsyms file, well, lets hope that this 1394 * DSO is the same as when 'perf record' ran. 1395 */ 1396 __symbol__join_symfs(filename, filename_size, dso->long_name); 1397 } 1398 1399 free(build_id_path); 1400 return 0; 1401 } 1402 1403 static const char *annotate__norm_arch(const char *arch_name) 1404 { 1405 struct utsname uts; 1406 1407 if (!arch_name) { /* Assume we are annotating locally. */ 1408 if (uname(&uts) < 0) 1409 return NULL; 1410 arch_name = uts.machine; 1411 } 1412 return normalize_arch((char *)arch_name); 1413 } 1414 1415 int symbol__disassemble(struct symbol *sym, struct map *map, 1416 const char *arch_name, size_t privsize, 1417 struct arch **parch, char *cpuid) 1418 { 1419 struct dso *dso = map->dso; 1420 char command[PATH_MAX * 2]; 1421 struct arch *arch = NULL; 1422 FILE *file; 1423 char symfs_filename[PATH_MAX]; 1424 struct kcore_extract kce; 1425 bool delete_extract = false; 1426 int stdout_fd[2]; 1427 int lineno = 0; 1428 int nline; 1429 pid_t pid; 1430 int err = dso__disassemble_filename(dso, symfs_filename, sizeof(symfs_filename)); 1431 1432 if (err) 1433 return err; 1434 1435 arch_name = annotate__norm_arch(arch_name); 1436 if (!arch_name) 1437 return -1; 1438 1439 arch = arch__find(arch_name); 1440 if (arch == NULL) 1441 return -ENOTSUP; 1442 1443 if (parch) 1444 *parch = arch; 1445 1446 if (arch->init) { 1447 err = arch->init(arch); 1448 if (err) { 1449 pr_err("%s: failed to initialize %s arch priv area\n", __func__, arch->name); 1450 return err; 1451 } 1452 } 1453 1454 if (arch->cpuid_parse && cpuid) 1455 arch->cpuid_parse(arch, cpuid); 1456 1457 pr_debug("%s: filename=%s, sym=%s, start=%#" PRIx64 ", end=%#" PRIx64 "\n", __func__, 1458 symfs_filename, sym->name, map->unmap_ip(map, sym->start), 1459 map->unmap_ip(map, sym->end)); 1460 1461 pr_debug("annotating [%p] %30s : [%p] %30s\n", 1462 dso, dso->long_name, sym, sym->name); 1463 1464 if (dso__is_kcore(dso)) { 1465 kce.kcore_filename = symfs_filename; 1466 kce.addr = map__rip_2objdump(map, sym->start); 1467 kce.offs = sym->start; 1468 kce.len = sym->end - sym->start; 1469 if (!kcore_extract__create(&kce)) { 1470 delete_extract = true; 1471 strlcpy(symfs_filename, kce.extract_filename, 1472 sizeof(symfs_filename)); 1473 } 1474 } else if (dso__needs_decompress(dso)) { 1475 char tmp[KMOD_DECOMP_LEN]; 1476 1477 if (dso__decompress_kmodule_path(dso, symfs_filename, 1478 tmp, sizeof(tmp)) < 0) 1479 goto out; 1480 1481 strcpy(symfs_filename, tmp); 1482 } 1483 1484 snprintf(command, sizeof(command), 1485 "%s %s%s --start-address=0x%016" PRIx64 1486 " --stop-address=0x%016" PRIx64 1487 " -l -d %s %s -C \"%s\" 2>/dev/null|grep -v \"%s:\"|expand", 1488 objdump_path ? objdump_path : "objdump", 1489 disassembler_style ? "-M " : "", 1490 disassembler_style ? disassembler_style : "", 1491 map__rip_2objdump(map, sym->start), 1492 map__rip_2objdump(map, sym->end), 1493 symbol_conf.annotate_asm_raw ? "" : "--no-show-raw", 1494 symbol_conf.annotate_src ? "-S" : "", 1495 symfs_filename, symfs_filename); 1496 1497 pr_debug("Executing: %s\n", command); 1498 1499 err = -1; 1500 if (pipe(stdout_fd) < 0) { 1501 pr_err("Failure creating the pipe to run %s\n", command); 1502 goto out_remove_tmp; 1503 } 1504 1505 pid = fork(); 1506 if (pid < 0) { 1507 pr_err("Failure forking to run %s\n", command); 1508 goto out_close_stdout; 1509 } 1510 1511 if (pid == 0) { 1512 close(stdout_fd[0]); 1513 dup2(stdout_fd[1], 1); 1514 close(stdout_fd[1]); 1515 execl("/bin/sh", "sh", "-c", command, NULL); 1516 perror(command); 1517 exit(-1); 1518 } 1519 1520 close(stdout_fd[1]); 1521 1522 file = fdopen(stdout_fd[0], "r"); 1523 if (!file) { 1524 pr_err("Failure creating FILE stream for %s\n", command); 1525 /* 1526 * If we were using debug info should retry with 1527 * original binary. 1528 */ 1529 goto out_remove_tmp; 1530 } 1531 1532 nline = 0; 1533 while (!feof(file)) { 1534 /* 1535 * The source code line number (lineno) needs to be kept in 1536 * accross calls to symbol__parse_objdump_line(), so that it 1537 * can associate it with the instructions till the next one. 1538 * See disasm_line__new() and struct disasm_line::line_nr. 1539 */ 1540 if (symbol__parse_objdump_line(sym, map, arch, file, privsize, 1541 &lineno) < 0) 1542 break; 1543 nline++; 1544 } 1545 1546 if (nline == 0) 1547 pr_err("No output from %s\n", command); 1548 1549 /* 1550 * kallsyms does not have symbol sizes so there may a nop at the end. 1551 * Remove it. 1552 */ 1553 if (dso__is_kcore(dso)) 1554 delete_last_nop(sym); 1555 1556 fclose(file); 1557 err = 0; 1558 out_remove_tmp: 1559 close(stdout_fd[0]); 1560 1561 if (dso__needs_decompress(dso)) 1562 unlink(symfs_filename); 1563 1564 if (delete_extract) 1565 kcore_extract__delete(&kce); 1566 out: 1567 return err; 1568 1569 out_close_stdout: 1570 close(stdout_fd[1]); 1571 goto out_remove_tmp; 1572 } 1573 1574 static void insert_source_line(struct rb_root *root, struct source_line *src_line) 1575 { 1576 struct source_line *iter; 1577 struct rb_node **p = &root->rb_node; 1578 struct rb_node *parent = NULL; 1579 int i, ret; 1580 1581 while (*p != NULL) { 1582 parent = *p; 1583 iter = rb_entry(parent, struct source_line, node); 1584 1585 ret = strcmp(iter->path, src_line->path); 1586 if (ret == 0) { 1587 for (i = 0; i < src_line->nr_pcnt; i++) 1588 iter->samples[i].percent_sum += src_line->samples[i].percent; 1589 return; 1590 } 1591 1592 if (ret < 0) 1593 p = &(*p)->rb_left; 1594 else 1595 p = &(*p)->rb_right; 1596 } 1597 1598 for (i = 0; i < src_line->nr_pcnt; i++) 1599 src_line->samples[i].percent_sum = src_line->samples[i].percent; 1600 1601 rb_link_node(&src_line->node, parent, p); 1602 rb_insert_color(&src_line->node, root); 1603 } 1604 1605 static int cmp_source_line(struct source_line *a, struct source_line *b) 1606 { 1607 int i; 1608 1609 for (i = 0; i < a->nr_pcnt; i++) { 1610 if (a->samples[i].percent_sum == b->samples[i].percent_sum) 1611 continue; 1612 return a->samples[i].percent_sum > b->samples[i].percent_sum; 1613 } 1614 1615 return 0; 1616 } 1617 1618 static void __resort_source_line(struct rb_root *root, struct source_line *src_line) 1619 { 1620 struct source_line *iter; 1621 struct rb_node **p = &root->rb_node; 1622 struct rb_node *parent = NULL; 1623 1624 while (*p != NULL) { 1625 parent = *p; 1626 iter = rb_entry(parent, struct source_line, node); 1627 1628 if (cmp_source_line(src_line, iter)) 1629 p = &(*p)->rb_left; 1630 else 1631 p = &(*p)->rb_right; 1632 } 1633 1634 rb_link_node(&src_line->node, parent, p); 1635 rb_insert_color(&src_line->node, root); 1636 } 1637 1638 static void resort_source_line(struct rb_root *dest_root, struct rb_root *src_root) 1639 { 1640 struct source_line *src_line; 1641 struct rb_node *node; 1642 1643 node = rb_first(src_root); 1644 while (node) { 1645 struct rb_node *next; 1646 1647 src_line = rb_entry(node, struct source_line, node); 1648 next = rb_next(node); 1649 rb_erase(node, src_root); 1650 1651 __resort_source_line(dest_root, src_line); 1652 node = next; 1653 } 1654 } 1655 1656 static void symbol__free_source_line(struct symbol *sym, int len) 1657 { 1658 struct annotation *notes = symbol__annotation(sym); 1659 struct source_line *src_line = notes->src->lines; 1660 size_t sizeof_src_line; 1661 int i; 1662 1663 sizeof_src_line = sizeof(*src_line) + 1664 (sizeof(src_line->samples) * (src_line->nr_pcnt - 1)); 1665 1666 for (i = 0; i < len; i++) { 1667 free_srcline(src_line->path); 1668 src_line = (void *)src_line + sizeof_src_line; 1669 } 1670 1671 zfree(¬es->src->lines); 1672 } 1673 1674 /* Get the filename:line for the colored entries */ 1675 static int symbol__get_source_line(struct symbol *sym, struct map *map, 1676 struct perf_evsel *evsel, 1677 struct rb_root *root, int len) 1678 { 1679 u64 start; 1680 int i, k; 1681 int evidx = evsel->idx; 1682 struct source_line *src_line; 1683 struct annotation *notes = symbol__annotation(sym); 1684 struct sym_hist *h = annotation__histogram(notes, evidx); 1685 struct rb_root tmp_root = RB_ROOT; 1686 int nr_pcnt = 1; 1687 u64 nr_samples = h->nr_samples; 1688 size_t sizeof_src_line = sizeof(struct source_line); 1689 1690 if (perf_evsel__is_group_event(evsel)) { 1691 for (i = 1; i < evsel->nr_members; i++) { 1692 h = annotation__histogram(notes, evidx + i); 1693 nr_samples += h->nr_samples; 1694 } 1695 nr_pcnt = evsel->nr_members; 1696 sizeof_src_line += (nr_pcnt - 1) * sizeof(src_line->samples); 1697 } 1698 1699 if (!nr_samples) 1700 return 0; 1701 1702 src_line = notes->src->lines = calloc(len, sizeof_src_line); 1703 if (!notes->src->lines) 1704 return -1; 1705 1706 start = map__rip_2objdump(map, sym->start); 1707 1708 for (i = 0; i < len; i++) { 1709 u64 offset; 1710 double percent_max = 0.0; 1711 1712 src_line->nr_pcnt = nr_pcnt; 1713 1714 for (k = 0; k < nr_pcnt; k++) { 1715 double percent = 0.0; 1716 1717 h = annotation__histogram(notes, evidx + k); 1718 nr_samples = h->addr[i].nr_samples; 1719 if (h->nr_samples) 1720 percent = 100.0 * nr_samples / h->nr_samples; 1721 1722 if (percent > percent_max) 1723 percent_max = percent; 1724 src_line->samples[k].percent = percent; 1725 src_line->samples[k].nr = nr_samples; 1726 } 1727 1728 if (percent_max <= 0.5) 1729 goto next; 1730 1731 offset = start + i; 1732 src_line->path = get_srcline(map->dso, offset, NULL, 1733 false, true); 1734 insert_source_line(&tmp_root, src_line); 1735 1736 next: 1737 src_line = (void *)src_line + sizeof_src_line; 1738 } 1739 1740 resort_source_line(root, &tmp_root); 1741 return 0; 1742 } 1743 1744 static void print_summary(struct rb_root *root, const char *filename) 1745 { 1746 struct source_line *src_line; 1747 struct rb_node *node; 1748 1749 printf("\nSorted summary for file %s\n", filename); 1750 printf("----------------------------------------------\n\n"); 1751 1752 if (RB_EMPTY_ROOT(root)) { 1753 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN); 1754 return; 1755 } 1756 1757 node = rb_first(root); 1758 while (node) { 1759 double percent, percent_max = 0.0; 1760 const char *color; 1761 char *path; 1762 int i; 1763 1764 src_line = rb_entry(node, struct source_line, node); 1765 for (i = 0; i < src_line->nr_pcnt; i++) { 1766 percent = src_line->samples[i].percent_sum; 1767 color = get_percent_color(percent); 1768 color_fprintf(stdout, color, " %7.2f", percent); 1769 1770 if (percent > percent_max) 1771 percent_max = percent; 1772 } 1773 1774 path = src_line->path; 1775 color = get_percent_color(percent_max); 1776 color_fprintf(stdout, color, " %s\n", path); 1777 1778 node = rb_next(node); 1779 } 1780 } 1781 1782 static void symbol__annotate_hits(struct symbol *sym, struct perf_evsel *evsel) 1783 { 1784 struct annotation *notes = symbol__annotation(sym); 1785 struct sym_hist *h = annotation__histogram(notes, evsel->idx); 1786 u64 len = symbol__size(sym), offset; 1787 1788 for (offset = 0; offset < len; ++offset) 1789 if (h->addr[offset].nr_samples != 0) 1790 printf("%*" PRIx64 ": %" PRIu64 "\n", BITS_PER_LONG / 2, 1791 sym->start + offset, h->addr[offset].nr_samples); 1792 printf("%*s: %" PRIu64 "\n", BITS_PER_LONG / 2, "h->nr_samples", h->nr_samples); 1793 } 1794 1795 int symbol__annotate_printf(struct symbol *sym, struct map *map, 1796 struct perf_evsel *evsel, bool full_paths, 1797 int min_pcnt, int max_lines, int context) 1798 { 1799 struct dso *dso = map->dso; 1800 char *filename; 1801 const char *d_filename; 1802 const char *evsel_name = perf_evsel__name(evsel); 1803 struct annotation *notes = symbol__annotation(sym); 1804 struct sym_hist *h = annotation__histogram(notes, evsel->idx); 1805 struct disasm_line *pos, *queue = NULL; 1806 u64 start = map__rip_2objdump(map, sym->start); 1807 int printed = 2, queue_len = 0; 1808 int more = 0; 1809 u64 len; 1810 int width = symbol_conf.show_total_period ? 12 : 8; 1811 int graph_dotted_len; 1812 1813 filename = strdup(dso->long_name); 1814 if (!filename) 1815 return -ENOMEM; 1816 1817 if (full_paths) 1818 d_filename = filename; 1819 else 1820 d_filename = basename(filename); 1821 1822 len = symbol__size(sym); 1823 1824 if (perf_evsel__is_group_event(evsel)) 1825 width *= evsel->nr_members; 1826 1827 graph_dotted_len = printf(" %-*.*s| Source code & Disassembly of %s for %s (%" PRIu64 " samples)\n", 1828 width, width, symbol_conf.show_total_period ? "Event count" : "Percent", 1829 d_filename, evsel_name, h->nr_samples); 1830 1831 printf("%-*.*s----\n", 1832 graph_dotted_len, graph_dotted_len, graph_dotted_line); 1833 1834 if (verbose > 0) 1835 symbol__annotate_hits(sym, evsel); 1836 1837 list_for_each_entry(pos, ¬es->src->source, node) { 1838 if (context && queue == NULL) { 1839 queue = pos; 1840 queue_len = 0; 1841 } 1842 1843 switch (disasm_line__print(pos, sym, start, evsel, len, 1844 min_pcnt, printed, max_lines, 1845 queue)) { 1846 case 0: 1847 ++printed; 1848 if (context) { 1849 printed += queue_len; 1850 queue = NULL; 1851 queue_len = 0; 1852 } 1853 break; 1854 case 1: 1855 /* filtered by max_lines */ 1856 ++more; 1857 break; 1858 case -1: 1859 default: 1860 /* 1861 * Filtered by min_pcnt or non IP lines when 1862 * context != 0 1863 */ 1864 if (!context) 1865 break; 1866 if (queue_len == context) 1867 queue = list_entry(queue->node.next, typeof(*queue), node); 1868 else 1869 ++queue_len; 1870 break; 1871 } 1872 } 1873 1874 free(filename); 1875 1876 return more; 1877 } 1878 1879 void symbol__annotate_zero_histogram(struct symbol *sym, int evidx) 1880 { 1881 struct annotation *notes = symbol__annotation(sym); 1882 struct sym_hist *h = annotation__histogram(notes, evidx); 1883 1884 memset(h, 0, notes->src->sizeof_sym_hist); 1885 } 1886 1887 void symbol__annotate_decay_histogram(struct symbol *sym, int evidx) 1888 { 1889 struct annotation *notes = symbol__annotation(sym); 1890 struct sym_hist *h = annotation__histogram(notes, evidx); 1891 int len = symbol__size(sym), offset; 1892 1893 h->nr_samples = 0; 1894 for (offset = 0; offset < len; ++offset) { 1895 h->addr[offset].nr_samples = h->addr[offset].nr_samples * 7 / 8; 1896 h->nr_samples += h->addr[offset].nr_samples; 1897 } 1898 } 1899 1900 void disasm__purge(struct list_head *head) 1901 { 1902 struct disasm_line *pos, *n; 1903 1904 list_for_each_entry_safe(pos, n, head, node) { 1905 list_del(&pos->node); 1906 disasm_line__free(pos); 1907 } 1908 } 1909 1910 static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp) 1911 { 1912 size_t printed; 1913 1914 if (dl->offset == -1) 1915 return fprintf(fp, "%s\n", dl->line); 1916 1917 printed = fprintf(fp, "%#" PRIx64 " %s", dl->offset, dl->ins.name); 1918 1919 if (dl->ops.raw[0] != '\0') { 1920 printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ", 1921 dl->ops.raw); 1922 } 1923 1924 return printed + fprintf(fp, "\n"); 1925 } 1926 1927 size_t disasm__fprintf(struct list_head *head, FILE *fp) 1928 { 1929 struct disasm_line *pos; 1930 size_t printed = 0; 1931 1932 list_for_each_entry(pos, head, node) 1933 printed += disasm_line__fprintf(pos, fp); 1934 1935 return printed; 1936 } 1937 1938 int symbol__tty_annotate(struct symbol *sym, struct map *map, 1939 struct perf_evsel *evsel, bool print_lines, 1940 bool full_paths, int min_pcnt, int max_lines) 1941 { 1942 struct dso *dso = map->dso; 1943 struct rb_root source_line = RB_ROOT; 1944 u64 len; 1945 1946 if (symbol__disassemble(sym, map, perf_evsel__env_arch(evsel), 1947 0, NULL, NULL) < 0) 1948 return -1; 1949 1950 len = symbol__size(sym); 1951 1952 if (print_lines) { 1953 srcline_full_filename = full_paths; 1954 symbol__get_source_line(sym, map, evsel, &source_line, len); 1955 print_summary(&source_line, dso->long_name); 1956 } 1957 1958 symbol__annotate_printf(sym, map, evsel, full_paths, 1959 min_pcnt, max_lines, 0); 1960 if (print_lines) 1961 symbol__free_source_line(sym, len); 1962 1963 disasm__purge(&symbol__annotation(sym)->src->source); 1964 1965 return 0; 1966 } 1967 1968 bool ui__has_annotation(void) 1969 { 1970 return use_browser == 1 && perf_hpp_list.sym; 1971 } 1972