mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
Compile loader only once
Callers must pass ELF machine, byte swapping and symbol LSB clearing information to ELF loader. A.out loader needs page size information, pass that too as a parameter. Extract prototypes to a separate file. Move loader.[ch] and elf_ops.h under hw. Adjust callers. Also use target_phys_addr_t instead of target_ulong for addresses: loader addresses aren't virtual. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
a333cd7166
commit
ca20cf32ab
36 changed files with 234 additions and 96 deletions
|
@ -1315,10 +1315,10 @@ static void load_symbols(struct elfhdr *hdr, int fd)
|
|||
s->disas_num_syms = nsyms;
|
||||
#if ELF_CLASS == ELFCLASS32
|
||||
s->disas_symtab.elf32 = syms;
|
||||
s->lookup_symbol = lookup_symbolxx;
|
||||
s->lookup_symbol = (lookup_symbol_t)lookup_symbolxx;
|
||||
#else
|
||||
s->disas_symtab.elf64 = syms;
|
||||
s->lookup_symbol = lookup_symbolxx;
|
||||
s->lookup_symbol = (lookup_symbol_t)lookup_symbolxx;
|
||||
#endif
|
||||
s->next = syminfos;
|
||||
syminfos = s;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue