]> git.proxmox.com Git - qemu.git/blame - linux-user/main.c
added translation cache
[qemu.git] / linux-user / main.c
CommitLineData
31e31b8a
FB
1/*
2 * emu main
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20#include <stdlib.h>
21#include <stdio.h>
22#include <stdarg.h>
31e31b8a 23#include <errno.h>
0ecfa993 24#include <unistd.h>
31e31b8a
FB
25
26#include "gemu.h"
27
0ecfa993 28#include "cpu-i386.h"
31e31b8a 29
586314f2
FB
30#define DEBUG_LOGFILE "/tmp/gemu.log"
31
32FILE *logfile = NULL;
33int loglevel;
34
31e31b8a
FB
35unsigned long x86_stack_size;
36unsigned long stktop;
37
38void gemu_log(const char *fmt, ...)
39{
40 va_list ap;
41
42 va_start(ap, fmt);
43 vfprintf(stderr, fmt, ap);
44 va_end(ap);
45}
46
31e31b8a 47/***********************************************************/
0ecfa993 48/* CPUX86 core interface */
367e86e8 49
ba1c6e37 50void cpu_x86_outb(int addr, int val)
367e86e8
FB
51{
52 fprintf(stderr, "outb: port=0x%04x, data=%02x\n", addr, val);
53}
54
ba1c6e37 55void cpu_x86_outw(int addr, int val)
367e86e8
FB
56{
57 fprintf(stderr, "outw: port=0x%04x, data=%04x\n", addr, val);
58}
59
ba1c6e37 60void cpu_x86_outl(int addr, int val)
367e86e8
FB
61{
62 fprintf(stderr, "outl: port=0x%04x, data=%08x\n", addr, val);
63}
64
ba1c6e37 65int cpu_x86_inb(int addr)
367e86e8
FB
66{
67 fprintf(stderr, "inb: port=0x%04x\n", addr);
68 return 0;
69}
70
ba1c6e37 71int cpu_x86_inw(int addr)
367e86e8
FB
72{
73 fprintf(stderr, "inw: port=0x%04x\n", addr);
74 return 0;
75}
76
ba1c6e37 77int cpu_x86_inl(int addr)
367e86e8
FB
78{
79 fprintf(stderr, "inl: port=0x%04x\n", addr);
80 return 0;
81}
82
31e31b8a
FB
83
84/* XXX: currently we use LDT entries */
85#define __USER_CS (0x23|4)
86#define __USER_DS (0x2B|4)
87
88void usage(void)
89{
7d13299d 90 printf("gemu version" GEMU_VERSION ", Copyright (c) 2003 Fabrice Bellard\n"
586314f2 91 "usage: gemu [-d] program [arguments...]\n"
31e31b8a
FB
92 "Linux x86 emulator\n"
93 );
94 exit(1);
95}
96
97int main(int argc, char **argv)
98{
99 const char *filename;
01ffc75b 100 struct target_pt_regs regs1, *regs = &regs1;
31e31b8a 101 struct image_info info1, *info = &info1;
0ecfa993 102 CPUX86State *env;
586314f2 103 int optind;
31e31b8a
FB
104
105 if (argc <= 1)
106 usage();
586314f2
FB
107 loglevel = 0;
108 optind = 1;
109 if (argv[optind] && !strcmp(argv[optind], "-d")) {
110 loglevel = 1;
111 optind++;
112 }
113 filename = argv[optind];
114
115 /* init debug */
116 if (loglevel) {
117 logfile = fopen(DEBUG_LOGFILE, "w");
118 if (!logfile) {
119 perror(DEBUG_LOGFILE);
120 exit(1);
121 }
122 setvbuf(logfile, NULL, _IOLBF, 0);
123 }
31e31b8a
FB
124
125 /* Zero out regs */
01ffc75b 126 memset(regs, 0, sizeof(struct target_pt_regs));
31e31b8a
FB
127
128 /* Zero out image_info */
129 memset(info, 0, sizeof(struct image_info));
130
4b74fe1f 131 if(elf_exec(filename, argv+optind, environ, regs, info) != 0) {
31e31b8a
FB
132 printf("Error loading %s\n", filename);
133 exit(1);
134 }
135
4b74fe1f
FB
136 if (loglevel) {
137 fprintf(logfile, "start_brk 0x%08lx\n" , info->start_brk);
138 fprintf(logfile, "end_code 0x%08lx\n" , info->end_code);
139 fprintf(logfile, "start_code 0x%08lx\n" , info->start_code);
140 fprintf(logfile, "end_data 0x%08lx\n" , info->end_data);
141 fprintf(logfile, "start_stack 0x%08lx\n" , info->start_stack);
142 fprintf(logfile, "brk 0x%08lx\n" , info->brk);
143 fprintf(logfile, "esp 0x%08lx\n" , regs->esp);
144 fprintf(logfile, "eip 0x%08lx\n" , regs->eip);
145 }
31e31b8a
FB
146
147 target_set_brk((char *)info->brk);
148 syscall_init();
149
0ecfa993
FB
150 env = cpu_x86_init();
151
152 env->regs[R_EAX] = regs->eax;
153 env->regs[R_EBX] = regs->ebx;
154 env->regs[R_ECX] = regs->ecx;
155 env->regs[R_EDX] = regs->edx;
156 env->regs[R_ESI] = regs->esi;
157 env->regs[R_EDI] = regs->edi;
158 env->regs[R_EBP] = regs->ebp;
159 env->regs[R_ESP] = regs->esp;
160 env->segs[R_CS] = __USER_CS;
161 env->segs[R_DS] = __USER_DS;
162 env->segs[R_ES] = __USER_DS;
163 env->segs[R_SS] = __USER_DS;
164 env->segs[R_FS] = __USER_DS;
165 env->segs[R_GS] = __USER_DS;
166 env->pc = regs->eip;
31e31b8a 167
0ecfa993 168#if 0
31e31b8a
FB
169 LDT[__USER_CS >> 3].w86Flags = DF_PRESENT | DF_PAGES | DF_32;
170 LDT[__USER_CS >> 3].dwSelLimit = 0xfffff;
171 LDT[__USER_CS >> 3].lpSelBase = NULL;
172
173 LDT[__USER_DS >> 3].w86Flags = DF_PRESENT | DF_PAGES | DF_32;
174 LDT[__USER_DS >> 3].dwSelLimit = 0xfffff;
175 LDT[__USER_DS >> 3].lpSelBase = NULL;
0ecfa993 176#endif
31e31b8a
FB
177
178 for(;;) {
179 int err;
180 uint8_t *pc;
0ecfa993
FB
181
182 err = cpu_x86_exec(env);
31e31b8a
FB
183 switch(err) {
184 case EXCP0D_GPF:
0ecfa993 185 pc = (uint8_t *)env->pc;
31e31b8a
FB
186 if (pc[0] == 0xcd && pc[1] == 0x80) {
187 /* syscall */
0ecfa993
FB
188 env->pc += 2;
189 env->regs[R_EAX] = do_syscall(env->regs[R_EAX],
190 env->regs[R_EBX],
191 env->regs[R_ECX],
192 env->regs[R_EDX],
193 env->regs[R_ESI],
194 env->regs[R_EDI],
195 env->regs[R_EBP]);
31e31b8a
FB
196 } else {
197 goto trap_error;
198 }
199 break;
200 default:
201 trap_error:
0ecfa993
FB
202 fprintf(stderr, "0x%08lx: Unknown exception %d, aborting\n",
203 (long)env->pc, err);
31e31b8a
FB
204 abort();
205 }
206 }
207 return 0;
208}