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