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