Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> |
| 3 | * |
| 4 | * Parts came from builtin-annotate.c, see those files for further |
| 5 | * copyright notes. |
| 6 | * |
| 7 | * Released under the GPL v2. (and only v2, not any later version) |
| 8 | */ |
| 9 | |
Arnaldo Carvalho de Melo | a43783a | 2017-04-18 10:46:11 -0300 | [diff] [blame] | 10 | #include <errno.h> |
Arnaldo Carvalho de Melo | fd20e81 | 2017-04-17 15:23:08 -0300 | [diff] [blame] | 11 | #include <inttypes.h> |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 12 | #include "util.h" |
Namhyung Kim | 48c65bd | 2014-02-20 10:32:53 +0900 | [diff] [blame] | 13 | #include "ui/ui.h" |
| 14 | #include "sort.h" |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 15 | #include "build-id.h" |
| 16 | #include "color.h" |
Arnaldo Carvalho de Melo | 7f0b6fd | 2018-03-16 14:33:38 -0300 | [diff] [blame^] | 17 | #include "config.h" |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 18 | #include "cache.h" |
| 19 | #include "symbol.h" |
| 20 | #include "debug.h" |
| 21 | #include "annotate.h" |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 22 | #include "evsel.h" |
Peter Zijlstra | 70fbe05 | 2016-09-05 16:08:12 -0300 | [diff] [blame] | 23 | #include "block-range.h" |
Arnaldo Carvalho de Melo | a067558 | 2017-04-17 16:51:59 -0300 | [diff] [blame] | 24 | #include "string2.h" |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 25 | #include "arch/common.h" |
Andi Kleen | e592488 | 2014-11-12 18:05:26 -0800 | [diff] [blame] | 26 | #include <regex.h> |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 27 | #include <pthread.h> |
Jiri Olsa | 4383db8 | 2012-10-27 23:18:29 +0200 | [diff] [blame] | 28 | #include <linux/bitops.h> |
Arnaldo Carvalho de Melo | 877a7a1 | 2017-04-17 11:39:06 -0300 | [diff] [blame] | 29 | #include <linux/kernel.h> |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 30 | |
Arnaldo Carvalho de Melo | a1e9b74 | 2018-03-15 19:12:39 -0300 | [diff] [blame] | 31 | /* FIXME: For the HE_COLORSET */ |
| 32 | #include "ui/browser.h" |
| 33 | |
| 34 | /* |
| 35 | * FIXME: Using the same values as slang.h, |
| 36 | * but that header may not be available everywhere |
| 37 | */ |
Arnaldo Carvalho de Melo | c298304 | 2018-03-15 23:14:51 -0300 | [diff] [blame] | 38 | #define LARROW_CHAR ((unsigned char)',') |
| 39 | #define RARROW_CHAR ((unsigned char)'+') |
| 40 | #define DARROW_CHAR ((unsigned char)'.') |
| 41 | #define UARROW_CHAR ((unsigned char)'-') |
Arnaldo Carvalho de Melo | a1e9b74 | 2018-03-15 19:12:39 -0300 | [diff] [blame] | 42 | |
Arnaldo Carvalho de Melo | 3d689ed | 2017-04-17 16:10:49 -0300 | [diff] [blame] | 43 | #include "sane_ctype.h" |
| 44 | |
Arnaldo Carvalho de Melo | 7f0b6fd | 2018-03-16 14:33:38 -0300 | [diff] [blame^] | 45 | struct annotation_options annotation__default_options = { |
| 46 | .use_offset = true, |
| 47 | .jump_arrows = true, |
| 48 | }; |
| 49 | |
Andi Kleen | f69b64f | 2011-09-15 14:31:41 -0700 | [diff] [blame] | 50 | const char *disassembler_style; |
Maciek Borzecki | 7a4ec93 | 2012-09-04 12:32:30 +0200 | [diff] [blame] | 51 | const char *objdump_path; |
Andi Kleen | e592488 | 2014-11-12 18:05:26 -0800 | [diff] [blame] | 52 | static regex_t file_lineno; |
Andi Kleen | f69b64f | 2011-09-15 14:31:41 -0700 | [diff] [blame] | 53 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 54 | 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] | 55 | static void ins__sort(struct arch *arch); |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 56 | 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] | 57 | |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 58 | struct arch { |
| 59 | const char *name; |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 60 | struct ins *instructions; |
| 61 | size_t nr_instructions; |
Arnaldo Carvalho de Melo | 2a1ff81 | 2016-11-24 11:37:08 -0300 | [diff] [blame] | 62 | size_t nr_instructions_allocated; |
| 63 | 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] | 64 | bool sorted_instructions; |
Arnaldo Carvalho de Melo | 0781ea9 | 2016-11-18 12:34:26 -0300 | [diff] [blame] | 65 | bool initialized; |
| 66 | void *priv; |
Jin Yao | 69fb09f | 2017-07-07 13:06:34 +0800 | [diff] [blame] | 67 | unsigned int model; |
| 68 | unsigned int family; |
Jiri Olsa | 696e2457 | 2017-10-11 17:01:24 +0200 | [diff] [blame] | 69 | int (*init)(struct arch *arch, char *cpuid); |
Jin Yao | 69fb09f | 2017-07-07 13:06:34 +0800 | [diff] [blame] | 70 | bool (*ins_is_fused)(struct arch *arch, const char *ins1, |
| 71 | const char *ins2); |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 72 | struct { |
| 73 | char comment_char; |
Arnaldo Carvalho de Melo | 9c2fb45 | 2016-11-16 15:50:38 -0300 | [diff] [blame] | 74 | char skip_functions_char; |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 75 | } objdump; |
| 76 | }; |
| 77 | |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 78 | static struct ins_ops call_ops; |
| 79 | static struct ins_ops dec_ops; |
| 80 | static struct ins_ops jump_ops; |
| 81 | static struct ins_ops mov_ops; |
| 82 | static struct ins_ops nop_ops; |
| 83 | static struct ins_ops lock_ops; |
| 84 | static struct ins_ops ret_ops; |
| 85 | |
Arnaldo Carvalho de Melo | 2a1ff81 | 2016-11-24 11:37:08 -0300 | [diff] [blame] | 86 | static int arch__grow_instructions(struct arch *arch) |
| 87 | { |
| 88 | struct ins *new_instructions; |
| 89 | size_t new_nr_allocated; |
| 90 | |
| 91 | if (arch->nr_instructions_allocated == 0 && arch->instructions) |
| 92 | goto grow_from_non_allocated_table; |
| 93 | |
| 94 | new_nr_allocated = arch->nr_instructions_allocated + 128; |
| 95 | new_instructions = realloc(arch->instructions, new_nr_allocated * sizeof(struct ins)); |
| 96 | if (new_instructions == NULL) |
| 97 | return -1; |
| 98 | |
| 99 | out_update_instructions: |
| 100 | arch->instructions = new_instructions; |
| 101 | arch->nr_instructions_allocated = new_nr_allocated; |
| 102 | return 0; |
| 103 | |
| 104 | grow_from_non_allocated_table: |
| 105 | new_nr_allocated = arch->nr_instructions + 128; |
| 106 | new_instructions = calloc(new_nr_allocated, sizeof(struct ins)); |
| 107 | if (new_instructions == NULL) |
| 108 | return -1; |
| 109 | |
| 110 | memcpy(new_instructions, arch->instructions, arch->nr_instructions); |
| 111 | goto out_update_instructions; |
| 112 | } |
| 113 | |
Arnaldo Carvalho de Melo | acc9bfb | 2016-11-18 16:54:10 -0300 | [diff] [blame] | 114 | 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] | 115 | { |
| 116 | struct ins *ins; |
| 117 | |
| 118 | if (arch->nr_instructions == arch->nr_instructions_allocated && |
| 119 | arch__grow_instructions(arch)) |
| 120 | return -1; |
| 121 | |
| 122 | ins = &arch->instructions[arch->nr_instructions]; |
| 123 | ins->name = strdup(name); |
| 124 | if (!ins->name) |
| 125 | return -1; |
| 126 | |
| 127 | ins->ops = ops; |
| 128 | arch->nr_instructions++; |
| 129 | |
| 130 | ins__sort(arch); |
| 131 | return 0; |
| 132 | } |
| 133 | |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 134 | #include "arch/arm/annotate/instructions.c" |
Kim Phillips | 0fcb1da | 2016-11-30 09:23:44 -0600 | [diff] [blame] | 135 | #include "arch/arm64/annotate/instructions.c" |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 136 | #include "arch/x86/annotate/instructions.c" |
Ravi Bangoria | dbdebdc | 2016-11-23 21:33:46 +0530 | [diff] [blame] | 137 | #include "arch/powerpc/annotate/instructions.c" |
Christian Borntraeger | d9f8dfa | 2017-04-06 09:51:52 +0200 | [diff] [blame] | 138 | #include "arch/s390/annotate/instructions.c" |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 139 | |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 140 | static struct arch architectures[] = { |
| 141 | { |
| 142 | .name = "arm", |
Arnaldo Carvalho de Melo | acc9bfb | 2016-11-18 16:54:10 -0300 | [diff] [blame] | 143 | .init = arm__annotate_init, |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 144 | }, |
| 145 | { |
Kim Phillips | 0fcb1da | 2016-11-30 09:23:44 -0600 | [diff] [blame] | 146 | .name = "arm64", |
| 147 | .init = arm64__annotate_init, |
| 148 | }, |
| 149 | { |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 150 | .name = "x86", |
Jiri Olsa | 696e2457 | 2017-10-11 17:01:24 +0200 | [diff] [blame] | 151 | .init = x86__annotate_init, |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 152 | .instructions = x86__instructions, |
| 153 | .nr_instructions = ARRAY_SIZE(x86__instructions), |
Jin Yao | 69fb09f | 2017-07-07 13:06:34 +0800 | [diff] [blame] | 154 | .ins_is_fused = x86__ins_is_fused, |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 155 | .objdump = { |
| 156 | .comment_char = '#', |
| 157 | }, |
| 158 | }, |
Ravi Bangoria | dbdebdc | 2016-11-23 21:33:46 +0530 | [diff] [blame] | 159 | { |
| 160 | .name = "powerpc", |
| 161 | .init = powerpc__annotate_init, |
| 162 | }, |
Christian Borntraeger | e77852b | 2017-04-06 09:51:51 +0200 | [diff] [blame] | 163 | { |
| 164 | .name = "s390", |
Christian Borntraeger | d9f8dfa | 2017-04-06 09:51:52 +0200 | [diff] [blame] | 165 | .init = s390__annotate_init, |
Christian Borntraeger | e77852b | 2017-04-06 09:51:51 +0200 | [diff] [blame] | 166 | .objdump = { |
| 167 | .comment_char = '#', |
| 168 | }, |
| 169 | }, |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 170 | }; |
| 171 | |
Arnaldo Carvalho de Melo | c46219ac | 2012-05-12 13:26:20 -0300 | [diff] [blame] | 172 | static void ins__delete(struct ins_operands *ops) |
| 173 | { |
Arnaldo Carvalho de Melo | 3995614 | 2015-03-05 15:27:28 -0300 | [diff] [blame] | 174 | if (ops == NULL) |
| 175 | return; |
Arnaldo Carvalho de Melo | 74cf249 | 2013-12-27 16:55:14 -0300 | [diff] [blame] | 176 | zfree(&ops->source.raw); |
| 177 | zfree(&ops->source.name); |
| 178 | zfree(&ops->target.raw); |
| 179 | zfree(&ops->target.name); |
Arnaldo Carvalho de Melo | c46219ac | 2012-05-12 13:26:20 -0300 | [diff] [blame] | 180 | } |
| 181 | |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 182 | static int ins__raw_scnprintf(struct ins *ins, char *bf, size_t size, |
| 183 | struct ins_operands *ops) |
| 184 | { |
Ravi Bangoria | 648388a | 2017-11-14 08:55:40 +0530 | [diff] [blame] | 185 | return scnprintf(bf, size, "%-6s %s", ins->name, ops->raw); |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | int ins__scnprintf(struct ins *ins, char *bf, size_t size, |
| 189 | struct ins_operands *ops) |
| 190 | { |
| 191 | if (ins->ops->scnprintf) |
| 192 | return ins->ops->scnprintf(ins, bf, size, ops); |
| 193 | |
| 194 | return ins__raw_scnprintf(ins, bf, size, ops); |
| 195 | } |
| 196 | |
Jin Yao | 69fb09f | 2017-07-07 13:06:34 +0800 | [diff] [blame] | 197 | bool ins__is_fused(struct arch *arch, const char *ins1, const char *ins2) |
| 198 | { |
| 199 | if (!arch || !arch->ins_is_fused) |
| 200 | return false; |
| 201 | |
| 202 | return arch->ins_is_fused(arch, ins1, ins2); |
| 203 | } |
| 204 | |
Arnaldo Carvalho de Melo | 9c2fb45 | 2016-11-16 15:50:38 -0300 | [diff] [blame] | 205 | static int call__parse(struct arch *arch, struct ins_operands *ops, struct map *map) |
Arnaldo Carvalho de Melo | d86b059 | 2012-04-18 16:07:38 -0300 | [diff] [blame] | 206 | { |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 207 | char *endptr, *tok, *name; |
Arnaldo Carvalho de Melo | 696703a | 2018-03-02 11:59:36 -0300 | [diff] [blame] | 208 | struct addr_map_symbol target = { |
| 209 | .map = map, |
| 210 | }; |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 211 | |
Arnaldo Carvalho de Melo | 44d1a3e | 2012-04-25 08:00:23 -0300 | [diff] [blame] | 212 | ops->target.addr = strtoull(ops->raw, &endptr, 16); |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 213 | |
| 214 | name = strchr(endptr, '<'); |
| 215 | if (name == NULL) |
| 216 | goto indirect_call; |
| 217 | |
| 218 | name++; |
| 219 | |
Arnaldo Carvalho de Melo | 9c2fb45 | 2016-11-16 15:50:38 -0300 | [diff] [blame] | 220 | if (arch->objdump.skip_functions_char && |
| 221 | strchr(name, arch->objdump.skip_functions_char)) |
Russell King | cfef25b | 2015-12-06 23:07:13 +0000 | [diff] [blame] | 222 | return -1; |
Russell King | cfef25b | 2015-12-06 23:07:13 +0000 | [diff] [blame] | 223 | |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 224 | tok = strchr(name, '>'); |
| 225 | if (tok == NULL) |
| 226 | return -1; |
| 227 | |
| 228 | *tok = '\0'; |
Arnaldo Carvalho de Melo | 44d1a3e | 2012-04-25 08:00:23 -0300 | [diff] [blame] | 229 | ops->target.name = strdup(name); |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 230 | *tok = '>'; |
| 231 | |
Arnaldo Carvalho de Melo | 696703a | 2018-03-02 11:59:36 -0300 | [diff] [blame] | 232 | if (ops->target.name == NULL) |
| 233 | return -1; |
| 234 | find_target: |
| 235 | target.addr = map__objdump_2mem(map, ops->target.addr); |
| 236 | |
| 237 | if (map_groups__find_ams(&target) == 0 && |
| 238 | map__rip_2objdump(target.map, map->map_ip(target.map, target.addr)) == ops->target.addr) |
| 239 | ops->target.sym = target.sym; |
| 240 | |
| 241 | return 0; |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 242 | |
| 243 | indirect_call: |
Ravi Bangoria | 88a7fcf | 2016-08-19 18:29:35 +0530 | [diff] [blame] | 244 | tok = strchr(endptr, '*'); |
Arnaldo Carvalho de Melo | 696703a | 2018-03-02 11:59:36 -0300 | [diff] [blame] | 245 | if (tok != NULL) |
| 246 | ops->target.addr = strtoull(tok + 1, NULL, 16); |
| 247 | goto find_target; |
Arnaldo Carvalho de Melo | d86b059 | 2012-04-18 16:07:38 -0300 | [diff] [blame] | 248 | } |
| 249 | |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 250 | static int call__scnprintf(struct ins *ins, char *bf, size_t size, |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 251 | struct ins_operands *ops) |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 252 | { |
Arnaldo Carvalho de Melo | 696703a | 2018-03-02 11:59:36 -0300 | [diff] [blame] | 253 | if (ops->target.sym) |
| 254 | return scnprintf(bf, size, "%-6s %s", ins->name, ops->target.sym->name); |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 255 | |
Arnaldo Carvalho de Melo | e8ea156 | 2012-05-11 12:28:55 -0300 | [diff] [blame] | 256 | if (ops->target.addr == 0) |
| 257 | return ins__raw_scnprintf(ins, bf, size, ops); |
| 258 | |
Arnaldo Carvalho de Melo | 4c9cb2c | 2018-03-16 13:28:09 -0300 | [diff] [blame] | 259 | if (ops->target.name) |
| 260 | return scnprintf(bf, size, "%-6s %s", ins->name, ops->target.name); |
| 261 | |
Ravi Bangoria | 648388a | 2017-11-14 08:55:40 +0530 | [diff] [blame] | 262 | return scnprintf(bf, size, "%-6s *%" PRIx64, ins->name, ops->target.addr); |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 263 | } |
| 264 | |
Arnaldo Carvalho de Melo | d86b059 | 2012-04-18 16:07:38 -0300 | [diff] [blame] | 265 | static struct ins_ops call_ops = { |
Arnaldo Carvalho de Melo | d223288 | 2012-04-20 15:26:47 -0300 | [diff] [blame] | 266 | .parse = call__parse, |
| 267 | .scnprintf = call__scnprintf, |
Arnaldo Carvalho de Melo | d86b059 | 2012-04-18 16:07:38 -0300 | [diff] [blame] | 268 | }; |
| 269 | |
| 270 | bool ins__is_call(const struct ins *ins) |
| 271 | { |
Thomas Richter | 0b58a77 | 2018-03-07 14:43:25 +0100 | [diff] [blame] | 272 | return ins->ops == &call_ops || ins->ops == &s390_call_ops; |
Arnaldo Carvalho de Melo | d86b059 | 2012-04-18 16:07:38 -0300 | [diff] [blame] | 273 | } |
| 274 | |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 275 | static int jump__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map *map __maybe_unused) |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 276 | { |
Arnaldo Carvalho de Melo | c7e6ead | 2012-04-20 14:38:46 -0300 | [diff] [blame] | 277 | const char *s = strchr(ops->raw, '+'); |
Ravi Bangoria | 3ee2eb6 | 2016-12-05 21:26:46 +0530 | [diff] [blame] | 278 | const char *c = strchr(ops->raw, ','); |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 279 | |
Kim Phillips | b13bbee | 2017-06-01 09:29:59 -0500 | [diff] [blame] | 280 | /* |
| 281 | * skip over possible up to 2 operands to get to address, e.g.: |
| 282 | * tbnz w0, #26, ffff0000083cd190 <security_file_permission+0xd0> |
| 283 | */ |
| 284 | if (c++ != NULL) { |
Ravi Bangoria | 3ee2eb6 | 2016-12-05 21:26:46 +0530 | [diff] [blame] | 285 | ops->target.addr = strtoull(c, NULL, 16); |
Kim Phillips | b13bbee | 2017-06-01 09:29:59 -0500 | [diff] [blame] | 286 | if (!ops->target.addr) { |
| 287 | c = strchr(c, ','); |
| 288 | if (c++ != NULL) |
| 289 | ops->target.addr = strtoull(c, NULL, 16); |
| 290 | } |
| 291 | } else { |
Ravi Bangoria | 3ee2eb6 | 2016-12-05 21:26:46 +0530 | [diff] [blame] | 292 | ops->target.addr = strtoull(ops->raw, NULL, 16); |
Kim Phillips | b13bbee | 2017-06-01 09:29:59 -0500 | [diff] [blame] | 293 | } |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 294 | |
Ravi Bangoria | e216874 | 2016-12-05 21:26:47 +0530 | [diff] [blame] | 295 | if (s++ != NULL) { |
Adrian Hunter | bbb7f84 | 2013-08-07 14:38:54 +0300 | [diff] [blame] | 296 | ops->target.offset = strtoull(s, NULL, 16); |
Ravi Bangoria | e216874 | 2016-12-05 21:26:47 +0530 | [diff] [blame] | 297 | ops->target.offset_avail = true; |
| 298 | } else { |
| 299 | ops->target.offset_avail = false; |
| 300 | } |
Arnaldo Carvalho de Melo | fb29fa58 | 2012-04-25 14:16:03 -0300 | [diff] [blame] | 301 | |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 302 | return 0; |
| 303 | } |
| 304 | |
Arnaldo Carvalho de Melo | c7e6ead | 2012-04-20 14:38:46 -0300 | [diff] [blame] | 305 | static int jump__scnprintf(struct ins *ins, char *bf, size_t size, |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 306 | struct ins_operands *ops) |
Arnaldo Carvalho de Melo | 28548d7 | 2012-04-19 10:16:27 -0300 | [diff] [blame] | 307 | { |
Kim Phillips | b13bbee | 2017-06-01 09:29:59 -0500 | [diff] [blame] | 308 | const char *c = strchr(ops->raw, ','); |
| 309 | |
Ravi Bangoria | e216874 | 2016-12-05 21:26:47 +0530 | [diff] [blame] | 310 | if (!ops->target.addr || ops->target.offset < 0) |
Ravi Bangoria | bec60e5 | 2016-12-05 21:26:45 +0530 | [diff] [blame] | 311 | return ins__raw_scnprintf(ins, bf, size, ops); |
| 312 | |
Kim Phillips | b13bbee | 2017-06-01 09:29:59 -0500 | [diff] [blame] | 313 | if (c != NULL) { |
| 314 | const char *c2 = strchr(c + 1, ','); |
| 315 | |
| 316 | /* check for 3-op insn */ |
| 317 | if (c2 != NULL) |
| 318 | c = c2; |
| 319 | c++; |
| 320 | |
| 321 | /* mirror arch objdump's space-after-comma style */ |
| 322 | if (*c == ' ') |
| 323 | c++; |
| 324 | } |
| 325 | |
Ravi Bangoria | 648388a | 2017-11-14 08:55:40 +0530 | [diff] [blame] | 326 | return scnprintf(bf, size, "%-6s %.*s%" PRIx64, |
Kim Phillips | b13bbee | 2017-06-01 09:29:59 -0500 | [diff] [blame] | 327 | ins->name, c ? c - ops->raw : 0, ops->raw, |
| 328 | ops->target.offset); |
Arnaldo Carvalho de Melo | 28548d7 | 2012-04-19 10:16:27 -0300 | [diff] [blame] | 329 | } |
| 330 | |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 331 | static struct ins_ops jump_ops = { |
Arnaldo Carvalho de Melo | c7e6ead | 2012-04-20 14:38:46 -0300 | [diff] [blame] | 332 | .parse = jump__parse, |
| 333 | .scnprintf = jump__scnprintf, |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 334 | }; |
| 335 | |
| 336 | bool ins__is_jump(const struct ins *ins) |
| 337 | { |
| 338 | return ins->ops == &jump_ops; |
| 339 | } |
| 340 | |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 341 | static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep) |
| 342 | { |
| 343 | char *endptr, *name, *t; |
| 344 | |
| 345 | if (strstr(raw, "(%rip)") == NULL) |
| 346 | return 0; |
| 347 | |
| 348 | *addrp = strtoull(comment, &endptr, 16); |
Thomas Richter | 35a8a14 | 2017-11-28 08:56:32 +0100 | [diff] [blame] | 349 | if (endptr == comment) |
| 350 | return 0; |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 351 | name = strchr(endptr, '<'); |
| 352 | if (name == NULL) |
| 353 | return -1; |
| 354 | |
| 355 | name++; |
| 356 | |
| 357 | t = strchr(name, '>'); |
| 358 | if (t == NULL) |
| 359 | return 0; |
| 360 | |
| 361 | *t = '\0'; |
| 362 | *namep = strdup(name); |
| 363 | *t = '>'; |
| 364 | |
| 365 | return 0; |
| 366 | } |
| 367 | |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 368 | static int lock__parse(struct arch *arch, struct ins_operands *ops, struct map *map) |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 369 | { |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 370 | ops->locked.ops = zalloc(sizeof(*ops->locked.ops)); |
| 371 | if (ops->locked.ops == NULL) |
| 372 | return 0; |
| 373 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 374 | 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] | 375 | goto out_free_ops; |
| 376 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 377 | ops->locked.ins.ops = ins__find(arch, ops->locked.ins.name); |
Rabin Vincent | 0fb9f2a | 2015-01-18 20:00:21 +0100 | [diff] [blame] | 378 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 379 | if (ops->locked.ins.ops == NULL) |
Namhyung Kim | 2ba34aa | 2012-11-10 02:27:13 +0900 | [diff] [blame] | 380 | goto out_free_ops; |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 381 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 382 | if (ops->locked.ins.ops->parse && |
| 383 | ops->locked.ins.ops->parse(arch, ops->locked.ops, map) < 0) |
Rabin Vincent | be81908 | 2015-01-18 20:00:20 +0100 | [diff] [blame] | 384 | goto out_free_ops; |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 385 | |
| 386 | return 0; |
| 387 | |
| 388 | out_free_ops: |
Arnaldo Carvalho de Melo | 0466252 | 2013-12-26 17:41:15 -0300 | [diff] [blame] | 389 | zfree(&ops->locked.ops); |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 390 | return 0; |
| 391 | } |
| 392 | |
| 393 | static int lock__scnprintf(struct ins *ins, char *bf, size_t size, |
| 394 | struct ins_operands *ops) |
| 395 | { |
| 396 | int printed; |
| 397 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 398 | if (ops->locked.ins.ops == NULL) |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 399 | return ins__raw_scnprintf(ins, bf, size, ops); |
| 400 | |
Ravi Bangoria | 648388a | 2017-11-14 08:55:40 +0530 | [diff] [blame] | 401 | printed = scnprintf(bf, size, "%-6s ", ins->name); |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 402 | return printed + ins__scnprintf(&ops->locked.ins, bf + printed, |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 403 | size - printed, ops->locked.ops); |
| 404 | } |
| 405 | |
Arnaldo Carvalho de Melo | c46219ac | 2012-05-12 13:26:20 -0300 | [diff] [blame] | 406 | static void lock__delete(struct ins_operands *ops) |
| 407 | { |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 408 | struct ins *ins = &ops->locked.ins; |
Rabin Vincent | 0fb9f2a | 2015-01-18 20:00:21 +0100 | [diff] [blame] | 409 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 410 | if (ins->ops && ins->ops->free) |
Rabin Vincent | 0fb9f2a | 2015-01-18 20:00:21 +0100 | [diff] [blame] | 411 | ins->ops->free(ops->locked.ops); |
| 412 | else |
| 413 | ins__delete(ops->locked.ops); |
| 414 | |
Arnaldo Carvalho de Melo | 74cf249 | 2013-12-27 16:55:14 -0300 | [diff] [blame] | 415 | zfree(&ops->locked.ops); |
| 416 | zfree(&ops->target.raw); |
| 417 | zfree(&ops->target.name); |
Arnaldo Carvalho de Melo | c46219ac | 2012-05-12 13:26:20 -0300 | [diff] [blame] | 418 | } |
| 419 | |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 420 | static struct ins_ops lock_ops = { |
Arnaldo Carvalho de Melo | c46219ac | 2012-05-12 13:26:20 -0300 | [diff] [blame] | 421 | .free = lock__delete, |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 422 | .parse = lock__parse, |
| 423 | .scnprintf = lock__scnprintf, |
| 424 | }; |
| 425 | |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 426 | static int mov__parse(struct arch *arch, struct ins_operands *ops, struct map *map __maybe_unused) |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 427 | { |
| 428 | char *s = strchr(ops->raw, ','), *target, *comment, prev; |
| 429 | |
| 430 | if (s == NULL) |
| 431 | return -1; |
| 432 | |
| 433 | *s = '\0'; |
| 434 | ops->source.raw = strdup(ops->raw); |
| 435 | *s = ','; |
Arnaldo Carvalho de Melo | 48000a1 | 2014-12-17 17:24:45 -0300 | [diff] [blame] | 436 | |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 437 | if (ops->source.raw == NULL) |
| 438 | return -1; |
| 439 | |
| 440 | target = ++s; |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 441 | comment = strchr(s, arch->objdump.comment_char); |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 442 | |
Alex Converse | 1e2bb04 | 2014-08-14 14:03:00 -0700 | [diff] [blame] | 443 | if (comment != NULL) |
| 444 | s = comment - 1; |
| 445 | else |
| 446 | s = strchr(s, '\0') - 1; |
| 447 | |
| 448 | while (s > target && isspace(s[0])) |
| 449 | --s; |
| 450 | s++; |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 451 | prev = *s; |
| 452 | *s = '\0'; |
| 453 | |
| 454 | ops->target.raw = strdup(target); |
| 455 | *s = prev; |
| 456 | |
| 457 | if (ops->target.raw == NULL) |
| 458 | goto out_free_source; |
| 459 | |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 460 | if (comment == NULL) |
| 461 | return 0; |
| 462 | |
Taeung Song | 4597cf0 | 2017-04-08 09:52:24 +0900 | [diff] [blame] | 463 | comment = ltrim(comment); |
Thomas Richter | 35a8a14 | 2017-11-28 08:56:32 +0100 | [diff] [blame] | 464 | comment__symbol(ops->source.raw, comment + 1, &ops->source.addr, &ops->source.name); |
| 465 | comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name); |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 466 | |
| 467 | return 0; |
| 468 | |
| 469 | out_free_source: |
Arnaldo Carvalho de Melo | 0466252 | 2013-12-26 17:41:15 -0300 | [diff] [blame] | 470 | zfree(&ops->source.raw); |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 471 | return -1; |
| 472 | } |
| 473 | |
| 474 | static int mov__scnprintf(struct ins *ins, char *bf, size_t size, |
| 475 | struct ins_operands *ops) |
| 476 | { |
Ravi Bangoria | 648388a | 2017-11-14 08:55:40 +0530 | [diff] [blame] | 477 | return scnprintf(bf, size, "%-6s %s,%s", ins->name, |
Arnaldo Carvalho de Melo | 6de783b | 2012-05-11 16:48:49 -0300 | [diff] [blame] | 478 | ops->source.name ?: ops->source.raw, |
| 479 | ops->target.name ?: ops->target.raw); |
| 480 | } |
| 481 | |
| 482 | static struct ins_ops mov_ops = { |
| 483 | .parse = mov__parse, |
| 484 | .scnprintf = mov__scnprintf, |
| 485 | }; |
| 486 | |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 487 | static int dec__parse(struct arch *arch __maybe_unused, struct ins_operands *ops, struct map *map __maybe_unused) |
Arnaldo Carvalho de Melo | a43712c | 2012-05-11 17:21:09 -0300 | [diff] [blame] | 488 | { |
| 489 | char *target, *comment, *s, prev; |
| 490 | |
| 491 | target = s = ops->raw; |
| 492 | |
| 493 | while (s[0] != '\0' && !isspace(s[0])) |
| 494 | ++s; |
| 495 | prev = *s; |
| 496 | *s = '\0'; |
| 497 | |
| 498 | ops->target.raw = strdup(target); |
| 499 | *s = prev; |
| 500 | |
| 501 | if (ops->target.raw == NULL) |
| 502 | return -1; |
| 503 | |
Kim Phillips | 859afa6 | 2016-11-30 09:23:33 -0600 | [diff] [blame] | 504 | comment = strchr(s, arch->objdump.comment_char); |
Arnaldo Carvalho de Melo | a43712c | 2012-05-11 17:21:09 -0300 | [diff] [blame] | 505 | if (comment == NULL) |
| 506 | return 0; |
| 507 | |
Taeung Song | 4597cf0 | 2017-04-08 09:52:24 +0900 | [diff] [blame] | 508 | comment = ltrim(comment); |
Thomas Richter | 35a8a14 | 2017-11-28 08:56:32 +0100 | [diff] [blame] | 509 | 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] | 510 | |
| 511 | return 0; |
| 512 | } |
| 513 | |
| 514 | static int dec__scnprintf(struct ins *ins, char *bf, size_t size, |
| 515 | struct ins_operands *ops) |
| 516 | { |
Ravi Bangoria | 648388a | 2017-11-14 08:55:40 +0530 | [diff] [blame] | 517 | return scnprintf(bf, size, "%-6s %s", ins->name, |
Arnaldo Carvalho de Melo | a43712c | 2012-05-11 17:21:09 -0300 | [diff] [blame] | 518 | ops->target.name ?: ops->target.raw); |
| 519 | } |
| 520 | |
| 521 | static struct ins_ops dec_ops = { |
| 522 | .parse = dec__parse, |
| 523 | .scnprintf = dec__scnprintf, |
| 524 | }; |
| 525 | |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 526 | static int nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size, |
| 527 | struct ins_operands *ops __maybe_unused) |
Arnaldo Carvalho de Melo | b9818e9 | 2012-05-07 18:57:02 -0300 | [diff] [blame] | 528 | { |
Ravi Bangoria | 648388a | 2017-11-14 08:55:40 +0530 | [diff] [blame] | 529 | return scnprintf(bf, size, "%-6s", "nop"); |
Arnaldo Carvalho de Melo | b9818e9 | 2012-05-07 18:57:02 -0300 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | static struct ins_ops nop_ops = { |
| 533 | .scnprintf = nop__scnprintf, |
| 534 | }; |
| 535 | |
Naveen N. Rao | 6ef9492 | 2016-06-24 17:23:58 +0530 | [diff] [blame] | 536 | static struct ins_ops ret_ops = { |
| 537 | .scnprintf = ins__raw_scnprintf, |
| 538 | }; |
| 539 | |
| 540 | bool ins__is_ret(const struct ins *ins) |
| 541 | { |
| 542 | return ins->ops == &ret_ops; |
| 543 | } |
| 544 | |
Jin Yao | 7e63a13 | 2017-07-07 13:06:35 +0800 | [diff] [blame] | 545 | bool ins__is_lock(const struct ins *ins) |
| 546 | { |
| 547 | return ins->ops == &lock_ops; |
| 548 | } |
| 549 | |
Chris Ryder | 7e4c149 | 2016-05-19 17:59:46 +0100 | [diff] [blame] | 550 | 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] | 551 | { |
| 552 | const struct ins *ins = insp; |
| 553 | |
| 554 | return strcmp(name, ins->name); |
| 555 | } |
| 556 | |
Chris Ryder | 7e4c149 | 2016-05-19 17:59:46 +0100 | [diff] [blame] | 557 | static int ins__cmp(const void *a, const void *b) |
| 558 | { |
| 559 | const struct ins *ia = a; |
| 560 | const struct ins *ib = b; |
| 561 | |
| 562 | return strcmp(ia->name, ib->name); |
| 563 | } |
| 564 | |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 565 | static void ins__sort(struct arch *arch) |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 566 | { |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 567 | const int nmemb = arch->nr_instructions; |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 568 | |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 569 | qsort(arch->instructions, nmemb, sizeof(struct ins), ins__cmp); |
Chris Ryder | 7e4c149 | 2016-05-19 17:59:46 +0100 | [diff] [blame] | 570 | } |
| 571 | |
Arnaldo Carvalho de Melo | 2a1ff81 | 2016-11-24 11:37:08 -0300 | [diff] [blame] | 572 | static struct ins_ops *__ins__find(struct arch *arch, const char *name) |
Chris Ryder | 7e4c149 | 2016-05-19 17:59:46 +0100 | [diff] [blame] | 573 | { |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 574 | struct ins *ins; |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 575 | const int nmemb = arch->nr_instructions; |
Chris Ryder | 7e4c149 | 2016-05-19 17:59:46 +0100 | [diff] [blame] | 576 | |
Arnaldo Carvalho de Melo | 763d896 | 2016-11-17 12:31:51 -0300 | [diff] [blame] | 577 | if (!arch->sorted_instructions) { |
| 578 | ins__sort(arch); |
| 579 | arch->sorted_instructions = true; |
Chris Ryder | 7e4c149 | 2016-05-19 17:59:46 +0100 | [diff] [blame] | 580 | } |
| 581 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 582 | ins = bsearch(name, arch->instructions, nmemb, sizeof(struct ins), ins__key_cmp); |
| 583 | return ins ? ins->ops : NULL; |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 584 | } |
| 585 | |
Arnaldo Carvalho de Melo | 2a1ff81 | 2016-11-24 11:37:08 -0300 | [diff] [blame] | 586 | static struct ins_ops *ins__find(struct arch *arch, const char *name) |
| 587 | { |
| 588 | struct ins_ops *ops = __ins__find(arch, name); |
| 589 | |
| 590 | if (!ops && arch->associate_instruction_ops) |
| 591 | ops = arch->associate_instruction_ops(arch, name); |
| 592 | |
| 593 | return ops; |
| 594 | } |
| 595 | |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 596 | static int arch__key_cmp(const void *name, const void *archp) |
| 597 | { |
| 598 | const struct arch *arch = archp; |
| 599 | |
| 600 | return strcmp(name, arch->name); |
| 601 | } |
| 602 | |
| 603 | static int arch__cmp(const void *a, const void *b) |
| 604 | { |
| 605 | const struct arch *aa = a; |
| 606 | const struct arch *ab = b; |
| 607 | |
| 608 | return strcmp(aa->name, ab->name); |
| 609 | } |
| 610 | |
| 611 | static void arch__sort(void) |
| 612 | { |
| 613 | const int nmemb = ARRAY_SIZE(architectures); |
| 614 | |
| 615 | qsort(architectures, nmemb, sizeof(struct arch), arch__cmp); |
| 616 | } |
| 617 | |
| 618 | static struct arch *arch__find(const char *name) |
| 619 | { |
| 620 | const int nmemb = ARRAY_SIZE(architectures); |
| 621 | static bool sorted; |
| 622 | |
| 623 | if (!sorted) { |
| 624 | arch__sort(); |
| 625 | sorted = true; |
| 626 | } |
| 627 | |
| 628 | return bsearch(name, architectures, nmemb, sizeof(struct arch), arch__key_cmp); |
| 629 | } |
| 630 | |
Arnaldo Carvalho de Melo | d04b35f | 2011-11-11 22:17:32 -0200 | [diff] [blame] | 631 | int symbol__alloc_hist(struct symbol *sym) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 632 | { |
| 633 | struct annotation *notes = symbol__annotation(sym); |
Ravi Bangoria | 331c7cb | 2017-10-24 19:50:06 +0530 | [diff] [blame] | 634 | size_t size = symbol__size(sym); |
Cody Schafer | 8696329 | 2012-07-19 20:05:25 -0700 | [diff] [blame] | 635 | size_t sizeof_sym_hist; |
| 636 | |
Ravi Bangoria | 331c7cb | 2017-10-24 19:50:06 +0530 | [diff] [blame] | 637 | /* |
| 638 | * Add buffer of one element for zero length symbol. |
| 639 | * When sample is taken from first instruction of |
| 640 | * zero length symbol, perf still resolves it and |
| 641 | * shows symbol name in perf report and allows to |
| 642 | * annotate it. |
| 643 | */ |
| 644 | if (size == 0) |
| 645 | size = 1; |
| 646 | |
Cody Schafer | 8696329 | 2012-07-19 20:05:25 -0700 | [diff] [blame] | 647 | /* Check for overflow when calculating sizeof_sym_hist */ |
Taeung Song | 896bccd | 2017-07-20 06:36:45 +0900 | [diff] [blame] | 648 | 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] | 649 | return -1; |
| 650 | |
Taeung Song | 896bccd | 2017-07-20 06:36:45 +0900 | [diff] [blame] | 651 | 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] | 652 | |
| 653 | /* Check for overflow in zalloc argument */ |
| 654 | if (sizeof_sym_hist > (SIZE_MAX - sizeof(*notes->src)) |
| 655 | / symbol_conf.nr_events) |
| 656 | return -1; |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 657 | |
Arnaldo Carvalho de Melo | d04b35f | 2011-11-11 22:17:32 -0200 | [diff] [blame] | 658 | notes->src = zalloc(sizeof(*notes->src) + symbol_conf.nr_events * sizeof_sym_hist); |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 659 | if (notes->src == NULL) |
| 660 | return -1; |
| 661 | notes->src->sizeof_sym_hist = sizeof_sym_hist; |
Arnaldo Carvalho de Melo | d04b35f | 2011-11-11 22:17:32 -0200 | [diff] [blame] | 662 | notes->src->nr_histograms = symbol_conf.nr_events; |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 663 | INIT_LIST_HEAD(¬es->src->source); |
| 664 | return 0; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 665 | } |
| 666 | |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 667 | /* The cycles histogram is lazily allocated. */ |
| 668 | static int symbol__alloc_hist_cycles(struct symbol *sym) |
| 669 | { |
| 670 | struct annotation *notes = symbol__annotation(sym); |
| 671 | const size_t size = symbol__size(sym); |
| 672 | |
| 673 | notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist)); |
| 674 | if (notes->src->cycles_hist == NULL) |
| 675 | return -1; |
| 676 | return 0; |
| 677 | } |
| 678 | |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 679 | void symbol__annotate_zero_histograms(struct symbol *sym) |
| 680 | { |
| 681 | struct annotation *notes = symbol__annotation(sym); |
| 682 | |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 683 | pthread_mutex_lock(¬es->lock); |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 684 | if (notes->src != NULL) { |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 685 | memset(notes->src->histograms, 0, |
| 686 | notes->src->nr_histograms * notes->src->sizeof_sym_hist); |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 687 | if (notes->src->cycles_hist) |
| 688 | memset(notes->src->cycles_hist, 0, |
| 689 | symbol__size(sym) * sizeof(struct cyc_hist)); |
| 690 | } |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 691 | pthread_mutex_unlock(¬es->lock); |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 692 | } |
| 693 | |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 694 | static int __symbol__account_cycles(struct annotation *notes, |
| 695 | u64 start, |
| 696 | unsigned offset, unsigned cycles, |
| 697 | unsigned have_start) |
| 698 | { |
| 699 | struct cyc_hist *ch; |
| 700 | |
| 701 | ch = notes->src->cycles_hist; |
| 702 | /* |
| 703 | * For now we can only account one basic block per |
| 704 | * final jump. But multiple could be overlapping. |
| 705 | * Always account the longest one. So when |
| 706 | * a shorter one has been already seen throw it away. |
| 707 | * |
| 708 | * We separately always account the full cycles. |
| 709 | */ |
| 710 | ch[offset].num_aggr++; |
| 711 | ch[offset].cycles_aggr += cycles; |
| 712 | |
| 713 | if (!have_start && ch[offset].have_start) |
| 714 | return 0; |
| 715 | if (ch[offset].num) { |
| 716 | if (have_start && (!ch[offset].have_start || |
| 717 | ch[offset].start > start)) { |
| 718 | ch[offset].have_start = 0; |
| 719 | ch[offset].cycles = 0; |
| 720 | ch[offset].num = 0; |
| 721 | if (ch[offset].reset < 0xffff) |
| 722 | ch[offset].reset++; |
| 723 | } else if (have_start && |
| 724 | ch[offset].start < start) |
| 725 | return 0; |
| 726 | } |
| 727 | ch[offset].have_start = have_start; |
| 728 | ch[offset].start = start; |
| 729 | ch[offset].cycles += cycles; |
| 730 | ch[offset].num++; |
| 731 | return 0; |
| 732 | } |
| 733 | |
Arnaldo Carvalho de Melo | b66d8c0 | 2013-12-18 15:37:41 -0300 | [diff] [blame] | 734 | static int __symbol__inc_addr_samples(struct symbol *sym, struct map *map, |
Taeung Song | bab89f6 | 2017-07-20 16:28:53 -0300 | [diff] [blame] | 735 | struct annotation *notes, int evidx, u64 addr, |
Taeung Song | 461c17f | 2017-07-20 17:18:05 -0300 | [diff] [blame] | 736 | struct perf_sample *sample) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 737 | { |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 738 | unsigned offset; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 739 | struct sym_hist *h; |
| 740 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 741 | pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, map->unmap_ip(map, addr)); |
| 742 | |
Ravi Bangoria | edee44b | 2016-11-22 14:10:50 +0530 | [diff] [blame] | 743 | if ((addr < sym->start || addr >= sym->end) && |
| 744 | (addr != sym->end || sym->start != sym->end)) { |
Arnaldo Carvalho de Melo | e3d006c | 2015-10-21 15:45:13 -0300 | [diff] [blame] | 745 | pr_debug("%s(%d): ERANGE! sym->name=%s, start=%#" PRIx64 ", addr=%#" PRIx64 ", end=%#" PRIx64 "\n", |
| 746 | __func__, __LINE__, sym->name, sym->start, addr, sym->end); |
Arnaldo Carvalho de Melo | 31d68e7 | 2012-03-27 12:55:57 -0300 | [diff] [blame] | 747 | return -ERANGE; |
Arnaldo Carvalho de Melo | e3d006c | 2015-10-21 15:45:13 -0300 | [diff] [blame] | 748 | } |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 749 | |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 750 | offset = addr - sym->start; |
| 751 | h = annotation__histogram(notes, evidx); |
Taeung Song | 8158683d | 2017-07-20 06:36:51 +0900 | [diff] [blame] | 752 | h->nr_samples++; |
Taeung Song | 896bccd | 2017-07-20 06:36:45 +0900 | [diff] [blame] | 753 | h->addr[offset].nr_samples++; |
Taeung Song | 461c17f | 2017-07-20 17:18:05 -0300 | [diff] [blame] | 754 | h->period += sample->period; |
| 755 | h->addr[offset].period += sample->period; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 756 | |
| 757 | pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64 |
Taeung Song | 461c17f | 2017-07-20 17:18:05 -0300 | [diff] [blame] | 758 | ", evidx=%d] => nr_samples: %" PRIu64 ", period: %" PRIu64 "\n", |
| 759 | sym->start, sym->name, addr, addr - sym->start, evidx, |
| 760 | h->addr[offset].nr_samples, h->addr[offset].period); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 761 | return 0; |
| 762 | } |
| 763 | |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 764 | static struct annotation *symbol__get_annotation(struct symbol *sym, bool cycles) |
Andi Kleen | 83be34a | 2015-05-27 10:51:46 -0700 | [diff] [blame] | 765 | { |
| 766 | struct annotation *notes = symbol__annotation(sym); |
| 767 | |
| 768 | if (notes->src == NULL) { |
| 769 | if (symbol__alloc_hist(sym) < 0) |
| 770 | return NULL; |
| 771 | } |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 772 | if (!notes->src->cycles_hist && cycles) { |
| 773 | if (symbol__alloc_hist_cycles(sym) < 0) |
| 774 | return NULL; |
| 775 | } |
Andi Kleen | 83be34a | 2015-05-27 10:51:46 -0700 | [diff] [blame] | 776 | return notes; |
| 777 | } |
| 778 | |
Arnaldo Carvalho de Melo | 44e8303 | 2013-12-18 17:12:24 -0300 | [diff] [blame] | 779 | static int symbol__inc_addr_samples(struct symbol *sym, struct map *map, |
Taeung Song | bab89f6 | 2017-07-20 16:28:53 -0300 | [diff] [blame] | 780 | int evidx, u64 addr, |
| 781 | struct perf_sample *sample) |
Arnaldo Carvalho de Melo | b66d8c0 | 2013-12-18 15:37:41 -0300 | [diff] [blame] | 782 | { |
| 783 | struct annotation *notes; |
| 784 | |
Namhyung Kim | 48c65bd | 2014-02-20 10:32:53 +0900 | [diff] [blame] | 785 | if (sym == NULL) |
Arnaldo Carvalho de Melo | b66d8c0 | 2013-12-18 15:37:41 -0300 | [diff] [blame] | 786 | return 0; |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 787 | notes = symbol__get_annotation(sym, false); |
Andi Kleen | 83be34a | 2015-05-27 10:51:46 -0700 | [diff] [blame] | 788 | if (notes == NULL) |
| 789 | return -ENOMEM; |
Taeung Song | bab89f6 | 2017-07-20 16:28:53 -0300 | [diff] [blame] | 790 | return __symbol__inc_addr_samples(sym, map, notes, evidx, addr, sample); |
Arnaldo Carvalho de Melo | b66d8c0 | 2013-12-18 15:37:41 -0300 | [diff] [blame] | 791 | } |
| 792 | |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 793 | static int symbol__account_cycles(u64 addr, u64 start, |
| 794 | struct symbol *sym, unsigned cycles) |
| 795 | { |
| 796 | struct annotation *notes; |
| 797 | unsigned offset; |
| 798 | |
| 799 | if (sym == NULL) |
| 800 | return 0; |
| 801 | notes = symbol__get_annotation(sym, true); |
| 802 | if (notes == NULL) |
| 803 | return -ENOMEM; |
| 804 | if (addr < sym->start || addr >= sym->end) |
| 805 | return -ERANGE; |
| 806 | |
| 807 | if (start) { |
| 808 | if (start < sym->start || start >= sym->end) |
| 809 | return -ERANGE; |
| 810 | if (start >= addr) |
| 811 | start = 0; |
| 812 | } |
| 813 | offset = addr - sym->start; |
| 814 | return __symbol__account_cycles(notes, |
| 815 | start ? start - sym->start : 0, |
| 816 | offset, cycles, |
| 817 | !!start); |
| 818 | } |
| 819 | |
| 820 | int addr_map_symbol__account_cycles(struct addr_map_symbol *ams, |
| 821 | struct addr_map_symbol *start, |
| 822 | unsigned cycles) |
| 823 | { |
Adrian Hunter | 3d7245b | 2015-08-14 10:11:34 +0300 | [diff] [blame] | 824 | u64 saddr = 0; |
Andi Kleen | d495763 | 2015-07-18 08:24:48 -0700 | [diff] [blame] | 825 | int err; |
| 826 | |
| 827 | if (!cycles) |
| 828 | return 0; |
| 829 | |
| 830 | /* |
| 831 | * Only set start when IPC can be computed. We can only |
| 832 | * compute it when the basic block is completely in a single |
| 833 | * function. |
| 834 | * Special case the case when the jump is elsewhere, but |
| 835 | * it starts on the function start. |
| 836 | */ |
| 837 | if (start && |
| 838 | (start->sym == ams->sym || |
| 839 | (ams->sym && |
| 840 | start->addr == ams->sym->start + ams->map->start))) |
| 841 | saddr = start->al_addr; |
| 842 | if (saddr == 0) |
Adrian Hunter | 3d7245b | 2015-08-14 10:11:34 +0300 | [diff] [blame] | 843 | 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] | 844 | ams->addr, |
| 845 | start ? start->addr : 0, |
| 846 | ams->sym ? ams->sym->start + ams->map->start : 0, |
| 847 | saddr); |
| 848 | err = symbol__account_cycles(ams->al_addr, saddr, ams->sym, cycles); |
| 849 | if (err) |
| 850 | pr_debug2("account_cycles failed %d\n", err); |
| 851 | return err; |
| 852 | } |
| 853 | |
Arnaldo Carvalho de Melo | f56c083 | 2018-03-15 11:46:23 -0300 | [diff] [blame] | 854 | static unsigned annotation__count_insn(struct annotation *notes, u64 start, u64 end) |
| 855 | { |
| 856 | unsigned n_insn = 0; |
| 857 | u64 offset; |
| 858 | |
| 859 | for (offset = start; offset <= end; offset++) { |
| 860 | if (notes->offsets[offset]) |
| 861 | n_insn++; |
| 862 | } |
| 863 | return n_insn; |
| 864 | } |
| 865 | |
| 866 | static void annotation__count_and_fill(struct annotation *notes, u64 start, u64 end, struct cyc_hist *ch) |
| 867 | { |
| 868 | unsigned n_insn; |
| 869 | u64 offset; |
| 870 | |
| 871 | n_insn = annotation__count_insn(notes, start, end); |
| 872 | if (n_insn && ch->num && ch->cycles) { |
| 873 | float ipc = n_insn / ((double)ch->cycles / (double)ch->num); |
| 874 | |
| 875 | /* Hide data when there are too many overlaps. */ |
| 876 | if (ch->reset >= 0x7fff || ch->reset >= ch->num / 2) |
| 877 | return; |
| 878 | |
| 879 | for (offset = start; offset <= end; offset++) { |
| 880 | struct annotation_line *al = notes->offsets[offset]; |
| 881 | |
| 882 | if (al) |
| 883 | al->ipc = ipc; |
| 884 | } |
| 885 | } |
| 886 | } |
| 887 | |
| 888 | void annotation__compute_ipc(struct annotation *notes, size_t size) |
| 889 | { |
| 890 | u64 offset; |
| 891 | |
| 892 | if (!notes->src || !notes->src->cycles_hist) |
| 893 | return; |
| 894 | |
| 895 | pthread_mutex_lock(¬es->lock); |
| 896 | for (offset = 0; offset < size; ++offset) { |
| 897 | struct cyc_hist *ch; |
| 898 | |
| 899 | ch = ¬es->src->cycles_hist[offset]; |
| 900 | if (ch && ch->cycles) { |
| 901 | struct annotation_line *al; |
| 902 | |
| 903 | if (ch->have_start) |
| 904 | annotation__count_and_fill(notes, ch->start, offset, ch); |
| 905 | al = notes->offsets[offset]; |
| 906 | if (al && ch->num_aggr) |
| 907 | al->cycles = ch->cycles_aggr / ch->num_aggr; |
| 908 | notes->have_cycles = true; |
| 909 | } |
| 910 | } |
| 911 | pthread_mutex_unlock(¬es->lock); |
| 912 | } |
| 913 | |
Taeung Song | bab89f6 | 2017-07-20 16:28:53 -0300 | [diff] [blame] | 914 | int addr_map_symbol__inc_samples(struct addr_map_symbol *ams, struct perf_sample *sample, |
| 915 | int evidx) |
Arnaldo Carvalho de Melo | 0f4e7a2 | 2013-12-18 16:48:29 -0300 | [diff] [blame] | 916 | { |
Taeung Song | bab89f6 | 2017-07-20 16:28:53 -0300 | [diff] [blame] | 917 | return symbol__inc_addr_samples(ams->sym, ams->map, evidx, ams->al_addr, sample); |
Arnaldo Carvalho de Melo | 0f4e7a2 | 2013-12-18 16:48:29 -0300 | [diff] [blame] | 918 | } |
| 919 | |
Taeung Song | bab89f6 | 2017-07-20 16:28:53 -0300 | [diff] [blame] | 920 | int hist_entry__inc_addr_samples(struct hist_entry *he, struct perf_sample *sample, |
| 921 | int evidx, u64 ip) |
Arnaldo Carvalho de Melo | f626adf | 2013-12-18 17:10:15 -0300 | [diff] [blame] | 922 | { |
Taeung Song | bab89f6 | 2017-07-20 16:28:53 -0300 | [diff] [blame] | 923 | return symbol__inc_addr_samples(he->ms.sym, he->ms.map, evidx, ip, sample); |
Arnaldo Carvalho de Melo | f626adf | 2013-12-18 17:10:15 -0300 | [diff] [blame] | 924 | } |
| 925 | |
Arnaldo Carvalho de Melo | 786c1b5 | 2016-11-16 15:39:50 -0300 | [diff] [blame] | 926 | static void disasm_line__init_ins(struct disasm_line *dl, struct arch *arch, struct map *map) |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 927 | { |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 928 | dl->ins.ops = ins__find(arch, dl->ins.name); |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 929 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 930 | if (!dl->ins.ops) |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 931 | return; |
| 932 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 933 | if (dl->ins.ops->parse && dl->ins.ops->parse(arch, &dl->ops, map) < 0) |
| 934 | dl->ins.ops = NULL; |
Arnaldo Carvalho de Melo | 4f9d032 | 2012-04-18 13:58:34 -0300 | [diff] [blame] | 935 | } |
| 936 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 937 | 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] | 938 | { |
Taeung Song | 4597cf0 | 2017-04-08 09:52:24 +0900 | [diff] [blame] | 939 | char tmp, *name = ltrim(line); |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 940 | |
| 941 | if (name[0] == '\0') |
| 942 | return -1; |
| 943 | |
| 944 | *rawp = name + 1; |
| 945 | |
| 946 | while ((*rawp)[0] != '\0' && !isspace((*rawp)[0])) |
| 947 | ++*rawp; |
| 948 | |
| 949 | tmp = (*rawp)[0]; |
| 950 | (*rawp)[0] = '\0'; |
| 951 | *namep = strdup(name); |
| 952 | |
| 953 | if (*namep == NULL) |
| 954 | goto out_free_name; |
| 955 | |
| 956 | (*rawp)[0] = tmp; |
Taeung Song | 4597cf0 | 2017-04-08 09:52:24 +0900 | [diff] [blame] | 957 | *rawp = ltrim(*rawp); |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 958 | |
| 959 | return 0; |
| 960 | |
| 961 | out_free_name: |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 962 | free((void *)namep); |
| 963 | *namep = NULL; |
Arnaldo Carvalho de Melo | 7a997fe | 2012-05-12 13:15:34 -0300 | [diff] [blame] | 964 | return -1; |
| 965 | } |
| 966 | |
Jiri Olsa | ea07c5a | 2017-10-11 17:01:29 +0200 | [diff] [blame] | 967 | struct annotate_args { |
| 968 | size_t privsize; |
Jiri Olsa | 24fe7b8 | 2017-10-11 17:01:30 +0200 | [diff] [blame] | 969 | struct arch *arch; |
Jiri Olsa | 1a04db7 | 2017-10-11 17:01:31 +0200 | [diff] [blame] | 970 | struct map *map; |
Jiri Olsa | d03a686 | 2017-10-11 17:01:33 +0200 | [diff] [blame] | 971 | struct perf_evsel *evsel; |
Jiri Olsa | 4748834 | 2017-10-11 17:01:32 +0200 | [diff] [blame] | 972 | s64 offset; |
| 973 | char *line; |
| 974 | int line_nr; |
Jiri Olsa | ea07c5a | 2017-10-11 17:01:29 +0200 | [diff] [blame] | 975 | }; |
| 976 | |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 977 | static void annotation_line__delete(struct annotation_line *al) |
| 978 | { |
| 979 | void *ptr = (void *) al - al->privsize; |
| 980 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 981 | free_srcline(al->path); |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 982 | zfree(&al->line); |
| 983 | free(ptr); |
| 984 | } |
| 985 | |
| 986 | /* |
| 987 | * Allocating the annotation line data with following |
| 988 | * structure: |
| 989 | * |
| 990 | * -------------------------------------- |
| 991 | * private space | struct annotation_line |
| 992 | * -------------------------------------- |
| 993 | * |
| 994 | * Size of the private space is stored in 'struct annotation_line'. |
| 995 | * |
| 996 | */ |
| 997 | static struct annotation_line * |
| 998 | annotation_line__new(struct annotate_args *args, size_t privsize) |
| 999 | { |
| 1000 | struct annotation_line *al; |
Jiri Olsa | 7e30455 | 2017-10-11 17:01:39 +0200 | [diff] [blame] | 1001 | struct perf_evsel *evsel = args->evsel; |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 1002 | size_t size = privsize + sizeof(*al); |
Jiri Olsa | 7e30455 | 2017-10-11 17:01:39 +0200 | [diff] [blame] | 1003 | int nr = 1; |
| 1004 | |
| 1005 | if (perf_evsel__is_group_event(evsel)) |
| 1006 | nr = evsel->nr_members; |
| 1007 | |
| 1008 | size += sizeof(al->samples[0]) * nr; |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 1009 | |
| 1010 | al = zalloc(size); |
| 1011 | if (al) { |
| 1012 | al = (void *) al + privsize; |
| 1013 | al->privsize = privsize; |
| 1014 | al->offset = args->offset; |
| 1015 | al->line = strdup(args->line); |
| 1016 | al->line_nr = args->line_nr; |
Jiri Olsa | 7e30455 | 2017-10-11 17:01:39 +0200 | [diff] [blame] | 1017 | al->samples_nr = nr; |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 1018 | } |
| 1019 | |
| 1020 | return al; |
| 1021 | } |
| 1022 | |
| 1023 | /* |
| 1024 | * Allocating the disasm annotation line data with |
| 1025 | * following structure: |
| 1026 | * |
| 1027 | * ------------------------------------------------------------ |
| 1028 | * privsize space | struct disasm_line | struct annotation_line |
| 1029 | * ------------------------------------------------------------ |
| 1030 | * |
| 1031 | * We have 'struct annotation_line' member as last member |
| 1032 | * of 'struct disasm_line' to have an easy access. |
| 1033 | * |
| 1034 | */ |
Jiri Olsa | 4748834 | 2017-10-11 17:01:32 +0200 | [diff] [blame] | 1035 | 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] | 1036 | { |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 1037 | struct disasm_line *dl = NULL; |
| 1038 | struct annotation_line *al; |
| 1039 | size_t privsize = args->privsize + offsetof(struct disasm_line, al); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1040 | |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 1041 | al = annotation_line__new(args, privsize); |
| 1042 | if (al != NULL) { |
| 1043 | dl = disasm_line(al); |
Jiri Olsa | d5490b9 | 2017-10-11 17:01:26 +0200 | [diff] [blame] | 1044 | |
| 1045 | if (dl->al.line == NULL) |
Arnaldo Carvalho de Melo | 058b4cc | 2012-04-02 12:59:01 -0300 | [diff] [blame] | 1046 | goto out_delete; |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 1047 | |
Jiri Olsa | 4748834 | 2017-10-11 17:01:32 +0200 | [diff] [blame] | 1048 | if (args->offset != -1) { |
Jiri Olsa | d5490b9 | 2017-10-11 17:01:26 +0200 | [diff] [blame] | 1049 | if (disasm_line__parse(dl->al.line, &dl->ins.name, &dl->ops.raw) < 0) |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 1050 | goto out_free_line; |
| 1051 | |
Jiri Olsa | 1a04db7 | 2017-10-11 17:01:31 +0200 | [diff] [blame] | 1052 | disasm_line__init_ins(dl, args->arch, args->map); |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 1053 | } |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1054 | } |
| 1055 | |
Arnaldo Carvalho de Melo | 29ed6e7 | 2012-04-15 15:24:39 -0300 | [diff] [blame] | 1056 | return dl; |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 1057 | |
| 1058 | out_free_line: |
Jiri Olsa | d5490b9 | 2017-10-11 17:01:26 +0200 | [diff] [blame] | 1059 | zfree(&dl->al.line); |
Arnaldo Carvalho de Melo | 058b4cc | 2012-04-02 12:59:01 -0300 | [diff] [blame] | 1060 | out_delete: |
Arnaldo Carvalho de Melo | 29ed6e7 | 2012-04-15 15:24:39 -0300 | [diff] [blame] | 1061 | free(dl); |
Arnaldo Carvalho de Melo | 058b4cc | 2012-04-02 12:59:01 -0300 | [diff] [blame] | 1062 | return NULL; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1063 | } |
| 1064 | |
Arnaldo Carvalho de Melo | 29ed6e7 | 2012-04-15 15:24:39 -0300 | [diff] [blame] | 1065 | void disasm_line__free(struct disasm_line *dl) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1066 | { |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 1067 | if (dl->ins.ops && dl->ins.ops->free) |
| 1068 | dl->ins.ops->free(&dl->ops); |
Arnaldo Carvalho de Melo | c46219ac | 2012-05-12 13:26:20 -0300 | [diff] [blame] | 1069 | else |
| 1070 | ins__delete(&dl->ops); |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 1071 | free((void *)dl->ins.name); |
| 1072 | dl->ins.name = NULL; |
Jiri Olsa | c835e19 | 2017-10-11 17:01:37 +0200 | [diff] [blame] | 1073 | annotation_line__delete(&dl->al); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1074 | } |
| 1075 | |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 1076 | int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw) |
| 1077 | { |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 1078 | if (raw || !dl->ins.ops) |
Ravi Bangoria | 648388a | 2017-11-14 08:55:40 +0530 | [diff] [blame] | 1079 | return scnprintf(bf, size, "%-6s %s", dl->ins.name, dl->ops.raw); |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 1080 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 1081 | return ins__scnprintf(&dl->ins, bf, size, &dl->ops); |
Arnaldo Carvalho de Melo | 5417072 | 2012-05-07 18:54:16 -0300 | [diff] [blame] | 1082 | } |
| 1083 | |
Jiri Olsa | 82b9d7f | 2017-10-11 17:01:35 +0200 | [diff] [blame] | 1084 | 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] | 1085 | { |
Jiri Olsa | 82b9d7f | 2017-10-11 17:01:35 +0200 | [diff] [blame] | 1086 | list_add_tail(&al->node, head); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1087 | } |
| 1088 | |
Jiri Olsa | c4c7243 | 2017-10-11 17:01:34 +0200 | [diff] [blame] | 1089 | struct annotation_line * |
| 1090 | 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] | 1091 | { |
Jiri Olsa | c4c7243 | 2017-10-11 17:01:34 +0200 | [diff] [blame] | 1092 | list_for_each_entry_continue(pos, head, node) |
| 1093 | if (pos->offset >= 0) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1094 | return pos; |
| 1095 | |
| 1096 | return NULL; |
| 1097 | } |
| 1098 | |
Peter Zijlstra | 70fbe05 | 2016-09-05 16:08:12 -0300 | [diff] [blame] | 1099 | static const char *annotate__address_color(struct block_range *br) |
| 1100 | { |
| 1101 | double cov = block_range__coverage(br); |
| 1102 | |
| 1103 | if (cov >= 0) { |
| 1104 | /* mark red for >75% coverage */ |
| 1105 | if (cov > 0.75) |
| 1106 | return PERF_COLOR_RED; |
| 1107 | |
| 1108 | /* mark dull for <1% coverage */ |
| 1109 | if (cov < 0.01) |
| 1110 | return PERF_COLOR_NORMAL; |
| 1111 | } |
| 1112 | |
| 1113 | return PERF_COLOR_MAGENTA; |
| 1114 | } |
| 1115 | |
| 1116 | static const char *annotate__asm_color(struct block_range *br) |
| 1117 | { |
| 1118 | double cov = block_range__coverage(br); |
| 1119 | |
| 1120 | if (cov >= 0) { |
| 1121 | /* mark dull for <1% coverage */ |
| 1122 | if (cov < 0.01) |
| 1123 | return PERF_COLOR_NORMAL; |
| 1124 | } |
| 1125 | |
| 1126 | return PERF_COLOR_BLUE; |
| 1127 | } |
| 1128 | |
| 1129 | static void annotate__branch_printf(struct block_range *br, u64 addr) |
| 1130 | { |
| 1131 | bool emit_comment = true; |
| 1132 | |
| 1133 | if (!br) |
| 1134 | return; |
| 1135 | |
| 1136 | #if 1 |
| 1137 | if (br->is_target && br->start == addr) { |
| 1138 | struct block_range *branch = br; |
| 1139 | double p; |
| 1140 | |
| 1141 | /* |
| 1142 | * Find matching branch to our target. |
| 1143 | */ |
| 1144 | while (!branch->is_branch) |
| 1145 | branch = block_range__next(branch); |
| 1146 | |
| 1147 | p = 100 *(double)br->entry / branch->coverage; |
| 1148 | |
| 1149 | if (p > 0.1) { |
| 1150 | if (emit_comment) { |
| 1151 | emit_comment = false; |
| 1152 | printf("\t#"); |
| 1153 | } |
| 1154 | |
| 1155 | /* |
| 1156 | * The percentage of coverage joined at this target in relation |
| 1157 | * to the next branch. |
| 1158 | */ |
| 1159 | printf(" +%.2f%%", p); |
| 1160 | } |
| 1161 | } |
| 1162 | #endif |
| 1163 | if (br->is_branch && br->end == addr) { |
| 1164 | double p = 100*(double)br->taken / br->coverage; |
| 1165 | |
| 1166 | if (p > 0.1) { |
| 1167 | if (emit_comment) { |
| 1168 | emit_comment = false; |
| 1169 | printf("\t#"); |
| 1170 | } |
| 1171 | |
| 1172 | /* |
| 1173 | * The percentage of coverage leaving at this branch, and |
| 1174 | * its prediction ratio. |
| 1175 | */ |
| 1176 | printf(" -%.2f%% (p:%.2f%%)", p, 100*(double)br->pred / br->taken); |
| 1177 | } |
| 1178 | } |
| 1179 | } |
| 1180 | |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1181 | 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] | 1182 | { |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1183 | s64 offset = dl->al.offset; |
| 1184 | const u64 addr = start + offset; |
| 1185 | struct block_range *br; |
| 1186 | |
| 1187 | br = block_range__find(addr); |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1188 | color_fprintf(stdout, annotate__address_color(br), " %*" PRIx64 ":", addr_fmt_width, addr); |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1189 | color_fprintf(stdout, annotate__asm_color(br), "%s", dl->al.line); |
| 1190 | annotate__branch_printf(br, addr); |
| 1191 | return 0; |
| 1192 | } |
| 1193 | |
| 1194 | static int |
| 1195 | annotation_line__print(struct annotation_line *al, struct symbol *sym, u64 start, |
| 1196 | struct perf_evsel *evsel, u64 len, int min_pcnt, int printed, |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1197 | int max_lines, struct annotation_line *queue, int addr_fmt_width) |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1198 | { |
| 1199 | 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] | 1200 | static const char *prev_line; |
| 1201 | static const char *prev_color; |
| 1202 | |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1203 | if (al->offset != -1) { |
Jiri Olsa | f681d59 | 2017-10-11 17:01:42 +0200 | [diff] [blame] | 1204 | double max_percent = 0.0; |
Namhyung Kim | b1dd443 | 2013-03-05 14:53:25 +0900 | [diff] [blame] | 1205 | int i, nr_percent = 1; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1206 | const char *color; |
| 1207 | struct annotation *notes = symbol__annotation(sym); |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 1208 | |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1209 | for (i = 0; i < al->samples_nr; i++) { |
| 1210 | struct annotation_data *sample = &al->samples[i]; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1211 | |
Jiri Olsa | f681d59 | 2017-10-11 17:01:42 +0200 | [diff] [blame] | 1212 | if (sample->percent > max_percent) |
| 1213 | max_percent = sample->percent; |
Namhyung Kim | b1dd443 | 2013-03-05 14:53:25 +0900 | [diff] [blame] | 1214 | } |
| 1215 | |
| 1216 | if (max_percent < min_pcnt) |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 1217 | return -1; |
| 1218 | |
Arnaldo Carvalho de Melo | e3087b8 | 2011-02-08 15:01:39 -0200 | [diff] [blame] | 1219 | if (max_lines && printed >= max_lines) |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 1220 | return 1; |
Arnaldo Carvalho de Melo | d040bd3 | 2011-02-05 15:37:31 -0200 | [diff] [blame] | 1221 | |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 1222 | if (queue != NULL) { |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1223 | list_for_each_entry_from(queue, ¬es->src->source, node) { |
| 1224 | if (queue == al) |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 1225 | break; |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1226 | annotation_line__print(queue, sym, start, evsel, len, |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1227 | 0, 0, 1, NULL, addr_fmt_width); |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 1228 | } |
| 1229 | } |
| 1230 | |
Namhyung Kim | b1dd443 | 2013-03-05 14:53:25 +0900 | [diff] [blame] | 1231 | color = get_percent_color(max_percent); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1232 | |
| 1233 | /* |
| 1234 | * Also color the filename and line if needed, with |
| 1235 | * the same color than the percentage. Don't print it |
| 1236 | * twice for close colored addr with the same filename:line |
| 1237 | */ |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1238 | if (al->path) { |
| 1239 | if (!prev_line || strcmp(prev_line, al->path) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1240 | || color != prev_color) { |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1241 | color_fprintf(stdout, color, " %s", al->path); |
| 1242 | prev_line = al->path; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1243 | prev_color = color; |
| 1244 | } |
| 1245 | } |
| 1246 | |
Namhyung Kim | b1dd443 | 2013-03-05 14:53:25 +0900 | [diff] [blame] | 1247 | for (i = 0; i < nr_percent; i++) { |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1248 | struct annotation_data *sample = &al->samples[i]; |
Jiri Olsa | f681d59 | 2017-10-11 17:01:42 +0200 | [diff] [blame] | 1249 | |
| 1250 | color = get_percent_color(sample->percent); |
Martin Liška | 0c4a5bc | 2015-06-19 16:10:43 -0300 | [diff] [blame] | 1251 | |
| 1252 | if (symbol_conf.show_total_period) |
Arnaldo Carvalho de Melo | ce9ee4a | 2017-07-26 17:16:46 -0300 | [diff] [blame] | 1253 | color_fprintf(stdout, color, " %11" PRIu64, |
Jiri Olsa | f681d59 | 2017-10-11 17:01:42 +0200 | [diff] [blame] | 1254 | sample->he.period); |
Taeung Song | 1ac3937 | 2017-08-18 17:46:48 +0900 | [diff] [blame] | 1255 | else if (symbol_conf.show_nr_samples) |
| 1256 | color_fprintf(stdout, color, " %7" PRIu64, |
Jiri Olsa | f681d59 | 2017-10-11 17:01:42 +0200 | [diff] [blame] | 1257 | sample->he.nr_samples); |
Martin Liška | 0c4a5bc | 2015-06-19 16:10:43 -0300 | [diff] [blame] | 1258 | else |
Jiri Olsa | f681d59 | 2017-10-11 17:01:42 +0200 | [diff] [blame] | 1259 | color_fprintf(stdout, color, " %7.2f", sample->percent); |
Namhyung Kim | b1dd443 | 2013-03-05 14:53:25 +0900 | [diff] [blame] | 1260 | } |
| 1261 | |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1262 | printf(" : "); |
Peter Zijlstra | 70fbe05 | 2016-09-05 16:08:12 -0300 | [diff] [blame] | 1263 | |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1264 | disasm_line__print(dl, start, addr_fmt_width); |
Peter Zijlstra | 70fbe05 | 2016-09-05 16:08:12 -0300 | [diff] [blame] | 1265 | printf("\n"); |
Arnaldo Carvalho de Melo | e3087b8 | 2011-02-08 15:01:39 -0200 | [diff] [blame] | 1266 | } else if (max_lines && printed >= max_lines) |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 1267 | return 1; |
| 1268 | else { |
Arnaldo Carvalho de Melo | ce9ee4a | 2017-07-26 17:16:46 -0300 | [diff] [blame] | 1269 | int width = symbol_conf.show_total_period ? 12 : 8; |
Namhyung Kim | b1dd443 | 2013-03-05 14:53:25 +0900 | [diff] [blame] | 1270 | |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 1271 | if (queue) |
| 1272 | return -1; |
| 1273 | |
Namhyung Kim | 759ff49 | 2013-03-05 14:53:26 +0900 | [diff] [blame] | 1274 | if (perf_evsel__is_group_event(evsel)) |
Namhyung Kim | b1dd443 | 2013-03-05 14:53:25 +0900 | [diff] [blame] | 1275 | width *= evsel->nr_members; |
| 1276 | |
Jiri Olsa | 29971f9 | 2017-10-11 17:01:47 +0200 | [diff] [blame] | 1277 | if (!*al->line) |
Namhyung Kim | b1dd443 | 2013-03-05 14:53:25 +0900 | [diff] [blame] | 1278 | printf(" %*s:\n", width, " "); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1279 | else |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1280 | printf(" %*s: %*s %s\n", width, " ", addr_fmt_width, " ", al->line); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1281 | } |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 1282 | |
| 1283 | return 0; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1284 | } |
| 1285 | |
Namhyung Kim | 3aec150 | 2013-03-05 14:53:22 +0900 | [diff] [blame] | 1286 | /* |
| 1287 | * symbol__parse_objdump_line() parses objdump output (with -d --no-show-raw) |
| 1288 | * which looks like following |
| 1289 | * |
| 1290 | * 0000000000415500 <_init>: |
| 1291 | * 415500: sub $0x8,%rsp |
| 1292 | * 415504: mov 0x2f5ad5(%rip),%rax # 70afe0 <_DYNAMIC+0x2f8> |
| 1293 | * 41550b: test %rax,%rax |
| 1294 | * 41550e: je 415515 <_init+0x15> |
| 1295 | * 415510: callq 416e70 <__gmon_start__@plt> |
| 1296 | * 415515: add $0x8,%rsp |
| 1297 | * 415519: retq |
| 1298 | * |
| 1299 | * it will be parsed and saved into struct disasm_line as |
| 1300 | * <offset> <name> <ops.raw> |
| 1301 | * |
| 1302 | * The offset will be a relative offset from the start of the symbol and -1 |
| 1303 | * means that it's not a disassembly line so should be treated differently. |
| 1304 | * The ops.raw part will be parsed further according to type of the instruction. |
| 1305 | */ |
Jiri Olsa | 1a04db7 | 2017-10-11 17:01:31 +0200 | [diff] [blame] | 1306 | static int symbol__parse_objdump_line(struct symbol *sym, FILE *file, |
Jiri Olsa | ea07c5a | 2017-10-11 17:01:29 +0200 | [diff] [blame] | 1307 | struct annotate_args *args, |
Andi Kleen | e592488 | 2014-11-12 18:05:26 -0800 | [diff] [blame] | 1308 | int *line_nr) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1309 | { |
Jiri Olsa | 1a04db7 | 2017-10-11 17:01:31 +0200 | [diff] [blame] | 1310 | struct map *map = args->map; |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 1311 | struct annotation *notes = symbol__annotation(sym); |
Arnaldo Carvalho de Melo | 29ed6e7 | 2012-04-15 15:24:39 -0300 | [diff] [blame] | 1312 | struct disasm_line *dl; |
Taeung Song | 4597cf0 | 2017-04-08 09:52:24 +0900 | [diff] [blame] | 1313 | char *line = NULL, *parsed_line, *tmp, *tmp2; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1314 | size_t line_len; |
| 1315 | s64 line_ip, offset = -1; |
Andi Kleen | e592488 | 2014-11-12 18:05:26 -0800 | [diff] [blame] | 1316 | regmatch_t match[2]; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1317 | |
| 1318 | if (getline(&line, &line_len, file) < 0) |
| 1319 | return -1; |
| 1320 | |
| 1321 | if (!line) |
| 1322 | return -1; |
| 1323 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1324 | line_ip = -1; |
Taeung Song | 4597cf0 | 2017-04-08 09:52:24 +0900 | [diff] [blame] | 1325 | parsed_line = rtrim(line); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1326 | |
Andi Kleen | e592488 | 2014-11-12 18:05:26 -0800 | [diff] [blame] | 1327 | /* /filename:linenr ? Save line number and ignore. */ |
Taeung Song | 986a5bc | 2017-04-08 09:52:25 +0900 | [diff] [blame] | 1328 | if (regexec(&file_lineno, parsed_line, 2, match, 0) == 0) { |
| 1329 | *line_nr = atoi(parsed_line + match[1].rm_so); |
Andi Kleen | e592488 | 2014-11-12 18:05:26 -0800 | [diff] [blame] | 1330 | return 0; |
| 1331 | } |
| 1332 | |
Taeung Song | 4597cf0 | 2017-04-08 09:52:24 +0900 | [diff] [blame] | 1333 | tmp = ltrim(parsed_line); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1334 | if (*tmp) { |
| 1335 | /* |
| 1336 | * Parse hexa addresses followed by ':' |
| 1337 | */ |
| 1338 | line_ip = strtoull(tmp, &tmp2, 16); |
| 1339 | if (*tmp2 != ':' || tmp == tmp2 || tmp2[1] == '\0') |
| 1340 | line_ip = -1; |
| 1341 | } |
| 1342 | |
| 1343 | if (line_ip != -1) { |
| 1344 | u64 start = map__rip_2objdump(map, sym->start), |
| 1345 | end = map__rip_2objdump(map, sym->end); |
| 1346 | |
| 1347 | offset = line_ip - start; |
Arnaldo Carvalho de Melo | 2c241bd | 2014-10-14 17:19:44 -0300 | [diff] [blame] | 1348 | if ((u64)line_ip < start || (u64)line_ip >= end) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1349 | offset = -1; |
Arnaldo Carvalho de Melo | 058b4cc | 2012-04-02 12:59:01 -0300 | [diff] [blame] | 1350 | else |
| 1351 | parsed_line = tmp2 + 1; |
Namhyung Kim | a31b7cc | 2012-04-11 17:04:59 -0300 | [diff] [blame] | 1352 | } |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1353 | |
Jiri Olsa | 4748834 | 2017-10-11 17:01:32 +0200 | [diff] [blame] | 1354 | args->offset = offset; |
| 1355 | args->line = parsed_line; |
| 1356 | args->line_nr = *line_nr; |
| 1357 | |
| 1358 | dl = disasm_line__new(args); |
Arnaldo Carvalho de Melo | 058b4cc | 2012-04-02 12:59:01 -0300 | [diff] [blame] | 1359 | free(line); |
Andi Kleen | e592488 | 2014-11-12 18:05:26 -0800 | [diff] [blame] | 1360 | (*line_nr)++; |
Arnaldo Carvalho de Melo | 058b4cc | 2012-04-02 12:59:01 -0300 | [diff] [blame] | 1361 | |
Arnaldo Carvalho de Melo | 29ed6e7 | 2012-04-15 15:24:39 -0300 | [diff] [blame] | 1362 | if (dl == NULL) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1363 | return -1; |
Arnaldo Carvalho de Melo | 058b4cc | 2012-04-02 12:59:01 -0300 | [diff] [blame] | 1364 | |
Ravi Bangoria | e216874 | 2016-12-05 21:26:47 +0530 | [diff] [blame] | 1365 | if (!disasm_line__has_offset(dl)) { |
Adrian Hunter | bbb7f84 | 2013-08-07 14:38:54 +0300 | [diff] [blame] | 1366 | dl->ops.target.offset = dl->ops.target.addr - |
| 1367 | map__rip_2objdump(map, sym->start); |
Ravi Bangoria | e216874 | 2016-12-05 21:26:47 +0530 | [diff] [blame] | 1368 | dl->ops.target.offset_avail = true; |
| 1369 | } |
Adrian Hunter | bbb7f84 | 2013-08-07 14:38:54 +0300 | [diff] [blame] | 1370 | |
Arnaldo Carvalho de Melo | 696703a | 2018-03-02 11:59:36 -0300 | [diff] [blame] | 1371 | /* kcore has no symbols, so add the call target symbol */ |
| 1372 | if (dl->ins.ops && ins__is_call(&dl->ins) && !dl->ops.target.sym) { |
Adrian Hunter | 6e427ab | 2013-10-14 13:43:40 +0300 | [diff] [blame] | 1373 | struct addr_map_symbol target = { |
| 1374 | .map = map, |
| 1375 | .addr = dl->ops.target.addr, |
| 1376 | }; |
Adrian Hunter | b178170 | 2013-08-07 14:38:57 +0300 | [diff] [blame] | 1377 | |
Arnaldo Carvalho de Melo | be39db9 | 2016-09-01 19:25:52 -0300 | [diff] [blame] | 1378 | if (!map_groups__find_ams(&target) && |
Adrian Hunter | 6e427ab | 2013-10-14 13:43:40 +0300 | [diff] [blame] | 1379 | target.sym->start == target.al_addr) |
Arnaldo Carvalho de Melo | 696703a | 2018-03-02 11:59:36 -0300 | [diff] [blame] | 1380 | dl->ops.target.sym = target.sym; |
Adrian Hunter | b178170 | 2013-08-07 14:38:57 +0300 | [diff] [blame] | 1381 | } |
| 1382 | |
Jiri Olsa | 82b9d7f | 2017-10-11 17:01:35 +0200 | [diff] [blame] | 1383 | annotation_line__add(&dl->al, ¬es->src->source); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1384 | |
| 1385 | return 0; |
| 1386 | } |
| 1387 | |
Andi Kleen | e592488 | 2014-11-12 18:05:26 -0800 | [diff] [blame] | 1388 | static __attribute__((constructor)) void symbol__init_regexpr(void) |
| 1389 | { |
| 1390 | regcomp(&file_lineno, "^/[^:]+:([0-9]+)", REG_EXTENDED); |
| 1391 | } |
| 1392 | |
Adrian Hunter | 484a5e7 | 2013-08-07 14:38:56 +0300 | [diff] [blame] | 1393 | static void delete_last_nop(struct symbol *sym) |
| 1394 | { |
| 1395 | struct annotation *notes = symbol__annotation(sym); |
| 1396 | struct list_head *list = ¬es->src->source; |
| 1397 | struct disasm_line *dl; |
| 1398 | |
| 1399 | while (!list_empty(list)) { |
Jiri Olsa | a17c4ca | 2017-10-11 17:01:25 +0200 | [diff] [blame] | 1400 | dl = list_entry(list->prev, struct disasm_line, al.node); |
Adrian Hunter | 484a5e7 | 2013-08-07 14:38:56 +0300 | [diff] [blame] | 1401 | |
Arnaldo Carvalho de Melo | 75b4920 | 2016-11-24 11:16:06 -0300 | [diff] [blame] | 1402 | if (dl->ins.ops) { |
| 1403 | if (dl->ins.ops != &nop_ops) |
Adrian Hunter | 484a5e7 | 2013-08-07 14:38:56 +0300 | [diff] [blame] | 1404 | return; |
| 1405 | } else { |
Jiri Olsa | d5490b9 | 2017-10-11 17:01:26 +0200 | [diff] [blame] | 1406 | if (!strstr(dl->al.line, " nop ") && |
| 1407 | !strstr(dl->al.line, " nopl ") && |
| 1408 | !strstr(dl->al.line, " nopw ")) |
Adrian Hunter | 484a5e7 | 2013-08-07 14:38:56 +0300 | [diff] [blame] | 1409 | return; |
| 1410 | } |
| 1411 | |
Jiri Olsa | a17c4ca | 2017-10-11 17:01:25 +0200 | [diff] [blame] | 1412 | list_del(&dl->al.node); |
Adrian Hunter | 484a5e7 | 2013-08-07 14:38:56 +0300 | [diff] [blame] | 1413 | disasm_line__free(dl); |
| 1414 | } |
| 1415 | } |
| 1416 | |
Arnaldo Carvalho de Melo | ee51d85 | 2016-07-29 16:27:18 -0300 | [diff] [blame] | 1417 | int symbol__strerror_disassemble(struct symbol *sym __maybe_unused, struct map *map, |
| 1418 | int errnum, char *buf, size_t buflen) |
| 1419 | { |
| 1420 | struct dso *dso = map->dso; |
| 1421 | |
| 1422 | BUG_ON(buflen == 0); |
| 1423 | |
| 1424 | if (errnum >= 0) { |
| 1425 | str_error_r(errnum, buf, buflen); |
| 1426 | return 0; |
| 1427 | } |
| 1428 | |
| 1429 | switch (errnum) { |
| 1430 | case SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX: { |
| 1431 | char bf[SBUILD_ID_SIZE + 15] = " with build id "; |
| 1432 | char *build_id_msg = NULL; |
| 1433 | |
| 1434 | if (dso->has_build_id) { |
| 1435 | build_id__sprintf(dso->build_id, |
| 1436 | sizeof(dso->build_id), bf + 15); |
| 1437 | build_id_msg = bf; |
| 1438 | } |
| 1439 | scnprintf(buf, buflen, |
| 1440 | "No vmlinux file%s\nwas found in the path.\n\n" |
| 1441 | "Note that annotation using /proc/kcore requires CAP_SYS_RAWIO capability.\n\n" |
| 1442 | "Please use:\n\n" |
| 1443 | " perf buildid-cache -vu vmlinux\n\n" |
| 1444 | "or:\n\n" |
| 1445 | " --vmlinux vmlinux\n", build_id_msg ?: ""); |
| 1446 | } |
| 1447 | break; |
| 1448 | default: |
| 1449 | scnprintf(buf, buflen, "Internal error: Invalid %d error code\n", errnum); |
| 1450 | break; |
| 1451 | } |
| 1452 | |
| 1453 | return 0; |
| 1454 | } |
| 1455 | |
Arnaldo Carvalho de Melo | 05ed3ac | 2016-08-09 15:32:53 -0300 | [diff] [blame] | 1456 | static int dso__disassemble_filename(struct dso *dso, char *filename, size_t filename_size) |
| 1457 | { |
| 1458 | char linkname[PATH_MAX]; |
| 1459 | char *build_id_filename; |
Taeung Song | 6ebd254 | 2017-03-27 16:10:36 +0900 | [diff] [blame] | 1460 | char *build_id_path = NULL; |
Namhyung Kim | 3619ef7 | 2017-06-08 16:31:01 +0900 | [diff] [blame] | 1461 | char *pos; |
Arnaldo Carvalho de Melo | 05ed3ac | 2016-08-09 15:32:53 -0300 | [diff] [blame] | 1462 | |
| 1463 | if (dso->symtab_type == DSO_BINARY_TYPE__KALLSYMS && |
| 1464 | !dso__is_kcore(dso)) |
| 1465 | return SYMBOL_ANNOTATE_ERRNO__NO_VMLINUX; |
| 1466 | |
Krister Johansen | d239699 | 2017-07-05 18:48:13 -0700 | [diff] [blame] | 1467 | 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] | 1468 | if (build_id_filename) { |
| 1469 | __symbol__join_symfs(filename, filename_size, build_id_filename); |
| 1470 | free(build_id_filename); |
| 1471 | } else { |
| 1472 | if (dso->has_build_id) |
| 1473 | return ENOMEM; |
| 1474 | goto fallback; |
| 1475 | } |
| 1476 | |
Taeung Song | 6ebd254 | 2017-03-27 16:10:36 +0900 | [diff] [blame] | 1477 | build_id_path = strdup(filename); |
| 1478 | if (!build_id_path) |
| 1479 | return -1; |
| 1480 | |
Namhyung Kim | 3619ef7 | 2017-06-08 16:31:01 +0900 | [diff] [blame] | 1481 | /* |
| 1482 | * old style build-id cache has name of XX/XXXXXXX.. while |
| 1483 | * new style has XX/XXXXXXX../{elf,kallsyms,vdso}. |
| 1484 | * extract the build-id part of dirname in the new style only. |
| 1485 | */ |
| 1486 | pos = strrchr(build_id_path, '/'); |
| 1487 | if (pos && strlen(pos) < SBUILD_ID_SIZE - 2) |
| 1488 | dirname(build_id_path); |
Taeung Song | 6ebd254 | 2017-03-27 16:10:36 +0900 | [diff] [blame] | 1489 | |
Arnaldo Carvalho de Melo | 05ed3ac | 2016-08-09 15:32:53 -0300 | [diff] [blame] | 1490 | if (dso__is_kcore(dso) || |
Taeung Song | 6ebd254 | 2017-03-27 16:10:36 +0900 | [diff] [blame] | 1491 | readlink(build_id_path, linkname, sizeof(linkname)) < 0 || |
Arnaldo Carvalho de Melo | 05ed3ac | 2016-08-09 15:32:53 -0300 | [diff] [blame] | 1492 | strstr(linkname, DSO__NAME_KALLSYMS) || |
| 1493 | access(filename, R_OK)) { |
| 1494 | fallback: |
| 1495 | /* |
| 1496 | * If we don't have build-ids or the build-id file isn't in the |
| 1497 | * cache, or is just a kallsyms file, well, lets hope that this |
| 1498 | * DSO is the same as when 'perf record' ran. |
| 1499 | */ |
| 1500 | __symbol__join_symfs(filename, filename_size, dso->long_name); |
| 1501 | } |
| 1502 | |
Taeung Song | 6ebd254 | 2017-03-27 16:10:36 +0900 | [diff] [blame] | 1503 | free(build_id_path); |
Arnaldo Carvalho de Melo | 05ed3ac | 2016-08-09 15:32:53 -0300 | [diff] [blame] | 1504 | return 0; |
| 1505 | } |
| 1506 | |
Jiri Olsa | 1a04db7 | 2017-10-11 17:01:31 +0200 | [diff] [blame] | 1507 | 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] | 1508 | { |
Jiri Olsa | 1a04db7 | 2017-10-11 17:01:31 +0200 | [diff] [blame] | 1509 | struct map *map = args->map; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1510 | struct dso *dso = map->dso; |
Arnaldo Carvalho de Melo | 6810158 | 2018-03-14 10:34:11 -0300 | [diff] [blame] | 1511 | char *command; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1512 | FILE *file; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1513 | char symfs_filename[PATH_MAX]; |
Adrian Hunter | afba19d | 2013-10-09 15:01:12 +0300 | [diff] [blame] | 1514 | struct kcore_extract kce; |
| 1515 | bool delete_extract = false; |
Arnaldo Carvalho de Melo | 9955d0b | 2016-06-15 15:48:08 -0300 | [diff] [blame] | 1516 | int stdout_fd[2]; |
Andi Kleen | e592488 | 2014-11-12 18:05:26 -0800 | [diff] [blame] | 1517 | int lineno = 0; |
Andi Kleen | 62ec9b3 | 2015-11-05 19:06:07 -0800 | [diff] [blame] | 1518 | int nline; |
Arnaldo Carvalho de Melo | 9955d0b | 2016-06-15 15:48:08 -0300 | [diff] [blame] | 1519 | pid_t pid; |
Arnaldo Carvalho de Melo | 05ed3ac | 2016-08-09 15:32:53 -0300 | [diff] [blame] | 1520 | 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] | 1521 | |
Arnaldo Carvalho de Melo | 05ed3ac | 2016-08-09 15:32:53 -0300 | [diff] [blame] | 1522 | if (err) |
| 1523 | return err; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1524 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1525 | 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] | 1526 | symfs_filename, sym->name, map->unmap_ip(map, sym->start), |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1527 | map->unmap_ip(map, sym->end)); |
| 1528 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1529 | pr_debug("annotating [%p] %30s : [%p] %30s\n", |
| 1530 | dso, dso->long_name, sym, sym->name); |
| 1531 | |
Adrian Hunter | afba19d | 2013-10-09 15:01:12 +0300 | [diff] [blame] | 1532 | if (dso__is_kcore(dso)) { |
| 1533 | kce.kcore_filename = symfs_filename; |
| 1534 | kce.addr = map__rip_2objdump(map, sym->start); |
| 1535 | kce.offs = sym->start; |
Arnaldo Carvalho de Melo | 2c241bd | 2014-10-14 17:19:44 -0300 | [diff] [blame] | 1536 | kce.len = sym->end - sym->start; |
Adrian Hunter | afba19d | 2013-10-09 15:01:12 +0300 | [diff] [blame] | 1537 | if (!kcore_extract__create(&kce)) { |
| 1538 | delete_extract = true; |
| 1539 | strlcpy(symfs_filename, kce.extract_filename, |
| 1540 | sizeof(symfs_filename)); |
Adrian Hunter | afba19d | 2013-10-09 15:01:12 +0300 | [diff] [blame] | 1541 | } |
Jiri Olsa | 2c7da8c | 2015-03-02 12:56:12 -0500 | [diff] [blame] | 1542 | } else if (dso__needs_decompress(dso)) { |
Namhyung Kim | 3c84fd5 | 2017-06-08 16:31:04 +0900 | [diff] [blame] | 1543 | char tmp[KMOD_DECOMP_LEN]; |
Jiri Olsa | 2c7da8c | 2015-03-02 12:56:12 -0500 | [diff] [blame] | 1544 | |
Namhyung Kim | 3c84fd5 | 2017-06-08 16:31:04 +0900 | [diff] [blame] | 1545 | if (dso__decompress_kmodule_path(dso, symfs_filename, |
| 1546 | tmp, sizeof(tmp)) < 0) |
Arnaldo Carvalho de Melo | 3caee09 | 2016-08-09 15:16:37 -0300 | [diff] [blame] | 1547 | goto out; |
Jiri Olsa | 2c7da8c | 2015-03-02 12:56:12 -0500 | [diff] [blame] | 1548 | |
| 1549 | strcpy(symfs_filename, tmp); |
Adrian Hunter | afba19d | 2013-10-09 15:01:12 +0300 | [diff] [blame] | 1550 | } |
| 1551 | |
Arnaldo Carvalho de Melo | 6810158 | 2018-03-14 10:34:11 -0300 | [diff] [blame] | 1552 | err = asprintf(&command, |
Maciek Borzecki | 7a4ec93 | 2012-09-04 12:32:30 +0200 | [diff] [blame] | 1553 | "%s %s%s --start-address=0x%016" PRIx64 |
Stephane Eranian | 3e6a2a7 | 2011-05-17 17:32:07 +0200 | [diff] [blame] | 1554 | " --stop-address=0x%016" PRIx64 |
Ravi Bangoria | 7b4500b | 2017-05-05 15:44:17 +0530 | [diff] [blame] | 1555 | " -l -d %s %s -C \"%s\" 2>/dev/null|grep -v \"%s:\"|expand", |
Maciek Borzecki | 7a4ec93 | 2012-09-04 12:32:30 +0200 | [diff] [blame] | 1556 | objdump_path ? objdump_path : "objdump", |
Andi Kleen | f69b64f | 2011-09-15 14:31:41 -0700 | [diff] [blame] | 1557 | disassembler_style ? "-M " : "", |
| 1558 | disassembler_style ? disassembler_style : "", |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1559 | map__rip_2objdump(map, sym->start), |
Arnaldo Carvalho de Melo | 2c241bd | 2014-10-14 17:19:44 -0300 | [diff] [blame] | 1560 | map__rip_2objdump(map, sym->end), |
Stephane Eranian | 3e6a2a7 | 2011-05-17 17:32:07 +0200 | [diff] [blame] | 1561 | symbol_conf.annotate_asm_raw ? "" : "--no-show-raw", |
| 1562 | symbol_conf.annotate_src ? "-S" : "", |
Arnaldo Carvalho de Melo | 3caee09 | 2016-08-09 15:16:37 -0300 | [diff] [blame] | 1563 | symfs_filename, symfs_filename); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1564 | |
Arnaldo Carvalho de Melo | 6810158 | 2018-03-14 10:34:11 -0300 | [diff] [blame] | 1565 | if (err < 0) { |
| 1566 | pr_err("Failure allocating memory for the command to run\n"); |
| 1567 | goto out_remove_tmp; |
| 1568 | } |
| 1569 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1570 | pr_debug("Executing: %s\n", command); |
| 1571 | |
Arnaldo Carvalho de Melo | 9955d0b | 2016-06-15 15:48:08 -0300 | [diff] [blame] | 1572 | err = -1; |
| 1573 | if (pipe(stdout_fd) < 0) { |
| 1574 | pr_err("Failure creating the pipe to run %s\n", command); |
Arnaldo Carvalho de Melo | 6810158 | 2018-03-14 10:34:11 -0300 | [diff] [blame] | 1575 | goto out_free_command; |
Arnaldo Carvalho de Melo | 9955d0b | 2016-06-15 15:48:08 -0300 | [diff] [blame] | 1576 | } |
| 1577 | |
| 1578 | pid = fork(); |
| 1579 | if (pid < 0) { |
| 1580 | pr_err("Failure forking to run %s\n", command); |
| 1581 | goto out_close_stdout; |
| 1582 | } |
| 1583 | |
| 1584 | if (pid == 0) { |
| 1585 | close(stdout_fd[0]); |
| 1586 | dup2(stdout_fd[1], 1); |
| 1587 | close(stdout_fd[1]); |
| 1588 | execl("/bin/sh", "sh", "-c", command, NULL); |
| 1589 | perror(command); |
| 1590 | exit(-1); |
| 1591 | } |
| 1592 | |
| 1593 | close(stdout_fd[1]); |
| 1594 | |
| 1595 | file = fdopen(stdout_fd[0], "r"); |
Andi Kleen | 62ec9b3 | 2015-11-05 19:06:07 -0800 | [diff] [blame] | 1596 | if (!file) { |
Arnaldo Carvalho de Melo | 9955d0b | 2016-06-15 15:48:08 -0300 | [diff] [blame] | 1597 | pr_err("Failure creating FILE stream for %s\n", command); |
Andi Kleen | 62ec9b3 | 2015-11-05 19:06:07 -0800 | [diff] [blame] | 1598 | /* |
| 1599 | * If we were using debug info should retry with |
| 1600 | * original binary. |
| 1601 | */ |
Arnaldo Carvalho de Melo | 6810158 | 2018-03-14 10:34:11 -0300 | [diff] [blame] | 1602 | goto out_free_command; |
Andi Kleen | 62ec9b3 | 2015-11-05 19:06:07 -0800 | [diff] [blame] | 1603 | } |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1604 | |
Andi Kleen | 62ec9b3 | 2015-11-05 19:06:07 -0800 | [diff] [blame] | 1605 | nline = 0; |
| 1606 | while (!feof(file)) { |
Arnaldo Carvalho de Melo | ed7b339 | 2017-03-21 16:00:50 -0300 | [diff] [blame] | 1607 | /* |
| 1608 | * The source code line number (lineno) needs to be kept in |
| 1609 | * accross calls to symbol__parse_objdump_line(), so that it |
| 1610 | * can associate it with the instructions till the next one. |
| 1611 | * See disasm_line__new() and struct disasm_line::line_nr. |
| 1612 | */ |
Jiri Olsa | 1a04db7 | 2017-10-11 17:01:31 +0200 | [diff] [blame] | 1613 | if (symbol__parse_objdump_line(sym, file, args, &lineno) < 0) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1614 | break; |
Andi Kleen | 62ec9b3 | 2015-11-05 19:06:07 -0800 | [diff] [blame] | 1615 | nline++; |
| 1616 | } |
| 1617 | |
| 1618 | if (nline == 0) |
| 1619 | pr_err("No output from %s\n", command); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1620 | |
Adrian Hunter | 484a5e7 | 2013-08-07 14:38:56 +0300 | [diff] [blame] | 1621 | /* |
| 1622 | * kallsyms does not have symbol sizes so there may a nop at the end. |
| 1623 | * Remove it. |
| 1624 | */ |
| 1625 | if (dso__is_kcore(dso)) |
| 1626 | delete_last_nop(sym); |
| 1627 | |
Arnaldo Carvalho de Melo | 9955d0b | 2016-06-15 15:48:08 -0300 | [diff] [blame] | 1628 | fclose(file); |
| 1629 | err = 0; |
Arnaldo Carvalho de Melo | 6810158 | 2018-03-14 10:34:11 -0300 | [diff] [blame] | 1630 | out_free_command: |
| 1631 | free(command); |
Jiri Olsa | 2c7da8c | 2015-03-02 12:56:12 -0500 | [diff] [blame] | 1632 | out_remove_tmp: |
Arnaldo Carvalho de Melo | 9955d0b | 2016-06-15 15:48:08 -0300 | [diff] [blame] | 1633 | close(stdout_fd[0]); |
| 1634 | |
Jiri Olsa | 2c7da8c | 2015-03-02 12:56:12 -0500 | [diff] [blame] | 1635 | if (dso__needs_decompress(dso)) |
| 1636 | unlink(symfs_filename); |
Arnaldo Carvalho de Melo | 3caee09 | 2016-08-09 15:16:37 -0300 | [diff] [blame] | 1637 | |
Adrian Hunter | afba19d | 2013-10-09 15:01:12 +0300 | [diff] [blame] | 1638 | if (delete_extract) |
| 1639 | kcore_extract__delete(&kce); |
Arnaldo Carvalho de Melo | c12944f | 2016-08-09 14:56:13 -0300 | [diff] [blame] | 1640 | out: |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1641 | return err; |
Arnaldo Carvalho de Melo | 9955d0b | 2016-06-15 15:48:08 -0300 | [diff] [blame] | 1642 | |
| 1643 | out_close_stdout: |
| 1644 | close(stdout_fd[1]); |
Arnaldo Carvalho de Melo | 6810158 | 2018-03-14 10:34:11 -0300 | [diff] [blame] | 1645 | goto out_free_command; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1646 | } |
| 1647 | |
Jiri Olsa | 073ae60 | 2017-10-11 17:01:40 +0200 | [diff] [blame] | 1648 | static void calc_percent(struct sym_hist *hist, |
| 1649 | struct annotation_data *sample, |
| 1650 | s64 offset, s64 end) |
| 1651 | { |
| 1652 | unsigned int hits = 0; |
| 1653 | u64 period = 0; |
| 1654 | |
| 1655 | while (offset < end) { |
| 1656 | hits += hist->addr[offset].nr_samples; |
| 1657 | period += hist->addr[offset].period; |
| 1658 | ++offset; |
| 1659 | } |
| 1660 | |
| 1661 | if (hist->nr_samples) { |
| 1662 | sample->he.period = period; |
| 1663 | sample->he.nr_samples = hits; |
| 1664 | sample->percent = 100.0 * hits / hist->nr_samples; |
| 1665 | } |
| 1666 | } |
| 1667 | |
Jiri Olsa | 9e4e0a9 | 2017-11-15 12:05:59 +0100 | [diff] [blame] | 1668 | static void annotation__calc_percent(struct annotation *notes, |
| 1669 | struct perf_evsel *evsel, s64 len) |
Jiri Olsa | 073ae60 | 2017-10-11 17:01:40 +0200 | [diff] [blame] | 1670 | { |
| 1671 | struct annotation_line *al, *next; |
| 1672 | |
| 1673 | list_for_each_entry(al, ¬es->src->source, node) { |
| 1674 | s64 end; |
| 1675 | int i; |
| 1676 | |
| 1677 | if (al->offset == -1) |
| 1678 | continue; |
| 1679 | |
| 1680 | next = annotation_line__next(al, ¬es->src->source); |
| 1681 | end = next ? next->offset : len; |
| 1682 | |
| 1683 | for (i = 0; i < al->samples_nr; i++) { |
| 1684 | struct annotation_data *sample; |
| 1685 | struct sym_hist *hist; |
| 1686 | |
| 1687 | hist = annotation__histogram(notes, evsel->idx + i); |
| 1688 | sample = &al->samples[i]; |
| 1689 | |
| 1690 | calc_percent(hist, sample, al->offset, end); |
| 1691 | } |
| 1692 | } |
Jiri Olsa | 073ae60 | 2017-10-11 17:01:40 +0200 | [diff] [blame] | 1693 | } |
| 1694 | |
Jiri Olsa | 9e4e0a9 | 2017-11-15 12:05:59 +0100 | [diff] [blame] | 1695 | void symbol__calc_percent(struct symbol *sym, struct perf_evsel *evsel) |
Jiri Olsa | 073ae60 | 2017-10-11 17:01:40 +0200 | [diff] [blame] | 1696 | { |
| 1697 | struct annotation *notes = symbol__annotation(sym); |
| 1698 | |
Jiri Olsa | 9e4e0a9 | 2017-11-15 12:05:59 +0100 | [diff] [blame] | 1699 | annotation__calc_percent(notes, evsel, symbol__size(sym)); |
Jiri Olsa | 073ae60 | 2017-10-11 17:01:40 +0200 | [diff] [blame] | 1700 | } |
| 1701 | |
Jiri Olsa | c34df25 | 2017-10-11 17:01:28 +0200 | [diff] [blame] | 1702 | int symbol__annotate(struct symbol *sym, struct map *map, |
Jiri Olsa | d03a686 | 2017-10-11 17:01:33 +0200 | [diff] [blame] | 1703 | struct perf_evsel *evsel, size_t privsize, |
Arnaldo Carvalho de Melo | 5449f13 | 2017-12-11 12:46:11 -0300 | [diff] [blame] | 1704 | struct arch **parch) |
Jiri Olsa | c34df25 | 2017-10-11 17:01:28 +0200 | [diff] [blame] | 1705 | { |
Jiri Olsa | ea07c5a | 2017-10-11 17:01:29 +0200 | [diff] [blame] | 1706 | struct annotate_args args = { |
| 1707 | .privsize = privsize, |
Jiri Olsa | 1a04db7 | 2017-10-11 17:01:31 +0200 | [diff] [blame] | 1708 | .map = map, |
Jiri Olsa | d03a686 | 2017-10-11 17:01:33 +0200 | [diff] [blame] | 1709 | .evsel = evsel, |
Jiri Olsa | ea07c5a | 2017-10-11 17:01:29 +0200 | [diff] [blame] | 1710 | }; |
Arnaldo Carvalho de Melo | 5449f13 | 2017-12-11 12:46:11 -0300 | [diff] [blame] | 1711 | struct perf_env *env = perf_evsel__env(evsel); |
Arnaldo Carvalho de Melo | 3285deb | 2017-12-11 12:52:17 -0300 | [diff] [blame] | 1712 | const char *arch_name = perf_env__arch(env); |
Jiri Olsa | c34df25 | 2017-10-11 17:01:28 +0200 | [diff] [blame] | 1713 | struct arch *arch; |
| 1714 | int err; |
| 1715 | |
Jiri Olsa | c34df25 | 2017-10-11 17:01:28 +0200 | [diff] [blame] | 1716 | if (!arch_name) |
| 1717 | return -1; |
| 1718 | |
Jiri Olsa | 24fe7b8 | 2017-10-11 17:01:30 +0200 | [diff] [blame] | 1719 | args.arch = arch = arch__find(arch_name); |
Jiri Olsa | c34df25 | 2017-10-11 17:01:28 +0200 | [diff] [blame] | 1720 | if (arch == NULL) |
| 1721 | return -ENOTSUP; |
| 1722 | |
| 1723 | if (parch) |
| 1724 | *parch = arch; |
| 1725 | |
| 1726 | if (arch->init) { |
Arnaldo Carvalho de Melo | 5449f13 | 2017-12-11 12:46:11 -0300 | [diff] [blame] | 1727 | err = arch->init(arch, env ? env->cpuid : NULL); |
Jiri Olsa | c34df25 | 2017-10-11 17:01:28 +0200 | [diff] [blame] | 1728 | if (err) { |
| 1729 | pr_err("%s: failed to initialize %s arch priv area\n", __func__, arch->name); |
| 1730 | return err; |
| 1731 | } |
| 1732 | } |
| 1733 | |
Jiri Olsa | 05d3f1a | 2017-11-15 12:20:08 +0100 | [diff] [blame] | 1734 | return symbol__disassemble(sym, &args); |
Jiri Olsa | c34df25 | 2017-10-11 17:01:28 +0200 | [diff] [blame] | 1735 | } |
| 1736 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1737 | static void insert_source_line(struct rb_root *root, struct annotation_line *al) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1738 | { |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1739 | struct annotation_line *iter; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1740 | struct rb_node **p = &root->rb_node; |
| 1741 | struct rb_node *parent = NULL; |
Namhyung Kim | 1491c22 | 2013-03-05 14:53:28 +0900 | [diff] [blame] | 1742 | int i, ret; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1743 | |
| 1744 | while (*p != NULL) { |
| 1745 | parent = *p; |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1746 | iter = rb_entry(parent, struct annotation_line, rb_node); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1747 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1748 | ret = strcmp(iter->path, al->path); |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1749 | if (ret == 0) { |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1750 | for (i = 0; i < al->samples_nr; i++) |
| 1751 | iter->samples[i].percent_sum += al->samples[i].percent; |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1752 | return; |
| 1753 | } |
| 1754 | |
| 1755 | if (ret < 0) |
| 1756 | p = &(*p)->rb_left; |
| 1757 | else |
| 1758 | p = &(*p)->rb_right; |
| 1759 | } |
| 1760 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1761 | for (i = 0; i < al->samples_nr; i++) |
| 1762 | al->samples[i].percent_sum = al->samples[i].percent; |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1763 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1764 | rb_link_node(&al->rb_node, parent, p); |
| 1765 | rb_insert_color(&al->rb_node, root); |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1766 | } |
| 1767 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1768 | 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] | 1769 | { |
| 1770 | int i; |
| 1771 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1772 | for (i = 0; i < a->samples_nr; i++) { |
Arnaldo Carvalho de Melo | 276af92f | 2015-06-19 16:36:12 -0300 | [diff] [blame] | 1773 | if (a->samples[i].percent_sum == b->samples[i].percent_sum) |
Namhyung Kim | 1491c22 | 2013-03-05 14:53:28 +0900 | [diff] [blame] | 1774 | continue; |
Arnaldo Carvalho de Melo | 276af92f | 2015-06-19 16:36:12 -0300 | [diff] [blame] | 1775 | return a->samples[i].percent_sum > b->samples[i].percent_sum; |
Namhyung Kim | 1491c22 | 2013-03-05 14:53:28 +0900 | [diff] [blame] | 1776 | } |
| 1777 | |
| 1778 | return 0; |
| 1779 | } |
| 1780 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1781 | 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] | 1782 | { |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1783 | struct annotation_line *iter; |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1784 | struct rb_node **p = &root->rb_node; |
| 1785 | struct rb_node *parent = NULL; |
| 1786 | |
| 1787 | while (*p != NULL) { |
| 1788 | parent = *p; |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1789 | iter = rb_entry(parent, struct annotation_line, rb_node); |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1790 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1791 | if (cmp_source_line(al, iter)) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1792 | p = &(*p)->rb_left; |
| 1793 | else |
| 1794 | p = &(*p)->rb_right; |
| 1795 | } |
| 1796 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1797 | rb_link_node(&al->rb_node, parent, p); |
| 1798 | rb_insert_color(&al->rb_node, root); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1799 | } |
| 1800 | |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1801 | static void resort_source_line(struct rb_root *dest_root, struct rb_root *src_root) |
| 1802 | { |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1803 | struct annotation_line *al; |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1804 | struct rb_node *node; |
| 1805 | |
| 1806 | node = rb_first(src_root); |
| 1807 | while (node) { |
| 1808 | struct rb_node *next; |
| 1809 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1810 | al = rb_entry(node, struct annotation_line, rb_node); |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1811 | next = rb_next(node); |
| 1812 | rb_erase(node, src_root); |
| 1813 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1814 | __resort_source_line(dest_root, al); |
Namhyung Kim | 4112796 | 2012-11-09 14:58:49 +0900 | [diff] [blame] | 1815 | node = next; |
| 1816 | } |
| 1817 | } |
| 1818 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1819 | static void print_summary(struct rb_root *root, const char *filename) |
| 1820 | { |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1821 | struct annotation_line *al; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1822 | struct rb_node *node; |
| 1823 | |
| 1824 | printf("\nSorted summary for file %s\n", filename); |
| 1825 | printf("----------------------------------------------\n\n"); |
| 1826 | |
| 1827 | if (RB_EMPTY_ROOT(root)) { |
| 1828 | printf(" Nothing higher than %1.1f%%\n", MIN_GREEN); |
| 1829 | return; |
| 1830 | } |
| 1831 | |
| 1832 | node = rb_first(root); |
| 1833 | while (node) { |
Namhyung Kim | 1491c22 | 2013-03-05 14:53:28 +0900 | [diff] [blame] | 1834 | double percent, percent_max = 0.0; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1835 | const char *color; |
| 1836 | char *path; |
Namhyung Kim | 1491c22 | 2013-03-05 14:53:28 +0900 | [diff] [blame] | 1837 | int i; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1838 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1839 | al = rb_entry(node, struct annotation_line, rb_node); |
| 1840 | for (i = 0; i < al->samples_nr; i++) { |
| 1841 | percent = al->samples[i].percent_sum; |
Namhyung Kim | 1491c22 | 2013-03-05 14:53:28 +0900 | [diff] [blame] | 1842 | color = get_percent_color(percent); |
| 1843 | color_fprintf(stdout, color, " %7.2f", percent); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1844 | |
Namhyung Kim | 1491c22 | 2013-03-05 14:53:28 +0900 | [diff] [blame] | 1845 | if (percent > percent_max) |
| 1846 | percent_max = percent; |
| 1847 | } |
| 1848 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 1849 | path = al->path; |
Namhyung Kim | 1491c22 | 2013-03-05 14:53:28 +0900 | [diff] [blame] | 1850 | color = get_percent_color(percent_max); |
Namhyung Kim | f048d54 | 2013-09-11 14:09:28 +0900 | [diff] [blame] | 1851 | color_fprintf(stdout, color, " %s\n", path); |
Namhyung Kim | 1491c22 | 2013-03-05 14:53:28 +0900 | [diff] [blame] | 1852 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1853 | node = rb_next(node); |
| 1854 | } |
| 1855 | } |
| 1856 | |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 1857 | static void symbol__annotate_hits(struct symbol *sym, struct perf_evsel *evsel) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1858 | { |
| 1859 | struct annotation *notes = symbol__annotation(sym); |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 1860 | struct sym_hist *h = annotation__histogram(notes, evsel->idx); |
Arnaldo Carvalho de Melo | 1b2e2df | 2012-04-19 10:57:06 -0300 | [diff] [blame] | 1861 | u64 len = symbol__size(sym), offset; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1862 | |
| 1863 | for (offset = 0; offset < len; ++offset) |
Taeung Song | 896bccd | 2017-07-20 06:36:45 +0900 | [diff] [blame] | 1864 | if (h->addr[offset].nr_samples != 0) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1865 | printf("%*" PRIx64 ": %" PRIu64 "\n", BITS_PER_LONG / 2, |
Taeung Song | 896bccd | 2017-07-20 06:36:45 +0900 | [diff] [blame] | 1866 | sym->start + offset, h->addr[offset].nr_samples); |
Taeung Song | 8158683d | 2017-07-20 06:36:51 +0900 | [diff] [blame] | 1867 | 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] | 1868 | } |
| 1869 | |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1870 | static int annotated_source__addr_fmt_width(struct list_head *lines, u64 start) |
| 1871 | { |
| 1872 | char bf[32]; |
| 1873 | struct annotation_line *line; |
| 1874 | |
| 1875 | list_for_each_entry_reverse(line, lines, node) { |
| 1876 | if (line->offset != -1) |
| 1877 | return scnprintf(bf, sizeof(bf), "%" PRIx64, start + line->offset); |
| 1878 | } |
| 1879 | |
| 1880 | return 0; |
| 1881 | } |
| 1882 | |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 1883 | int symbol__annotate_printf(struct symbol *sym, struct map *map, |
| 1884 | struct perf_evsel *evsel, bool full_paths, |
| 1885 | int min_pcnt, int max_lines, int context) |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1886 | { |
| 1887 | struct dso *dso = map->dso; |
David Ahern | bfd14b9 | 2012-09-08 09:06:50 -0600 | [diff] [blame] | 1888 | char *filename; |
| 1889 | const char *d_filename; |
Arnaldo Carvalho de Melo | 9cdbadce | 2014-03-18 11:50:21 -0300 | [diff] [blame] | 1890 | const char *evsel_name = perf_evsel__name(evsel); |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 1891 | struct annotation *notes = symbol__annotation(sym); |
Peter Zijlstra (Intel) | 135cce1 | 2016-06-30 10:29:55 +0200 | [diff] [blame] | 1892 | struct sym_hist *h = annotation__histogram(notes, evsel->idx); |
Jiri Olsa | 8f25b81 | 2017-10-11 17:01:46 +0200 | [diff] [blame] | 1893 | struct annotation_line *pos, *queue = NULL; |
Arnaldo Carvalho de Melo | 058b4cc | 2012-04-02 12:59:01 -0300 | [diff] [blame] | 1894 | u64 start = map__rip_2objdump(map, sym->start); |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1895 | int printed = 2, queue_len = 0, addr_fmt_width; |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 1896 | int more = 0; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1897 | u64 len; |
Arnaldo Carvalho de Melo | ce9ee4a | 2017-07-26 17:16:46 -0300 | [diff] [blame] | 1898 | int width = symbol_conf.show_total_period ? 12 : 8; |
Peter Zijlstra (Intel) | 53dd9b5 | 2016-06-30 09:17:26 -0300 | [diff] [blame] | 1899 | int graph_dotted_len; |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1900 | |
David Ahern | bfd14b9 | 2012-09-08 09:06:50 -0600 | [diff] [blame] | 1901 | filename = strdup(dso->long_name); |
| 1902 | if (!filename) |
| 1903 | return -ENOMEM; |
| 1904 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1905 | if (full_paths) |
| 1906 | d_filename = filename; |
| 1907 | else |
| 1908 | d_filename = basename(filename); |
| 1909 | |
Arnaldo Carvalho de Melo | 1b2e2df | 2012-04-19 10:57:06 -0300 | [diff] [blame] | 1910 | len = symbol__size(sym); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 1911 | |
Namhyung Kim | 759ff49 | 2013-03-05 14:53:26 +0900 | [diff] [blame] | 1912 | if (perf_evsel__is_group_event(evsel)) |
Namhyung Kim | b1dd443 | 2013-03-05 14:53:25 +0900 | [diff] [blame] | 1913 | width *= evsel->nr_members; |
| 1914 | |
Peter Zijlstra (Intel) | 135cce1 | 2016-06-30 10:29:55 +0200 | [diff] [blame] | 1915 | graph_dotted_len = printf(" %-*.*s| Source code & Disassembly of %s for %s (%" PRIu64 " samples)\n", |
Taeung Song | 1ac3937 | 2017-08-18 17:46:48 +0900 | [diff] [blame] | 1916 | width, width, symbol_conf.show_total_period ? "Period" : |
| 1917 | symbol_conf.show_nr_samples ? "Samples" : "Percent", |
Taeung Song | 38d2dcd | 2017-07-25 06:28:42 +0900 | [diff] [blame] | 1918 | d_filename, evsel_name, h->nr_samples); |
Arnaldo Carvalho de Melo | 9cdbadce | 2014-03-18 11:50:21 -0300 | [diff] [blame] | 1919 | |
Peter Zijlstra (Intel) | 53dd9b5 | 2016-06-30 09:17:26 -0300 | [diff] [blame] | 1920 | printf("%-*.*s----\n", |
Arnaldo Carvalho de Melo | 9cdbadce | 2014-03-18 11:50:21 -0300 | [diff] [blame] | 1921 | graph_dotted_len, graph_dotted_len, graph_dotted_line); |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 1922 | |
Namhyung Kim | bb963e1 | 2017-02-17 17:17:38 +0900 | [diff] [blame] | 1923 | if (verbose > 0) |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 1924 | symbol__annotate_hits(sym, evsel); |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 1925 | |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1926 | addr_fmt_width = annotated_source__addr_fmt_width(¬es->src->source, start); |
| 1927 | |
Jiri Olsa | 8f25b81 | 2017-10-11 17:01:46 +0200 | [diff] [blame] | 1928 | list_for_each_entry(pos, ¬es->src->source, node) { |
| 1929 | int err; |
| 1930 | |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 1931 | if (context && queue == NULL) { |
| 1932 | queue = pos; |
| 1933 | queue_len = 0; |
| 1934 | } |
| 1935 | |
Jiri Olsa | 8f25b81 | 2017-10-11 17:01:46 +0200 | [diff] [blame] | 1936 | err = annotation_line__print(pos, sym, start, evsel, len, |
| 1937 | min_pcnt, printed, max_lines, |
Jiri Olsa | f48e7c4 | 2017-10-11 17:01:58 +0200 | [diff] [blame] | 1938 | queue, addr_fmt_width); |
Jiri Olsa | 8f25b81 | 2017-10-11 17:01:46 +0200 | [diff] [blame] | 1939 | |
| 1940 | switch (err) { |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 1941 | case 0: |
| 1942 | ++printed; |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 1943 | if (context) { |
| 1944 | printed += queue_len; |
| 1945 | queue = NULL; |
| 1946 | queue_len = 0; |
| 1947 | } |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 1948 | break; |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 1949 | case 1: |
| 1950 | /* filtered by max_lines */ |
| 1951 | ++more; |
| 1952 | break; |
| 1953 | case -1: |
| 1954 | default: |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 1955 | /* |
| 1956 | * Filtered by min_pcnt or non IP lines when |
| 1957 | * context != 0 |
| 1958 | */ |
| 1959 | if (!context) |
| 1960 | break; |
| 1961 | if (queue_len == context) |
Jiri Olsa | 8f25b81 | 2017-10-11 17:01:46 +0200 | [diff] [blame] | 1962 | queue = list_entry(queue->node.next, typeof(*queue), node); |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 1963 | else |
| 1964 | ++queue_len; |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 1965 | break; |
| 1966 | } |
| 1967 | } |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 1968 | |
David Ahern | bfd14b9 | 2012-09-08 09:06:50 -0600 | [diff] [blame] | 1969 | free(filename); |
| 1970 | |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 1971 | return more; |
| 1972 | } |
| 1973 | |
Arnaldo Carvalho de Melo | befd2a3 | 2018-03-15 23:44:34 -0300 | [diff] [blame] | 1974 | static void FILE__set_percent_color(void *fp __maybe_unused, |
| 1975 | double percent __maybe_unused, |
| 1976 | bool current __maybe_unused) |
| 1977 | { |
| 1978 | } |
| 1979 | |
| 1980 | static int FILE__set_jumps_percent_color(void *fp __maybe_unused, |
| 1981 | int nr __maybe_unused, bool current __maybe_unused) |
| 1982 | { |
| 1983 | return 0; |
| 1984 | } |
| 1985 | |
| 1986 | static int FILE__set_color(void *fp __maybe_unused, int color __maybe_unused) |
| 1987 | { |
| 1988 | return 0; |
| 1989 | } |
| 1990 | |
| 1991 | static void FILE__printf(void *fp, const char *fmt, ...) |
| 1992 | { |
| 1993 | va_list args; |
| 1994 | |
| 1995 | va_start(args, fmt); |
| 1996 | vfprintf(fp, fmt, args); |
| 1997 | va_end(args); |
| 1998 | } |
| 1999 | |
| 2000 | static void FILE__write_graph(void *fp, int graph) |
| 2001 | { |
| 2002 | const char *s; |
| 2003 | switch (graph) { |
| 2004 | |
| 2005 | case DARROW_CHAR: s = "↓"; break; |
| 2006 | case UARROW_CHAR: s = "↑"; break; |
| 2007 | case LARROW_CHAR: s = "←"; break; |
| 2008 | case RARROW_CHAR: s = "→"; break; |
| 2009 | default: s = "?"; break; |
| 2010 | } |
| 2011 | |
| 2012 | fputs(s, fp); |
| 2013 | } |
| 2014 | |
| 2015 | int symbol__annotate_fprintf2(struct symbol *sym, FILE *fp) |
| 2016 | { |
| 2017 | struct annotation *notes = symbol__annotation(sym); |
| 2018 | struct annotation_write_ops ops = { |
| 2019 | .first_line = true, |
| 2020 | .obj = fp, |
| 2021 | .set_color = FILE__set_color, |
| 2022 | .set_percent_color = FILE__set_percent_color, |
| 2023 | .set_jumps_percent_color = FILE__set_jumps_percent_color, |
| 2024 | .printf = FILE__printf, |
| 2025 | .write_graph = FILE__write_graph, |
| 2026 | }; |
| 2027 | struct annotation_line *al; |
| 2028 | |
| 2029 | list_for_each_entry(al, ¬es->src->source, node) { |
| 2030 | if (annotation_line__filter(al, notes)) |
| 2031 | continue; |
| 2032 | annotation_line__write(al, notes, &ops); |
| 2033 | fputc('\n', fp); |
| 2034 | ops.first_line = false; |
| 2035 | } |
| 2036 | |
| 2037 | return 0; |
| 2038 | } |
| 2039 | |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 2040 | void symbol__annotate_zero_histogram(struct symbol *sym, int evidx) |
| 2041 | { |
| 2042 | struct annotation *notes = symbol__annotation(sym); |
| 2043 | struct sym_hist *h = annotation__histogram(notes, evidx); |
| 2044 | |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 2045 | memset(h, 0, notes->src->sizeof_sym_hist); |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 2046 | } |
| 2047 | |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 2048 | void symbol__annotate_decay_histogram(struct symbol *sym, int evidx) |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 2049 | { |
| 2050 | struct annotation *notes = symbol__annotation(sym); |
| 2051 | struct sym_hist *h = annotation__histogram(notes, evidx); |
Arnaldo Carvalho de Melo | 1b2e2df | 2012-04-19 10:57:06 -0300 | [diff] [blame] | 2052 | int len = symbol__size(sym), offset; |
Arnaldo Carvalho de Melo | 3653246 | 2011-02-06 14:54:44 -0200 | [diff] [blame] | 2053 | |
Taeung Song | 8158683d | 2017-07-20 06:36:51 +0900 | [diff] [blame] | 2054 | h->nr_samples = 0; |
Arnaldo Carvalho de Melo | 8b84a56 | 2012-04-05 16:15:59 -0300 | [diff] [blame] | 2055 | for (offset = 0; offset < len; ++offset) { |
Taeung Song | 896bccd | 2017-07-20 06:36:45 +0900 | [diff] [blame] | 2056 | h->addr[offset].nr_samples = h->addr[offset].nr_samples * 7 / 8; |
Taeung Song | 8158683d | 2017-07-20 06:36:51 +0900 | [diff] [blame] | 2057 | h->nr_samples += h->addr[offset].nr_samples; |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 2058 | } |
| 2059 | } |
| 2060 | |
Jiri Olsa | f8eb37b | 2017-10-11 17:01:38 +0200 | [diff] [blame] | 2061 | void annotated_source__purge(struct annotated_source *as) |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 2062 | { |
Jiri Olsa | f8eb37b | 2017-10-11 17:01:38 +0200 | [diff] [blame] | 2063 | struct annotation_line *al, *n; |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 2064 | |
Jiri Olsa | f8eb37b | 2017-10-11 17:01:38 +0200 | [diff] [blame] | 2065 | list_for_each_entry_safe(al, n, &as->source, node) { |
| 2066 | list_del(&al->node); |
| 2067 | disasm_line__free(disasm_line(al)); |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 2068 | } |
| 2069 | } |
| 2070 | |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 2071 | static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp) |
| 2072 | { |
| 2073 | size_t printed; |
| 2074 | |
Jiri Olsa | d5490b9 | 2017-10-11 17:01:26 +0200 | [diff] [blame] | 2075 | if (dl->al.offset == -1) |
| 2076 | return fprintf(fp, "%s\n", dl->al.line); |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 2077 | |
Jiri Olsa | d5490b9 | 2017-10-11 17:01:26 +0200 | [diff] [blame] | 2078 | 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] | 2079 | |
Arnaldo Carvalho de Melo | c7e6ead | 2012-04-20 14:38:46 -0300 | [diff] [blame] | 2080 | if (dl->ops.raw[0] != '\0') { |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 2081 | printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ", |
Arnaldo Carvalho de Melo | c7e6ead | 2012-04-20 14:38:46 -0300 | [diff] [blame] | 2082 | dl->ops.raw); |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 2083 | } |
| 2084 | |
| 2085 | return printed + fprintf(fp, "\n"); |
| 2086 | } |
| 2087 | |
| 2088 | size_t disasm__fprintf(struct list_head *head, FILE *fp) |
| 2089 | { |
| 2090 | struct disasm_line *pos; |
| 2091 | size_t printed = 0; |
| 2092 | |
Jiri Olsa | a17c4ca | 2017-10-11 17:01:25 +0200 | [diff] [blame] | 2093 | list_for_each_entry(pos, head, al.node) |
Arnaldo Carvalho de Melo | 5145418 | 2012-04-15 15:52:18 -0300 | [diff] [blame] | 2094 | printed += disasm_line__fprintf(pos, fp); |
| 2095 | |
| 2096 | return printed; |
| 2097 | } |
| 2098 | |
Arnaldo Carvalho de Melo | 0db45bc | 2018-03-15 15:31:56 -0300 | [diff] [blame] | 2099 | |
| 2100 | bool disasm_line__is_valid_jump(struct disasm_line *dl, struct symbol *sym) |
| 2101 | { |
| 2102 | if (!dl || !dl->ins.ops || !ins__is_jump(&dl->ins) || |
| 2103 | !disasm_line__has_offset(dl) || dl->ops.target.offset < 0 || |
| 2104 | dl->ops.target.offset >= (s64)symbol__size(sym)) |
| 2105 | return false; |
| 2106 | |
| 2107 | return true; |
| 2108 | } |
| 2109 | |
| 2110 | void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym) |
| 2111 | { |
| 2112 | u64 offset, size = symbol__size(sym); |
| 2113 | |
| 2114 | /* PLT symbols contain external offsets */ |
| 2115 | if (strstr(sym->name, "@plt")) |
| 2116 | return; |
| 2117 | |
| 2118 | for (offset = 0; offset < size; ++offset) { |
| 2119 | struct annotation_line *al = notes->offsets[offset]; |
| 2120 | struct disasm_line *dl; |
| 2121 | |
| 2122 | dl = disasm_line(al); |
| 2123 | |
| 2124 | if (!disasm_line__is_valid_jump(dl, sym)) |
| 2125 | continue; |
| 2126 | |
| 2127 | al = notes->offsets[dl->ops.target.offset]; |
| 2128 | |
| 2129 | /* |
| 2130 | * FIXME: Oops, no jump target? Buggy disassembler? Or do we |
| 2131 | * have to adjust to the previous offset? |
| 2132 | */ |
| 2133 | if (al == NULL) |
| 2134 | continue; |
| 2135 | |
| 2136 | if (++al->jump_sources > notes->max_jump_sources) |
| 2137 | notes->max_jump_sources = al->jump_sources; |
| 2138 | |
| 2139 | ++notes->nr_jumps; |
| 2140 | } |
| 2141 | } |
| 2142 | |
Arnaldo Carvalho de Melo | 5bc49f6 | 2018-03-15 15:59:01 -0300 | [diff] [blame] | 2143 | void annotation__set_offsets(struct annotation *notes, s64 size) |
| 2144 | { |
| 2145 | struct annotation_line *al; |
| 2146 | |
| 2147 | notes->max_line_len = 0; |
| 2148 | |
| 2149 | list_for_each_entry(al, ¬es->src->source, node) { |
| 2150 | size_t line_len = strlen(al->line); |
| 2151 | |
| 2152 | if (notes->max_line_len < line_len) |
| 2153 | notes->max_line_len = line_len; |
| 2154 | al->idx = notes->nr_entries++; |
| 2155 | if (al->offset != -1) { |
| 2156 | al->idx_asm = notes->nr_asm_entries++; |
| 2157 | /* |
| 2158 | * FIXME: short term bandaid to cope with assembly |
| 2159 | * routines that comes with labels in the same column |
| 2160 | * as the address in objdump, sigh. |
| 2161 | * |
| 2162 | * E.g. copy_user_generic_unrolled |
| 2163 | */ |
| 2164 | if (al->offset < size) |
| 2165 | notes->offsets[al->offset] = al; |
| 2166 | } else |
| 2167 | al->idx_asm = -1; |
| 2168 | } |
| 2169 | } |
| 2170 | |
Arnaldo Carvalho de Melo | b8b0d81 | 2018-03-15 16:26:29 -0300 | [diff] [blame] | 2171 | static inline int width_jumps(int n) |
| 2172 | { |
| 2173 | if (n >= 100) |
| 2174 | return 5; |
| 2175 | if (n / 10) |
| 2176 | return 2; |
| 2177 | return 1; |
| 2178 | } |
| 2179 | |
| 2180 | void annotation__init_column_widths(struct annotation *notes, struct symbol *sym) |
| 2181 | { |
| 2182 | notes->widths.addr = notes->widths.target = |
| 2183 | notes->widths.min_addr = hex_width(symbol__size(sym)); |
| 2184 | notes->widths.max_addr = hex_width(sym->end); |
| 2185 | notes->widths.jumps = width_jumps(notes->max_jump_sources); |
| 2186 | } |
| 2187 | |
Arnaldo Carvalho de Melo | 7232bf7 | 2018-03-15 16:19:59 -0300 | [diff] [blame] | 2188 | void annotation__update_column_widths(struct annotation *notes) |
| 2189 | { |
| 2190 | if (notes->options->use_offset) |
| 2191 | notes->widths.target = notes->widths.min_addr; |
| 2192 | else |
| 2193 | notes->widths.target = notes->widths.max_addr; |
| 2194 | |
| 2195 | notes->widths.addr = notes->widths.target; |
| 2196 | |
| 2197 | if (notes->options->show_nr_jumps) |
| 2198 | notes->widths.addr += notes->widths.jumps + 1; |
| 2199 | } |
| 2200 | |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 2201 | static void annotation__calc_lines(struct annotation *notes, struct map *map, |
| 2202 | struct rb_root *root, u64 start) |
| 2203 | { |
| 2204 | struct annotation_line *al; |
| 2205 | struct rb_root tmp_root = RB_ROOT; |
| 2206 | |
| 2207 | list_for_each_entry(al, ¬es->src->source, node) { |
| 2208 | double percent_max = 0.0; |
| 2209 | int i; |
| 2210 | |
| 2211 | for (i = 0; i < al->samples_nr; i++) { |
| 2212 | struct annotation_data *sample; |
| 2213 | |
| 2214 | sample = &al->samples[i]; |
| 2215 | |
| 2216 | if (sample->percent > percent_max) |
| 2217 | percent_max = sample->percent; |
| 2218 | } |
| 2219 | |
| 2220 | if (percent_max <= 0.5) |
| 2221 | continue; |
| 2222 | |
Jin Yao | 935f5a9 | 2017-12-30 00:26:52 +0800 | [diff] [blame] | 2223 | al->path = get_srcline(map->dso, start + al->offset, NULL, |
| 2224 | false, true, start + al->offset); |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 2225 | insert_source_line(&tmp_root, al); |
| 2226 | } |
| 2227 | |
| 2228 | resort_source_line(root, &tmp_root); |
| 2229 | } |
| 2230 | |
| 2231 | static void symbol__calc_lines(struct symbol *sym, struct map *map, |
| 2232 | struct rb_root *root) |
| 2233 | { |
| 2234 | struct annotation *notes = symbol__annotation(sym); |
| 2235 | u64 start = map__rip_2objdump(map, sym->start); |
| 2236 | |
| 2237 | annotation__calc_lines(notes, map, root, start); |
| 2238 | } |
| 2239 | |
Arnaldo Carvalho de Melo | befd2a3 | 2018-03-15 23:44:34 -0300 | [diff] [blame] | 2240 | int symbol__tty_annotate2(struct symbol *sym, struct map *map, |
| 2241 | struct perf_evsel *evsel, bool print_lines, |
| 2242 | bool full_paths) |
| 2243 | { |
| 2244 | struct dso *dso = map->dso; |
| 2245 | struct rb_root source_line = RB_ROOT; |
| 2246 | struct annotation_options opts = { |
| 2247 | .use_offset = true, |
| 2248 | }; |
| 2249 | |
| 2250 | if (symbol__annotate2(sym, map, evsel, &opts, NULL) < 0) |
| 2251 | return -1; |
| 2252 | |
| 2253 | if (print_lines) { |
| 2254 | srcline_full_filename = full_paths; |
| 2255 | symbol__calc_lines(sym, map, &source_line); |
| 2256 | print_summary(&source_line, dso->long_name); |
| 2257 | } |
| 2258 | |
| 2259 | symbol__annotate_fprintf2(sym, stdout); |
| 2260 | |
| 2261 | annotated_source__purge(symbol__annotation(sym)->src); |
| 2262 | |
| 2263 | return 0; |
| 2264 | } |
| 2265 | |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 2266 | int symbol__tty_annotate(struct symbol *sym, struct map *map, |
| 2267 | struct perf_evsel *evsel, bool print_lines, |
| 2268 | bool full_paths, int min_pcnt, int max_lines) |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 2269 | { |
| 2270 | struct dso *dso = map->dso; |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 2271 | struct rb_root source_line = RB_ROOT; |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 2272 | |
Arnaldo Carvalho de Melo | 5449f13 | 2017-12-11 12:46:11 -0300 | [diff] [blame] | 2273 | if (symbol__annotate(sym, map, evsel, 0, NULL) < 0) |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 2274 | return -1; |
| 2275 | |
Jiri Olsa | 05d3f1a | 2017-11-15 12:20:08 +0100 | [diff] [blame] | 2276 | symbol__calc_percent(sym, evsel); |
| 2277 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 2278 | if (print_lines) { |
Michael Petlan | 4a4c03c | 2015-11-09 16:33:31 +0100 | [diff] [blame] | 2279 | srcline_full_filename = full_paths; |
Jiri Olsa | 8b4c74d | 2017-10-11 17:01:41 +0200 | [diff] [blame] | 2280 | symbol__calc_lines(sym, map, &source_line); |
Namhyung Kim | 86c98ca | 2013-09-11 14:09:30 +0900 | [diff] [blame] | 2281 | print_summary(&source_line, dso->long_name); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 2282 | } |
| 2283 | |
Namhyung Kim | db8fd07 | 2013-03-05 14:53:21 +0900 | [diff] [blame] | 2284 | symbol__annotate_printf(sym, map, evsel, full_paths, |
Arnaldo Carvalho de Melo | d5e3d74 | 2011-02-08 15:29:25 -0200 | [diff] [blame] | 2285 | min_pcnt, max_lines, 0); |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 2286 | |
Jiri Olsa | f8eb37b | 2017-10-11 17:01:38 +0200 | [diff] [blame] | 2287 | annotated_source__purge(symbol__annotation(sym)->src); |
Arnaldo Carvalho de Melo | f1e2701 | 2011-02-05 18:51:38 -0200 | [diff] [blame] | 2288 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 2289 | return 0; |
| 2290 | } |
Arnaldo Carvalho de Melo | f626adf | 2013-12-18 17:10:15 -0300 | [diff] [blame] | 2291 | |
Namhyung Kim | 48c65bd | 2014-02-20 10:32:53 +0900 | [diff] [blame] | 2292 | bool ui__has_annotation(void) |
| 2293 | { |
Jiri Olsa | 2e0453a | 2016-05-03 13:54:44 +0200 | [diff] [blame] | 2294 | return use_browser == 1 && perf_hpp_list.sym; |
Namhyung Kim | 48c65bd | 2014-02-20 10:32:53 +0900 | [diff] [blame] | 2295 | } |
Arnaldo Carvalho de Melo | ecda45b | 2018-03-15 16:54:11 -0300 | [diff] [blame] | 2296 | |
Arnaldo Carvalho de Melo | 2f025ea | 2018-03-15 17:04:53 -0300 | [diff] [blame] | 2297 | |
| 2298 | double annotation_line__max_percent(struct annotation_line *al, struct annotation *notes) |
| 2299 | { |
| 2300 | double percent_max = 0.0; |
| 2301 | int i; |
| 2302 | |
| 2303 | for (i = 0; i < notes->nr_events; i++) { |
| 2304 | if (al->samples[i].percent > percent_max) |
| 2305 | percent_max = al->samples[i].percent; |
| 2306 | } |
| 2307 | |
| 2308 | return percent_max; |
| 2309 | } |
| 2310 | |
Arnaldo Carvalho de Melo | a1e9b74 | 2018-03-15 19:12:39 -0300 | [diff] [blame] | 2311 | static void disasm_line__write(struct disasm_line *dl, struct annotation *notes, |
| 2312 | void *obj, char *bf, size_t size, |
| 2313 | void (*obj__printf)(void *obj, const char *fmt, ...), |
| 2314 | void (*obj__write_graph)(void *obj, int graph)) |
| 2315 | { |
| 2316 | if (dl->ins.ops && dl->ins.ops->scnprintf) { |
| 2317 | if (ins__is_jump(&dl->ins)) { |
| 2318 | bool fwd = dl->ops.target.offset > dl->al.offset; |
| 2319 | |
| 2320 | obj__write_graph(obj, fwd ? DARROW_CHAR : UARROW_CHAR); |
| 2321 | obj__printf(obj, " "); |
| 2322 | } else if (ins__is_call(&dl->ins)) { |
| 2323 | obj__write_graph(obj, RARROW_CHAR); |
| 2324 | obj__printf(obj, " "); |
| 2325 | } else if (ins__is_ret(&dl->ins)) { |
| 2326 | obj__write_graph(obj, LARROW_CHAR); |
| 2327 | obj__printf(obj, " "); |
| 2328 | } else { |
| 2329 | obj__printf(obj, " "); |
| 2330 | } |
| 2331 | } else { |
| 2332 | obj__printf(obj, " "); |
| 2333 | } |
| 2334 | |
| 2335 | disasm_line__scnprintf(dl, bf, size, !notes->options->use_offset); |
| 2336 | } |
| 2337 | |
Arnaldo Carvalho de Melo | c298304 | 2018-03-15 23:14:51 -0300 | [diff] [blame] | 2338 | static void __annotation_line__write(struct annotation_line *al, struct annotation *notes, |
| 2339 | bool first_line, bool current_entry, bool change_color, int width, |
| 2340 | void *obj, |
| 2341 | int (*obj__set_color)(void *obj, int color), |
| 2342 | void (*obj__set_percent_color)(void *obj, double percent, bool current), |
| 2343 | int (*obj__set_jumps_percent_color)(void *obj, int nr, bool current), |
| 2344 | void (*obj__printf)(void *obj, const char *fmt, ...), |
| 2345 | void (*obj__write_graph)(void *obj, int graph)) |
| 2346 | |
Arnaldo Carvalho de Melo | 2ba5eca | 2018-03-15 17:54:36 -0300 | [diff] [blame] | 2347 | { |
| 2348 | double percent_max = annotation_line__max_percent(al, notes); |
Arnaldo Carvalho de Melo | a1e9b74 | 2018-03-15 19:12:39 -0300 | [diff] [blame] | 2349 | int pcnt_width = annotation__pcnt_width(notes), |
| 2350 | cycles_width = annotation__cycles_width(notes); |
Arnaldo Carvalho de Melo | 2ba5eca | 2018-03-15 17:54:36 -0300 | [diff] [blame] | 2351 | bool show_title = false; |
Arnaldo Carvalho de Melo | a1e9b74 | 2018-03-15 19:12:39 -0300 | [diff] [blame] | 2352 | char bf[256]; |
| 2353 | int printed; |
Arnaldo Carvalho de Melo | 2ba5eca | 2018-03-15 17:54:36 -0300 | [diff] [blame] | 2354 | |
| 2355 | if (first_line && (al->offset == -1 || percent_max == 0.0)) { |
| 2356 | if (notes->have_cycles) { |
| 2357 | if (al->ipc == 0.0 && al->cycles == 0) |
| 2358 | show_title = true; |
| 2359 | } else |
| 2360 | show_title = true; |
| 2361 | } |
| 2362 | |
Arnaldo Carvalho de Melo | 2ba5eca | 2018-03-15 17:54:36 -0300 | [diff] [blame] | 2363 | if (al->offset != -1 && percent_max != 0.0) { |
| 2364 | int i; |
| 2365 | |
| 2366 | for (i = 0; i < notes->nr_events; i++) { |
| 2367 | obj__set_percent_color(obj, al->samples[i].percent, current_entry); |
| 2368 | if (notes->options->show_total_period) { |
| 2369 | obj__printf(obj, "%11" PRIu64 " ", al->samples[i].he.period); |
| 2370 | } else if (notes->options->show_nr_samples) { |
| 2371 | obj__printf(obj, "%6" PRIu64 " ", |
| 2372 | al->samples[i].he.nr_samples); |
| 2373 | } else { |
| 2374 | obj__printf(obj, "%6.2f ", |
| 2375 | al->samples[i].percent); |
| 2376 | } |
| 2377 | } |
| 2378 | } else { |
Arnaldo Carvalho de Melo | 2ba5eca | 2018-03-15 17:54:36 -0300 | [diff] [blame] | 2379 | obj__set_percent_color(obj, 0, current_entry); |
| 2380 | |
| 2381 | if (!show_title) |
Arnaldo Carvalho de Melo | a1e9b74 | 2018-03-15 19:12:39 -0300 | [diff] [blame] | 2382 | obj__printf(obj, "%-*s", pcnt_width, " "); |
Arnaldo Carvalho de Melo | 2ba5eca | 2018-03-15 17:54:36 -0300 | [diff] [blame] | 2383 | else { |
Arnaldo Carvalho de Melo | a1e9b74 | 2018-03-15 19:12:39 -0300 | [diff] [blame] | 2384 | obj__printf(obj, "%-*s", pcnt_width, |
Arnaldo Carvalho de Melo | 2ba5eca | 2018-03-15 17:54:36 -0300 | [diff] [blame] | 2385 | notes->options->show_total_period ? "Period" : |
| 2386 | notes->options->show_nr_samples ? "Samples" : "Percent"); |
| 2387 | } |
| 2388 | } |
| 2389 | |
| 2390 | if (notes->have_cycles) { |
| 2391 | if (al->ipc) |
| 2392 | obj__printf(obj, "%*.2f ", ANNOTATION__IPC_WIDTH - 1, al->ipc); |
| 2393 | else if (!show_title) |
| 2394 | obj__printf(obj, "%*s", ANNOTATION__IPC_WIDTH, " "); |
| 2395 | else |
| 2396 | obj__printf(obj, "%*s ", ANNOTATION__IPC_WIDTH - 1, "IPC"); |
| 2397 | |
| 2398 | if (al->cycles) |
| 2399 | obj__printf(obj, "%*" PRIu64 " ", |
| 2400 | ANNOTATION__CYCLES_WIDTH - 1, al->cycles); |
| 2401 | else if (!show_title) |
| 2402 | obj__printf(obj, "%*s", ANNOTATION__CYCLES_WIDTH, " "); |
| 2403 | else |
| 2404 | obj__printf(obj, "%*s ", ANNOTATION__CYCLES_WIDTH - 1, "Cycle"); |
| 2405 | } |
| 2406 | |
| 2407 | obj__printf(obj, " "); |
Arnaldo Carvalho de Melo | a1e9b74 | 2018-03-15 19:12:39 -0300 | [diff] [blame] | 2408 | |
| 2409 | if (!*al->line) |
| 2410 | obj__printf(obj, "%-*s", width - pcnt_width - cycles_width, " "); |
| 2411 | else if (al->offset == -1) { |
| 2412 | if (al->line_nr && notes->options->show_linenr) |
| 2413 | printed = scnprintf(bf, sizeof(bf), "%-*d ", notes->widths.addr + 1, al->line_nr); |
| 2414 | else |
| 2415 | printed = scnprintf(bf, sizeof(bf), "%-*s ", notes->widths.addr, " "); |
| 2416 | obj__printf(obj, bf); |
| 2417 | obj__printf(obj, "%-*s", width - printed - pcnt_width - cycles_width + 1, al->line); |
| 2418 | } else { |
| 2419 | u64 addr = al->offset; |
| 2420 | int color = -1; |
| 2421 | |
| 2422 | if (!notes->options->use_offset) |
| 2423 | addr += notes->start; |
| 2424 | |
| 2425 | if (!notes->options->use_offset) { |
| 2426 | printed = scnprintf(bf, sizeof(bf), "%" PRIx64 ": ", addr); |
| 2427 | } else { |
| 2428 | if (al->jump_sources) { |
| 2429 | if (notes->options->show_nr_jumps) { |
| 2430 | int prev; |
| 2431 | printed = scnprintf(bf, sizeof(bf), "%*d ", |
| 2432 | notes->widths.jumps, |
| 2433 | al->jump_sources); |
| 2434 | prev = obj__set_jumps_percent_color(obj, al->jump_sources, |
| 2435 | current_entry); |
| 2436 | obj__printf(obj, bf); |
| 2437 | obj__set_color(obj, prev); |
| 2438 | } |
| 2439 | |
| 2440 | printed = scnprintf(bf, sizeof(bf), "%*" PRIx64 ": ", |
| 2441 | notes->widths.target, addr); |
| 2442 | } else { |
| 2443 | printed = scnprintf(bf, sizeof(bf), "%-*s ", |
| 2444 | notes->widths.addr, " "); |
| 2445 | } |
| 2446 | } |
| 2447 | |
| 2448 | if (change_color) |
| 2449 | color = obj__set_color(obj, HE_COLORSET_ADDR); |
| 2450 | obj__printf(obj, bf); |
| 2451 | if (change_color) |
| 2452 | obj__set_color(obj, color); |
| 2453 | |
| 2454 | disasm_line__write(disasm_line(al), notes, obj, bf, sizeof(bf), obj__printf, obj__write_graph); |
| 2455 | |
| 2456 | obj__printf(obj, "%-*s", width - pcnt_width - cycles_width - 3 - printed, bf); |
| 2457 | } |
| 2458 | |
Arnaldo Carvalho de Melo | 2ba5eca | 2018-03-15 17:54:36 -0300 | [diff] [blame] | 2459 | } |
| 2460 | |
Arnaldo Carvalho de Melo | c298304 | 2018-03-15 23:14:51 -0300 | [diff] [blame] | 2461 | void annotation_line__write(struct annotation_line *al, struct annotation *notes, |
| 2462 | struct annotation_write_ops *ops) |
| 2463 | { |
| 2464 | __annotation_line__write(al, notes, ops->first_line, ops->current_entry, |
| 2465 | ops->change_color, ops->width, ops->obj, |
| 2466 | ops->set_color, ops->set_percent_color, |
| 2467 | ops->set_jumps_percent_color, ops->printf, |
| 2468 | ops->write_graph); |
| 2469 | } |
| 2470 | |
Arnaldo Carvalho de Melo | ecda45b | 2018-03-15 16:54:11 -0300 | [diff] [blame] | 2471 | int symbol__annotate2(struct symbol *sym, struct map *map, struct perf_evsel *evsel, |
| 2472 | struct annotation_options *options, struct arch **parch) |
| 2473 | { |
| 2474 | struct annotation *notes = symbol__annotation(sym); |
| 2475 | size_t size = symbol__size(sym); |
| 2476 | int nr_pcnt = 1, err; |
| 2477 | |
| 2478 | notes->offsets = zalloc(size * sizeof(struct annotation_line *)); |
| 2479 | if (notes->offsets == NULL) |
| 2480 | return -1; |
| 2481 | |
| 2482 | if (perf_evsel__is_group_event(evsel)) |
| 2483 | nr_pcnt = evsel->nr_members; |
| 2484 | |
| 2485 | err = symbol__annotate(sym, map, evsel, 0, parch); |
| 2486 | if (err) |
| 2487 | goto out_free_offsets; |
| 2488 | |
| 2489 | notes->options = options; |
| 2490 | |
| 2491 | symbol__calc_percent(sym, evsel); |
| 2492 | |
| 2493 | notes->start = map__rip_2objdump(map, sym->start); |
| 2494 | |
| 2495 | annotation__set_offsets(notes, size); |
| 2496 | annotation__mark_jump_targets(notes, sym); |
| 2497 | annotation__compute_ipc(notes, size); |
| 2498 | annotation__init_column_widths(notes, sym); |
| 2499 | notes->nr_events = nr_pcnt; |
| 2500 | |
| 2501 | annotation__update_column_widths(notes); |
| 2502 | |
| 2503 | return 0; |
| 2504 | |
| 2505 | out_free_offsets: |
| 2506 | zfree(¬es->offsets); |
| 2507 | return -1; |
| 2508 | } |
Arnaldo Carvalho de Melo | 7f0b6fd | 2018-03-16 14:33:38 -0300 | [diff] [blame^] | 2509 | |
| 2510 | #define ANNOTATION__CFG(n) \ |
| 2511 | { .name = #n, .value = &annotation__default_options.n, } |
| 2512 | |
| 2513 | /* |
| 2514 | * Keep the entries sorted, they are bsearch'ed |
| 2515 | */ |
| 2516 | static struct annotation_config { |
| 2517 | const char *name; |
| 2518 | bool *value; |
| 2519 | } annotation__configs[] = { |
| 2520 | ANNOTATION__CFG(hide_src_code), |
| 2521 | ANNOTATION__CFG(jump_arrows), |
| 2522 | ANNOTATION__CFG(show_linenr), |
| 2523 | ANNOTATION__CFG(show_nr_jumps), |
| 2524 | ANNOTATION__CFG(show_nr_samples), |
| 2525 | ANNOTATION__CFG(show_total_period), |
| 2526 | ANNOTATION__CFG(use_offset), |
| 2527 | }; |
| 2528 | |
| 2529 | #undef ANNOTATION__CFG |
| 2530 | |
| 2531 | static int annotation_config__cmp(const void *name, const void *cfgp) |
| 2532 | { |
| 2533 | const struct annotation_config *cfg = cfgp; |
| 2534 | |
| 2535 | return strcmp(name, cfg->name); |
| 2536 | } |
| 2537 | |
| 2538 | static int annotation__config(const char *var, const char *value, |
| 2539 | void *data __maybe_unused) |
| 2540 | { |
| 2541 | struct annotation_config *cfg; |
| 2542 | const char *name; |
| 2543 | |
| 2544 | if (!strstarts(var, "annotate.")) |
| 2545 | return 0; |
| 2546 | |
| 2547 | name = var + 9; |
| 2548 | cfg = bsearch(name, annotation__configs, ARRAY_SIZE(annotation__configs), |
| 2549 | sizeof(struct annotation_config), annotation_config__cmp); |
| 2550 | |
| 2551 | if (cfg == NULL) |
| 2552 | pr_debug("%s variable unknown, ignoring...", var); |
| 2553 | else |
| 2554 | *cfg->value = perf_config_bool(name, value); |
| 2555 | return 0; |
| 2556 | } |
| 2557 | |
| 2558 | void annotation_config__init(void) |
| 2559 | { |
| 2560 | perf_config(annotation__config, NULL); |
| 2561 | |
| 2562 | annotation__default_options.show_total_period = symbol_conf.show_total_period; |
| 2563 | annotation__default_options.show_nr_samples = symbol_conf.show_nr_samples; |
| 2564 | } |