ARM emulation support
[qemu] / cpu-i386.h
1 /*
2  * i386 virtual CPU header
3  * 
4  *  Copyright (c) 2003 Fabrice Bellard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library 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 GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20 #ifndef CPU_I386_H
21 #define CPU_I386_H
22
23 #include "config.h"
24 #include <setjmp.h>
25
26 #define R_EAX 0
27 #define R_ECX 1
28 #define R_EDX 2
29 #define R_EBX 3
30 #define R_ESP 4
31 #define R_EBP 5
32 #define R_ESI 6
33 #define R_EDI 7
34
35 #define R_AL 0
36 #define R_CL 1
37 #define R_DL 2
38 #define R_BL 3
39 #define R_AH 4
40 #define R_CH 5
41 #define R_DH 6
42 #define R_BH 7
43
44 #define R_ES 0
45 #define R_CS 1
46 #define R_SS 2
47 #define R_DS 3
48 #define R_FS 4
49 #define R_GS 5
50
51 /* segment descriptor fields */
52 #define DESC_G_MASK     (1 << 23)
53 #define DESC_B_MASK     (1 << 22)
54 #define DESC_AVL_MASK   (1 << 20)
55 #define DESC_P_MASK     (1 << 15)
56 #define DESC_DPL_SHIFT  13
57 #define DESC_S_MASK     (1 << 12)
58 #define DESC_TYPE_SHIFT 8
59 #define DESC_A_MASK     (1 << 8)
60
61 #define DESC_CS_MASK    (1 << 11)
62 #define DESC_C_MASK     (1 << 10)
63 #define DESC_R_MASK     (1 << 9)
64
65 #define DESC_E_MASK     (1 << 10)
66 #define DESC_W_MASK     (1 << 9)
67
68 /* eflags masks */
69 #define CC_C    0x0001
70 #define CC_P    0x0004
71 #define CC_A    0x0010
72 #define CC_Z    0x0040
73 #define CC_S    0x0080
74 #define CC_O    0x0800
75
76 #define TF_MASK                 0x00000100
77 #define IF_MASK                 0x00000200
78 #define DF_MASK                 0x00000400
79 #define IOPL_MASK               0x00003000
80 #define NT_MASK                 0x00004000
81 #define RF_MASK                 0x00010000
82 #define VM_MASK                 0x00020000
83 #define AC_MASK                 0x00040000 
84 #define VIF_MASK                0x00080000
85 #define VIP_MASK                0x00100000
86 #define ID_MASK                 0x00200000
87
88 #define EXCP00_DIVZ     0
89 #define EXCP01_SSTP     1
90 #define EXCP02_NMI      2
91 #define EXCP03_INT3     3
92 #define EXCP04_INTO     4
93 #define EXCP05_BOUND    5
94 #define EXCP06_ILLOP    6
95 #define EXCP07_PREX     7
96 #define EXCP08_DBLE     8
97 #define EXCP09_XERR     9
98 #define EXCP0A_TSS      10
99 #define EXCP0B_NOSEG    11
100 #define EXCP0C_STACK    12
101 #define EXCP0D_GPF      13
102 #define EXCP0E_PAGE     14
103 #define EXCP10_COPR     16
104 #define EXCP11_ALGN     17
105 #define EXCP12_MCHK     18
106
107 #define EXCP_INTERRUPT  256 /* async interruption */
108
109 enum {
110     CC_OP_DYNAMIC, /* must use dynamic code to get cc_op */
111     CC_OP_EFLAGS,  /* all cc are explicitely computed, CC_SRC = flags */
112     CC_OP_MUL, /* modify all flags, C, O = (CC_SRC != 0) */
113
114     CC_OP_ADDB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
115     CC_OP_ADDW,
116     CC_OP_ADDL,
117
118     CC_OP_ADCB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
119     CC_OP_ADCW,
120     CC_OP_ADCL,
121
122     CC_OP_SUBB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
123     CC_OP_SUBW,
124     CC_OP_SUBL,
125
126     CC_OP_SBBB, /* modify all flags, CC_DST = res, CC_SRC = src1 */
127     CC_OP_SBBW,
128     CC_OP_SBBL,
129
130     CC_OP_LOGICB, /* modify all flags, CC_DST = res */
131     CC_OP_LOGICW,
132     CC_OP_LOGICL,
133
134     CC_OP_INCB, /* modify all flags except, CC_DST = res, CC_SRC = C */
135     CC_OP_INCW,
136     CC_OP_INCL,
137
138     CC_OP_DECB, /* modify all flags except, CC_DST = res, CC_SRC = C  */
139     CC_OP_DECW,
140     CC_OP_DECL,
141
142     CC_OP_SHLB, /* modify all flags, CC_DST = res, CC_SRC.lsb = C */
143     CC_OP_SHLW,
144     CC_OP_SHLL,
145
146     CC_OP_SARB, /* modify all flags, CC_DST = res, CC_SRC.lsb = C */
147     CC_OP_SARW,
148     CC_OP_SARL,
149
150     CC_OP_NB,
151 };
152
153 #ifdef __i386__
154 #define USE_X86LDOUBLE
155 #endif
156
157 #ifdef USE_X86LDOUBLE
158 typedef long double CPU86_LDouble;
159 #else
160 typedef double CPU86_LDouble;
161 #endif
162
163 typedef struct SegmentCache {
164     uint8_t *base;
165     unsigned long limit;
166     uint8_t seg_32bit;
167 } SegmentCache;
168
169 typedef struct SegmentDescriptorTable {
170     uint8_t *base;
171     unsigned long limit;
172     /* this is the returned base when reading the register, just to
173     avoid that the emulated program modifies it */
174     unsigned long emu_base;
175 } SegmentDescriptorTable;
176
177 typedef struct CPUX86State {
178     /* standard registers */
179     uint32_t regs[8];
180     uint32_t eip;
181     uint32_t eflags; /* eflags register. During CPU emulation, CC
182                         flags and DF are set to zero because they are
183                         stored elsewhere */
184
185     /* emulator internal eflags handling */
186     uint32_t cc_src;
187     uint32_t cc_dst;
188     uint32_t cc_op;
189     int32_t df; /* D flag : 1 if D = 0, -1 if D = 1 */
190
191     /* FPU state */
192     unsigned int fpstt; /* top of stack index */
193     unsigned int fpus;
194     unsigned int fpuc;
195     uint8_t fptags[8];   /* 0 = valid, 1 = empty */
196     CPU86_LDouble fpregs[8];    
197
198     /* emulator internal variables */
199     CPU86_LDouble ft0;
200     union {
201         float f;
202         double d;
203         int i32;
204         int64_t i64;
205     } fp_convert;
206     
207     /* segments */
208     uint32_t segs[6]; /* selector values */
209     SegmentCache seg_cache[6]; /* info taken from LDT/GDT */
210     SegmentDescriptorTable gdt;
211     SegmentDescriptorTable ldt;
212     SegmentDescriptorTable idt;
213     
214     /* exception/interrupt handling */
215     jmp_buf jmp_env;
216     int exception_index;
217     int error_code;
218     uint32_t cr2;
219     int interrupt_request;
220
221     /* user data */
222     void *opaque;
223 } CPUX86State;
224
225 #ifndef IN_OP_I386
226 void cpu_x86_outb(CPUX86State *env, int addr, int val);
227 void cpu_x86_outw(CPUX86State *env, int addr, int val);
228 void cpu_x86_outl(CPUX86State *env, int addr, int val);
229 int cpu_x86_inb(CPUX86State *env, int addr);
230 int cpu_x86_inw(CPUX86State *env, int addr);
231 int cpu_x86_inl(CPUX86State *env, int addr);
232 #endif
233
234 CPUX86State *cpu_x86_init(void);
235 int cpu_x86_exec(CPUX86State *s);
236 void cpu_x86_interrupt(CPUX86State *s);
237 void cpu_x86_close(CPUX86State *s);
238
239 /* needed to load some predefinied segment registers */
240 void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector);
241
242 /* simulate fsave/frstor */
243 void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32);
244 void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32);
245
246 /* you can call this signal handler from your SIGBUS and SIGSEGV
247    signal handlers to inform the virtual CPU of exceptions. non zero
248    is returned if the signal was handled by the virtual CPU.  */
249 struct siginfo;
250 int cpu_x86_signal_handler(int host_signum, struct siginfo *info, 
251                            void *puc);
252
253 /* used to debug */
254 #define X86_DUMP_FPU  0x0001 /* dump FPU state too */
255 #define X86_DUMP_CCOP 0x0002 /* dump qemu flag cache */
256 void cpu_x86_dump_state(CPUX86State *env, FILE *f, int flags);
257
258 #define TARGET_PAGE_BITS 12
259 #include "cpu-all.h"
260
261 #endif /* CPU_I386_H */