blob: a61f95b580b8daac2361933a3f2f0fc89b0b661b [file] [log] [blame]
bellardb9adb4a2003-04-29 20:41:16 +00001/* General "disassemble this chunk" code. Used for debugging. */
Peter Maydelld38ea872016-01-29 17:50:05 +00002#include "qemu/osdep.h"
Markus Armbruster3979fca2019-04-17 21:18:04 +02003#include "disas/dis-asm.h"
bellardb9adb4a2003-04-29 20:41:16 +00004#include "elf.h"
Markus Armbruster30cc9832019-04-17 21:18:03 +02005#include "qemu/qemu-print.h"
bellardb9adb4a2003-04-29 20:41:16 +00006
bellardc6105c02003-10-27 21:13:58 +00007#include "cpu.h"
Paolo Bonzini76cad712012-10-24 11:12:21 +02008#include "disas/disas.h"
Richard Henderson8ca80762017-09-14 09:41:12 -07009#include "disas/capstone.h"
bellardc6105c02003-10-27 21:13:58 +000010
Blue Swirlf4359b92012-09-08 12:40:00 +000011typedef struct CPUDebug {
12 struct disassemble_info info;
Peter Crosthwaited49190c2015-05-24 14:20:41 -070013 CPUState *cpu;
Blue Swirlf4359b92012-09-08 12:40:00 +000014} CPUDebug;
15
bellardb9adb4a2003-04-29 20:41:16 +000016/* Filled in by elfload.c. Simplistic, but will do for now. */
bellarde80cfcf2004-12-19 23:18:01 +000017struct syminfo *syminfos = NULL;
bellardb9adb4a2003-04-29 20:41:16 +000018
Richard Henderson12b6e9b2020-09-10 14:40:54 -070019/*
20 * Get LENGTH bytes from info's buffer, at host address memaddr.
21 * Transfer them to myaddr.
22 */
23static int host_read_memory(bfd_vma memaddr, bfd_byte *myaddr, int length,
24 struct disassemble_info *info)
bellardaa0aa4f2003-06-09 15:23:31 +000025{
bellardc6105c02003-10-27 21:13:58 +000026 if (memaddr < info->buffer_vma
Richard Henderson12b6e9b2020-09-10 14:40:54 -070027 || memaddr + length > info->buffer_vma + info->buffer_length) {
bellardc6105c02003-10-27 21:13:58 +000028 /* Out of bounds. Use EIO because GDB uses it. */
29 return EIO;
Richard Henderson12b6e9b2020-09-10 14:40:54 -070030 }
bellardc6105c02003-10-27 21:13:58 +000031 memcpy (myaddr, info->buffer + (memaddr - info->buffer_vma), length);
32 return 0;
bellardaa0aa4f2003-06-09 15:23:31 +000033}
34
Richard Henderson12b6e9b2020-09-10 14:40:54 -070035/*
36 * Get LENGTH bytes from info's buffer, at target address memaddr.
37 * Transfer them to myaddr.
38 */
39static int target_read_memory(bfd_vma memaddr, bfd_byte *myaddr, int length,
40 struct disassemble_info *info)
bellardc6105c02003-10-27 21:13:58 +000041{
Blue Swirlf4359b92012-09-08 12:40:00 +000042 CPUDebug *s = container_of(info, CPUDebug, info);
Richard Henderson12b6e9b2020-09-10 14:40:54 -070043 int r = cpu_memory_rw_debug(s->cpu, memaddr, myaddr, length, 0);
Philippe Mathieu-Daudé6766ba52020-05-18 17:53:04 +020044 return r ? EIO : 0;
bellardc6105c02003-10-27 21:13:58 +000045}
bellardc6105c02003-10-27 21:13:58 +000046
Richard Henderson12b6e9b2020-09-10 14:40:54 -070047/*
48 * Print an error message. We can assume that this is in response to
49 * an error return from {host,target}_read_memory.
50 */
51static void perror_memory(int status, bfd_vma memaddr,
52 struct disassemble_info *info)
bellardaa0aa4f2003-06-09 15:23:31 +000053{
Richard Henderson12b6e9b2020-09-10 14:40:54 -070054 if (status != EIO) {
55 /* Can't happen. */
56 info->fprintf_func(info->stream, "Unknown error %d\n", status);
57 } else {
58 /* Address between memaddr and memaddr + len was out of bounds. */
59 info->fprintf_func(info->stream,
60 "Address 0x%" PRIx64 " is out of bounds.\n",
61 memaddr);
62 }
bellardaa0aa4f2003-06-09 15:23:31 +000063}
64
Richard Henderson12b6e9b2020-09-10 14:40:54 -070065/* Print address in hex. */
66static void print_address(bfd_vma addr, struct disassemble_info *info)
bellardaa0aa4f2003-06-09 15:23:31 +000067{
Richard Henderson12b6e9b2020-09-10 14:40:54 -070068 info->fprintf_func(info->stream, "0x%" PRIx64, addr);
bellardaa0aa4f2003-06-09 15:23:31 +000069}
70
Peter Maydell636bd282012-06-25 04:55:55 +000071/* Print address in hex, truncated to the width of a host virtual address. */
Richard Henderson12b6e9b2020-09-10 14:40:54 -070072static void host_print_address(bfd_vma addr, struct disassemble_info *info)
Peter Maydell636bd282012-06-25 04:55:55 +000073{
Richard Henderson12b6e9b2020-09-10 14:40:54 -070074 print_address((uintptr_t)addr, info);
Peter Maydell636bd282012-06-25 04:55:55 +000075}
76
Richard Henderson12b6e9b2020-09-10 14:40:54 -070077/* Stub prevents some fruitless earching in optabs disassemblers. */
78static int symbol_at_address(bfd_vma addr, struct disassemble_info *info)
bellardaa0aa4f2003-06-09 15:23:31 +000079{
Richard Henderson12b6e9b2020-09-10 14:40:54 -070080 return 1;
bellardaa0aa4f2003-06-09 15:23:31 +000081}
82
Richard Hendersonc46ffd52013-08-16 23:29:45 -070083static int print_insn_objdump(bfd_vma pc, disassemble_info *info,
84 const char *prefix)
85{
86 int i, n = info->buffer_length;
87 uint8_t *buf = g_malloc(n);
88
89 info->read_memory_func(pc, buf, n, info);
90
91 for (i = 0; i < n; ++i) {
92 if (i % 32 == 0) {
93 info->fprintf_func(info->stream, "\n%s: ", prefix);
94 }
95 info->fprintf_func(info->stream, "%02x", buf[i]);
96 }
97
98 g_free(buf);
99 return n;
100}
101
102static int print_insn_od_host(bfd_vma pc, disassemble_info *info)
103{
104 return print_insn_objdump(pc, info, "OBJD-H");
105}
106
107static int print_insn_od_target(bfd_vma pc, disassemble_info *info)
108{
109 return print_insn_objdump(pc, info, "OBJD-T");
110}
111
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700112static void initialize_debug(CPUDebug *s)
113{
114 memset(s, 0, sizeof(*s));
115 s->info.arch = bfd_arch_unknown;
116 s->info.cap_arch = -1;
117 s->info.cap_insn_unit = 4;
118 s->info.cap_insn_split = 4;
119 s->info.memory_error_func = perror_memory;
120 s->info.symbol_at_address_func = symbol_at_address;
121}
122
123static void initialize_debug_target(CPUDebug *s, CPUState *cpu)
124{
125 initialize_debug(s);
126
127 s->cpu = cpu;
128 s->info.read_memory_func = target_read_memory;
129 s->info.print_address_func = print_address;
130#ifdef TARGET_WORDS_BIGENDIAN
131 s->info.endian = BFD_ENDIAN_BIG;
132#else
133 s->info.endian = BFD_ENDIAN_LITTLE;
134#endif
135
136 CPUClass *cc = CPU_GET_CLASS(cpu);
137 if (cc->disas_set_info) {
138 cc->disas_set_info(cpu, &s->info);
139 }
140}
141
142static void initialize_debug_host(CPUDebug *s)
143{
144 initialize_debug(s);
145
146 s->info.read_memory_func = host_read_memory;
147 s->info.print_address_func = host_print_address;
148#ifdef HOST_WORDS_BIGENDIAN
149 s->info.endian = BFD_ENDIAN_BIG;
150#else
151 s->info.endian = BFD_ENDIAN_LITTLE;
152#endif
153#if defined(CONFIG_TCG_INTERPRETER)
154 s->info.print_insn = print_insn_tci;
155#elif defined(__i386__)
156 s->info.mach = bfd_mach_i386_i386;
157 s->info.print_insn = print_insn_i386;
158 s->info.cap_arch = CS_ARCH_X86;
159 s->info.cap_mode = CS_MODE_32;
160 s->info.cap_insn_unit = 1;
161 s->info.cap_insn_split = 8;
162#elif defined(__x86_64__)
163 s->info.mach = bfd_mach_x86_64;
164 s->info.print_insn = print_insn_i386;
165 s->info.cap_arch = CS_ARCH_X86;
166 s->info.cap_mode = CS_MODE_64;
167 s->info.cap_insn_unit = 1;
168 s->info.cap_insn_split = 8;
169#elif defined(_ARCH_PPC)
170 s->info.disassembler_options = (char *)"any";
171 s->info.print_insn = print_insn_ppc;
172 s->info.cap_arch = CS_ARCH_PPC;
173# ifdef _ARCH_PPC64
174 s->info.cap_mode = CS_MODE_64;
175# endif
176#elif defined(__riscv) && defined(CONFIG_RISCV_DIS)
177#if defined(_ILP32) || (__riscv_xlen == 32)
178 s->info.print_insn = print_insn_riscv32;
179#elif defined(_LP64)
180 s->info.print_insn = print_insn_riscv64;
181#else
182#error unsupported RISC-V ABI
183#endif
Richard Hendersona4038a02020-09-11 17:59:01 -0700184#elif defined(__aarch64__)
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700185 s->info.cap_arch = CS_ARCH_ARM64;
Richard Hendersona4038a02020-09-11 17:59:01 -0700186# ifdef CONFIG_ARM_A64_DIS
187 s->info.print_insn = print_insn_arm_a64;
188# endif
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700189#elif defined(__alpha__)
190 s->info.print_insn = print_insn_alpha;
191#elif defined(__sparc__)
192 s->info.print_insn = print_insn_sparc;
193 s->info.mach = bfd_mach_sparc_v9b;
194#elif defined(__arm__)
195 /* TCG only generates code for arm mode. */
196 s->info.print_insn = print_insn_arm;
197 s->info.cap_arch = CS_ARCH_ARM;
198#elif defined(__MIPSEB__)
199 s->info.print_insn = print_insn_big_mips;
200#elif defined(__MIPSEL__)
201 s->info.print_insn = print_insn_little_mips;
202#elif defined(__m68k__)
203 s->info.print_insn = print_insn_m68k;
204#elif defined(__s390__)
205 s->info.print_insn = print_insn_s390;
Richard Henderson3d562842020-01-04 07:24:59 +1000206 s->info.cap_arch = CS_ARCH_SYSZ;
207 s->info.cap_insn_unit = 2;
208 s->info.cap_insn_split = 6;
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700209#elif defined(__hppa__)
210 s->info.print_insn = print_insn_hppa;
211#endif
212}
213
Richard Henderson1d484742017-09-14 08:38:35 -0700214/* Disassemble this for me please... (debugging). */
Peter Crosthwaited49190c2015-05-24 14:20:41 -0700215void target_disas(FILE *out, CPUState *cpu, target_ulong code,
Richard Henderson1d484742017-09-14 08:38:35 -0700216 target_ulong size)
bellardb9adb4a2003-04-29 20:41:16 +0000217{
bellardc27004e2005-01-03 23:35:10 +0000218 target_ulong pc;
bellardb9adb4a2003-04-29 20:41:16 +0000219 int count;
Blue Swirlf4359b92012-09-08 12:40:00 +0000220 CPUDebug s;
bellardb9adb4a2003-04-29 20:41:16 +0000221
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700222 initialize_debug_target(&s, cpu);
223 s.info.fprintf_func = fprintf;
224 s.info.stream = out;
Blue Swirlf4359b92012-09-08 12:40:00 +0000225 s.info.buffer_vma = code;
226 s.info.buffer_length = size;
Peter Crosthwaite37b9de42015-06-23 20:57:33 -0700227
Richard Henderson8ca80762017-09-14 09:41:12 -0700228 if (s.info.cap_arch >= 0 && cap_disas_target(&s.info, code, size)) {
229 return;
230 }
231
Peter Crosthwaite2de295c2015-06-23 20:57:32 -0700232 if (s.info.print_insn == NULL) {
233 s.info.print_insn = print_insn_od_target;
Richard Hendersonc46ffd52013-08-16 23:29:45 -0700234 }
bellardc27004e2005-01-03 23:35:10 +0000235
blueswir17e000c22009-02-13 21:44:41 +0000236 for (pc = code; size > 0; pc += count, size -= count) {
bellardfa15e032005-01-31 23:32:31 +0000237 fprintf(out, "0x" TARGET_FMT_lx ": ", pc);
Peter Crosthwaite2de295c2015-06-23 20:57:32 -0700238 count = s.info.print_insn(pc, &s.info);
bellardc27004e2005-01-03 23:35:10 +0000239 fprintf(out, "\n");
240 if (count < 0)
241 break;
malc754d00a2009-04-21 22:26:22 +0000242 if (size < count) {
243 fprintf(out,
244 "Disassembler disagrees with translator over instruction "
245 "decoding\n"
246 "Please report this to qemu-devel@nongnu.org\n");
247 break;
248 }
bellardc27004e2005-01-03 23:35:10 +0000249 }
250}
251
Alex Bennéecbafa232019-05-22 10:27:14 +0100252static int plugin_printf(FILE *stream, const char *fmt, ...)
253{
Richard Hendersonb71f3a62020-09-10 15:13:38 -0700254 /* We abuse the FILE parameter to pass a GString. */
255 GString *s = (GString *)stream;
Alex Bennéecbafa232019-05-22 10:27:14 +0100256 int initial_len = s->len;
Richard Hendersonb71f3a62020-09-10 15:13:38 -0700257 va_list va;
Alex Bennéecbafa232019-05-22 10:27:14 +0100258
259 va_start(va, fmt);
260 g_string_append_vprintf(s, fmt, va);
261 va_end(va);
262
263 return s->len - initial_len;
264}
265
266static void plugin_print_address(bfd_vma addr, struct disassemble_info *info)
267{
268 /* does nothing */
269}
270
271
Alex Bennéecbafa232019-05-22 10:27:14 +0100272/*
273 * We should only be dissembling one instruction at a time here. If
274 * there is left over it usually indicates the front end has read more
275 * bytes than it needed.
276 */
277char *plugin_disas(CPUState *cpu, uint64_t addr, size_t size)
278{
Alex Bennéecbafa232019-05-22 10:27:14 +0100279 CPUDebug s;
Richard Hendersonb71f3a62020-09-10 15:13:38 -0700280 GString *ds = g_string_new(NULL);
Alex Bennéecbafa232019-05-22 10:27:14 +0100281
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700282 initialize_debug_target(&s, cpu);
283 s.info.fprintf_func = plugin_printf;
Richard Hendersonb71f3a62020-09-10 15:13:38 -0700284 s.info.stream = (FILE *)ds; /* abuse this slot */
Alex Bennéecbafa232019-05-22 10:27:14 +0100285 s.info.buffer_vma = addr;
286 s.info.buffer_length = size;
287 s.info.print_address_func = plugin_print_address;
Alex Bennéecbafa232019-05-22 10:27:14 +0100288
289 if (s.info.cap_arch >= 0 && cap_disas_plugin(&s.info, addr, size)) {
Richard Hendersonb71f3a62020-09-10 15:13:38 -0700290 ; /* done */
291 } else if (s.info.print_insn) {
292 s.info.print_insn(addr, &s.info);
293 } else {
294 ; /* cannot disassemble -- return empty string */
Alex Bennéecbafa232019-05-22 10:27:14 +0100295 }
296
Richard Hendersonb71f3a62020-09-10 15:13:38 -0700297 /* Return the buffer, freeing the GString container. */
298 return g_string_free(ds, false);
Alex Bennéecbafa232019-05-22 10:27:14 +0100299}
300
bellardc27004e2005-01-03 23:35:10 +0000301/* Disassemble this for me please... (debugging). */
Richard Hendersonf06176b2020-10-30 20:59:01 -0700302void disas(FILE *out, const void *code, unsigned long size)
bellardc27004e2005-01-03 23:35:10 +0000303{
Stefan Weilb0b0f1c2012-04-12 15:44:35 +0200304 uintptr_t pc;
bellardc27004e2005-01-03 23:35:10 +0000305 int count;
Blue Swirlf4359b92012-09-08 12:40:00 +0000306 CPUDebug s;
bellardc27004e2005-01-03 23:35:10 +0000307
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700308 initialize_debug_host(&s);
309 s.info.fprintf_func = fprintf;
310 s.info.stream = out;
Blue Swirlf4359b92012-09-08 12:40:00 +0000311 s.info.buffer = code;
312 s.info.buffer_vma = (uintptr_t)code;
313 s.info.buffer_length = size;
Richard Henderson8ca80762017-09-14 09:41:12 -0700314
Richard Henderson4c389f62020-09-10 12:15:04 -0700315 if (s.info.cap_arch >= 0 && cap_disas_host(&s.info, code, size)) {
Richard Henderson8ca80762017-09-14 09:41:12 -0700316 return;
317 }
318
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700319 if (s.info.print_insn == NULL) {
320 s.info.print_insn = print_insn_od_host;
Richard Hendersonc46ffd52013-08-16 23:29:45 -0700321 }
Stefan Weilb0b0f1c2012-04-12 15:44:35 +0200322 for (pc = (uintptr_t)code; size > 0; pc += count, size -= count) {
323 fprintf(out, "0x%08" PRIxPTR ": ", pc);
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700324 count = s.info.print_insn(pc, &s.info);
Alex Bennéee5ef4ec2020-05-13 18:51:32 +0100325 fprintf(out, "\n");
326 if (count < 0) {
327 break;
328 }
bellardb9adb4a2003-04-29 20:41:16 +0000329 }
Alex Bennéee5ef4ec2020-05-13 18:51:32 +0100330
bellardb9adb4a2003-04-29 20:41:16 +0000331}
332
333/* Look up symbol for debugging purpose. Returns "" if unknown. */
bellardc27004e2005-01-03 23:35:10 +0000334const char *lookup_symbol(target_ulong orig_addr)
bellardb9adb4a2003-04-29 20:41:16 +0000335{
pbrook49918a72008-10-22 15:11:31 +0000336 const char *symbol = "";
bellarde80cfcf2004-12-19 23:18:01 +0000337 struct syminfo *s;
ths3b46e622007-09-17 08:09:54 +0000338
bellarde80cfcf2004-12-19 23:18:01 +0000339 for (s = syminfos; s; s = s->next) {
pbrook49918a72008-10-22 15:11:31 +0000340 symbol = s->lookup_symbol(s, orig_addr);
341 if (symbol[0] != '\0') {
342 break;
343 }
bellardb9adb4a2003-04-29 20:41:16 +0000344 }
pbrook49918a72008-10-22 15:11:31 +0000345
346 return symbol;
bellardb9adb4a2003-04-29 20:41:16 +0000347}
bellard9307c4c2004-04-04 12:57:25 +0000348
349#if !defined(CONFIG_USER_ONLY)
350
Paolo Bonzini83c90892012-12-17 18:19:49 +0100351#include "monitor/monitor.h"
bellard3d2cfdf2004-08-01 21:49:07 +0000352
bellard9307c4c2004-04-04 12:57:25 +0000353static int
Richard Hendersonb8d87202017-09-19 09:40:40 -0500354physical_read_memory(bfd_vma memaddr, bfd_byte *myaddr, int length,
blueswir1a5f1b962008-08-17 20:21:51 +0000355 struct disassemble_info *info)
bellard9307c4c2004-04-04 12:57:25 +0000356{
Peter Maydellf2c6abc2018-12-14 13:30:49 +0000357 CPUDebug *s = container_of(info, CPUDebug, info);
Philippe Mathieu-Daudé6766ba52020-05-18 17:53:04 +0200358 MemTxResult res;
Peter Maydellf2c6abc2018-12-14 13:30:49 +0000359
Philippe Mathieu-Daudé6766ba52020-05-18 17:53:04 +0200360 res = address_space_read(s->cpu->as, memaddr, MEMTXATTRS_UNSPECIFIED,
361 myaddr, length);
362 return res == MEMTX_OK ? 0 : EIO;
bellard9307c4c2004-04-04 12:57:25 +0000363}
364
Richard Henderson1d484742017-09-14 08:38:35 -0700365/* Disassembler for the monitor. */
Peter Crosthwaited49190c2015-05-24 14:20:41 -0700366void monitor_disas(Monitor *mon, CPUState *cpu,
Richard Henderson1d484742017-09-14 08:38:35 -0700367 target_ulong pc, int nb_insn, int is_physical)
bellard9307c4c2004-04-04 12:57:25 +0000368{
bellard9307c4c2004-04-04 12:57:25 +0000369 int count, i;
Blue Swirlf4359b92012-09-08 12:40:00 +0000370 CPUDebug s;
bellard9307c4c2004-04-04 12:57:25 +0000371
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700372 initialize_debug_target(&s, cpu);
373 s.info.fprintf_func = qemu_fprintf;
374 if (is_physical) {
375 s.info.read_memory_func = physical_read_memory;
Peter Crosthwaite37b9de42015-06-23 20:57:33 -0700376 }
Richard Henderson12b6e9b2020-09-10 14:40:54 -0700377 s.info.buffer_vma = pc;
Peter Crosthwaite37b9de42015-06-23 20:57:33 -0700378
Richard Henderson8ca80762017-09-14 09:41:12 -0700379 if (s.info.cap_arch >= 0 && cap_disas_monitor(&s.info, pc, nb_insn)) {
380 return;
381 }
382
Peter Crosthwaite37b9de42015-06-23 20:57:33 -0700383 if (!s.info.print_insn) {
384 monitor_printf(mon, "0x" TARGET_FMT_lx
385 ": Asm output not supported on this arch\n", pc);
386 return;
387 }
bellard9307c4c2004-04-04 12:57:25 +0000388
389 for(i = 0; i < nb_insn; i++) {
aliguori376253e2009-03-05 23:01:23 +0000390 monitor_printf(mon, "0x" TARGET_FMT_lx ": ", pc);
Peter Crosthwaite2de295c2015-06-23 20:57:32 -0700391 count = s.info.print_insn(pc, &s.info);
aliguori376253e2009-03-05 23:01:23 +0000392 monitor_printf(mon, "\n");
bellard9307c4c2004-04-04 12:57:25 +0000393 if (count < 0)
394 break;
395 pc += count;
396 }
397}
398#endif