Linux Audio

Check our new training course

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