4 #include "qemu-common.h"
6 /* Disassemble this for me please... (debugging). */
7 void disas(FILE *out
, void *code
, unsigned long size
);
8 void target_disas(FILE *out
, target_ulong code
, target_ulong size
, int flags
);
10 /* The usual mess... FIXME: Remove this condition once dyngen-exec.h is gone */
11 #ifndef __DYNGEN_EXEC_H__
12 void monitor_disas(Monitor
*mon
, CPUState
*env
,
13 target_ulong pc
, int nb_insn
, int is_physical
, int flags
);
16 /* Look up symbol for debugging purpose. Returns "" if unknown. */
17 const char *lookup_symbol(target_ulong orig_addr
);
23 typedef const char *(*lookup_symbol_t
)(struct syminfo
*s
, target_ulong orig_addr
);
26 lookup_symbol_t lookup_symbol
;
27 unsigned int disas_num_syms
;
29 struct elf32_sym
*elf32
;
30 struct elf64_sym
*elf64
;
32 const char *disas_strtab
;
36 /* Filled in by elfload.c. Simplistic, but will do for now. */
37 extern struct syminfo
*syminfos
;
39 #endif /* _QEMU_DISAS_H */