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