b7d89466dd
Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes, with the changes to the following files manually reverted: contrib/libvhost-user/libvhost-user-glib.h contrib/libvhost-user/libvhost-user.c contrib/libvhost-user/libvhost-user.h linux-user/mips64/cpu_loop.c linux-user/mips64/signal.c linux-user/sparc64/cpu_loop.c linux-user/sparc64/signal.c linux-user/x86_64/cpu_loop.c linux-user/x86_64/signal.c target/s390x/gen-features.c tests/migration/s390x/a-b-bios.c tests/test-rcu-simpleq.c tests/test-rcu-tailq.c Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20181204172535.2799-1-armbru@redhat.com> Acked-by: Eduardo Habkost <ehabkost@redhat.com> Acked-by: Halil Pasic <pasic@linux.ibm.com> Acked-by: Yuval Shaia <yuval.shaia@oracle.com> Acked-by: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2018 Virtuozzo International GmbH
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
*
|
|
*/
|
|
|
|
#ifndef QEMU_ELF_H
|
|
#define QEMU_ELF_H
|
|
|
|
#include <elf.h>
|
|
|
|
typedef struct QEMUCPUSegment {
|
|
uint32_t selector;
|
|
uint32_t limit;
|
|
uint32_t flags;
|
|
uint32_t pad;
|
|
uint64_t base;
|
|
} QEMUCPUSegment;
|
|
|
|
typedef struct QEMUCPUState {
|
|
uint32_t version;
|
|
uint32_t size;
|
|
uint64_t rax, rbx, rcx, rdx, rsi, rdi, rsp, rbp;
|
|
uint64_t r8, r9, r10, r11, r12, r13, r14, r15;
|
|
uint64_t rip, rflags;
|
|
QEMUCPUSegment cs, ds, es, fs, gs, ss;
|
|
QEMUCPUSegment ldt, tr, gdt, idt;
|
|
uint64_t cr[5];
|
|
uint64_t kernel_gs_base;
|
|
} QEMUCPUState;
|
|
|
|
int is_system(QEMUCPUState *s);
|
|
|
|
typedef struct QEMU_Elf {
|
|
int fd;
|
|
size_t size;
|
|
void *map;
|
|
QEMUCPUState **state;
|
|
size_t state_nr;
|
|
int has_kernel_gs_base;
|
|
} QEMU_Elf;
|
|
|
|
int QEMU_Elf_init(QEMU_Elf *qe, const char *filename);
|
|
void QEMU_Elf_exit(QEMU_Elf *qe);
|
|
|
|
Elf64_Phdr *elf64_getphdr(void *map);
|
|
Elf64_Half elf_getphdrnum(void *map);
|
|
|
|
#endif /* QEMU_ELF_H */
|