Changeset 36175 in vbox for trunk/src/recompiler/disas.h
- Timestamp:
- Mar 4, 2011 4:21:09 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/disas.h
r36170 r36175 1 1 #ifndef _QEMU_DISAS_H 2 2 #define _QEMU_DISAS_H 3 4 #include "qemu-common.h" 3 5 4 6 /* Disassemble this for me please... (debugging). */ 5 7 void disas(FILE *out, void *code, unsigned long size); 6 8 void target_disas(FILE *out, target_ulong code, target_ulong size, int flags); 7 void monitor_disas(CPUState *env, 9 10 #ifndef VBOX 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, 8 14 target_ulong pc, int nb_insn, int is_physical, int flags); 15 #endif 16 #endif 9 17 10 18 /* Look up symbol for debugging purpose. Returns "" if unknown. */
Note:
See TracChangeset
for help on using the changeset viewer.