blob: cfa641bc1df6eb5c57cfad2f41a24be1dad85a85 [file] [log] [blame]
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001/*
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
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030010#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030011#include <inttypes.h>
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020012#include "util.h"
Namhyung Kim48c65bd2014-02-20 10:32:53 +090013#include "ui/ui.h"
14#include "sort.h"
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020015#include "build-id.h"
16#include "color.h"
Arnaldo Carvalho de Melo7f0b6fd2018-03-16 14:33:38 -030017#include "config.h"
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -020018#include "cache.h"
19#include "symbol.h"
20#include "debug.h"
21#include "annotate.h"
Namhyung Kimdb8fd072013-03-05 14:53:21 +090022#include "evsel.h"
Peter Zijlstra70fbe052016-09-05 16:08:12 -030023#include "block-range.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030024#include "string2.h"
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -030025#include "arch/common.h"
Andi Kleene5924882014-11-12 18:05:26 -080026#include <regex.h>
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020027#include <pthread.h>
Jiri Olsa4383db82012-10-27 23:18:29 +020028#include <linux/bitops.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -030029#include <linux/kernel.h>
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -020030
Arnaldo Carvalho de Meloa1e9b742018-03-15 19:12:39 -030031/* FIXME: For the HE_COLORSET */
32#include "ui/browser.h"
33
34/*
35 * FIXME: Using the same values as slang.h,
36 * but that header may not be available everywhere
37 */
Arnaldo Carvalho de Meloc2983042018-03-15 23:14:51 -030038#define LARROW_CHAR ((unsigned char)',')
39#define RARROW_CHAR ((unsigned char)'+')
40#define DARROW_CHAR ((unsigned char)'.')
41#define UARROW_CHAR ((unsigned char)'-')
Arnaldo Carvalho de Meloa1e9b742018-03-15 19:12:39 -030042
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030043#include "sane_ctype.h"
44
Arnaldo Carvalho de Melo7f0b6fd2018-03-16 14:33:38 -030045struct annotation_options annotation__default_options = {
46 .use_offset = true,
47 .jump_arrows = true,
48};
49
Andi Kleenf69b64f2011-09-15 14:31:41 -070050const char *disassembler_style;
Maciek Borzecki7a4ec932012-09-04 12:32:30 +020051const char *objdump_path;
Andi Kleene5924882014-11-12 18:05:26 -080052static regex_t file_lineno;
Andi Kleenf69b64f2011-09-15 14:31:41 -070053
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -030054static struct ins_ops *ins__find(struct arch *arch, const char *name);
Arnaldo Carvalho de Melo2a1ff812016-11-24 11:37:08 -030055static void ins__sort(struct arch *arch);
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -030056static int disasm_line__parse(char *line, const char **namep, char **rawp);
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -030057
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -030058struct arch {
59 const char *name;
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -030060 struct ins *instructions;
61 size_t nr_instructions;
Arnaldo Carvalho de Melo2a1ff812016-11-24 11:37:08 -030062 size_t nr_instructions_allocated;
63 struct ins_ops *(*associate_instruction_ops)(struct arch *arch, const char *name);
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -030064 bool sorted_instructions;
Arnaldo Carvalho de Melo0781ea92016-11-18 12:34:26 -030065 bool initialized;
66 void *priv;
Jin Yao69fb09f2017-07-07 13:06:34 +080067 unsigned int model;
68 unsigned int family;
Jiri Olsa696e24572017-10-11 17:01:24 +020069 int (*init)(struct arch *arch, char *cpuid);
Jin Yao69fb09f2017-07-07 13:06:34 +080070 bool (*ins_is_fused)(struct arch *arch, const char *ins1,
71 const char *ins2);
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -030072 struct {
73 char comment_char;
Arnaldo Carvalho de Melo9c2fb452016-11-16 15:50:38 -030074 char skip_functions_char;
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -030075 } objdump;
76};
77
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -030078static struct ins_ops call_ops;
79static struct ins_ops dec_ops;
80static struct ins_ops jump_ops;
81static struct ins_ops mov_ops;
82static struct ins_ops nop_ops;
83static struct ins_ops lock_ops;
84static struct ins_ops ret_ops;
85
Arnaldo Carvalho de Melo2a1ff812016-11-24 11:37:08 -030086static int arch__grow_instructions(struct arch *arch)
87{
88 struct ins *new_instructions;
89 size_t new_nr_allocated;
90
91 if (arch->nr_instructions_allocated == 0 && arch->instructions)
92 goto grow_from_non_allocated_table;
93
94 new_nr_allocated = arch->nr_instructions_allocated + 128;
95 new_instructions = realloc(arch->instructions, new_nr_allocated * sizeof(struct ins));
96 if (new_instructions == NULL)
97 return -1;
98
99out_update_instructions:
100 arch->instructions = new_instructions;
101 arch->nr_instructions_allocated = new_nr_allocated;
102 return 0;
103
104grow_from_non_allocated_table:
105 new_nr_allocated = arch->nr_instructions + 128;
106 new_instructions = calloc(new_nr_allocated, sizeof(struct ins));
107 if (new_instructions == NULL)
108 return -1;
109
110 memcpy(new_instructions, arch->instructions, arch->nr_instructions);
111 goto out_update_instructions;
112}
113
Arnaldo Carvalho de Meloacc9bfb2016-11-18 16:54:10 -0300114static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops)
Arnaldo Carvalho de Melo2a1ff812016-11-24 11:37:08 -0300115{
116 struct ins *ins;
117
118 if (arch->nr_instructions == arch->nr_instructions_allocated &&
119 arch__grow_instructions(arch))
120 return -1;
121
122 ins = &arch->instructions[arch->nr_instructions];
123 ins->name = strdup(name);
124 if (!ins->name)
125 return -1;
126
127 ins->ops = ops;
128 arch->nr_instructions++;
129
130 ins__sort(arch);
131 return 0;
132}
133
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -0300134#include "arch/arm/annotate/instructions.c"
Kim Phillips0fcb1da2016-11-30 09:23:44 -0600135#include "arch/arm64/annotate/instructions.c"
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -0300136#include "arch/x86/annotate/instructions.c"
Ravi Bangoriadbdebdc2016-11-23 21:33:46 +0530137#include "arch/powerpc/annotate/instructions.c"
Christian Borntraegerd9f8dfa2017-04-06 09:51:52 +0200138#include "arch/s390/annotate/instructions.c"
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -0300139
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300140static struct arch architectures[] = {
141 {
142 .name = "arm",
Arnaldo Carvalho de Meloacc9bfb2016-11-18 16:54:10 -0300143 .init = arm__annotate_init,
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300144 },
145 {
Kim Phillips0fcb1da2016-11-30 09:23:44 -0600146 .name = "arm64",
147 .init = arm64__annotate_init,
148 },
149 {
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300150 .name = "x86",
Jiri Olsa696e24572017-10-11 17:01:24 +0200151 .init = x86__annotate_init,
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -0300152 .instructions = x86__instructions,
153 .nr_instructions = ARRAY_SIZE(x86__instructions),
Jin Yao69fb09f2017-07-07 13:06:34 +0800154 .ins_is_fused = x86__ins_is_fused,
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300155 .objdump = {
156 .comment_char = '#',
157 },
158 },
Ravi Bangoriadbdebdc2016-11-23 21:33:46 +0530159 {
160 .name = "powerpc",
161 .init = powerpc__annotate_init,
162 },
Christian Borntraegere77852b2017-04-06 09:51:51 +0200163 {
164 .name = "s390",
Christian Borntraegerd9f8dfa2017-04-06 09:51:52 +0200165 .init = s390__annotate_init,
Christian Borntraegere77852b2017-04-06 09:51:51 +0200166 .objdump = {
167 .comment_char = '#',
168 },
169 },
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300170};
171
Arnaldo Carvalho de Meloc46219ac2012-05-12 13:26:20 -0300172static void ins__delete(struct ins_operands *ops)
173{
Arnaldo Carvalho de Melo39956142015-03-05 15:27:28 -0300174 if (ops == NULL)
175 return;
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300176 zfree(&ops->source.raw);
177 zfree(&ops->source.name);
178 zfree(&ops->target.raw);
179 zfree(&ops->target.name);
Arnaldo Carvalho de Meloc46219ac2012-05-12 13:26:20 -0300180}
181
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -0300182static int ins__raw_scnprintf(struct ins *ins, char *bf, size_t size,
183 struct ins_operands *ops)
184{
Ravi Bangoria648388a2017-11-14 08:55:40 +0530185 return scnprintf(bf, size, "%-6s %s", ins->name, ops->raw);
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -0300186}
187
188int ins__scnprintf(struct ins *ins, char *bf, size_t size,
189 struct ins_operands *ops)
190{
191 if (ins->ops->scnprintf)
192 return ins->ops->scnprintf(ins, bf, size, ops);
193
194 return ins__raw_scnprintf(ins, bf, size, ops);
195}
196
Jin Yao69fb09f2017-07-07 13:06:34 +0800197bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2)
198{
199 if (!arch || !arch->ins_is_fused)
200 return false;
201
202 return arch->ins_is_fused(arch, ins1, ins2);
203}
204
Arnaldo Carvalho de Melo9c2fb452016-11-16 15:50:38 -0300205static int call__parse(struct arch *arch, struct ins_operands *ops, struct map *map)
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -0300206{
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300207 char *endptr, *tok, *name;
Arnaldo Carvalho de Melo696703a2018-03-02 11:59:36 -0300208 struct addr_map_symbol target = {
209 .map = map,
210 };
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300211
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -0300212 ops->target.addr = strtoull(ops->raw, &endptr, 16);
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300213
214 name = strchr(endptr, '<');
215 if (name == NULL)
216 goto indirect_call;
217
218 name++;
219
Arnaldo Carvalho de Melo9c2fb452016-11-16 15:50:38 -0300220 if (arch->objdump.skip_functions_char &&
221 strchr(name, arch->objdump.skip_functions_char))
Russell Kingcfef25b2015-12-06 23:07:13 +0000222 return -1;
Russell Kingcfef25b2015-12-06 23:07:13 +0000223
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300224 tok = strchr(name, '>');
225 if (tok == NULL)
226 return -1;
227
228 *tok = '\0';
Arnaldo Carvalho de Melo44d1a3e2012-04-25 08:00:23 -0300229 ops->target.name = strdup(name);
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300230 *tok = '>';
231
Arnaldo Carvalho de Melo696703a2018-03-02 11:59:36 -0300232 if (ops->target.name == NULL)
233 return -1;
234find_target:
235 target.addr = map__objdump_2mem(map, ops->target.addr);
236
237 if (map_groups__find_ams(&target) == 0 &&
238 map__rip_2objdump(target.map, map->map_ip(target.map, target.addr)) == ops->target.addr)
239 ops->target.sym = target.sym;
240
241 return 0;
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300242
243indirect_call:
Ravi Bangoria88a7fcf2016-08-19 18:29:35 +0530244 tok = strchr(endptr, '*');
Arnaldo Carvalho de Melo696703a2018-03-02 11:59:36 -0300245 if (tok != NULL)
246 ops->target.addr = strtoull(tok + 1, NULL, 16);
247 goto find_target;
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -0300248}
249
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300250static int call__scnprintf(struct ins *ins, char *bf, size_t size,
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -0300251 struct ins_operands *ops)
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300252{
Arnaldo Carvalho de Melo696703a2018-03-02 11:59:36 -0300253 if (ops->target.sym)
254 return scnprintf(bf, size, "%-6s %s", ins->name, ops->target.sym->name);
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300255
Arnaldo Carvalho de Meloe8ea1562012-05-11 12:28:55 -0300256 if (ops->target.addr == 0)
257 return ins__raw_scnprintf(ins, bf, size, ops);
258
Arnaldo Carvalho de Melo4c9cb2c2018-03-16 13:28:09 -0300259 if (ops->target.name)
260 return scnprintf(bf, size, "%-6s %s", ins->name, ops->target.name);
261
Ravi Bangoria648388a2017-11-14 08:55:40 +0530262 return scnprintf(bf, size, "%-6s *%" PRIx64, ins->name, ops->target.addr);
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300263}
264
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -0300265static struct ins_ops call_ops = {
Arnaldo Carvalho de Melod2232882012-04-20 15:26:47 -0300266 .parse = call__parse,
267 .scnprintf = call__scnprintf,
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -0300268};
269
270bool ins__is_call(const struct ins *ins)
271{
Thomas Richter0b58a772018-03-07 14:43:25 +0100272 return ins->ops == &call_ops || ins->ops == &s390_call_ops;
Arnaldo Carvalho de Melod86b0592012-04-18 16:07:38 -0300273}
274
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300275static int jump__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map *map __maybe_unused)
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300276{
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -0300277 const char *s = strchr(ops->raw, '+');
Ravi Bangoria3ee2eb62016-12-05 21:26:46 +0530278 const char *c = strchr(ops->raw, ',');
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300279
Kim Phillipsb13bbee2017-06-01 09:29:59 -0500280 /*
281 * skip over possible up to 2 operands to get to address, e.g.:
282 * tbnz w0, #26, ffff0000083cd190 <security_file_permission+0xd0>
283 */
284 if (c++ != NULL) {
Ravi Bangoria3ee2eb62016-12-05 21:26:46 +0530285 ops->target.addr = strtoull(c, NULL, 16);
Kim Phillipsb13bbee2017-06-01 09:29:59 -0500286 if (!ops->target.addr) {
287 c = strchr(c, ',');
288 if (c++ != NULL)
289 ops->target.addr = strtoull(c, NULL, 16);
290 }
291 } else {
Ravi Bangoria3ee2eb62016-12-05 21:26:46 +0530292 ops->target.addr = strtoull(ops->raw, NULL, 16);
Kim Phillipsb13bbee2017-06-01 09:29:59 -0500293 }
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300294
Ravi Bangoriae2168742016-12-05 21:26:47 +0530295 if (s++ != NULL) {
Adrian Hunterbbb7f842013-08-07 14:38:54 +0300296 ops->target.offset = strtoull(s, NULL, 16);
Ravi Bangoriae2168742016-12-05 21:26:47 +0530297 ops->target.offset_avail = true;
298 } else {
299 ops->target.offset_avail = false;
300 }
Arnaldo Carvalho de Melofb29fa582012-04-25 14:16:03 -0300301
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300302 return 0;
303}
304
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -0300305static int jump__scnprintf(struct ins *ins, char *bf, size_t size,
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -0300306 struct ins_operands *ops)
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -0300307{
Kim Phillipsb13bbee2017-06-01 09:29:59 -0500308 const char *c = strchr(ops->raw, ',');
309
Ravi Bangoriae2168742016-12-05 21:26:47 +0530310 if (!ops->target.addr || ops->target.offset < 0)
Ravi Bangoriabec60e52016-12-05 21:26:45 +0530311 return ins__raw_scnprintf(ins, bf, size, ops);
312
Kim Phillipsb13bbee2017-06-01 09:29:59 -0500313 if (c != NULL) {
314 const char *c2 = strchr(c + 1, ',');
315
316 /* check for 3-op insn */
317 if (c2 != NULL)
318 c = c2;
319 c++;
320
321 /* mirror arch objdump's space-after-comma style */
322 if (*c == ' ')
323 c++;
324 }
325
Ravi Bangoria648388a2017-11-14 08:55:40 +0530326 return scnprintf(bf, size, "%-6s %.*s%" PRIx64,
Kim Phillipsb13bbee2017-06-01 09:29:59 -0500327 ins->name, c ? c - ops->raw : 0, ops->raw,
328 ops->target.offset);
Arnaldo Carvalho de Melo28548d72012-04-19 10:16:27 -0300329}
330
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300331static struct ins_ops jump_ops = {
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -0300332 .parse = jump__parse,
333 .scnprintf = jump__scnprintf,
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300334};
335
336bool ins__is_jump(const struct ins *ins)
337{
338 return ins->ops == &jump_ops;
339}
340
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300341static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep)
342{
343 char *endptr, *name, *t;
344
345 if (strstr(raw, "(%rip)") == NULL)
346 return 0;
347
348 *addrp = strtoull(comment, &endptr, 16);
Thomas Richter35a8a142017-11-28 08:56:32 +0100349 if (endptr == comment)
350 return 0;
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300351 name = strchr(endptr, '<');
352 if (name == NULL)
353 return -1;
354
355 name++;
356
357 t = strchr(name, '>');
358 if (t == NULL)
359 return 0;
360
361 *t = '\0';
362 *namep = strdup(name);
363 *t = '>';
364
365 return 0;
366}
367
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300368static int lock__parse(struct arch *arch, struct ins_operands *ops, struct map *map)
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300369{
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300370 ops->locked.ops = zalloc(sizeof(*ops->locked.ops));
371 if (ops->locked.ops == NULL)
372 return 0;
373
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300374 if (disasm_line__parse(ops->raw, &ops->locked.ins.name, &ops->locked.ops->raw) < 0)
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300375 goto out_free_ops;
376
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300377 ops->locked.ins.ops = ins__find(arch, ops->locked.ins.name);
Rabin Vincent0fb9f2a2015-01-18 20:00:21 +0100378
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300379 if (ops->locked.ins.ops == NULL)
Namhyung Kim2ba34aa2012-11-10 02:27:13 +0900380 goto out_free_ops;
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300381
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300382 if (ops->locked.ins.ops->parse &&
383 ops->locked.ins.ops->parse(arch, ops->locked.ops, map) < 0)
Rabin Vincentbe819082015-01-18 20:00:20 +0100384 goto out_free_ops;
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300385
386 return 0;
387
388out_free_ops:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300389 zfree(&ops->locked.ops);
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300390 return 0;
391}
392
393static int lock__scnprintf(struct ins *ins, char *bf, size_t size,
394 struct ins_operands *ops)
395{
396 int printed;
397
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300398 if (ops->locked.ins.ops == NULL)
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300399 return ins__raw_scnprintf(ins, bf, size, ops);
400
Ravi Bangoria648388a2017-11-14 08:55:40 +0530401 printed = scnprintf(bf, size, "%-6s ", ins->name);
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300402 return printed + ins__scnprintf(&ops->locked.ins, bf + printed,
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300403 size - printed, ops->locked.ops);
404}
405
Arnaldo Carvalho de Meloc46219ac2012-05-12 13:26:20 -0300406static void lock__delete(struct ins_operands *ops)
407{
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300408 struct ins *ins = &ops->locked.ins;
Rabin Vincent0fb9f2a2015-01-18 20:00:21 +0100409
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300410 if (ins->ops && ins->ops->free)
Rabin Vincent0fb9f2a2015-01-18 20:00:21 +0100411 ins->ops->free(ops->locked.ops);
412 else
413 ins__delete(ops->locked.ops);
414
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300415 zfree(&ops->locked.ops);
416 zfree(&ops->target.raw);
417 zfree(&ops->target.name);
Arnaldo Carvalho de Meloc46219ac2012-05-12 13:26:20 -0300418}
419
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300420static struct ins_ops lock_ops = {
Arnaldo Carvalho de Meloc46219ac2012-05-12 13:26:20 -0300421 .free = lock__delete,
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300422 .parse = lock__parse,
423 .scnprintf = lock__scnprintf,
424};
425
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300426static int mov__parse(struct arch *arch, struct ins_operands *ops, struct map *map __maybe_unused)
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300427{
428 char *s = strchr(ops->raw, ','), *target, *comment, prev;
429
430 if (s == NULL)
431 return -1;
432
433 *s = '\0';
434 ops->source.raw = strdup(ops->raw);
435 *s = ',';
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -0300436
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300437 if (ops->source.raw == NULL)
438 return -1;
439
440 target = ++s;
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300441 comment = strchr(s, arch->objdump.comment_char);
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300442
Alex Converse1e2bb042014-08-14 14:03:00 -0700443 if (comment != NULL)
444 s = comment - 1;
445 else
446 s = strchr(s, '\0') - 1;
447
448 while (s > target && isspace(s[0]))
449 --s;
450 s++;
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300451 prev = *s;
452 *s = '\0';
453
454 ops->target.raw = strdup(target);
455 *s = prev;
456
457 if (ops->target.raw == NULL)
458 goto out_free_source;
459
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300460 if (comment == NULL)
461 return 0;
462
Taeung Song4597cf02017-04-08 09:52:24 +0900463 comment = ltrim(comment);
Thomas Richter35a8a142017-11-28 08:56:32 +0100464 comment__symbol(ops->source.raw, comment + 1, &ops->source.addr, &ops->source.name);
465 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300466
467 return 0;
468
469out_free_source:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -0300470 zfree(&ops->source.raw);
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300471 return -1;
472}
473
474static int mov__scnprintf(struct ins *ins, char *bf, size_t size,
475 struct ins_operands *ops)
476{
Ravi Bangoria648388a2017-11-14 08:55:40 +0530477 return scnprintf(bf, size, "%-6s %s,%s", ins->name,
Arnaldo Carvalho de Melo6de783b2012-05-11 16:48:49 -0300478 ops->source.name ?: ops->source.raw,
479 ops->target.name ?: ops->target.raw);
480}
481
482static struct ins_ops mov_ops = {
483 .parse = mov__parse,
484 .scnprintf = mov__scnprintf,
485};
486
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300487static int dec__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map *map __maybe_unused)
Arnaldo Carvalho de Meloa43712c2012-05-11 17:21:09 -0300488{
489 char *target, *comment, *s, prev;
490
491 target = s = ops->raw;
492
493 while (s[0] != '\0' && !isspace(s[0]))
494 ++s;
495 prev = *s;
496 *s = '\0';
497
498 ops->target.raw = strdup(target);
499 *s = prev;
500
501 if (ops->target.raw == NULL)
502 return -1;
503
Kim Phillips859afa62016-11-30 09:23:33 -0600504 comment = strchr(s, arch->objdump.comment_char);
Arnaldo Carvalho de Meloa43712c2012-05-11 17:21:09 -0300505 if (comment == NULL)
506 return 0;
507
Taeung Song4597cf02017-04-08 09:52:24 +0900508 comment = ltrim(comment);
Thomas Richter35a8a142017-11-28 08:56:32 +0100509 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);
Arnaldo Carvalho de Meloa43712c2012-05-11 17:21:09 -0300510
511 return 0;
512}
513
514static int dec__scnprintf(struct ins *ins, char *bf, size_t size,
515 struct ins_operands *ops)
516{
Ravi Bangoria648388a2017-11-14 08:55:40 +0530517 return scnprintf(bf, size, "%-6s %s", ins->name,
Arnaldo Carvalho de Meloa43712c2012-05-11 17:21:09 -0300518 ops->target.name ?: ops->target.raw);
519}
520
521static struct ins_ops dec_ops = {
522 .parse = dec__parse,
523 .scnprintf = dec__scnprintf,
524};
525
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300526static int nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size,
527 struct ins_operands *ops __maybe_unused)
Arnaldo Carvalho de Melob9818e92012-05-07 18:57:02 -0300528{
Ravi Bangoria648388a2017-11-14 08:55:40 +0530529 return scnprintf(bf, size, "%-6s", "nop");
Arnaldo Carvalho de Melob9818e92012-05-07 18:57:02 -0300530}
531
532static struct ins_ops nop_ops = {
533 .scnprintf = nop__scnprintf,
534};
535
Naveen N. Rao6ef94922016-06-24 17:23:58 +0530536static struct ins_ops ret_ops = {
537 .scnprintf = ins__raw_scnprintf,
538};
539
540bool ins__is_ret(const struct ins *ins)
541{
542 return ins->ops == &ret_ops;
543}
544
Jin Yao7e63a132017-07-07 13:06:35 +0800545bool ins__is_lock(const struct ins *ins)
546{
547 return ins->ops == &lock_ops;
548}
549
Chris Ryder7e4c1492016-05-19 17:59:46 +0100550static int ins__key_cmp(const void *name, const void *insp)
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300551{
552 const struct ins *ins = insp;
553
554 return strcmp(name, ins->name);
555}
556
Chris Ryder7e4c1492016-05-19 17:59:46 +0100557static int ins__cmp(const void *a, const void *b)
558{
559 const struct ins *ia = a;
560 const struct ins *ib = b;
561
562 return strcmp(ia->name, ib->name);
563}
564
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -0300565static void ins__sort(struct arch *arch)
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300566{
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -0300567 const int nmemb = arch->nr_instructions;
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300568
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -0300569 qsort(arch->instructions, nmemb, sizeof(struct ins), ins__cmp);
Chris Ryder7e4c1492016-05-19 17:59:46 +0100570}
571
Arnaldo Carvalho de Melo2a1ff812016-11-24 11:37:08 -0300572static struct ins_ops *__ins__find(struct arch *arch, const char *name)
Chris Ryder7e4c1492016-05-19 17:59:46 +0100573{
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300574 struct ins *ins;
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -0300575 const int nmemb = arch->nr_instructions;
Chris Ryder7e4c1492016-05-19 17:59:46 +0100576
Arnaldo Carvalho de Melo763d8962016-11-17 12:31:51 -0300577 if (!arch->sorted_instructions) {
578 ins__sort(arch);
579 arch->sorted_instructions = true;
Chris Ryder7e4c1492016-05-19 17:59:46 +0100580 }
581
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300582 ins = bsearch(name, arch->instructions, nmemb, sizeof(struct ins), ins__key_cmp);
583 return ins ? ins->ops : NULL;
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300584}
585
Arnaldo Carvalho de Melo2a1ff812016-11-24 11:37:08 -0300586static struct ins_ops *ins__find(struct arch *arch, const char *name)
587{
588 struct ins_ops *ops = __ins__find(arch, name);
589
590 if (!ops && arch->associate_instruction_ops)
591 ops = arch->associate_instruction_ops(arch, name);
592
593 return ops;
594}
595
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300596static int arch__key_cmp(const void *name, const void *archp)
597{
598 const struct arch *arch = archp;
599
600 return strcmp(name, arch->name);
601}
602
603static int arch__cmp(const void *a, const void *b)
604{
605 const struct arch *aa = a;
606 const struct arch *ab = b;
607
608 return strcmp(aa->name, ab->name);
609}
610
611static void arch__sort(void)
612{
613 const int nmemb = ARRAY_SIZE(architectures);
614
615 qsort(architectures, nmemb, sizeof(struct arch), arch__cmp);
616}
617
618static struct arch *arch__find(const char *name)
619{
620 const int nmemb = ARRAY_SIZE(architectures);
621 static bool sorted;
622
623 if (!sorted) {
624 arch__sort();
625 sorted = true;
626 }
627
628 return bsearch(name, architectures, nmemb, sizeof(struct arch), arch__key_cmp);
629}
630
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200631int symbol__alloc_hist(struct symbol *sym)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200632{
633 struct annotation *notes = symbol__annotation(sym);
Ravi Bangoria331c7cb2017-10-24 19:50:06 +0530634 size_t size = symbol__size(sym);
Cody Schafer86963292012-07-19 20:05:25 -0700635 size_t sizeof_sym_hist;
636
Ravi Bangoria331c7cb2017-10-24 19:50:06 +0530637 /*
638 * Add buffer of one element for zero length symbol.
639 * When sample is taken from first instruction of
640 * zero length symbol, perf still resolves it and
641 * shows symbol name in perf report and allows to
642 * annotate it.
643 */
644 if (size == 0)
645 size = 1;
646
Cody Schafer86963292012-07-19 20:05:25 -0700647 /* Check for overflow when calculating sizeof_sym_hist */
Taeung Song896bccd2017-07-20 06:36:45 +0900648 if (size > (SIZE_MAX - sizeof(struct sym_hist)) / sizeof(struct sym_hist_entry))
Cody Schafer86963292012-07-19 20:05:25 -0700649 return -1;
650
Taeung Song896bccd2017-07-20 06:36:45 +0900651 sizeof_sym_hist = (sizeof(struct sym_hist) + size * sizeof(struct sym_hist_entry));
Cody Schafer86963292012-07-19 20:05:25 -0700652
653 /* Check for overflow in zalloc argument */
654 if (sizeof_sym_hist > (SIZE_MAX - sizeof(*notes->src))
655 / symbol_conf.nr_events)
656 return -1;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200657
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200658 notes->src = zalloc(sizeof(*notes->src) + symbol_conf.nr_events * sizeof_sym_hist);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200659 if (notes->src == NULL)
660 return -1;
661 notes->src->sizeof_sym_hist = sizeof_sym_hist;
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -0200662 notes->src->nr_histograms = symbol_conf.nr_events;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200663 INIT_LIST_HEAD(&notes->src->source);
664 return 0;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200665}
666
Andi Kleend4957632015-07-18 08:24:48 -0700667/* The cycles histogram is lazily allocated. */
668static int symbol__alloc_hist_cycles(struct symbol *sym)
669{
670 struct annotation *notes = symbol__annotation(sym);
671 const size_t size = symbol__size(sym);
672
673 notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist));
674 if (notes->src->cycles_hist == NULL)
675 return -1;
676 return 0;
677}
678
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200679void symbol__annotate_zero_histograms(struct symbol *sym)
680{
681 struct annotation *notes = symbol__annotation(sym);
682
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200683 pthread_mutex_lock(&notes->lock);
Andi Kleend4957632015-07-18 08:24:48 -0700684 if (notes->src != NULL) {
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200685 memset(notes->src->histograms, 0,
686 notes->src->nr_histograms * notes->src->sizeof_sym_hist);
Andi Kleend4957632015-07-18 08:24:48 -0700687 if (notes->src->cycles_hist)
688 memset(notes->src->cycles_hist, 0,
689 symbol__size(sym) * sizeof(struct cyc_hist));
690 }
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200691 pthread_mutex_unlock(&notes->lock);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -0200692}
693
Andi Kleend4957632015-07-18 08:24:48 -0700694static int __symbol__account_cycles(struct annotation *notes,
695 u64 start,
696 unsigned offset, unsigned cycles,
697 unsigned have_start)
698{
699 struct cyc_hist *ch;
700
701 ch = notes->src->cycles_hist;
702 /*
703 * For now we can only account one basic block per
704 * final jump. But multiple could be overlapping.
705 * Always account the longest one. So when
706 * a shorter one has been already seen throw it away.
707 *
708 * We separately always account the full cycles.
709 */
710 ch[offset].num_aggr++;
711 ch[offset].cycles_aggr += cycles;
712
713 if (!have_start && ch[offset].have_start)
714 return 0;
715 if (ch[offset].num) {
716 if (have_start && (!ch[offset].have_start ||
717 ch[offset].start > start)) {
718 ch[offset].have_start = 0;
719 ch[offset].cycles = 0;
720 ch[offset].num = 0;
721 if (ch[offset].reset < 0xffff)
722 ch[offset].reset++;
723 } else if (have_start &&
724 ch[offset].start < start)
725 return 0;
726 }
727 ch[offset].have_start = have_start;
728 ch[offset].start = start;
729 ch[offset].cycles += cycles;
730 ch[offset].num++;
731 return 0;
732}
733
Arnaldo Carvalho de Melob66d8c02013-12-18 15:37:41 -0300734static int __symbol__inc_addr_samples(struct symbol *sym, struct map *map,
Taeung Songbab89f62017-07-20 16:28:53 -0300735 struct annotation *notes, int evidx, u64 addr,
Taeung Song461c17f2017-07-20 17:18:05 -0300736 struct perf_sample *sample)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200737{
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200738 unsigned offset;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200739 struct sym_hist *h;
740
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200741 pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, map->unmap_ip(map, addr));
742
Ravi Bangoriaedee44b2016-11-22 14:10:50 +0530743 if ((addr < sym->start || addr >= sym->end) &&
744 (addr != sym->end || sym->start != sym->end)) {
Arnaldo Carvalho de Meloe3d006c2015-10-21 15:45:13 -0300745 pr_debug("%s(%d): ERANGE! sym->name=%s, start=%#" PRIx64 ", addr=%#" PRIx64 ", end=%#" PRIx64 "\n",
746 __func__, __LINE__, sym->name, sym->start, addr, sym->end);
Arnaldo Carvalho de Melo31d68e72012-03-27 12:55:57 -0300747 return -ERANGE;
Arnaldo Carvalho de Meloe3d006c2015-10-21 15:45:13 -0300748 }
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200749
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200750 offset = addr - sym->start;
751 h = annotation__histogram(notes, evidx);
Taeung Song8158683d2017-07-20 06:36:51 +0900752 h->nr_samples++;
Taeung Song896bccd2017-07-20 06:36:45 +0900753 h->addr[offset].nr_samples++;
Taeung Song461c17f2017-07-20 17:18:05 -0300754 h->period += sample->period;
755 h->addr[offset].period += sample->period;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200756
757 pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64
Taeung Song461c17f2017-07-20 17:18:05 -0300758 ", evidx=%d] => nr_samples: %" PRIu64 ", period: %" PRIu64 "\n",
759 sym->start, sym->name, addr, addr - sym->start, evidx,
760 h->addr[offset].nr_samples, h->addr[offset].period);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -0200761 return 0;
762}
763
Andi Kleend4957632015-07-18 08:24:48 -0700764static struct annotation *symbol__get_annotation(struct symbol *sym, bool cycles)
Andi Kleen83be34a2015-05-27 10:51:46 -0700765{
766 struct annotation *notes = symbol__annotation(sym);
767
768 if (notes->src == NULL) {
769 if (symbol__alloc_hist(sym) < 0)
770 return NULL;
771 }
Andi Kleend4957632015-07-18 08:24:48 -0700772 if (!notes->src->cycles_hist && cycles) {
773 if (symbol__alloc_hist_cycles(sym) < 0)
774 return NULL;
775 }
Andi Kleen83be34a2015-05-27 10:51:46 -0700776 return notes;
777}
778
Arnaldo Carvalho de Melo44e83032013-12-18 17:12:24 -0300779static int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
Taeung Songbab89f62017-07-20 16:28:53 -0300780 int evidx, u64 addr,
781 struct perf_sample *sample)
Arnaldo Carvalho de Melob66d8c02013-12-18 15:37:41 -0300782{
783 struct annotation *notes;
784
Namhyung Kim48c65bd2014-02-20 10:32:53 +0900785 if (sym == NULL)
Arnaldo Carvalho de Melob66d8c02013-12-18 15:37:41 -0300786 return 0;
Andi Kleend4957632015-07-18 08:24:48 -0700787 notes = symbol__get_annotation(sym, false);
Andi Kleen83be34a2015-05-27 10:51:46 -0700788 if (notes == NULL)
789 return -ENOMEM;
Taeung Songbab89f62017-07-20 16:28:53 -0300790 return __symbol__inc_addr_samples(sym, map, notes, evidx, addr, sample);
Arnaldo Carvalho de Melob66d8c02013-12-18 15:37:41 -0300791}
792
Andi Kleend4957632015-07-18 08:24:48 -0700793static int symbol__account_cycles(u64 addr, u64 start,
794 struct symbol *sym, unsigned cycles)
795{
796 struct annotation *notes;
797 unsigned offset;
798
799 if (sym == NULL)
800 return 0;
801 notes = symbol__get_annotation(sym, true);
802 if (notes == NULL)
803 return -ENOMEM;
804 if (addr < sym->start || addr >= sym->end)
805 return -ERANGE;
806
807 if (start) {
808 if (start < sym->start || start >= sym->end)
809 return -ERANGE;
810 if (start >= addr)
811 start = 0;
812 }
813 offset = addr - sym->start;
814 return __symbol__account_cycles(notes,
815 start ? start - sym->start : 0,
816 offset, cycles,
817 !!start);
818}
819
820int addr_map_symbol__account_cycles(struct addr_map_symbol *ams,
821 struct addr_map_symbol *start,
822 unsigned cycles)
823{
Adrian Hunter3d7245b2015-08-14 10:11:34 +0300824 u64 saddr = 0;
Andi Kleend4957632015-07-18 08:24:48 -0700825 int err;
826
827 if (!cycles)
828 return 0;
829
830 /*
831 * Only set start when IPC can be computed. We can only
832 * compute it when the basic block is completely in a single
833 * function.
834 * Special case the case when the jump is elsewhere, but
835 * it starts on the function start.
836 */
837 if (start &&
838 (start->sym == ams->sym ||
839 (ams->sym &&
840 start->addr == ams->sym->start + ams->map->start)))
841 saddr = start->al_addr;
842 if (saddr == 0)
Adrian Hunter3d7245b2015-08-14 10:11:34 +0300843 pr_debug2("BB with bad start: addr %"PRIx64" start %"PRIx64" sym %"PRIx64" saddr %"PRIx64"\n",
Andi Kleend4957632015-07-18 08:24:48 -0700844 ams->addr,
845 start ? start->addr : 0,
846 ams->sym ? ams->sym->start + ams->map->start : 0,
847 saddr);
848 err = symbol__account_cycles(ams->al_addr, saddr, ams->sym, cycles);
849 if (err)
850 pr_debug2("account_cycles failed %d\n", err);
851 return err;
852}
853
Arnaldo Carvalho de Melof56c0832018-03-15 11:46:23 -0300854static unsigned annotation__count_insn(struct annotation *notes, u64 start, u64 end)
855{
856 unsigned n_insn = 0;
857 u64 offset;
858
859 for (offset = start; offset <= end; offset++) {
860 if (notes->offsets[offset])
861 n_insn++;
862 }
863 return n_insn;
864}
865
866static void annotation__count_and_fill(struct annotation *notes, u64 start, u64 end, struct cyc_hist *ch)
867{
868 unsigned n_insn;
869 u64 offset;
870
871 n_insn = annotation__count_insn(notes, start, end);
872 if (n_insn && ch->num && ch->cycles) {
873 float ipc = n_insn / ((double)ch->cycles / (double)ch->num);
874
875 /* Hide data when there are too many overlaps. */
876 if (ch->reset >= 0x7fff || ch->reset >= ch->num / 2)
877 return;
878
879 for (offset = start; offset <= end; offset++) {
880 struct annotation_line *al = notes->offsets[offset];
881
882 if (al)
883 al->ipc = ipc;
884 }
885 }
886}
887
888void annotation__compute_ipc(struct annotation *notes, size_t size)
889{
890 u64 offset;
891
892 if (!notes->src || !notes->src->cycles_hist)
893 return;
894
895 pthread_mutex_lock(&notes->lock);
896 for (offset = 0; offset < size; ++offset) {
897 struct cyc_hist *ch;
898
899 ch = &notes->src->cycles_hist[offset];
900 if (ch && ch->cycles) {
901 struct annotation_line *al;
902
903 if (ch->have_start)
904 annotation__count_and_fill(notes, ch->start, offset, ch);
905 al = notes->offsets[offset];
906 if (al && ch->num_aggr)
907 al->cycles = ch->cycles_aggr / ch->num_aggr;
908 notes->have_cycles = true;
909 }
910 }
911 pthread_mutex_unlock(&notes->lock);
912}
913
Taeung Songbab89f62017-07-20 16:28:53 -0300914int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample,
915 int evidx)
Arnaldo Carvalho de Melo0f4e7a22013-12-18 16:48:29 -0300916{
Taeung Songbab89f62017-07-20 16:28:53 -0300917 return symbol__inc_addr_samples(ams->sym, ams->map, evidx, ams->al_addr, sample);
Arnaldo Carvalho de Melo0f4e7a22013-12-18 16:48:29 -0300918}
919
Taeung Songbab89f62017-07-20 16:28:53 -0300920int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample,
921 int evidx, u64 ip)
Arnaldo Carvalho de Melof626adf2013-12-18 17:10:15 -0300922{
Taeung Songbab89f62017-07-20 16:28:53 -0300923 return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip, sample);
Arnaldo Carvalho de Melof626adf2013-12-18 17:10:15 -0300924}
925
Arnaldo Carvalho de Melo786c1b52016-11-16 15:39:50 -0300926static void disasm_line__init_ins(struct disasm_line *dl, struct arch *arch, struct map *map)
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300927{
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300928 dl->ins.ops = ins__find(arch, dl->ins.name);
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300929
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300930 if (!dl->ins.ops)
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300931 return;
932
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300933 if (dl->ins.ops->parse && dl->ins.ops->parse(arch, &dl->ops, map) < 0)
934 dl->ins.ops = NULL;
Arnaldo Carvalho de Melo4f9d0322012-04-18 13:58:34 -0300935}
936
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300937static int disasm_line__parse(char *line, const char **namep, char **rawp)
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300938{
Taeung Song4597cf02017-04-08 09:52:24 +0900939 char tmp, *name = ltrim(line);
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300940
941 if (name[0] == '\0')
942 return -1;
943
944 *rawp = name + 1;
945
946 while ((*rawp)[0] != '\0' && !isspace((*rawp)[0]))
947 ++*rawp;
948
949 tmp = (*rawp)[0];
950 (*rawp)[0] = '\0';
951 *namep = strdup(name);
952
953 if (*namep == NULL)
954 goto out_free_name;
955
956 (*rawp)[0] = tmp;
Taeung Song4597cf02017-04-08 09:52:24 +0900957 *rawp = ltrim(*rawp);
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300958
959 return 0;
960
961out_free_name:
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -0300962 free((void *)namep);
963 *namep = NULL;
Arnaldo Carvalho de Melo7a997fe2012-05-12 13:15:34 -0300964 return -1;
965}
966
Jiri Olsaea07c5a2017-10-11 17:01:29 +0200967struct annotate_args {
968 size_t privsize;
Jiri Olsa24fe7b82017-10-11 17:01:30 +0200969 struct arch *arch;
Jiri Olsa1a04db72017-10-11 17:01:31 +0200970 struct map *map;
Jiri Olsad03a6862017-10-11 17:01:33 +0200971 struct perf_evsel *evsel;
Jiri Olsa47488342017-10-11 17:01:32 +0200972 s64 offset;
973 char *line;
974 int line_nr;
Jiri Olsaea07c5a2017-10-11 17:01:29 +0200975};
976
Jiri Olsac835e192017-10-11 17:01:37 +0200977static void annotation_line__delete(struct annotation_line *al)
978{
979 void *ptr = (void *) al - al->privsize;
980
Jiri Olsa8b4c74d2017-10-11 17:01:41 +0200981 free_srcline(al->path);
Jiri Olsac835e192017-10-11 17:01:37 +0200982 zfree(&al->line);
983 free(ptr);
984}
985
986/*
987 * Allocating the annotation line data with following
988 * structure:
989 *
990 * --------------------------------------
991 * private space | struct annotation_line
992 * --------------------------------------
993 *
994 * Size of the private space is stored in 'struct annotation_line'.
995 *
996 */
997static struct annotation_line *
998annotation_line__new(struct annotate_args *args, size_t privsize)
999{
1000 struct annotation_line *al;
Jiri Olsa7e304552017-10-11 17:01:39 +02001001 struct perf_evsel *evsel = args->evsel;
Jiri Olsac835e192017-10-11 17:01:37 +02001002 size_t size = privsize + sizeof(*al);
Jiri Olsa7e304552017-10-11 17:01:39 +02001003 int nr = 1;
1004
1005 if (perf_evsel__is_group_event(evsel))
1006 nr = evsel->nr_members;
1007
1008 size += sizeof(al->samples[0]) * nr;
Jiri Olsac835e192017-10-11 17:01:37 +02001009
1010 al = zalloc(size);
1011 if (al) {
1012 al = (void *) al + privsize;
1013 al->privsize = privsize;
1014 al->offset = args->offset;
1015 al->line = strdup(args->line);
1016 al->line_nr = args->line_nr;
Jiri Olsa7e304552017-10-11 17:01:39 +02001017 al->samples_nr = nr;
Jiri Olsac835e192017-10-11 17:01:37 +02001018 }
1019
1020 return al;
1021}
1022
1023/*
1024 * Allocating the disasm annotation line data with
1025 * following structure:
1026 *
1027 * ------------------------------------------------------------
1028 * privsize space | struct disasm_line | struct annotation_line
1029 * ------------------------------------------------------------
1030 *
1031 * We have 'struct annotation_line' member as last member
1032 * of 'struct disasm_line' to have an easy access.
1033 *
1034 */
Jiri Olsa47488342017-10-11 17:01:32 +02001035static struct disasm_line *disasm_line__new(struct annotate_args *args)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001036{
Jiri Olsac835e192017-10-11 17:01:37 +02001037 struct disasm_line *dl = NULL;
1038 struct annotation_line *al;
1039 size_t privsize = args->privsize + offsetof(struct disasm_line, al);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001040
Jiri Olsac835e192017-10-11 17:01:37 +02001041 al = annotation_line__new(args, privsize);
1042 if (al != NULL) {
1043 dl = disasm_line(al);
Jiri Olsad5490b92017-10-11 17:01:26 +02001044
1045 if (dl->al.line == NULL)
Arnaldo Carvalho de Melo058b4cc2012-04-02 12:59:01 -03001046 goto out_delete;
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03001047
Jiri Olsa47488342017-10-11 17:01:32 +02001048 if (args->offset != -1) {
Jiri Olsad5490b92017-10-11 17:01:26 +02001049 if (disasm_line__parse(dl->al.line, &dl->ins.name, &dl->ops.raw) < 0)
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03001050 goto out_free_line;
1051
Jiri Olsa1a04db72017-10-11 17:01:31 +02001052 disasm_line__init_ins(dl, args->arch, args->map);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03001053 }
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001054 }
1055
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -03001056 return dl;
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03001057
1058out_free_line:
Jiri Olsad5490b92017-10-11 17:01:26 +02001059 zfree(&dl->al.line);
Arnaldo Carvalho de Melo058b4cc2012-04-02 12:59:01 -03001060out_delete:
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -03001061 free(dl);
Arnaldo Carvalho de Melo058b4cc2012-04-02 12:59:01 -03001062 return NULL;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001063}
1064
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -03001065void disasm_line__free(struct disasm_line *dl)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001066{
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -03001067 if (dl->ins.ops && dl->ins.ops->free)
1068 dl->ins.ops->free(&dl->ops);
Arnaldo Carvalho de Meloc46219ac2012-05-12 13:26:20 -03001069 else
1070 ins__delete(&dl->ops);
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -03001071 free((void *)dl->ins.name);
1072 dl->ins.name = NULL;
Jiri Olsac835e192017-10-11 17:01:37 +02001073 annotation_line__delete(&dl->al);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001074}
1075
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -03001076int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw)
1077{
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -03001078 if (raw || !dl->ins.ops)
Ravi Bangoria648388a2017-11-14 08:55:40 +05301079 return scnprintf(bf, size, "%-6s %s", dl->ins.name, dl->ops.raw);
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -03001080
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -03001081 return ins__scnprintf(&dl->ins, bf, size, &dl->ops);
Arnaldo Carvalho de Melo54170722012-05-07 18:54:16 -03001082}
1083
Jiri Olsa82b9d7f2017-10-11 17:01:35 +02001084static void annotation_line__add(struct annotation_line *al, struct list_head *head)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001085{
Jiri Olsa82b9d7f2017-10-11 17:01:35 +02001086 list_add_tail(&al->node, head);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001087}
1088
Jiri Olsac4c72432017-10-11 17:01:34 +02001089struct annotation_line *
1090annotation_line__next(struct annotation_line *pos, struct list_head *head)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001091{
Jiri Olsac4c72432017-10-11 17:01:34 +02001092 list_for_each_entry_continue(pos, head, node)
1093 if (pos->offset >= 0)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001094 return pos;
1095
1096 return NULL;
1097}
1098
Peter Zijlstra70fbe052016-09-05 16:08:12 -03001099static const char *annotate__address_color(struct block_range *br)
1100{
1101 double cov = block_range__coverage(br);
1102
1103 if (cov >= 0) {
1104 /* mark red for >75% coverage */
1105 if (cov > 0.75)
1106 return PERF_COLOR_RED;
1107
1108 /* mark dull for <1% coverage */
1109 if (cov < 0.01)
1110 return PERF_COLOR_NORMAL;
1111 }
1112
1113 return PERF_COLOR_MAGENTA;
1114}
1115
1116static const char *annotate__asm_color(struct block_range *br)
1117{
1118 double cov = block_range__coverage(br);
1119
1120 if (cov >= 0) {
1121 /* mark dull for <1% coverage */
1122 if (cov < 0.01)
1123 return PERF_COLOR_NORMAL;
1124 }
1125
1126 return PERF_COLOR_BLUE;
1127}
1128
1129static void annotate__branch_printf(struct block_range *br, u64 addr)
1130{
1131 bool emit_comment = true;
1132
1133 if (!br)
1134 return;
1135
1136#if 1
1137 if (br->is_target && br->start == addr) {
1138 struct block_range *branch = br;
1139 double p;
1140
1141 /*
1142 * Find matching branch to our target.
1143 */
1144 while (!branch->is_branch)
1145 branch = block_range__next(branch);
1146
1147 p = 100 *(double)br->entry / branch->coverage;
1148
1149 if (p > 0.1) {
1150 if (emit_comment) {
1151 emit_comment = false;
1152 printf("\t#");
1153 }
1154
1155 /*
1156 * The percentage of coverage joined at this target in relation
1157 * to the next branch.
1158 */
1159 printf(" +%.2f%%", p);
1160 }
1161 }
1162#endif
1163 if (br->is_branch && br->end == addr) {
1164 double p = 100*(double)br->taken / br->coverage;
1165
1166 if (p > 0.1) {
1167 if (emit_comment) {
1168 emit_comment = false;
1169 printf("\t#");
1170 }
1171
1172 /*
1173 * The percentage of coverage leaving at this branch, and
1174 * its prediction ratio.
1175 */
1176 printf(" -%.2f%% (p:%.2f%%)", p, 100*(double)br->pred / br->taken);
1177 }
1178 }
1179}
1180
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001181static int disasm_line__print(struct disasm_line *dl, u64 start, int addr_fmt_width)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001182{
Jiri Olsa29971f92017-10-11 17:01:47 +02001183 s64 offset = dl->al.offset;
1184 const u64 addr = start + offset;
1185 struct block_range *br;
1186
1187 br = block_range__find(addr);
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001188 color_fprintf(stdout, annotate__address_color(br), " %*" PRIx64 ":", addr_fmt_width, addr);
Jiri Olsa29971f92017-10-11 17:01:47 +02001189 color_fprintf(stdout, annotate__asm_color(br), "%s", dl->al.line);
1190 annotate__branch_printf(br, addr);
1191 return 0;
1192}
1193
1194static int
1195annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start,
1196 struct perf_evsel *evsel, u64 len, int min_pcnt, int printed,
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001197 int max_lines, struct annotation_line *queue, int addr_fmt_width)
Jiri Olsa29971f92017-10-11 17:01:47 +02001198{
1199 struct disasm_line *dl = container_of(al, struct disasm_line, al);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001200 static const char *prev_line;
1201 static const char *prev_color;
1202
Jiri Olsa29971f92017-10-11 17:01:47 +02001203 if (al->offset != -1) {
Jiri Olsaf681d592017-10-11 17:01:42 +02001204 double max_percent = 0.0;
Namhyung Kimb1dd4432013-03-05 14:53:25 +09001205 int i, nr_percent = 1;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001206 const char *color;
1207 struct annotation *notes = symbol__annotation(sym);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -02001208
Jiri Olsa29971f92017-10-11 17:01:47 +02001209 for (i = 0; i < al->samples_nr; i++) {
1210 struct annotation_data *sample = &al->samples[i];
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001211
Jiri Olsaf681d592017-10-11 17:01:42 +02001212 if (sample->percent > max_percent)
1213 max_percent = sample->percent;
Namhyung Kimb1dd4432013-03-05 14:53:25 +09001214 }
1215
1216 if (max_percent < min_pcnt)
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02001217 return -1;
1218
Arnaldo Carvalho de Meloe3087b82011-02-08 15:01:39 -02001219 if (max_lines && printed >= max_lines)
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02001220 return 1;
Arnaldo Carvalho de Melod040bd32011-02-05 15:37:31 -02001221
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -02001222 if (queue != NULL) {
Jiri Olsa29971f92017-10-11 17:01:47 +02001223 list_for_each_entry_from(queue, &notes->src->source, node) {
1224 if (queue == al)
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -02001225 break;
Jiri Olsa29971f92017-10-11 17:01:47 +02001226 annotation_line__print(queue, sym, start, evsel, len,
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001227 0, 0, 1, NULL, addr_fmt_width);
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -02001228 }
1229 }
1230
Namhyung Kimb1dd4432013-03-05 14:53:25 +09001231 color = get_percent_color(max_percent);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001232
1233 /*
1234 * Also color the filename and line if needed, with
1235 * the same color than the percentage. Don't print it
1236 * twice for close colored addr with the same filename:line
1237 */
Jiri Olsa29971f92017-10-11 17:01:47 +02001238 if (al->path) {
1239 if (!prev_line || strcmp(prev_line, al->path)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001240 || color != prev_color) {
Jiri Olsa29971f92017-10-11 17:01:47 +02001241 color_fprintf(stdout, color, " %s", al->path);
1242 prev_line = al->path;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001243 prev_color = color;
1244 }
1245 }
1246
Namhyung Kimb1dd4432013-03-05 14:53:25 +09001247 for (i = 0; i < nr_percent; i++) {
Jiri Olsa29971f92017-10-11 17:01:47 +02001248 struct annotation_data *sample = &al->samples[i];
Jiri Olsaf681d592017-10-11 17:01:42 +02001249
1250 color = get_percent_color(sample->percent);
Martin Liška0c4a5bc2015-06-19 16:10:43 -03001251
1252 if (symbol_conf.show_total_period)
Arnaldo Carvalho de Meloce9ee4a2017-07-26 17:16:46 -03001253 color_fprintf(stdout, color, " %11" PRIu64,
Jiri Olsaf681d592017-10-11 17:01:42 +02001254 sample->he.period);
Taeung Song1ac39372017-08-18 17:46:48 +09001255 else if (symbol_conf.show_nr_samples)
1256 color_fprintf(stdout, color, " %7" PRIu64,
Jiri Olsaf681d592017-10-11 17:01:42 +02001257 sample->he.nr_samples);
Martin Liška0c4a5bc2015-06-19 16:10:43 -03001258 else
Jiri Olsaf681d592017-10-11 17:01:42 +02001259 color_fprintf(stdout, color, " %7.2f", sample->percent);
Namhyung Kimb1dd4432013-03-05 14:53:25 +09001260 }
1261
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001262 printf(" : ");
Peter Zijlstra70fbe052016-09-05 16:08:12 -03001263
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001264 disasm_line__print(dl, start, addr_fmt_width);
Peter Zijlstra70fbe052016-09-05 16:08:12 -03001265 printf("\n");
Arnaldo Carvalho de Meloe3087b82011-02-08 15:01:39 -02001266 } else if (max_lines && printed >= max_lines)
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02001267 return 1;
1268 else {
Arnaldo Carvalho de Meloce9ee4a2017-07-26 17:16:46 -03001269 int width = symbol_conf.show_total_period ? 12 : 8;
Namhyung Kimb1dd4432013-03-05 14:53:25 +09001270
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -02001271 if (queue)
1272 return -1;
1273
Namhyung Kim759ff492013-03-05 14:53:26 +09001274 if (perf_evsel__is_group_event(evsel))
Namhyung Kimb1dd4432013-03-05 14:53:25 +09001275 width *= evsel->nr_members;
1276
Jiri Olsa29971f92017-10-11 17:01:47 +02001277 if (!*al->line)
Namhyung Kimb1dd4432013-03-05 14:53:25 +09001278 printf(" %*s:\n", width, " ");
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001279 else
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001280 printf(" %*s: %*s %s\n", width, " ", addr_fmt_width, " ", al->line);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001281 }
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02001282
1283 return 0;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001284}
1285
Namhyung Kim3aec1502013-03-05 14:53:22 +09001286/*
1287 * symbol__parse_objdump_line() parses objdump output (with -d --no-show-raw)
1288 * which looks like following
1289 *
1290 * 0000000000415500 <_init>:
1291 * 415500: sub $0x8,%rsp
1292 * 415504: mov 0x2f5ad5(%rip),%rax # 70afe0 <_DYNAMIC+0x2f8>
1293 * 41550b: test %rax,%rax
1294 * 41550e: je 415515 <_init+0x15>
1295 * 415510: callq 416e70 <__gmon_start__@plt>
1296 * 415515: add $0x8,%rsp
1297 * 415519: retq
1298 *
1299 * it will be parsed and saved into struct disasm_line as
1300 * <offset> <name> <ops.raw>
1301 *
1302 * The offset will be a relative offset from the start of the symbol and -1
1303 * means that it's not a disassembly line so should be treated differently.
1304 * The ops.raw part will be parsed further according to type of the instruction.
1305 */
Jiri Olsa1a04db72017-10-11 17:01:31 +02001306static int symbol__parse_objdump_line(struct symbol *sym, FILE *file,
Jiri Olsaea07c5a2017-10-11 17:01:29 +02001307 struct annotate_args *args,
Andi Kleene5924882014-11-12 18:05:26 -08001308 int *line_nr)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001309{
Jiri Olsa1a04db72017-10-11 17:01:31 +02001310 struct map *map = args->map;
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -02001311 struct annotation *notes = symbol__annotation(sym);
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -03001312 struct disasm_line *dl;
Taeung Song4597cf02017-04-08 09:52:24 +09001313 char *line = NULL, *parsed_line, *tmp, *tmp2;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001314 size_t line_len;
1315 s64 line_ip, offset = -1;
Andi Kleene5924882014-11-12 18:05:26 -08001316 regmatch_t match[2];
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001317
1318 if (getline(&line, &line_len, file) < 0)
1319 return -1;
1320
1321 if (!line)
1322 return -1;
1323
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001324 line_ip = -1;
Taeung Song4597cf02017-04-08 09:52:24 +09001325 parsed_line = rtrim(line);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001326
Andi Kleene5924882014-11-12 18:05:26 -08001327 /* /filename:linenr ? Save line number and ignore. */
Taeung Song986a5bc2017-04-08 09:52:25 +09001328 if (regexec(&file_lineno, parsed_line, 2, match, 0) == 0) {
1329 *line_nr = atoi(parsed_line + match[1].rm_so);
Andi Kleene5924882014-11-12 18:05:26 -08001330 return 0;
1331 }
1332
Taeung Song4597cf02017-04-08 09:52:24 +09001333 tmp = ltrim(parsed_line);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001334 if (*tmp) {
1335 /*
1336 * Parse hexa addresses followed by ':'
1337 */
1338 line_ip = strtoull(tmp, &tmp2, 16);
1339 if (*tmp2 != ':' || tmp == tmp2 || tmp2[1] == '\0')
1340 line_ip = -1;
1341 }
1342
1343 if (line_ip != -1) {
1344 u64 start = map__rip_2objdump(map, sym->start),
1345 end = map__rip_2objdump(map, sym->end);
1346
1347 offset = line_ip - start;
Arnaldo Carvalho de Melo2c241bd2014-10-14 17:19:44 -03001348 if ((u64)line_ip < start || (u64)line_ip >= end)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001349 offset = -1;
Arnaldo Carvalho de Melo058b4cc2012-04-02 12:59:01 -03001350 else
1351 parsed_line = tmp2 + 1;
Namhyung Kima31b7cc2012-04-11 17:04:59 -03001352 }
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001353
Jiri Olsa47488342017-10-11 17:01:32 +02001354 args->offset = offset;
1355 args->line = parsed_line;
1356 args->line_nr = *line_nr;
1357
1358 dl = disasm_line__new(args);
Arnaldo Carvalho de Melo058b4cc2012-04-02 12:59:01 -03001359 free(line);
Andi Kleene5924882014-11-12 18:05:26 -08001360 (*line_nr)++;
Arnaldo Carvalho de Melo058b4cc2012-04-02 12:59:01 -03001361
Arnaldo Carvalho de Melo29ed6e72012-04-15 15:24:39 -03001362 if (dl == NULL)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001363 return -1;
Arnaldo Carvalho de Melo058b4cc2012-04-02 12:59:01 -03001364
Ravi Bangoriae2168742016-12-05 21:26:47 +05301365 if (!disasm_line__has_offset(dl)) {
Adrian Hunterbbb7f842013-08-07 14:38:54 +03001366 dl->ops.target.offset = dl->ops.target.addr -
1367 map__rip_2objdump(map, sym->start);
Ravi Bangoriae2168742016-12-05 21:26:47 +05301368 dl->ops.target.offset_avail = true;
1369 }
Adrian Hunterbbb7f842013-08-07 14:38:54 +03001370
Arnaldo Carvalho de Melo696703a2018-03-02 11:59:36 -03001371 /* kcore has no symbols, so add the call target symbol */
1372 if (dl->ins.ops && ins__is_call(&dl->ins) && !dl->ops.target.sym) {
Adrian Hunter6e427ab2013-10-14 13:43:40 +03001373 struct addr_map_symbol target = {
1374 .map = map,
1375 .addr = dl->ops.target.addr,
1376 };
Adrian Hunterb1781702013-08-07 14:38:57 +03001377
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001378 if (!map_groups__find_ams(&target) &&
Adrian Hunter6e427ab2013-10-14 13:43:40 +03001379 target.sym->start == target.al_addr)
Arnaldo Carvalho de Melo696703a2018-03-02 11:59:36 -03001380 dl->ops.target.sym = target.sym;
Adrian Hunterb1781702013-08-07 14:38:57 +03001381 }
1382
Jiri Olsa82b9d7f2017-10-11 17:01:35 +02001383 annotation_line__add(&dl->al, &notes->src->source);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001384
1385 return 0;
1386}
1387
Andi Kleene5924882014-11-12 18:05:26 -08001388static __attribute__((constructor)) void symbol__init_regexpr(void)
1389{
1390 regcomp(&file_lineno, "^/[^:]+:([0-9]+)", REG_EXTENDED);
1391}
1392
Adrian Hunter484a5e72013-08-07 14:38:56 +03001393static void delete_last_nop(struct symbol *sym)
1394{
1395 struct annotation *notes = symbol__annotation(sym);
1396 struct list_head *list = &notes->src->source;
1397 struct disasm_line *dl;
1398
1399 while (!list_empty(list)) {
Jiri Olsaa17c4ca2017-10-11 17:01:25 +02001400 dl = list_entry(list->prev, struct disasm_line, al.node);
Adrian Hunter484a5e72013-08-07 14:38:56 +03001401
Arnaldo Carvalho de Melo75b49202016-11-24 11:16:06 -03001402 if (dl->ins.ops) {
1403 if (dl->ins.ops != &nop_ops)
Adrian Hunter484a5e72013-08-07 14:38:56 +03001404 return;
1405 } else {
Jiri Olsad5490b92017-10-11 17:01:26 +02001406 if (!strstr(dl->al.line, " nop ") &&
1407 !strstr(dl->al.line, " nopl ") &&
1408 !strstr(dl->al.line, " nopw "))
Adrian Hunter484a5e72013-08-07 14:38:56 +03001409 return;
1410 }
1411
Jiri Olsaa17c4ca2017-10-11 17:01:25 +02001412 list_del(&dl->al.node);
Adrian Hunter484a5e72013-08-07 14:38:56 +03001413 disasm_line__free(dl);
1414 }
1415}
1416
Arnaldo Carvalho de Meloee51d852016-07-29 16:27:18 -03001417int symbol__strerror_disassemble(struct symbol *sym __maybe_unused, struct map *map,
1418 int errnum, char *buf, size_t buflen)
1419{
1420 struct dso *dso = map->dso;
1421
1422 BUG_ON(buflen == 0);
1423
1424 if (errnum >= 0) {
1425 str_error_r(errnum, buf, buflen);
1426 return 0;
1427 }
1428
1429 switch (errnum) {
1430 case SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX: {
1431 char bf[SBUILD_ID_SIZE + 15] = " with build id ";
1432 char *build_id_msg = NULL;
1433
1434 if (dso->has_build_id) {
1435 build_id__sprintf(dso->build_id,
1436 sizeof(dso->build_id), bf + 15);
1437 build_id_msg = bf;
1438 }
1439 scnprintf(buf, buflen,
1440 "No vmlinux file%s\nwas found in the path.\n\n"
1441 "Note that annotation using /proc/kcore requires CAP_SYS_RAWIO capability.\n\n"
1442 "Please use:\n\n"
1443 " perf buildid-cache -vu vmlinux\n\n"
1444 "or:\n\n"
1445 " --vmlinux vmlinux\n", build_id_msg ?: "");
1446 }
1447 break;
1448 default:
1449 scnprintf(buf, buflen, "Internal error: Invalid %d error code\n", errnum);
1450 break;
1451 }
1452
1453 return 0;
1454}
1455
Arnaldo Carvalho de Melo05ed3ac2016-08-09 15:32:53 -03001456static int dso__disassemble_filename(struct dso *dso, char *filename, size_t filename_size)
1457{
1458 char linkname[PATH_MAX];
1459 char *build_id_filename;
Taeung Song6ebd2542017-03-27 16:10:36 +09001460 char *build_id_path = NULL;
Namhyung Kim3619ef72017-06-08 16:31:01 +09001461 char *pos;
Arnaldo Carvalho de Melo05ed3ac2016-08-09 15:32:53 -03001462
1463 if (dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS &&
1464 !dso__is_kcore(dso))
1465 return SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX;
1466
Krister Johansend2396992017-07-05 18:48:13 -07001467 build_id_filename = dso__build_id_filename(dso, NULL, 0, false);
Arnaldo Carvalho de Melo05ed3ac2016-08-09 15:32:53 -03001468 if (build_id_filename) {
1469 __symbol__join_symfs(filename, filename_size, build_id_filename);
1470 free(build_id_filename);
1471 } else {
1472 if (dso->has_build_id)
1473 return ENOMEM;
1474 goto fallback;
1475 }
1476
Taeung Song6ebd2542017-03-27 16:10:36 +09001477 build_id_path = strdup(filename);
1478 if (!build_id_path)
1479 return -1;
1480
Namhyung Kim3619ef72017-06-08 16:31:01 +09001481 /*
1482 * old style build-id cache has name of XX/XXXXXXX.. while
1483 * new style has XX/XXXXXXX../{elf,kallsyms,vdso}.
1484 * extract the build-id part of dirname in the new style only.
1485 */
1486 pos = strrchr(build_id_path, '/');
1487 if (pos && strlen(pos) < SBUILD_ID_SIZE - 2)
1488 dirname(build_id_path);
Taeung Song6ebd2542017-03-27 16:10:36 +09001489
Arnaldo Carvalho de Melo05ed3ac2016-08-09 15:32:53 -03001490 if (dso__is_kcore(dso) ||
Taeung Song6ebd2542017-03-27 16:10:36 +09001491 readlink(build_id_path, linkname, sizeof(linkname)) < 0 ||
Arnaldo Carvalho de Melo05ed3ac2016-08-09 15:32:53 -03001492 strstr(linkname, DSO__NAME_KALLSYMS) ||
1493 access(filename, R_OK)) {
1494fallback:
1495 /*
1496 * If we don't have build-ids or the build-id file isn't in the
1497 * cache, or is just a kallsyms file, well, lets hope that this
1498 * DSO is the same as when 'perf record' ran.
1499 */
1500 __symbol__join_symfs(filename, filename_size, dso->long_name);
1501 }
1502
Taeung Song6ebd2542017-03-27 16:10:36 +09001503 free(build_id_path);
Arnaldo Carvalho de Melo05ed3ac2016-08-09 15:32:53 -03001504 return 0;
1505}
1506
Jiri Olsa1a04db72017-10-11 17:01:31 +02001507static int symbol__disassemble(struct symbol *sym, struct annotate_args *args)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001508{
Jiri Olsa1a04db72017-10-11 17:01:31 +02001509 struct map *map = args->map;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001510 struct dso *dso = map->dso;
Arnaldo Carvalho de Melo68101582018-03-14 10:34:11 -03001511 char *command;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001512 FILE *file;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001513 char symfs_filename[PATH_MAX];
Adrian Hunterafba19d2013-10-09 15:01:12 +03001514 struct kcore_extract kce;
1515 bool delete_extract = false;
Arnaldo Carvalho de Melo9955d0b2016-06-15 15:48:08 -03001516 int stdout_fd[2];
Andi Kleene5924882014-11-12 18:05:26 -08001517 int lineno = 0;
Andi Kleen62ec9b32015-11-05 19:06:07 -08001518 int nline;
Arnaldo Carvalho de Melo9955d0b2016-06-15 15:48:08 -03001519 pid_t pid;
Arnaldo Carvalho de Melo05ed3ac2016-08-09 15:32:53 -03001520 int err = dso__disassemble_filename(dso, symfs_filename, sizeof(symfs_filename));
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001521
Arnaldo Carvalho de Melo05ed3ac2016-08-09 15:32:53 -03001522 if (err)
1523 return err;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001524
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001525 pr_debug("%s: filename=%s, sym=%s, start=%#" PRIx64 ", end=%#" PRIx64 "\n", __func__,
Arnaldo Carvalho de Melo3caee092016-08-09 15:16:37 -03001526 symfs_filename, sym->name, map->unmap_ip(map, sym->start),
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001527 map->unmap_ip(map, sym->end));
1528
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001529 pr_debug("annotating [%p] %30s : [%p] %30s\n",
1530 dso, dso->long_name, sym, sym->name);
1531
Adrian Hunterafba19d2013-10-09 15:01:12 +03001532 if (dso__is_kcore(dso)) {
1533 kce.kcore_filename = symfs_filename;
1534 kce.addr = map__rip_2objdump(map, sym->start);
1535 kce.offs = sym->start;
Arnaldo Carvalho de Melo2c241bd2014-10-14 17:19:44 -03001536 kce.len = sym->end - sym->start;
Adrian Hunterafba19d2013-10-09 15:01:12 +03001537 if (!kcore_extract__create(&kce)) {
1538 delete_extract = true;
1539 strlcpy(symfs_filename, kce.extract_filename,
1540 sizeof(symfs_filename));
Adrian Hunterafba19d2013-10-09 15:01:12 +03001541 }
Jiri Olsa2c7da8c2015-03-02 12:56:12 -05001542 } else if (dso__needs_decompress(dso)) {
Namhyung Kim3c84fd52017-06-08 16:31:04 +09001543 char tmp[KMOD_DECOMP_LEN];
Jiri Olsa2c7da8c2015-03-02 12:56:12 -05001544
Namhyung Kim3c84fd52017-06-08 16:31:04 +09001545 if (dso__decompress_kmodule_path(dso, symfs_filename,
1546 tmp, sizeof(tmp)) < 0)
Arnaldo Carvalho de Melo3caee092016-08-09 15:16:37 -03001547 goto out;
Jiri Olsa2c7da8c2015-03-02 12:56:12 -05001548
1549 strcpy(symfs_filename, tmp);
Adrian Hunterafba19d2013-10-09 15:01:12 +03001550 }
1551
Arnaldo Carvalho de Melo68101582018-03-14 10:34:11 -03001552 err = asprintf(&command,
Maciek Borzecki7a4ec932012-09-04 12:32:30 +02001553 "%s %s%s --start-address=0x%016" PRIx64
Stephane Eranian3e6a2a72011-05-17 17:32:07 +02001554 " --stop-address=0x%016" PRIx64
Ravi Bangoria7b4500b2017-05-05 15:44:17 +05301555 " -l -d %s %s -C \"%s\" 2>/dev/null|grep -v \"%s:\"|expand",
Maciek Borzecki7a4ec932012-09-04 12:32:30 +02001556 objdump_path ? objdump_path : "objdump",
Andi Kleenf69b64f2011-09-15 14:31:41 -07001557 disassembler_style ? "-M " : "",
1558 disassembler_style ? disassembler_style : "",
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001559 map__rip_2objdump(map, sym->start),
Arnaldo Carvalho de Melo2c241bd2014-10-14 17:19:44 -03001560 map__rip_2objdump(map, sym->end),
Stephane Eranian3e6a2a72011-05-17 17:32:07 +02001561 symbol_conf.annotate_asm_raw ? "" : "--no-show-raw",
1562 symbol_conf.annotate_src ? "-S" : "",
Arnaldo Carvalho de Melo3caee092016-08-09 15:16:37 -03001563 symfs_filename, symfs_filename);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001564
Arnaldo Carvalho de Melo68101582018-03-14 10:34:11 -03001565 if (err < 0) {
1566 pr_err("Failure allocating memory for the command to run\n");
1567 goto out_remove_tmp;
1568 }
1569
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001570 pr_debug("Executing: %s\n", command);
1571
Arnaldo Carvalho de Melo9955d0b2016-06-15 15:48:08 -03001572 err = -1;
1573 if (pipe(stdout_fd) < 0) {
1574 pr_err("Failure creating the pipe to run %s\n", command);
Arnaldo Carvalho de Melo68101582018-03-14 10:34:11 -03001575 goto out_free_command;
Arnaldo Carvalho de Melo9955d0b2016-06-15 15:48:08 -03001576 }
1577
1578 pid = fork();
1579 if (pid < 0) {
1580 pr_err("Failure forking to run %s\n", command);
1581 goto out_close_stdout;
1582 }
1583
1584 if (pid == 0) {
1585 close(stdout_fd[0]);
1586 dup2(stdout_fd[1], 1);
1587 close(stdout_fd[1]);
1588 execl("/bin/sh", "sh", "-c", command, NULL);
1589 perror(command);
1590 exit(-1);
1591 }
1592
1593 close(stdout_fd[1]);
1594
1595 file = fdopen(stdout_fd[0], "r");
Andi Kleen62ec9b32015-11-05 19:06:07 -08001596 if (!file) {
Arnaldo Carvalho de Melo9955d0b2016-06-15 15:48:08 -03001597 pr_err("Failure creating FILE stream for %s\n", command);
Andi Kleen62ec9b32015-11-05 19:06:07 -08001598 /*
1599 * If we were using debug info should retry with
1600 * original binary.
1601 */
Arnaldo Carvalho de Melo68101582018-03-14 10:34:11 -03001602 goto out_free_command;
Andi Kleen62ec9b32015-11-05 19:06:07 -08001603 }
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001604
Andi Kleen62ec9b32015-11-05 19:06:07 -08001605 nline = 0;
1606 while (!feof(file)) {
Arnaldo Carvalho de Meloed7b3392017-03-21 16:00:50 -03001607 /*
1608 * The source code line number (lineno) needs to be kept in
1609 * accross calls to symbol__parse_objdump_line(), so that it
1610 * can associate it with the instructions till the next one.
1611 * See disasm_line__new() and struct disasm_line::line_nr.
1612 */
Jiri Olsa1a04db72017-10-11 17:01:31 +02001613 if (symbol__parse_objdump_line(sym, file, args, &lineno) < 0)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001614 break;
Andi Kleen62ec9b32015-11-05 19:06:07 -08001615 nline++;
1616 }
1617
1618 if (nline == 0)
1619 pr_err("No output from %s\n", command);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001620
Adrian Hunter484a5e72013-08-07 14:38:56 +03001621 /*
1622 * kallsyms does not have symbol sizes so there may a nop at the end.
1623 * Remove it.
1624 */
1625 if (dso__is_kcore(dso))
1626 delete_last_nop(sym);
1627
Arnaldo Carvalho de Melo9955d0b2016-06-15 15:48:08 -03001628 fclose(file);
1629 err = 0;
Arnaldo Carvalho de Melo68101582018-03-14 10:34:11 -03001630out_free_command:
1631 free(command);
Jiri Olsa2c7da8c2015-03-02 12:56:12 -05001632out_remove_tmp:
Arnaldo Carvalho de Melo9955d0b2016-06-15 15:48:08 -03001633 close(stdout_fd[0]);
1634
Jiri Olsa2c7da8c2015-03-02 12:56:12 -05001635 if (dso__needs_decompress(dso))
1636 unlink(symfs_filename);
Arnaldo Carvalho de Melo3caee092016-08-09 15:16:37 -03001637
Adrian Hunterafba19d2013-10-09 15:01:12 +03001638 if (delete_extract)
1639 kcore_extract__delete(&kce);
Arnaldo Carvalho de Meloc12944f2016-08-09 14:56:13 -03001640out:
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001641 return err;
Arnaldo Carvalho de Melo9955d0b2016-06-15 15:48:08 -03001642
1643out_close_stdout:
1644 close(stdout_fd[1]);
Arnaldo Carvalho de Melo68101582018-03-14 10:34:11 -03001645 goto out_free_command;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001646}
1647
Jiri Olsa073ae602017-10-11 17:01:40 +02001648static void calc_percent(struct sym_hist *hist,
1649 struct annotation_data *sample,
1650 s64 offset, s64 end)
1651{
1652 unsigned int hits = 0;
1653 u64 period = 0;
1654
1655 while (offset < end) {
1656 hits += hist->addr[offset].nr_samples;
1657 period += hist->addr[offset].period;
1658 ++offset;
1659 }
1660
1661 if (hist->nr_samples) {
1662 sample->he.period = period;
1663 sample->he.nr_samples = hits;
1664 sample->percent = 100.0 * hits / hist->nr_samples;
1665 }
1666}
1667
Jiri Olsa9e4e0a92017-11-15 12:05:59 +01001668static void annotation__calc_percent(struct annotation *notes,
1669 struct perf_evsel *evsel, s64 len)
Jiri Olsa073ae602017-10-11 17:01:40 +02001670{
1671 struct annotation_line *al, *next;
1672
1673 list_for_each_entry(al, &notes->src->source, node) {
1674 s64 end;
1675 int i;
1676
1677 if (al->offset == -1)
1678 continue;
1679
1680 next = annotation_line__next(al, &notes->src->source);
1681 end = next ? next->offset : len;
1682
1683 for (i = 0; i < al->samples_nr; i++) {
1684 struct annotation_data *sample;
1685 struct sym_hist *hist;
1686
1687 hist = annotation__histogram(notes, evsel->idx + i);
1688 sample = &al->samples[i];
1689
1690 calc_percent(hist, sample, al->offset, end);
1691 }
1692 }
Jiri Olsa073ae602017-10-11 17:01:40 +02001693}
1694
Jiri Olsa9e4e0a92017-11-15 12:05:59 +01001695void symbol__calc_percent(struct symbol *sym, struct perf_evsel *evsel)
Jiri Olsa073ae602017-10-11 17:01:40 +02001696{
1697 struct annotation *notes = symbol__annotation(sym);
1698
Jiri Olsa9e4e0a92017-11-15 12:05:59 +01001699 annotation__calc_percent(notes, evsel, symbol__size(sym));
Jiri Olsa073ae602017-10-11 17:01:40 +02001700}
1701
Jiri Olsac34df252017-10-11 17:01:28 +02001702int symbol__annotate(struct symbol *sym, struct map *map,
Jiri Olsad03a6862017-10-11 17:01:33 +02001703 struct perf_evsel *evsel, size_t privsize,
Arnaldo Carvalho de Melo5449f132017-12-11 12:46:11 -03001704 struct arch **parch)
Jiri Olsac34df252017-10-11 17:01:28 +02001705{
Jiri Olsaea07c5a2017-10-11 17:01:29 +02001706 struct annotate_args args = {
1707 .privsize = privsize,
Jiri Olsa1a04db72017-10-11 17:01:31 +02001708 .map = map,
Jiri Olsad03a6862017-10-11 17:01:33 +02001709 .evsel = evsel,
Jiri Olsaea07c5a2017-10-11 17:01:29 +02001710 };
Arnaldo Carvalho de Melo5449f132017-12-11 12:46:11 -03001711 struct perf_env *env = perf_evsel__env(evsel);
Arnaldo Carvalho de Melo3285deb2017-12-11 12:52:17 -03001712 const char *arch_name = perf_env__arch(env);
Jiri Olsac34df252017-10-11 17:01:28 +02001713 struct arch *arch;
1714 int err;
1715
Jiri Olsac34df252017-10-11 17:01:28 +02001716 if (!arch_name)
1717 return -1;
1718
Jiri Olsa24fe7b82017-10-11 17:01:30 +02001719 args.arch = arch = arch__find(arch_name);
Jiri Olsac34df252017-10-11 17:01:28 +02001720 if (arch == NULL)
1721 return -ENOTSUP;
1722
1723 if (parch)
1724 *parch = arch;
1725
1726 if (arch->init) {
Arnaldo Carvalho de Melo5449f132017-12-11 12:46:11 -03001727 err = arch->init(arch, env ? env->cpuid : NULL);
Jiri Olsac34df252017-10-11 17:01:28 +02001728 if (err) {
1729 pr_err("%s: failed to initialize %s arch priv area\n", __func__, arch->name);
1730 return err;
1731 }
1732 }
1733
Jiri Olsa05d3f1a2017-11-15 12:20:08 +01001734 return symbol__disassemble(sym, &args);
Jiri Olsac34df252017-10-11 17:01:28 +02001735}
1736
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001737static void insert_source_line(struct rb_root *root, struct annotation_line *al)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001738{
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001739 struct annotation_line *iter;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001740 struct rb_node **p = &root->rb_node;
1741 struct rb_node *parent = NULL;
Namhyung Kim1491c222013-03-05 14:53:28 +09001742 int i, ret;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001743
1744 while (*p != NULL) {
1745 parent = *p;
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001746 iter = rb_entry(parent, struct annotation_line, rb_node);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001747
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001748 ret = strcmp(iter->path, al->path);
Namhyung Kim41127962012-11-09 14:58:49 +09001749 if (ret == 0) {
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001750 for (i = 0; i < al->samples_nr; i++)
1751 iter->samples[i].percent_sum += al->samples[i].percent;
Namhyung Kim41127962012-11-09 14:58:49 +09001752 return;
1753 }
1754
1755 if (ret < 0)
1756 p = &(*p)->rb_left;
1757 else
1758 p = &(*p)->rb_right;
1759 }
1760
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001761 for (i = 0; i < al->samples_nr; i++)
1762 al->samples[i].percent_sum = al->samples[i].percent;
Namhyung Kim41127962012-11-09 14:58:49 +09001763
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001764 rb_link_node(&al->rb_node, parent, p);
1765 rb_insert_color(&al->rb_node, root);
Namhyung Kim41127962012-11-09 14:58:49 +09001766}
1767
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001768static int cmp_source_line(struct annotation_line *a, struct annotation_line *b)
Namhyung Kim1491c222013-03-05 14:53:28 +09001769{
1770 int i;
1771
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001772 for (i = 0; i < a->samples_nr; i++) {
Arnaldo Carvalho de Melo276af92f2015-06-19 16:36:12 -03001773 if (a->samples[i].percent_sum == b->samples[i].percent_sum)
Namhyung Kim1491c222013-03-05 14:53:28 +09001774 continue;
Arnaldo Carvalho de Melo276af92f2015-06-19 16:36:12 -03001775 return a->samples[i].percent_sum > b->samples[i].percent_sum;
Namhyung Kim1491c222013-03-05 14:53:28 +09001776 }
1777
1778 return 0;
1779}
1780
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001781static void __resort_source_line(struct rb_root *root, struct annotation_line *al)
Namhyung Kim41127962012-11-09 14:58:49 +09001782{
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001783 struct annotation_line *iter;
Namhyung Kim41127962012-11-09 14:58:49 +09001784 struct rb_node **p = &root->rb_node;
1785 struct rb_node *parent = NULL;
1786
1787 while (*p != NULL) {
1788 parent = *p;
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001789 iter = rb_entry(parent, struct annotation_line, rb_node);
Namhyung Kim41127962012-11-09 14:58:49 +09001790
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001791 if (cmp_source_line(al, iter))
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001792 p = &(*p)->rb_left;
1793 else
1794 p = &(*p)->rb_right;
1795 }
1796
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001797 rb_link_node(&al->rb_node, parent, p);
1798 rb_insert_color(&al->rb_node, root);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001799}
1800
Namhyung Kim41127962012-11-09 14:58:49 +09001801static void resort_source_line(struct rb_root *dest_root, struct rb_root *src_root)
1802{
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001803 struct annotation_line *al;
Namhyung Kim41127962012-11-09 14:58:49 +09001804 struct rb_node *node;
1805
1806 node = rb_first(src_root);
1807 while (node) {
1808 struct rb_node *next;
1809
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001810 al = rb_entry(node, struct annotation_line, rb_node);
Namhyung Kim41127962012-11-09 14:58:49 +09001811 next = rb_next(node);
1812 rb_erase(node, src_root);
1813
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001814 __resort_source_line(dest_root, al);
Namhyung Kim41127962012-11-09 14:58:49 +09001815 node = next;
1816 }
1817}
1818
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001819static void print_summary(struct rb_root *root, const char *filename)
1820{
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001821 struct annotation_line *al;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001822 struct rb_node *node;
1823
1824 printf("\nSorted summary for file %s\n", filename);
1825 printf("----------------------------------------------\n\n");
1826
1827 if (RB_EMPTY_ROOT(root)) {
1828 printf(" Nothing higher than %1.1f%%\n", MIN_GREEN);
1829 return;
1830 }
1831
1832 node = rb_first(root);
1833 while (node) {
Namhyung Kim1491c222013-03-05 14:53:28 +09001834 double percent, percent_max = 0.0;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001835 const char *color;
1836 char *path;
Namhyung Kim1491c222013-03-05 14:53:28 +09001837 int i;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001838
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001839 al = rb_entry(node, struct annotation_line, rb_node);
1840 for (i = 0; i < al->samples_nr; i++) {
1841 percent = al->samples[i].percent_sum;
Namhyung Kim1491c222013-03-05 14:53:28 +09001842 color = get_percent_color(percent);
1843 color_fprintf(stdout, color, " %7.2f", percent);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001844
Namhyung Kim1491c222013-03-05 14:53:28 +09001845 if (percent > percent_max)
1846 percent_max = percent;
1847 }
1848
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02001849 path = al->path;
Namhyung Kim1491c222013-03-05 14:53:28 +09001850 color = get_percent_color(percent_max);
Namhyung Kimf048d542013-09-11 14:09:28 +09001851 color_fprintf(stdout, color, " %s\n", path);
Namhyung Kim1491c222013-03-05 14:53:28 +09001852
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001853 node = rb_next(node);
1854 }
1855}
1856
Namhyung Kimdb8fd072013-03-05 14:53:21 +09001857static void symbol__annotate_hits(struct symbol *sym, struct perf_evsel *evsel)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001858{
1859 struct annotation *notes = symbol__annotation(sym);
Namhyung Kimdb8fd072013-03-05 14:53:21 +09001860 struct sym_hist *h = annotation__histogram(notes, evsel->idx);
Arnaldo Carvalho de Melo1b2e2df2012-04-19 10:57:06 -03001861 u64 len = symbol__size(sym), offset;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001862
1863 for (offset = 0; offset < len; ++offset)
Taeung Song896bccd2017-07-20 06:36:45 +09001864 if (h->addr[offset].nr_samples != 0)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001865 printf("%*" PRIx64 ": %" PRIu64 "\n", BITS_PER_LONG / 2,
Taeung Song896bccd2017-07-20 06:36:45 +09001866 sym->start + offset, h->addr[offset].nr_samples);
Taeung Song8158683d2017-07-20 06:36:51 +09001867 printf("%*s: %" PRIu64 "\n", BITS_PER_LONG / 2, "h->nr_samples", h->nr_samples);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001868}
1869
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001870static int annotated_source__addr_fmt_width(struct list_head *lines, u64 start)
1871{
1872 char bf[32];
1873 struct annotation_line *line;
1874
1875 list_for_each_entry_reverse(line, lines, node) {
1876 if (line->offset != -1)
1877 return scnprintf(bf, sizeof(bf), "%" PRIx64, start + line->offset);
1878 }
1879
1880 return 0;
1881}
1882
Namhyung Kimdb8fd072013-03-05 14:53:21 +09001883int symbol__annotate_printf(struct symbol *sym, struct map *map,
1884 struct perf_evsel *evsel, bool full_paths,
1885 int min_pcnt, int max_lines, int context)
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001886{
1887 struct dso *dso = map->dso;
David Ahernbfd14b92012-09-08 09:06:50 -06001888 char *filename;
1889 const char *d_filename;
Arnaldo Carvalho de Melo9cdbadce2014-03-18 11:50:21 -03001890 const char *evsel_name = perf_evsel__name(evsel);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -02001891 struct annotation *notes = symbol__annotation(sym);
Peter Zijlstra (Intel)135cce12016-06-30 10:29:55 +02001892 struct sym_hist *h = annotation__histogram(notes, evsel->idx);
Jiri Olsa8f25b812017-10-11 17:01:46 +02001893 struct annotation_line *pos, *queue = NULL;
Arnaldo Carvalho de Melo058b4cc2012-04-02 12:59:01 -03001894 u64 start = map__rip_2objdump(map, sym->start);
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001895 int printed = 2, queue_len = 0, addr_fmt_width;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02001896 int more = 0;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001897 u64 len;
Arnaldo Carvalho de Meloce9ee4a2017-07-26 17:16:46 -03001898 int width = symbol_conf.show_total_period ? 12 : 8;
Peter Zijlstra (Intel)53dd9b52016-06-30 09:17:26 -03001899 int graph_dotted_len;
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001900
David Ahernbfd14b92012-09-08 09:06:50 -06001901 filename = strdup(dso->long_name);
1902 if (!filename)
1903 return -ENOMEM;
1904
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001905 if (full_paths)
1906 d_filename = filename;
1907 else
1908 d_filename = basename(filename);
1909
Arnaldo Carvalho de Melo1b2e2df2012-04-19 10:57:06 -03001910 len = symbol__size(sym);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02001911
Namhyung Kim759ff492013-03-05 14:53:26 +09001912 if (perf_evsel__is_group_event(evsel))
Namhyung Kimb1dd4432013-03-05 14:53:25 +09001913 width *= evsel->nr_members;
1914
Peter Zijlstra (Intel)135cce12016-06-30 10:29:55 +02001915 graph_dotted_len = printf(" %-*.*s| Source code & Disassembly of %s for %s (%" PRIu64 " samples)\n",
Taeung Song1ac39372017-08-18 17:46:48 +09001916 width, width, symbol_conf.show_total_period ? "Period" :
1917 symbol_conf.show_nr_samples ? "Samples" : "Percent",
Taeung Song38d2dcd2017-07-25 06:28:42 +09001918 d_filename, evsel_name, h->nr_samples);
Arnaldo Carvalho de Melo9cdbadce2014-03-18 11:50:21 -03001919
Peter Zijlstra (Intel)53dd9b52016-06-30 09:17:26 -03001920 printf("%-*.*s----\n",
Arnaldo Carvalho de Melo9cdbadce2014-03-18 11:50:21 -03001921 graph_dotted_len, graph_dotted_len, graph_dotted_line);
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02001922
Namhyung Kimbb963e12017-02-17 17:17:38 +09001923 if (verbose > 0)
Namhyung Kimdb8fd072013-03-05 14:53:21 +09001924 symbol__annotate_hits(sym, evsel);
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02001925
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001926 addr_fmt_width = annotated_source__addr_fmt_width(&notes->src->source, start);
1927
Jiri Olsa8f25b812017-10-11 17:01:46 +02001928 list_for_each_entry(pos, &notes->src->source, node) {
1929 int err;
1930
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -02001931 if (context && queue == NULL) {
1932 queue = pos;
1933 queue_len = 0;
1934 }
1935
Jiri Olsa8f25b812017-10-11 17:01:46 +02001936 err = annotation_line__print(pos, sym, start, evsel, len,
1937 min_pcnt, printed, max_lines,
Jiri Olsaf48e7c42017-10-11 17:01:58 +02001938 queue, addr_fmt_width);
Jiri Olsa8f25b812017-10-11 17:01:46 +02001939
1940 switch (err) {
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02001941 case 0:
1942 ++printed;
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -02001943 if (context) {
1944 printed += queue_len;
1945 queue = NULL;
1946 queue_len = 0;
1947 }
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02001948 break;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02001949 case 1:
1950 /* filtered by max_lines */
1951 ++more;
1952 break;
1953 case -1:
1954 default:
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -02001955 /*
1956 * Filtered by min_pcnt or non IP lines when
1957 * context != 0
1958 */
1959 if (!context)
1960 break;
1961 if (queue_len == context)
Jiri Olsa8f25b812017-10-11 17:01:46 +02001962 queue = list_entry(queue->node.next, typeof(*queue), node);
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -02001963 else
1964 ++queue_len;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02001965 break;
1966 }
1967 }
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02001968
David Ahernbfd14b92012-09-08 09:06:50 -06001969 free(filename);
1970
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02001971 return more;
1972}
1973
Arnaldo Carvalho de Melobefd2a32018-03-15 23:44:34 -03001974static void FILE__set_percent_color(void *fp __maybe_unused,
1975 double percent __maybe_unused,
1976 bool current __maybe_unused)
1977{
1978}
1979
1980static int FILE__set_jumps_percent_color(void *fp __maybe_unused,
1981 int nr __maybe_unused, bool current __maybe_unused)
1982{
1983 return 0;
1984}
1985
1986static int FILE__set_color(void *fp __maybe_unused, int color __maybe_unused)
1987{
1988 return 0;
1989}
1990
1991static void FILE__printf(void *fp, const char *fmt, ...)
1992{
1993 va_list args;
1994
1995 va_start(args, fmt);
1996 vfprintf(fp, fmt, args);
1997 va_end(args);
1998}
1999
2000static void FILE__write_graph(void *fp, int graph)
2001{
2002 const char *s;
2003 switch (graph) {
2004
2005 case DARROW_CHAR: s = "↓"; break;
2006 case UARROW_CHAR: s = "↑"; break;
2007 case LARROW_CHAR: s = "←"; break;
2008 case RARROW_CHAR: s = "→"; break;
2009 default: s = "?"; break;
2010 }
2011
2012 fputs(s, fp);
2013}
2014
2015int symbol__annotate_fprintf2(struct symbol *sym, FILE *fp)
2016{
2017 struct annotation *notes = symbol__annotation(sym);
2018 struct annotation_write_ops ops = {
2019 .first_line = true,
2020 .obj = fp,
2021 .set_color = FILE__set_color,
2022 .set_percent_color = FILE__set_percent_color,
2023 .set_jumps_percent_color = FILE__set_jumps_percent_color,
2024 .printf = FILE__printf,
2025 .write_graph = FILE__write_graph,
2026 };
2027 struct annotation_line *al;
2028
2029 list_for_each_entry(al, &notes->src->source, node) {
2030 if (annotation_line__filter(al, notes))
2031 continue;
2032 annotation_line__write(al, notes, &ops);
2033 fputc('\n', fp);
2034 ops.first_line = false;
2035 }
2036
2037 return 0;
2038}
2039
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02002040void symbol__annotate_zero_histogram(struct symbol *sym, int evidx)
2041{
2042 struct annotation *notes = symbol__annotation(sym);
2043 struct sym_hist *h = annotation__histogram(notes, evidx);
2044
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -02002045 memset(h, 0, notes->src->sizeof_sym_hist);
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02002046}
2047
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -02002048void symbol__annotate_decay_histogram(struct symbol *sym, int evidx)
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02002049{
2050 struct annotation *notes = symbol__annotation(sym);
2051 struct sym_hist *h = annotation__histogram(notes, evidx);
Arnaldo Carvalho de Melo1b2e2df2012-04-19 10:57:06 -03002052 int len = symbol__size(sym), offset;
Arnaldo Carvalho de Melo36532462011-02-06 14:54:44 -02002053
Taeung Song8158683d2017-07-20 06:36:51 +09002054 h->nr_samples = 0;
Arnaldo Carvalho de Melo8b84a562012-04-05 16:15:59 -03002055 for (offset = 0; offset < len; ++offset) {
Taeung Song896bccd2017-07-20 06:36:45 +09002056 h->addr[offset].nr_samples = h->addr[offset].nr_samples * 7 / 8;
Taeung Song8158683d2017-07-20 06:36:51 +09002057 h->nr_samples += h->addr[offset].nr_samples;
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02002058 }
2059}
2060
Jiri Olsaf8eb37b2017-10-11 17:01:38 +02002061void annotated_source__purge(struct annotated_source *as)
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02002062{
Jiri Olsaf8eb37b2017-10-11 17:01:38 +02002063 struct annotation_line *al, *n;
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02002064
Jiri Olsaf8eb37b2017-10-11 17:01:38 +02002065 list_for_each_entry_safe(al, n, &as->source, node) {
2066 list_del(&al->node);
2067 disasm_line__free(disasm_line(al));
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02002068 }
2069}
2070
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03002071static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp)
2072{
2073 size_t printed;
2074
Jiri Olsad5490b92017-10-11 17:01:26 +02002075 if (dl->al.offset == -1)
2076 return fprintf(fp, "%s\n", dl->al.line);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03002077
Jiri Olsad5490b92017-10-11 17:01:26 +02002078 printed = fprintf(fp, "%#" PRIx64 " %s", dl->al.offset, dl->ins.name);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03002079
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -03002080 if (dl->ops.raw[0] != '\0') {
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03002081 printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ",
Arnaldo Carvalho de Meloc7e6ead2012-04-20 14:38:46 -03002082 dl->ops.raw);
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03002083 }
2084
2085 return printed + fprintf(fp, "\n");
2086}
2087
2088size_t disasm__fprintf(struct list_head *head, FILE *fp)
2089{
2090 struct disasm_line *pos;
2091 size_t printed = 0;
2092
Jiri Olsaa17c4ca2017-10-11 17:01:25 +02002093 list_for_each_entry(pos, head, al.node)
Arnaldo Carvalho de Melo51454182012-04-15 15:52:18 -03002094 printed += disasm_line__fprintf(pos, fp);
2095
2096 return printed;
2097}
2098
Arnaldo Carvalho de Melo0db45bc2018-03-15 15:31:56 -03002099
2100bool disasm_line__is_valid_jump(struct disasm_line *dl, struct symbol *sym)
2101{
2102 if (!dl || !dl->ins.ops || !ins__is_jump(&dl->ins) ||
2103 !disasm_line__has_offset(dl) || dl->ops.target.offset < 0 ||
2104 dl->ops.target.offset >= (s64)symbol__size(sym))
2105 return false;
2106
2107 return true;
2108}
2109
2110void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym)
2111{
2112 u64 offset, size = symbol__size(sym);
2113
2114 /* PLT symbols contain external offsets */
2115 if (strstr(sym->name, "@plt"))
2116 return;
2117
2118 for (offset = 0; offset < size; ++offset) {
2119 struct annotation_line *al = notes->offsets[offset];
2120 struct disasm_line *dl;
2121
2122 dl = disasm_line(al);
2123
2124 if (!disasm_line__is_valid_jump(dl, sym))
2125 continue;
2126
2127 al = notes->offsets[dl->ops.target.offset];
2128
2129 /*
2130 * FIXME: Oops, no jump target? Buggy disassembler? Or do we
2131 * have to adjust to the previous offset?
2132 */
2133 if (al == NULL)
2134 continue;
2135
2136 if (++al->jump_sources > notes->max_jump_sources)
2137 notes->max_jump_sources = al->jump_sources;
2138
2139 ++notes->nr_jumps;
2140 }
2141}
2142
Arnaldo Carvalho de Melo5bc49f62018-03-15 15:59:01 -03002143void annotation__set_offsets(struct annotation *notes, s64 size)
2144{
2145 struct annotation_line *al;
2146
2147 notes->max_line_len = 0;
2148
2149 list_for_each_entry(al, &notes->src->source, node) {
2150 size_t line_len = strlen(al->line);
2151
2152 if (notes->max_line_len < line_len)
2153 notes->max_line_len = line_len;
2154 al->idx = notes->nr_entries++;
2155 if (al->offset != -1) {
2156 al->idx_asm = notes->nr_asm_entries++;
2157 /*
2158 * FIXME: short term bandaid to cope with assembly
2159 * routines that comes with labels in the same column
2160 * as the address in objdump, sigh.
2161 *
2162 * E.g. copy_user_generic_unrolled
2163 */
2164 if (al->offset < size)
2165 notes->offsets[al->offset] = al;
2166 } else
2167 al->idx_asm = -1;
2168 }
2169}
2170
Arnaldo Carvalho de Melob8b0d812018-03-15 16:26:29 -03002171static inline int width_jumps(int n)
2172{
2173 if (n >= 100)
2174 return 5;
2175 if (n / 10)
2176 return 2;
2177 return 1;
2178}
2179
2180void annotation__init_column_widths(struct annotation *notes, struct symbol *sym)
2181{
2182 notes->widths.addr = notes->widths.target =
2183 notes->widths.min_addr = hex_width(symbol__size(sym));
2184 notes->widths.max_addr = hex_width(sym->end);
2185 notes->widths.jumps = width_jumps(notes->max_jump_sources);
2186}
2187
Arnaldo Carvalho de Melo7232bf72018-03-15 16:19:59 -03002188void annotation__update_column_widths(struct annotation *notes)
2189{
2190 if (notes->options->use_offset)
2191 notes->widths.target = notes->widths.min_addr;
2192 else
2193 notes->widths.target = notes->widths.max_addr;
2194
2195 notes->widths.addr = notes->widths.target;
2196
2197 if (notes->options->show_nr_jumps)
2198 notes->widths.addr += notes->widths.jumps + 1;
2199}
2200
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02002201static void annotation__calc_lines(struct annotation *notes, struct map *map,
2202 struct rb_root *root, u64 start)
2203{
2204 struct annotation_line *al;
2205 struct rb_root tmp_root = RB_ROOT;
2206
2207 list_for_each_entry(al, &notes->src->source, node) {
2208 double percent_max = 0.0;
2209 int i;
2210
2211 for (i = 0; i < al->samples_nr; i++) {
2212 struct annotation_data *sample;
2213
2214 sample = &al->samples[i];
2215
2216 if (sample->percent > percent_max)
2217 percent_max = sample->percent;
2218 }
2219
2220 if (percent_max <= 0.5)
2221 continue;
2222
Jin Yao935f5a92017-12-30 00:26:52 +08002223 al->path = get_srcline(map->dso, start + al->offset, NULL,
2224 false, true, start + al->offset);
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02002225 insert_source_line(&tmp_root, al);
2226 }
2227
2228 resort_source_line(root, &tmp_root);
2229}
2230
2231static void symbol__calc_lines(struct symbol *sym, struct map *map,
2232 struct rb_root *root)
2233{
2234 struct annotation *notes = symbol__annotation(sym);
2235 u64 start = map__rip_2objdump(map, sym->start);
2236
2237 annotation__calc_lines(notes, map, root, start);
2238}
2239
Arnaldo Carvalho de Melobefd2a32018-03-15 23:44:34 -03002240int symbol__tty_annotate2(struct symbol *sym, struct map *map,
2241 struct perf_evsel *evsel, bool print_lines,
2242 bool full_paths)
2243{
2244 struct dso *dso = map->dso;
2245 struct rb_root source_line = RB_ROOT;
2246 struct annotation_options opts = {
2247 .use_offset = true,
2248 };
2249
2250 if (symbol__annotate2(sym, map, evsel, &opts, NULL) < 0)
2251 return -1;
2252
2253 if (print_lines) {
2254 srcline_full_filename = full_paths;
2255 symbol__calc_lines(sym, map, &source_line);
2256 print_summary(&source_line, dso->long_name);
2257 }
2258
2259 symbol__annotate_fprintf2(sym, stdout);
2260
2261 annotated_source__purge(symbol__annotation(sym)->src);
2262
2263 return 0;
2264}
2265
Namhyung Kimdb8fd072013-03-05 14:53:21 +09002266int symbol__tty_annotate(struct symbol *sym, struct map *map,
2267 struct perf_evsel *evsel, bool print_lines,
2268 bool full_paths, int min_pcnt, int max_lines)
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02002269{
2270 struct dso *dso = map->dso;
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02002271 struct rb_root source_line = RB_ROOT;
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02002272
Arnaldo Carvalho de Melo5449f132017-12-11 12:46:11 -03002273 if (symbol__annotate(sym, map, evsel, 0, NULL) < 0)
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02002274 return -1;
2275
Jiri Olsa05d3f1a2017-11-15 12:20:08 +01002276 symbol__calc_percent(sym, evsel);
2277
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02002278 if (print_lines) {
Michael Petlan4a4c03c2015-11-09 16:33:31 +01002279 srcline_full_filename = full_paths;
Jiri Olsa8b4c74d2017-10-11 17:01:41 +02002280 symbol__calc_lines(sym, map, &source_line);
Namhyung Kim86c98ca2013-09-11 14:09:30 +09002281 print_summary(&source_line, dso->long_name);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02002282 }
2283
Namhyung Kimdb8fd072013-03-05 14:53:21 +09002284 symbol__annotate_printf(sym, map, evsel, full_paths,
Arnaldo Carvalho de Melod5e3d742011-02-08 15:29:25 -02002285 min_pcnt, max_lines, 0);
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02002286
Jiri Olsaf8eb37b2017-10-11 17:01:38 +02002287 annotated_source__purge(symbol__annotation(sym)->src);
Arnaldo Carvalho de Melof1e27012011-02-05 18:51:38 -02002288
Arnaldo Carvalho de Melo78f7def2011-02-04 09:45:46 -02002289 return 0;
2290}
Arnaldo Carvalho de Melof626adf2013-12-18 17:10:15 -03002291
Namhyung Kim48c65bd2014-02-20 10:32:53 +09002292bool ui__has_annotation(void)
2293{
Jiri Olsa2e0453a2016-05-03 13:54:44 +02002294 return use_browser == 1 && perf_hpp_list.sym;
Namhyung Kim48c65bd2014-02-20 10:32:53 +09002295}
Arnaldo Carvalho de Meloecda45b2018-03-15 16:54:11 -03002296
Arnaldo Carvalho de Melo2f025ea2018-03-15 17:04:53 -03002297
2298double annotation_line__max_percent(struct annotation_line *al, struct annotation *notes)
2299{
2300 double percent_max = 0.0;
2301 int i;
2302
2303 for (i = 0; i < notes->nr_events; i++) {
2304 if (al->samples[i].percent > percent_max)
2305 percent_max = al->samples[i].percent;
2306 }
2307
2308 return percent_max;
2309}
2310
Arnaldo Carvalho de Meloa1e9b742018-03-15 19:12:39 -03002311static void disasm_line__write(struct disasm_line *dl, struct annotation *notes,
2312 void *obj, char *bf, size_t size,
2313 void (*obj__printf)(void *obj, const char *fmt, ...),
2314 void (*obj__write_graph)(void *obj, int graph))
2315{
2316 if (dl->ins.ops && dl->ins.ops->scnprintf) {
2317 if (ins__is_jump(&dl->ins)) {
2318 bool fwd = dl->ops.target.offset > dl->al.offset;
2319
2320 obj__write_graph(obj, fwd ? DARROW_CHAR : UARROW_CHAR);
2321 obj__printf(obj, " ");
2322 } else if (ins__is_call(&dl->ins)) {
2323 obj__write_graph(obj, RARROW_CHAR);
2324 obj__printf(obj, " ");
2325 } else if (ins__is_ret(&dl->ins)) {
2326 obj__write_graph(obj, LARROW_CHAR);
2327 obj__printf(obj, " ");
2328 } else {
2329 obj__printf(obj, " ");
2330 }
2331 } else {
2332 obj__printf(obj, " ");
2333 }
2334
2335 disasm_line__scnprintf(dl, bf, size, !notes->options->use_offset);
2336}
2337
Arnaldo Carvalho de Meloc2983042018-03-15 23:14:51 -03002338static void __annotation_line__write(struct annotation_line *al, struct annotation *notes,
2339 bool first_line, bool current_entry, bool change_color, int width,
2340 void *obj,
2341 int (*obj__set_color)(void *obj, int color),
2342 void (*obj__set_percent_color)(void *obj, double percent, bool current),
2343 int (*obj__set_jumps_percent_color)(void *obj, int nr, bool current),
2344 void (*obj__printf)(void *obj, const char *fmt, ...),
2345 void (*obj__write_graph)(void *obj, int graph))
2346
Arnaldo Carvalho de Melo2ba5eca2018-03-15 17:54:36 -03002347{
2348 double percent_max = annotation_line__max_percent(al, notes);
Arnaldo Carvalho de Meloa1e9b742018-03-15 19:12:39 -03002349 int pcnt_width = annotation__pcnt_width(notes),
2350 cycles_width = annotation__cycles_width(notes);
Arnaldo Carvalho de Melo2ba5eca2018-03-15 17:54:36 -03002351 bool show_title = false;
Arnaldo Carvalho de Meloa1e9b742018-03-15 19:12:39 -03002352 char bf[256];
2353 int printed;
Arnaldo Carvalho de Melo2ba5eca2018-03-15 17:54:36 -03002354
2355 if (first_line && (al->offset == -1 || percent_max == 0.0)) {
2356 if (notes->have_cycles) {
2357 if (al->ipc == 0.0 && al->cycles == 0)
2358 show_title = true;
2359 } else
2360 show_title = true;
2361 }
2362
Arnaldo Carvalho de Melo2ba5eca2018-03-15 17:54:36 -03002363 if (al->offset != -1 && percent_max != 0.0) {
2364 int i;
2365
2366 for (i = 0; i < notes->nr_events; i++) {
2367 obj__set_percent_color(obj, al->samples[i].percent, current_entry);
2368 if (notes->options->show_total_period) {
2369 obj__printf(obj, "%11" PRIu64 " ", al->samples[i].he.period);
2370 } else if (notes->options->show_nr_samples) {
2371 obj__printf(obj, "%6" PRIu64 " ",
2372 al->samples[i].he.nr_samples);
2373 } else {
2374 obj__printf(obj, "%6.2f ",
2375 al->samples[i].percent);
2376 }
2377 }
2378 } else {
Arnaldo Carvalho de Melo2ba5eca2018-03-15 17:54:36 -03002379 obj__set_percent_color(obj, 0, current_entry);
2380
2381 if (!show_title)
Arnaldo Carvalho de Meloa1e9b742018-03-15 19:12:39 -03002382 obj__printf(obj, "%-*s", pcnt_width, " ");
Arnaldo Carvalho de Melo2ba5eca2018-03-15 17:54:36 -03002383 else {
Arnaldo Carvalho de Meloa1e9b742018-03-15 19:12:39 -03002384 obj__printf(obj, "%-*s", pcnt_width,
Arnaldo Carvalho de Melo2ba5eca2018-03-15 17:54:36 -03002385 notes->options->show_total_period ? "Period" :
2386 notes->options->show_nr_samples ? "Samples" : "Percent");
2387 }
2388 }
2389
2390 if (notes->have_cycles) {
2391 if (al->ipc)
2392 obj__printf(obj, "%*.2f ", ANNOTATION__IPC_WIDTH - 1, al->ipc);
2393 else if (!show_title)
2394 obj__printf(obj, "%*s", ANNOTATION__IPC_WIDTH, " ");
2395 else
2396 obj__printf(obj, "%*s ", ANNOTATION__IPC_WIDTH - 1, "IPC");
2397
2398 if (al->cycles)
2399 obj__printf(obj, "%*" PRIu64 " ",
2400 ANNOTATION__CYCLES_WIDTH - 1, al->cycles);
2401 else if (!show_title)
2402 obj__printf(obj, "%*s", ANNOTATION__CYCLES_WIDTH, " ");
2403 else
2404 obj__printf(obj, "%*s ", ANNOTATION__CYCLES_WIDTH - 1, "Cycle");
2405 }
2406
2407 obj__printf(obj, " ");
Arnaldo Carvalho de Meloa1e9b742018-03-15 19:12:39 -03002408
2409 if (!*al->line)
2410 obj__printf(obj, "%-*s", width - pcnt_width - cycles_width, " ");
2411 else if (al->offset == -1) {
2412 if (al->line_nr && notes->options->show_linenr)
2413 printed = scnprintf(bf, sizeof(bf), "%-*d ", notes->widths.addr + 1, al->line_nr);
2414 else
2415 printed = scnprintf(bf, sizeof(bf), "%-*s ", notes->widths.addr, " ");
2416 obj__printf(obj, bf);
2417 obj__printf(obj, "%-*s", width - printed - pcnt_width - cycles_width + 1, al->line);
2418 } else {
2419 u64 addr = al->offset;
2420 int color = -1;
2421
2422 if (!notes->options->use_offset)
2423 addr += notes->start;
2424
2425 if (!notes->options->use_offset) {
2426 printed = scnprintf(bf, sizeof(bf), "%" PRIx64 ": ", addr);
2427 } else {
2428 if (al->jump_sources) {
2429 if (notes->options->show_nr_jumps) {
2430 int prev;
2431 printed = scnprintf(bf, sizeof(bf), "%*d ",
2432 notes->widths.jumps,
2433 al->jump_sources);
2434 prev = obj__set_jumps_percent_color(obj, al->jump_sources,
2435 current_entry);
2436 obj__printf(obj, bf);
2437 obj__set_color(obj, prev);
2438 }
2439
2440 printed = scnprintf(bf, sizeof(bf), "%*" PRIx64 ": ",
2441 notes->widths.target, addr);
2442 } else {
2443 printed = scnprintf(bf, sizeof(bf), "%-*s ",
2444 notes->widths.addr, " ");
2445 }
2446 }
2447
2448 if (change_color)
2449 color = obj__set_color(obj, HE_COLORSET_ADDR);
2450 obj__printf(obj, bf);
2451 if (change_color)
2452 obj__set_color(obj, color);
2453
2454 disasm_line__write(disasm_line(al), notes, obj, bf, sizeof(bf), obj__printf, obj__write_graph);
2455
2456 obj__printf(obj, "%-*s", width - pcnt_width - cycles_width - 3 - printed, bf);
2457 }
2458
Arnaldo Carvalho de Melo2ba5eca2018-03-15 17:54:36 -03002459}
2460
Arnaldo Carvalho de Meloc2983042018-03-15 23:14:51 -03002461void annotation_line__write(struct annotation_line *al, struct annotation *notes,
2462 struct annotation_write_ops *ops)
2463{
2464 __annotation_line__write(al, notes, ops->first_line, ops->current_entry,
2465 ops->change_color, ops->width, ops->obj,
2466 ops->set_color, ops->set_percent_color,
2467 ops->set_jumps_percent_color, ops->printf,
2468 ops->write_graph);
2469}
2470
Arnaldo Carvalho de Meloecda45b2018-03-15 16:54:11 -03002471int symbol__annotate2(struct symbol *sym, struct map *map, struct perf_evsel *evsel,
2472 struct annotation_options *options, struct arch **parch)
2473{
2474 struct annotation *notes = symbol__annotation(sym);
2475 size_t size = symbol__size(sym);
2476 int nr_pcnt = 1, err;
2477
2478 notes->offsets = zalloc(size * sizeof(struct annotation_line *));
2479 if (notes->offsets == NULL)
2480 return -1;
2481
2482 if (perf_evsel__is_group_event(evsel))
2483 nr_pcnt = evsel->nr_members;
2484
2485 err = symbol__annotate(sym, map, evsel, 0, parch);
2486 if (err)
2487 goto out_free_offsets;
2488
2489 notes->options = options;
2490
2491 symbol__calc_percent(sym, evsel);
2492
2493 notes->start = map__rip_2objdump(map, sym->start);
2494
2495 annotation__set_offsets(notes, size);
2496 annotation__mark_jump_targets(notes, sym);
2497 annotation__compute_ipc(notes, size);
2498 annotation__init_column_widths(notes, sym);
2499 notes->nr_events = nr_pcnt;
2500
2501 annotation__update_column_widths(notes);
2502
2503 return 0;
2504
2505out_free_offsets:
2506 zfree(&notes->offsets);
2507 return -1;
2508}
Arnaldo Carvalho de Melo7f0b6fd2018-03-16 14:33:38 -03002509
2510#define ANNOTATION__CFG(n) \
2511 { .name = #n, .value = &annotation__default_options.n, }
2512
2513/*
2514 * Keep the entries sorted, they are bsearch'ed
2515 */
2516static struct annotation_config {
2517 const char *name;
2518 bool *value;
2519} annotation__configs[] = {
2520 ANNOTATION__CFG(hide_src_code),
2521 ANNOTATION__CFG(jump_arrows),
2522 ANNOTATION__CFG(show_linenr),
2523 ANNOTATION__CFG(show_nr_jumps),
2524 ANNOTATION__CFG(show_nr_samples),
2525 ANNOTATION__CFG(show_total_period),
2526 ANNOTATION__CFG(use_offset),
2527};
2528
2529#undef ANNOTATION__CFG
2530
2531static int annotation_config__cmp(const void *name, const void *cfgp)
2532{
2533 const struct annotation_config *cfg = cfgp;
2534
2535 return strcmp(name, cfg->name);
2536}
2537
2538static int annotation__config(const char *var, const char *value,
2539 void *data __maybe_unused)
2540{
2541 struct annotation_config *cfg;
2542 const char *name;
2543
2544 if (!strstarts(var, "annotate."))
2545 return 0;
2546
2547 name = var + 9;
2548 cfg = bsearch(name, annotation__configs, ARRAY_SIZE(annotation__configs),
2549 sizeof(struct annotation_config), annotation_config__cmp);
2550
2551 if (cfg == NULL)
2552 pr_debug("%s variable unknown, ignoring...", var);
2553 else
2554 *cfg->value = perf_config_bool(name, value);
2555 return 0;
2556}
2557
2558void annotation_config__init(void)
2559{
2560 perf_config(annotation__config, NULL);
2561
2562 annotation__default_options.show_total_period = symbol_conf.show_total_period;
2563 annotation__default_options.show_nr_samples = symbol_conf.show_nr_samples;
2564}