Changeset 37675 in vbox for trunk/src/recompiler/disas.h
- Timestamp:
- Jun 29, 2011 7:07:14 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/disas.h
r36175 r37675 4 4 #include "qemu-common.h" 5 5 6 #ifdef NEED_CPU_H 6 7 /* Disassemble this for me please... (debugging). */ 7 8 void disas(FILE *out, void *code, unsigned long size); … … 14 15 target_ulong pc, int nb_insn, int is_physical, int flags); 15 16 #endif 16 #endif 17 #endif /*!VBOX*/ 17 18 18 19 /* Look up symbol for debugging purpose. Returns "" if unknown. */ 19 20 const char *lookup_symbol(target_ulong orig_addr); 21 #endif 20 22 21 23 struct syminfo; … … 23 25 struct elf64_sym; 24 26 25 typedef const char *(*lookup_symbol_t)(struct syminfo *s, target_ ulongorig_addr);27 typedef const char *(*lookup_symbol_t)(struct syminfo *s, target_phys_addr_t orig_addr); 26 28 27 29 struct syminfo {
Note:
See TracChangeset
for help on using the changeset viewer.