blob: 5613c3ed92e2b5eee9b85fd4bd2f791962f88df0 [file] [log] [blame]
bellard31e31b82003-02-18 22:55:36 +00001#ifndef GEMU_H
2#define GEMU_H
3
4#include "thunk.h"
5
bellard9de5e442003-03-23 16:49:39 +00006#include <signal.h>
7#include "syscall_defs.h"
8
bellard66fb9762003-03-23 01:06:05 +00009#ifdef TARGET_I386
bellard9de5e442003-03-23 16:49:39 +000010#include "cpu-i386.h"
11#include "syscall-i386.h"
bellard66fb9762003-03-23 01:06:05 +000012#endif
13
bellard31e31b82003-02-18 22:55:36 +000014/* This struct is used to hold certain information about the image.
15 * Basically, it replicates in user space what would be certain
16 * task_struct fields in the kernel
17 */
18struct image_info {
19 unsigned long start_code;
20 unsigned long end_code;
21 unsigned long end_data;
22 unsigned long start_brk;
23 unsigned long brk;
24 unsigned long start_mmap;
25 unsigned long mmap;
26 unsigned long rss;
27 unsigned long start_stack;
28 unsigned long arg_start;
29 unsigned long arg_end;
30 unsigned long env_start;
31 unsigned long env_end;
32 unsigned long entry;
33 int personality;
34};
35
bellard851e67a2003-03-29 16:53:14 +000036/* Information about the current linux thread */
37struct vm86_saved_state {
38 uint32_t eax; /* return code */
39 uint32_t ebx;
40 uint32_t ecx;
41 uint32_t edx;
42 uint32_t esi;
43 uint32_t edi;
44 uint32_t ebp;
45 uint32_t esp;
46 uint32_t eflags;
47 uint32_t eip;
48 uint16_t cs, ss, ds, es, fs, gs;
49};
50
51/* NOTE: we force a big alignment so that the stack stored after is
52 aligned too */
53typedef struct TaskState {
54 struct TaskState *next;
55 struct target_vm86plus_struct *target_v86;
56 struct vm86_saved_state vm86_saved_regs;
bellard631271d2003-05-10 13:14:52 +000057 uint32_t v86flags;
58 uint32_t v86mask;
bellard851e67a2003-03-29 16:53:14 +000059 int used; /* non zero if used */
60 uint8_t stack[0];
61} __attribute__((aligned(16))) TaskState;
62
63extern TaskState *first_task_state;
64
bellard32ce6332003-04-11 00:16:16 +000065int elf_exec(const char * filename, char ** argv, char ** envp,
bellard01ffc752003-02-18 23:00:51 +000066 struct target_pt_regs * regs, struct image_info *infop);
bellard31e31b82003-02-18 22:55:36 +000067
68void target_set_brk(char *new_brk);
69void syscall_init(void);
bellard6dbad632003-03-16 18:05:05 +000070long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3,
bellard31e31b82003-02-18 22:55:36 +000071 long arg4, long arg5, long arg6);
72void gemu_log(const char *fmt, ...) __attribute__((format(printf,1,2)));
bellard9de5e442003-03-23 16:49:39 +000073extern CPUX86State *global_env;
74void cpu_loop(CPUX86State *env);
bellard66fb9762003-03-23 01:06:05 +000075void process_pending_signals(void *cpu_env);
76void signal_init(void);
bellard9de5e442003-03-23 16:49:39 +000077int queue_signal(int sig, target_siginfo_t *info);
bellard32ce6332003-04-11 00:16:16 +000078void init_paths(const char *prefix);
79const char *path(const char *pathname);
bellard6977fbf2003-04-29 20:39:23 +000080
81extern int loglevel;
bellard631271d2003-05-10 13:14:52 +000082extern FILE *logfile;
83
84/* vm86.c */
85void save_v86_state(CPUX86State *env);
86void do_int(CPUX86State *env, int intno);
87void handle_vm86_fault(CPUX86State *env);
88int do_vm86(CPUX86State *env, long subfunction,
89 struct target_vm86plus_struct * target_v86);
90
bellard31e31b82003-02-18 22:55:36 +000091#endif