VirtualBox

source: vbox/trunk/src/recompiler/disas.h@ 33000

Last change on this file since 33000 was 2422, checked in by vboxsync, 17 years ago

Removed the old recompiler code.

  • Property svn:eol-style set to native
File size: 707 bytes
Line 
1#ifndef _QEMU_DISAS_H
2#define _QEMU_DISAS_H
3
4/* Disassemble this for me please... (debugging). */
5void disas(FILE *out, void *code, unsigned long size);
6void target_disas(FILE *out, target_ulong code, target_ulong size, int flags);
7void monitor_disas(CPUState *env,
8 target_ulong pc, int nb_insn, int is_physical, int flags);
9
10/* Look up symbol for debugging purpose. Returns "" if unknown. */
11const char *lookup_symbol(target_ulong orig_addr);
12
13/* Filled in by elfload.c. Simplistic, but will do for now. */
14extern struct syminfo {
15 unsigned int disas_num_syms;
16 void *disas_symtab;
17 const char *disas_strtab;
18 struct syminfo *next;
19} *syminfos;
20
21#endif /* _QEMU_DISAS_H */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use