1 /* General "disassemble this chunk" code. Used for debugging. */
3 #include "qemu-common.h"
9 #include "disas/disas.h"
11 typedef struct CPUDebug
{
12 struct disassemble_info info
;
16 /* Filled in by elfload.c. Simplistic, but will do for now. */
17 struct syminfo
*syminfos
= NULL
;
19 /* Get LENGTH bytes from info's buffer, at target address memaddr.
20 Transfer them to myaddr. */
22 buffer_read_memory(bfd_vma memaddr
, bfd_byte
*myaddr
, int length
,
23 struct disassemble_info
*info
)
25 if (memaddr
< info
->buffer_vma
26 || memaddr
+ length
> info
->buffer_vma
+ info
->buffer_length
)
27 /* Out of bounds. Use EIO because GDB uses it. */
29 memcpy (myaddr
, info
->buffer
+ (memaddr
- info
->buffer_vma
), length
);
33 /* Get LENGTH bytes from info's buffer, at target address memaddr.
34 Transfer them to myaddr. */
36 target_read_memory (bfd_vma memaddr
,
39 struct disassemble_info
*info
)
41 CPUDebug
*s
= container_of(info
, CPUDebug
, info
);
43 cpu_memory_rw_debug(s
->cpu
, memaddr
, myaddr
, length
, 0);
47 /* Print an error message. We can assume that this is in response to
48 an error return from buffer_read_memory. */
50 perror_memory (int status
, bfd_vma memaddr
, struct disassemble_info
*info
)
54 (*info
->fprintf_func
) (info
->stream
, "Unknown error %d\n", status
);
56 /* Actually, address between memaddr and memaddr + len was
58 (*info
->fprintf_func
) (info
->stream
,
59 "Address 0x%" PRIx64
" is out of bounds.\n", memaddr
);
62 /* This could be in a separate file, to save minuscule amounts of space
63 in statically linked executables. */
65 /* Just print the address is hex. This is included for completeness even
66 though both GDB and objdump provide their own (to print symbolic
70 generic_print_address (bfd_vma addr
, struct disassemble_info
*info
)
72 (*info
->fprintf_func
) (info
->stream
, "0x%" PRIx64
, addr
);
75 /* Print address in hex, truncated to the width of a host virtual address. */
77 generic_print_host_address(bfd_vma addr
, struct disassemble_info
*info
)
79 uint64_t mask
= ~0ULL >> (64 - (sizeof(void *) * 8));
80 generic_print_address(addr
& mask
, info
);
83 /* Just return the given address. */
86 generic_symbol_at_address (bfd_vma addr
, struct disassemble_info
*info
)
91 bfd_vma
bfd_getl64 (const bfd_byte
*addr
)
95 v
= (unsigned long long) addr
[0];
96 v
|= (unsigned long long) addr
[1] << 8;
97 v
|= (unsigned long long) addr
[2] << 16;
98 v
|= (unsigned long long) addr
[3] << 24;
99 v
|= (unsigned long long) addr
[4] << 32;
100 v
|= (unsigned long long) addr
[5] << 40;
101 v
|= (unsigned long long) addr
[6] << 48;
102 v
|= (unsigned long long) addr
[7] << 56;
106 bfd_vma
bfd_getl32 (const bfd_byte
*addr
)
110 v
= (unsigned long) addr
[0];
111 v
|= (unsigned long) addr
[1] << 8;
112 v
|= (unsigned long) addr
[2] << 16;
113 v
|= (unsigned long) addr
[3] << 24;
117 bfd_vma
bfd_getb32 (const bfd_byte
*addr
)
121 v
= (unsigned long) addr
[0] << 24;
122 v
|= (unsigned long) addr
[1] << 16;
123 v
|= (unsigned long) addr
[2] << 8;
124 v
|= (unsigned long) addr
[3];
128 bfd_vma
bfd_getl16 (const bfd_byte
*addr
)
132 v
= (unsigned long) addr
[0];
133 v
|= (unsigned long) addr
[1] << 8;
137 bfd_vma
bfd_getb16 (const bfd_byte
*addr
)
141 v
= (unsigned long) addr
[0] << 24;
142 v
|= (unsigned long) addr
[1] << 16;
146 static int print_insn_objdump(bfd_vma pc
, disassemble_info
*info
,
149 int i
, n
= info
->buffer_length
;
150 uint8_t *buf
= g_malloc(n
);
152 info
->read_memory_func(pc
, buf
, n
, info
);
154 for (i
= 0; i
< n
; ++i
) {
156 info
->fprintf_func(info
->stream
, "\n%s: ", prefix
);
158 info
->fprintf_func(info
->stream
, "%02x", buf
[i
]);
165 static int print_insn_od_host(bfd_vma pc
, disassemble_info
*info
)
167 return print_insn_objdump(pc
, info
, "OBJD-H");
170 static int print_insn_od_target(bfd_vma pc
, disassemble_info
*info
)
172 return print_insn_objdump(pc
, info
, "OBJD-T");
175 /* Disassemble this for me please... (debugging). 'flags' has the following
177 i386 - 1 means 16 bit code, 2 means 64 bit code
178 ppc - bits 0:15 specify (optionally) the machine instruction set;
179 bit 16 indicates little endian.
180 other targets - unused
182 void target_disas(FILE *out
, CPUState
*cpu
, target_ulong code
,
183 target_ulong size
, int flags
)
185 CPUClass
*cc
= CPU_GET_CLASS(cpu
);
190 INIT_DISASSEMBLE_INFO(s
.info
, out
, fprintf
);
193 s
.info
.read_memory_func
= target_read_memory
;
194 s
.info
.buffer_vma
= code
;
195 s
.info
.buffer_length
= size
;
196 s
.info
.print_address_func
= generic_print_address
;
198 #ifdef TARGET_WORDS_BIGENDIAN
199 s
.info
.endian
= BFD_ENDIAN_BIG
;
201 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
204 if (cc
->disas_set_info
) {
205 cc
->disas_set_info(cpu
, &s
.info
);
208 #if defined(TARGET_I386)
210 s
.info
.mach
= bfd_mach_x86_64
;
211 } else if (flags
== 1) {
212 s
.info
.mach
= bfd_mach_i386_i8086
;
214 s
.info
.mach
= bfd_mach_i386_i386
;
216 s
.info
.print_insn
= print_insn_i386
;
217 #elif defined(TARGET_PPC)
218 if ((flags
>> 16) & 1) {
219 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
221 if (flags
& 0xFFFF) {
222 /* If we have a precise definition of the instruction set, use it. */
223 s
.info
.mach
= flags
& 0xFFFF;
226 s
.info
.mach
= bfd_mach_ppc64
;
228 s
.info
.mach
= bfd_mach_ppc
;
231 s
.info
.disassembler_options
= (char *)"any";
232 s
.info
.print_insn
= print_insn_ppc
;
234 if (s
.info
.print_insn
== NULL
) {
235 s
.info
.print_insn
= print_insn_od_target
;
238 for (pc
= code
; size
> 0; pc
+= count
, size
-= count
) {
239 fprintf(out
, "0x" TARGET_FMT_lx
": ", pc
);
240 count
= s
.info
.print_insn(pc
, &s
.info
);
246 for(i
= 0; i
< count
; i
++) {
247 target_read_memory(pc
+ i
, &b
, 1, &s
.info
);
248 fprintf(out
, " %02x", b
);
258 "Disassembler disagrees with translator over instruction "
260 "Please report this to qemu-devel@nongnu.org\n");
266 /* Disassemble this for me please... (debugging). */
267 void disas(FILE *out
, void *code
, unsigned long size
)
272 int (*print_insn
)(bfd_vma pc
, disassemble_info
*info
) = NULL
;
274 INIT_DISASSEMBLE_INFO(s
.info
, out
, fprintf
);
275 s
.info
.print_address_func
= generic_print_host_address
;
277 s
.info
.buffer
= code
;
278 s
.info
.buffer_vma
= (uintptr_t)code
;
279 s
.info
.buffer_length
= size
;
281 #ifdef HOST_WORDS_BIGENDIAN
282 s
.info
.endian
= BFD_ENDIAN_BIG
;
284 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
286 #if defined(CONFIG_TCG_INTERPRETER)
287 print_insn
= print_insn_tci
;
288 #elif defined(__i386__)
289 s
.info
.mach
= bfd_mach_i386_i386
;
290 print_insn
= print_insn_i386
;
291 #elif defined(__x86_64__)
292 s
.info
.mach
= bfd_mach_x86_64
;
293 print_insn
= print_insn_i386
;
294 #elif defined(_ARCH_PPC)
295 s
.info
.disassembler_options
= (char *)"any";
296 print_insn
= print_insn_ppc
;
297 #elif defined(__aarch64__) && defined(CONFIG_ARM_A64_DIS)
298 print_insn
= print_insn_arm_a64
;
299 #elif defined(__alpha__)
300 print_insn
= print_insn_alpha
;
301 #elif defined(__sparc__)
302 print_insn
= print_insn_sparc
;
303 s
.info
.mach
= bfd_mach_sparc_v9b
;
304 #elif defined(__arm__)
305 print_insn
= print_insn_arm
;
306 #elif defined(__MIPSEB__)
307 print_insn
= print_insn_big_mips
;
308 #elif defined(__MIPSEL__)
309 print_insn
= print_insn_little_mips
;
310 #elif defined(__m68k__)
311 print_insn
= print_insn_m68k
;
312 #elif defined(__s390__)
313 print_insn
= print_insn_s390
;
314 #elif defined(__hppa__)
315 print_insn
= print_insn_hppa
;
316 #elif defined(__ia64__)
317 print_insn
= print_insn_ia64
;
319 if (print_insn
== NULL
) {
320 print_insn
= print_insn_od_host
;
322 for (pc
= (uintptr_t)code
; size
> 0; pc
+= count
, size
-= count
) {
323 fprintf(out
, "0x%08" PRIxPTR
": ", pc
);
324 count
= print_insn(pc
, &s
.info
);
331 /* Look up symbol for debugging purpose. Returns "" if unknown. */
332 const char *lookup_symbol(target_ulong orig_addr
)
334 const char *symbol
= "";
337 for (s
= syminfos
; s
; s
= s
->next
) {
338 symbol
= s
->lookup_symbol(s
, orig_addr
);
339 if (symbol
[0] != '\0') {
347 #if !defined(CONFIG_USER_ONLY)
349 #include "monitor/monitor.h"
351 static int monitor_disas_is_physical
;
354 monitor_read_memory (bfd_vma memaddr
, bfd_byte
*myaddr
, int length
,
355 struct disassemble_info
*info
)
357 CPUDebug
*s
= container_of(info
, CPUDebug
, info
);
359 if (monitor_disas_is_physical
) {
360 cpu_physical_memory_read(memaddr
, myaddr
, length
);
362 cpu_memory_rw_debug(s
->cpu
, memaddr
, myaddr
, length
, 0);
367 /* Disassembler for the monitor.
368 See target_disas for a description of flags. */
369 void monitor_disas(Monitor
*mon
, CPUState
*cpu
,
370 target_ulong pc
, int nb_insn
, int is_physical
, int flags
)
372 CPUClass
*cc
= CPU_GET_CLASS(cpu
);
376 INIT_DISASSEMBLE_INFO(s
.info
, (FILE *)mon
, monitor_fprintf
);
379 monitor_disas_is_physical
= is_physical
;
380 s
.info
.read_memory_func
= monitor_read_memory
;
381 s
.info
.print_address_func
= generic_print_address
;
383 s
.info
.buffer_vma
= pc
;
385 #ifdef TARGET_WORDS_BIGENDIAN
386 s
.info
.endian
= BFD_ENDIAN_BIG
;
388 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
391 if (cc
->disas_set_info
) {
392 cc
->disas_set_info(cpu
, &s
.info
);
395 #if defined(TARGET_I386)
397 s
.info
.mach
= bfd_mach_x86_64
;
398 } else if (flags
== 1) {
399 s
.info
.mach
= bfd_mach_i386_i8086
;
401 s
.info
.mach
= bfd_mach_i386_i386
;
403 s
.info
.print_insn
= print_insn_i386
;
404 #elif defined(TARGET_PPC)
405 if (flags
& 0xFFFF) {
406 /* If we have a precise definition of the instruction set, use it. */
407 s
.info
.mach
= flags
& 0xFFFF;
410 s
.info
.mach
= bfd_mach_ppc64
;
412 s
.info
.mach
= bfd_mach_ppc
;
415 if ((flags
>> 16) & 1) {
416 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
418 s
.info
.print_insn
= print_insn_ppc
;
420 if (!s
.info
.print_insn
) {
421 monitor_printf(mon
, "0x" TARGET_FMT_lx
422 ": Asm output not supported on this arch\n", pc
);
426 for(i
= 0; i
< nb_insn
; i
++) {
427 monitor_printf(mon
, "0x" TARGET_FMT_lx
": ", pc
);
428 count
= s
.info
.print_insn(pc
, &s
.info
);
429 monitor_printf(mon
, "\n");