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