Last change
on this file since 33894 was 2422, checked in by vboxsync, 18 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). */
|
---|
5 | void disas(FILE *out, void *code, unsigned long size);
|
---|
6 | void target_disas(FILE *out, target_ulong code, target_ulong size, int flags);
|
---|
7 | void 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. */
|
---|
11 | const char *lookup_symbol(target_ulong orig_addr);
|
---|
12 |
|
---|
13 | /* Filled in by elfload.c. Simplistic, but will do for now. */
|
---|
14 | extern 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.