mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 21:32:52 +00:00
49918a752b
could be expanded). This also fixes the bug with mips elf64 symbols in current Qemu trunk. * Use quicksort and binary search for symbol lookup. * Remove unneeded entries from symbol table. This reduced a typical table size (linux mips kernel) from 1764487 to 11656 entries. Signed-off-by: Stefan Weil <weil@mail.berlios.de> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5510 c046a42c-6fe2-441c-8c8c-71466251a162
33 lines
966 B
C
33 lines
966 B
C
#ifndef _QEMU_DISAS_H
|
|
#define _QEMU_DISAS_H
|
|
|
|
/* Disassemble this for me please... (debugging). */
|
|
void disas(FILE *out, void *code, unsigned long size);
|
|
void target_disas(FILE *out, target_ulong code, target_ulong size, int flags);
|
|
void monitor_disas(CPUState *env,
|
|
target_ulong pc, int nb_insn, int is_physical, int flags);
|
|
|
|
/* Look up symbol for debugging purpose. Returns "" if unknown. */
|
|
const char *lookup_symbol(target_ulong orig_addr);
|
|
|
|
struct syminfo;
|
|
struct elf32_sym;
|
|
struct elf64_sym;
|
|
|
|
typedef const char *(*lookup_symbol_t)(struct syminfo *s, target_ulong orig_addr);
|
|
|
|
struct syminfo {
|
|
lookup_symbol_t lookup_symbol;
|
|
unsigned int disas_num_syms;
|
|
union {
|
|
struct elf32_sym *elf32;
|
|
struct elf64_sym *elf64;
|
|
} disas_symtab;
|
|
const char *disas_strtab;
|
|
struct syminfo *next;
|
|
};
|
|
|
|
/* Filled in by elfload.c. Simplistic, but will do for now. */
|
|
extern struct syminfo *syminfos;
|
|
|
|
#endif /* _QEMU_DISAS_H */
|