1 /* General "disassemble this chunk" code. Used for debugging. */
8 #include "disas/disas.h"
10 typedef struct CPUDebug
{
11 struct disassemble_info info
;
15 /* Filled in by elfload.c. Simplistic, but will do for now. */
16 struct syminfo
*syminfos
= NULL
;
18 /* Get LENGTH bytes from info's buffer, at target address memaddr.
19 Transfer them to myaddr. */
21 buffer_read_memory(bfd_vma memaddr
, bfd_byte
*myaddr
, int length
,
22 struct disassemble_info
*info
)
24 if (memaddr
< info
->buffer_vma
25 || memaddr
+ length
> info
->buffer_vma
+ info
->buffer_length
)
26 /* Out of bounds. Use EIO because GDB uses it. */
28 memcpy (myaddr
, info
->buffer
+ (memaddr
- info
->buffer_vma
), length
);
32 /* Get LENGTH bytes from info's buffer, at target address memaddr.
33 Transfer them to myaddr. */
35 target_read_memory (bfd_vma memaddr
,
38 struct disassemble_info
*info
)
40 CPUDebug
*s
= container_of(info
, CPUDebug
, info
);
42 cpu_memory_rw_debug(ENV_GET_CPU(s
->env
), memaddr
, myaddr
, length
, 0);
46 /* Print an error message. We can assume that this is in response to
47 an error return from buffer_read_memory. */
49 perror_memory (int status
, bfd_vma memaddr
, struct disassemble_info
*info
)
53 (*info
->fprintf_func
) (info
->stream
, "Unknown error %d\n", status
);
55 /* Actually, address between memaddr and memaddr + len was
57 (*info
->fprintf_func
) (info
->stream
,
58 "Address 0x%" PRIx64
" is out of bounds.\n", memaddr
);
61 /* This could be in a separate file, to save minuscule amounts of space
62 in statically linked executables. */
64 /* Just print the address is hex. This is included for completeness even
65 though both GDB and objdump provide their own (to print symbolic
69 generic_print_address (bfd_vma addr
, struct disassemble_info
*info
)
71 (*info
->fprintf_func
) (info
->stream
, "0x%" PRIx64
, addr
);
74 /* Print address in hex, truncated to the width of a target virtual address. */
76 generic_print_target_address(bfd_vma addr
, struct disassemble_info
*info
)
78 uint64_t mask
= ~0ULL >> (64 - TARGET_VIRT_ADDR_SPACE_BITS
);
79 generic_print_address(addr
& mask
, info
);
82 /* Print address in hex, truncated to the width of a host virtual address. */
84 generic_print_host_address(bfd_vma addr
, struct disassemble_info
*info
)
86 uint64_t mask
= ~0ULL >> (64 - (sizeof(void *) * 8));
87 generic_print_address(addr
& mask
, info
);
90 /* Just return the given address. */
93 generic_symbol_at_address (bfd_vma addr
, struct disassemble_info
*info
)
98 bfd_vma
bfd_getl64 (const bfd_byte
*addr
)
100 unsigned long long v
;
102 v
= (unsigned long long) addr
[0];
103 v
|= (unsigned long long) addr
[1] << 8;
104 v
|= (unsigned long long) addr
[2] << 16;
105 v
|= (unsigned long long) addr
[3] << 24;
106 v
|= (unsigned long long) addr
[4] << 32;
107 v
|= (unsigned long long) addr
[5] << 40;
108 v
|= (unsigned long long) addr
[6] << 48;
109 v
|= (unsigned long long) addr
[7] << 56;
113 bfd_vma
bfd_getl32 (const bfd_byte
*addr
)
117 v
= (unsigned long) addr
[0];
118 v
|= (unsigned long) addr
[1] << 8;
119 v
|= (unsigned long) addr
[2] << 16;
120 v
|= (unsigned long) addr
[3] << 24;
124 bfd_vma
bfd_getb32 (const bfd_byte
*addr
)
128 v
= (unsigned long) addr
[0] << 24;
129 v
|= (unsigned long) addr
[1] << 16;
130 v
|= (unsigned long) addr
[2] << 8;
131 v
|= (unsigned long) addr
[3];
135 bfd_vma
bfd_getl16 (const bfd_byte
*addr
)
139 v
= (unsigned long) addr
[0];
140 v
|= (unsigned long) addr
[1] << 8;
144 bfd_vma
bfd_getb16 (const bfd_byte
*addr
)
148 v
= (unsigned long) addr
[0] << 24;
149 v
|= (unsigned long) addr
[1] << 16;
155 print_insn_thumb1(bfd_vma pc
, disassemble_info
*info
)
157 return print_insn_arm(pc
| 1, info
);
161 static int print_insn_objdump(bfd_vma pc
, disassemble_info
*info
,
164 int i
, n
= info
->buffer_length
;
165 uint8_t *buf
= g_malloc(n
);
167 info
->read_memory_func(pc
, buf
, n
, info
);
169 for (i
= 0; i
< n
; ++i
) {
171 info
->fprintf_func(info
->stream
, "\n%s: ", prefix
);
173 info
->fprintf_func(info
->stream
, "%02x", buf
[i
]);
180 static int print_insn_od_host(bfd_vma pc
, disassemble_info
*info
)
182 return print_insn_objdump(pc
, info
, "OBJD-H");
185 static int print_insn_od_target(bfd_vma pc
, disassemble_info
*info
)
187 return print_insn_objdump(pc
, info
, "OBJD-T");
190 /* Disassemble this for me please... (debugging). 'flags' has the following
192 i386 - 1 means 16 bit code, 2 means 64 bit code
193 arm - bit 0 = thumb, bit 1 = reverse endian, bit 2 = A64
194 ppc - bits 0:15 specify (optionally) the machine instruction set;
195 bit 16 indicates little endian.
196 other targets - unused
198 void target_disas(FILE *out
, CPUArchState
*env
, target_ulong code
,
199 target_ulong size
, int flags
)
204 int (*print_insn
)(bfd_vma pc
, disassemble_info
*info
) = NULL
;
206 INIT_DISASSEMBLE_INFO(s
.info
, out
, fprintf
);
209 s
.info
.read_memory_func
= target_read_memory
;
210 s
.info
.buffer_vma
= code
;
211 s
.info
.buffer_length
= size
;
212 s
.info
.print_address_func
= generic_print_target_address
;
214 #ifdef TARGET_WORDS_BIGENDIAN
215 s
.info
.endian
= BFD_ENDIAN_BIG
;
217 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
219 #if defined(TARGET_I386)
221 s
.info
.mach
= bfd_mach_x86_64
;
222 } else if (flags
== 1) {
223 s
.info
.mach
= bfd_mach_i386_i8086
;
225 s
.info
.mach
= bfd_mach_i386_i386
;
227 print_insn
= print_insn_i386
;
228 #elif defined(TARGET_ARM)
230 /* We might not be compiled with the A64 disassembler
231 * because it needs a C++ compiler; in that case we will
232 * fall through to the default print_insn_od case.
234 #if defined(CONFIG_ARM_A64_DIS)
235 print_insn
= print_insn_arm_a64
;
237 } else if (flags
& 1) {
238 print_insn
= print_insn_thumb1
;
240 print_insn
= print_insn_arm
;
243 #ifdef TARGET_WORDS_BIGENDIAN
244 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
246 s
.info
.endian
= BFD_ENDIAN_BIG
;
249 #elif defined(TARGET_SPARC)
250 print_insn
= print_insn_sparc
;
251 #ifdef TARGET_SPARC64
252 s
.info
.mach
= bfd_mach_sparc_v9b
;
254 #elif defined(TARGET_PPC)
255 if ((flags
>> 16) & 1) {
256 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
258 if (flags
& 0xFFFF) {
259 /* If we have a precise definition of the instruction set, use it. */
260 s
.info
.mach
= flags
& 0xFFFF;
263 s
.info
.mach
= bfd_mach_ppc64
;
265 s
.info
.mach
= bfd_mach_ppc
;
268 s
.info
.disassembler_options
= (char *)"any";
269 print_insn
= print_insn_ppc
;
270 #elif defined(TARGET_M68K)
271 print_insn
= print_insn_m68k
;
272 #elif defined(TARGET_MIPS)
273 #ifdef TARGET_WORDS_BIGENDIAN
274 print_insn
= print_insn_big_mips
;
276 print_insn
= print_insn_little_mips
;
278 #elif defined(TARGET_SH4)
279 s
.info
.mach
= bfd_mach_sh4
;
280 print_insn
= print_insn_sh
;
281 #elif defined(TARGET_ALPHA)
282 s
.info
.mach
= bfd_mach_alpha_ev6
;
283 print_insn
= print_insn_alpha
;
284 #elif defined(TARGET_CRIS)
286 s
.info
.mach
= bfd_mach_cris_v0_v10
;
287 print_insn
= print_insn_crisv10
;
289 s
.info
.mach
= bfd_mach_cris_v32
;
290 print_insn
= print_insn_crisv32
;
292 #elif defined(TARGET_S390X)
293 s
.info
.mach
= bfd_mach_s390_64
;
294 print_insn
= print_insn_s390
;
295 #elif defined(TARGET_MICROBLAZE)
296 s
.info
.mach
= bfd_arch_microblaze
;
297 print_insn
= print_insn_microblaze
;
298 #elif defined(TARGET_MOXIE)
299 s
.info
.mach
= bfd_arch_moxie
;
300 print_insn
= print_insn_moxie
;
301 #elif defined(TARGET_LM32)
302 s
.info
.mach
= bfd_mach_lm32
;
303 print_insn
= print_insn_lm32
;
305 if (print_insn
== NULL
) {
306 print_insn
= print_insn_od_target
;
309 for (pc
= code
; size
> 0; pc
+= count
, size
-= count
) {
310 fprintf(out
, "0x" TARGET_FMT_lx
": ", pc
);
311 count
= print_insn(pc
, &s
.info
);
317 for(i
= 0; i
< count
; i
++) {
318 target_read_memory(pc
+ i
, &b
, 1, &s
.info
);
319 fprintf(out
, " %02x", b
);
329 "Disassembler disagrees with translator over instruction "
331 "Please report this to qemu-devel@nongnu.org\n");
337 /* Disassemble this for me please... (debugging). */
338 void disas(FILE *out
, void *code
, unsigned long size
)
343 int (*print_insn
)(bfd_vma pc
, disassemble_info
*info
) = NULL
;
345 INIT_DISASSEMBLE_INFO(s
.info
, out
, fprintf
);
346 s
.info
.print_address_func
= generic_print_host_address
;
348 s
.info
.buffer
= code
;
349 s
.info
.buffer_vma
= (uintptr_t)code
;
350 s
.info
.buffer_length
= size
;
352 #ifdef HOST_WORDS_BIGENDIAN
353 s
.info
.endian
= BFD_ENDIAN_BIG
;
355 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
357 #if defined(CONFIG_TCG_INTERPRETER)
358 print_insn
= print_insn_tci
;
359 #elif defined(__i386__)
360 s
.info
.mach
= bfd_mach_i386_i386
;
361 print_insn
= print_insn_i386
;
362 #elif defined(__x86_64__)
363 s
.info
.mach
= bfd_mach_x86_64
;
364 print_insn
= print_insn_i386
;
365 #elif defined(_ARCH_PPC)
366 s
.info
.disassembler_options
= (char *)"any";
367 print_insn
= print_insn_ppc
;
368 #elif defined(__aarch64__) && defined(CONFIG_ARM_A64_DIS)
369 print_insn
= print_insn_arm_a64
;
370 #elif defined(__alpha__)
371 print_insn
= print_insn_alpha
;
372 #elif defined(__sparc__)
373 print_insn
= print_insn_sparc
;
374 s
.info
.mach
= bfd_mach_sparc_v9b
;
375 #elif defined(__arm__)
376 print_insn
= print_insn_arm
;
377 #elif defined(__MIPSEB__)
378 print_insn
= print_insn_big_mips
;
379 #elif defined(__MIPSEL__)
380 print_insn
= print_insn_little_mips
;
381 #elif defined(__m68k__)
382 print_insn
= print_insn_m68k
;
383 #elif defined(__s390__)
384 print_insn
= print_insn_s390
;
385 #elif defined(__hppa__)
386 print_insn
= print_insn_hppa
;
387 #elif defined(__ia64__)
388 print_insn
= print_insn_ia64
;
390 if (print_insn
== NULL
) {
391 print_insn
= print_insn_od_host
;
393 for (pc
= (uintptr_t)code
; size
> 0; pc
+= count
, size
-= count
) {
394 fprintf(out
, "0x%08" PRIxPTR
": ", pc
);
395 count
= print_insn(pc
, &s
.info
);
402 /* Look up symbol for debugging purpose. Returns "" if unknown. */
403 const char *lookup_symbol(target_ulong orig_addr
)
405 const char *symbol
= "";
408 for (s
= syminfos
; s
; s
= s
->next
) {
409 symbol
= s
->lookup_symbol(s
, orig_addr
);
410 if (symbol
[0] != '\0') {
418 #if !defined(CONFIG_USER_ONLY)
420 #include "monitor/monitor.h"
422 static int monitor_disas_is_physical
;
425 monitor_read_memory (bfd_vma memaddr
, bfd_byte
*myaddr
, int length
,
426 struct disassemble_info
*info
)
428 CPUDebug
*s
= container_of(info
, CPUDebug
, info
);
430 if (monitor_disas_is_physical
) {
431 cpu_physical_memory_read(memaddr
, myaddr
, length
);
433 cpu_memory_rw_debug(ENV_GET_CPU(s
->env
), memaddr
, myaddr
, length
, 0);
438 static int GCC_FMT_ATTR(2, 3)
439 monitor_fprintf(FILE *stream
, const char *fmt
, ...)
443 monitor_vprintf((Monitor
*)stream
, fmt
, ap
);
448 /* Disassembler for the monitor.
449 See target_disas for a description of flags. */
450 void monitor_disas(Monitor
*mon
, CPUArchState
*env
,
451 target_ulong pc
, int nb_insn
, int is_physical
, int flags
)
455 int (*print_insn
)(bfd_vma pc
, disassemble_info
*info
);
457 INIT_DISASSEMBLE_INFO(s
.info
, (FILE *)mon
, monitor_fprintf
);
460 monitor_disas_is_physical
= is_physical
;
461 s
.info
.read_memory_func
= monitor_read_memory
;
462 s
.info
.print_address_func
= generic_print_target_address
;
464 s
.info
.buffer_vma
= pc
;
466 #ifdef TARGET_WORDS_BIGENDIAN
467 s
.info
.endian
= BFD_ENDIAN_BIG
;
469 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
471 #if defined(TARGET_I386)
473 s
.info
.mach
= bfd_mach_x86_64
;
474 } else if (flags
== 1) {
475 s
.info
.mach
= bfd_mach_i386_i8086
;
477 s
.info
.mach
= bfd_mach_i386_i386
;
479 print_insn
= print_insn_i386
;
480 #elif defined(TARGET_ARM)
481 print_insn
= print_insn_arm
;
482 #elif defined(TARGET_ALPHA)
483 print_insn
= print_insn_alpha
;
484 #elif defined(TARGET_SPARC)
485 print_insn
= print_insn_sparc
;
486 #ifdef TARGET_SPARC64
487 s
.info
.mach
= bfd_mach_sparc_v9b
;
489 #elif defined(TARGET_PPC)
490 if (flags
& 0xFFFF) {
491 /* If we have a precise definition of the instruction set, use it. */
492 s
.info
.mach
= flags
& 0xFFFF;
495 s
.info
.mach
= bfd_mach_ppc64
;
497 s
.info
.mach
= bfd_mach_ppc
;
500 if ((flags
>> 16) & 1) {
501 s
.info
.endian
= BFD_ENDIAN_LITTLE
;
503 print_insn
= print_insn_ppc
;
504 #elif defined(TARGET_M68K)
505 print_insn
= print_insn_m68k
;
506 #elif defined(TARGET_MIPS)
507 #ifdef TARGET_WORDS_BIGENDIAN
508 print_insn
= print_insn_big_mips
;
510 print_insn
= print_insn_little_mips
;
512 #elif defined(TARGET_SH4)
513 s
.info
.mach
= bfd_mach_sh4
;
514 print_insn
= print_insn_sh
;
515 #elif defined(TARGET_S390X)
516 s
.info
.mach
= bfd_mach_s390_64
;
517 print_insn
= print_insn_s390
;
518 #elif defined(TARGET_MOXIE)
519 s
.info
.mach
= bfd_arch_moxie
;
520 print_insn
= print_insn_moxie
;
521 #elif defined(TARGET_LM32)
522 s
.info
.mach
= bfd_mach_lm32
;
523 print_insn
= print_insn_lm32
;
525 monitor_printf(mon
, "0x" TARGET_FMT_lx
526 ": Asm output not supported on this arch\n", pc
);
530 for(i
= 0; i
< nb_insn
; i
++) {
531 monitor_printf(mon
, "0x" TARGET_FMT_lx
": ", pc
);
532 count
= print_insn(pc
, &s
.info
);
533 monitor_printf(mon
, "\n");