VirtualBox

source: vbox/trunk/src/recompiler/new/target-i386/exec.h@ 1107

Last change on this file since 1107 was 644, checked in by vboxsync, 18 years ago

Merged in current upstream changes.

  • Property svn:eol-style set to native
File size: 14.1 KB
Line 
1/*
2 * i386 execution defines
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#include "config.h"
21#include "dyngen-exec.h"
22
23/* XXX: factorize this mess */
24#ifdef TARGET_X86_64
25#define TARGET_LONG_BITS 64
26#else
27#define TARGET_LONG_BITS 32
28#endif
29
30#include "cpu-defs.h"
31
32/* at least 4 register variables are defined */
33register struct CPUX86State *env asm(AREG0);
34
35#if TARGET_LONG_BITS > HOST_LONG_BITS
36
37/* no registers can be used */
38#define T0 (env->t0)
39#define T1 (env->t1)
40#define T2 (env->t2)
41
42#else
43
44/* XXX: use unsigned long instead of target_ulong - better code will
45 be generated for 64 bit CPUs */
46register target_ulong T0 asm(AREG1);
47register target_ulong T1 asm(AREG2);
48register target_ulong T2 asm(AREG3);
49
50/* if more registers are available, we define some registers too */
51#ifdef AREG4
52register target_ulong EAX asm(AREG4);
53#define reg_EAX
54#endif
55
56#ifdef AREG5
57register target_ulong ESP asm(AREG5);
58#define reg_ESP
59#endif
60
61#ifdef AREG6
62register target_ulong EBP asm(AREG6);
63#define reg_EBP
64#endif
65
66#ifdef AREG7
67register target_ulong ECX asm(AREG7);
68#define reg_ECX
69#endif
70
71#ifdef AREG8
72register target_ulong EDX asm(AREG8);
73#define reg_EDX
74#endif
75
76#ifdef AREG9
77register target_ulong EBX asm(AREG9);
78#define reg_EBX
79#endif
80
81#ifdef AREG10
82register target_ulong ESI asm(AREG10);
83#define reg_ESI
84#endif
85
86#ifdef AREG11
87register target_ulong EDI asm(AREG11);
88#define reg_EDI
89#endif
90
91#endif /* ! (TARGET_LONG_BITS > HOST_LONG_BITS) */
92
93#define A0 T2
94
95extern FILE *logfile;
96extern int loglevel;
97
98#ifndef reg_EAX
99#define EAX (env->regs[R_EAX])
100#endif
101#ifndef reg_ECX
102#define ECX (env->regs[R_ECX])
103#endif
104#ifndef reg_EDX
105#define EDX (env->regs[R_EDX])
106#endif
107#ifndef reg_EBX
108#define EBX (env->regs[R_EBX])
109#endif
110#ifndef reg_ESP
111#define ESP (env->regs[R_ESP])
112#endif
113#ifndef reg_EBP
114#define EBP (env->regs[R_EBP])
115#endif
116#ifndef reg_ESI
117#define ESI (env->regs[R_ESI])
118#endif
119#ifndef reg_EDI
120#define EDI (env->regs[R_EDI])
121#endif
122#define EIP (env->eip)
123#define DF (env->df)
124
125#define CC_SRC (env->cc_src)
126#define CC_DST (env->cc_dst)
127#define CC_OP (env->cc_op)
128
129/* float macros */
130#define FT0 (env->ft0)
131#define ST0 (env->fpregs[env->fpstt].d)
132#define ST(n) (env->fpregs[(env->fpstt + (n)) & 7].d)
133#define ST1 ST(1)
134
135#ifdef USE_FP_CONVERT
136#define FP_CONVERT (env->fp_convert)
137#endif
138
139#include "cpu.h"
140#include "exec-all.h"
141
142typedef struct CCTable {
143 int (*compute_all)(void); /* return all the flags */
144 int (*compute_c)(void); /* return the C flag */
145} CCTable;
146
147extern CCTable cc_table[];
148
149void load_seg(int seg_reg, int selector);
150void helper_ljmp_protected_T0_T1(int next_eip);
151void helper_lcall_real_T0_T1(int shift, int next_eip);
152void helper_lcall_protected_T0_T1(int shift, int next_eip);
153void helper_iret_real(int shift);
154void helper_iret_protected(int shift, int next_eip);
155void helper_lret_protected(int shift, int addend);
156void helper_lldt_T0(void);
157void helper_ltr_T0(void);
158void helper_movl_crN_T0(int reg);
159void helper_movl_drN_T0(int reg);
160void helper_invlpg(target_ulong addr);
161void cpu_x86_update_cr0(CPUX86State *env, uint32_t new_cr0);
162void cpu_x86_update_cr3(CPUX86State *env, target_ulong new_cr3);
163void cpu_x86_update_cr4(CPUX86State *env, uint32_t new_cr4);
164void cpu_x86_flush_tlb(CPUX86State *env, target_ulong addr);
165int cpu_x86_handle_mmu_fault(CPUX86State *env, target_ulong addr,
166 int is_write, int is_user, int is_softmmu);
167void tlb_fill(target_ulong addr, int is_write, int is_user,
168 void *retaddr);
169void __hidden cpu_lock(void);
170void __hidden cpu_unlock(void);
171void do_interrupt(int intno, int is_int, int error_code,
172 target_ulong next_eip, int is_hw);
173void do_interrupt_user(int intno, int is_int, int error_code,
174 target_ulong next_eip);
175void raise_interrupt(int intno, int is_int, int error_code,
176 int next_eip_addend);
177void raise_exception_err(int exception_index, int error_code);
178void raise_exception(int exception_index);
179void do_smm_enter(void);
180void __hidden cpu_loop_exit(void);
181
182void OPPROTO op_movl_eflags_T0(void);
183void OPPROTO op_movl_T0_eflags(void);
184void helper_divl_EAX_T0(void);
185void helper_idivl_EAX_T0(void);
186void helper_mulq_EAX_T0(void);
187void helper_imulq_EAX_T0(void);
188void helper_imulq_T0_T1(void);
189void helper_divq_EAX_T0(void);
190void helper_idivq_EAX_T0(void);
191void helper_bswapq_T0(void);
192void helper_cmpxchg8b(void);
193void helper_cpuid(void);
194void helper_enter_level(int level, int data32);
195void helper_enter64_level(int level, int data64);
196void helper_sysenter(void);
197void helper_sysexit(void);
198void helper_syscall(int next_eip_addend);
199void helper_sysret(int dflag);
200void helper_rdtsc(void);
201void helper_rdmsr(void);
202void helper_wrmsr(void);
203void helper_lsl(void);
204void helper_lar(void);
205void helper_verr(void);
206void helper_verw(void);
207void helper_rsm(void);
208
209#ifdef VBOX
210void helper_external_event(void);
211
212/* in helper.c */
213void sync_seg(CPUX86State *env1, int seg_reg, int selector);
214void sync_ldtr(CPUX86State *env1, int selector);
215int sync_tr(CPUX86State *env1, int selector);
216
217#endif
218
219void check_iob_T0(void);
220void check_iow_T0(void);
221void check_iol_T0(void);
222void check_iob_DX(void);
223void check_iow_DX(void);
224void check_iol_DX(void);
225
226#if !defined(CONFIG_USER_ONLY)
227
228#include "softmmu_exec.h"
229
230static inline double ldfq(target_ulong ptr)
231{
232 union {
233 double d;
234 uint64_t i;
235 } u;
236 u.i = ldq(ptr);
237 return u.d;
238}
239
240static inline void stfq(target_ulong ptr, double v)
241{
242 union {
243 double d;
244 uint64_t i;
245 } u;
246 u.d = v;
247 stq(ptr, u.i);
248}
249
250static inline float ldfl(target_ulong ptr)
251{
252 union {
253 float f;
254 uint32_t i;
255 } u;
256 u.i = ldl(ptr);
257 return u.f;
258}
259
260static inline void stfl(target_ulong ptr, float v)
261{
262 union {
263 float f;
264 uint32_t i;
265 } u;
266 u.f = v;
267 stl(ptr, u.i);
268}
269
270#endif /* !defined(CONFIG_USER_ONLY) */
271
272#ifdef USE_X86LDOUBLE
273/* use long double functions */
274#define floatx_to_int32 floatx80_to_int32
275#define floatx_to_int64 floatx80_to_int64
276#define floatx_to_int32_round_to_zero floatx80_to_int32_round_to_zero
277#define floatx_to_int64_round_to_zero floatx80_to_int64_round_to_zero
278#define floatx_abs floatx80_abs
279#define floatx_chs floatx80_chs
280#define floatx_round_to_int floatx80_round_to_int
281#define floatx_compare floatx80_compare
282#define floatx_compare_quiet floatx80_compare_quiet
283#ifdef VBOX
284#undef sin
285#undef cos
286#undef sqrt
287#undef pow
288#undef log
289#undef tan
290#undef atan2
291#undef floor
292#undef ceil
293#undef ldexp
294#endif /* !VBOX */
295#define sin sinl
296#define cos cosl
297#define sqrt sqrtl
298#define pow powl
299#define log logl
300#define tan tanl
301#define atan2 atan2l
302#define floor floorl
303#define ceil ceill
304#define ldexp ldexpl
305#else
306#define floatx_to_int32 float64_to_int32
307#define floatx_to_int64 float64_to_int64
308#define floatx_to_int32_round_to_zero float64_to_int32_round_to_zero
309#define floatx_to_int64_round_to_zero float64_to_int64_round_to_zero
310#define floatx_abs float64_abs
311#define floatx_chs float64_chs
312#define floatx_round_to_int float64_round_to_int
313#define floatx_compare float64_compare
314#define floatx_compare_quiet float64_compare_quiet
315#endif
316
317extern CPU86_LDouble sin(CPU86_LDouble x);
318extern CPU86_LDouble cos(CPU86_LDouble x);
319extern CPU86_LDouble sqrt(CPU86_LDouble x);
320extern CPU86_LDouble pow(CPU86_LDouble, CPU86_LDouble);
321extern CPU86_LDouble log(CPU86_LDouble x);
322extern CPU86_LDouble tan(CPU86_LDouble x);
323extern CPU86_LDouble atan2(CPU86_LDouble, CPU86_LDouble);
324extern CPU86_LDouble floor(CPU86_LDouble x);
325extern CPU86_LDouble ceil(CPU86_LDouble x);
326
327#define RC_MASK 0xc00
328#define RC_NEAR 0x000
329#define RC_DOWN 0x400
330#define RC_UP 0x800
331#define RC_CHOP 0xc00
332
333#define MAXTAN 9223372036854775808.0
334
335#ifdef USE_X86LDOUBLE
336
337/* only for x86 */
338typedef union {
339 long double d;
340 struct {
341 unsigned long long lower;
342 unsigned short upper;
343 } l;
344} CPU86_LDoubleU;
345
346/* the following deal with x86 long double-precision numbers */
347#define MAXEXPD 0x7fff
348#define EXPBIAS 16383
349#define EXPD(fp) (fp.l.upper & 0x7fff)
350#define SIGND(fp) ((fp.l.upper) & 0x8000)
351#define MANTD(fp) (fp.l.lower)
352#define BIASEXPONENT(fp) fp.l.upper = (fp.l.upper & ~(0x7fff)) | EXPBIAS
353
354#else
355
356/* NOTE: arm is horrible as double 32 bit words are stored in big endian ! */
357typedef union {
358 double d;
359#if !defined(WORDS_BIGENDIAN) && !defined(__arm__)
360 struct {
361 uint32_t lower;
362 int32_t upper;
363 } l;
364#else
365 struct {
366 int32_t upper;
367 uint32_t lower;
368 } l;
369#endif
370#ifndef __arm__
371 int64_t ll;
372#endif
373} CPU86_LDoubleU;
374
375/* the following deal with IEEE double-precision numbers */
376#define MAXEXPD 0x7ff
377#define EXPBIAS 1023
378#define EXPD(fp) (((fp.l.upper) >> 20) & 0x7FF)
379#define SIGND(fp) ((fp.l.upper) & 0x80000000)
380#ifdef __arm__
381#define MANTD(fp) (fp.l.lower | ((uint64_t)(fp.l.upper & ((1 << 20) - 1)) << 32))
382#else
383#define MANTD(fp) (fp.ll & ((1LL << 52) - 1))
384#endif
385#define BIASEXPONENT(fp) fp.l.upper = (fp.l.upper & ~(0x7ff << 20)) | (EXPBIAS << 20)
386#endif
387
388static inline void fpush(void)
389{
390 env->fpstt = (env->fpstt - 1) & 7;
391 env->fptags[env->fpstt] = 0; /* validate stack entry */
392}
393
394static inline void fpop(void)
395{
396 env->fptags[env->fpstt] = 1; /* invvalidate stack entry */
397 env->fpstt = (env->fpstt + 1) & 7;
398}
399
400#ifndef USE_X86LDOUBLE
401static inline CPU86_LDouble helper_fldt(target_ulong ptr)
402{
403 CPU86_LDoubleU temp;
404 int upper, e;
405 uint64_t ll;
406
407 /* mantissa */
408 upper = lduw(ptr + 8);
409 /* XXX: handle overflow ? */
410 e = (upper & 0x7fff) - 16383 + EXPBIAS; /* exponent */
411 e |= (upper >> 4) & 0x800; /* sign */
412 ll = (ldq(ptr) >> 11) & ((1LL << 52) - 1);
413#ifdef __arm__
414 temp.l.upper = (e << 20) | (ll >> 32);
415 temp.l.lower = ll;
416#else
417 temp.ll = ll | ((uint64_t)e << 52);
418#endif
419 return temp.d;
420}
421
422static inline void helper_fstt(CPU86_LDouble f, target_ulong ptr)
423{
424 CPU86_LDoubleU temp;
425 int e;
426
427 temp.d = f;
428 /* mantissa */
429 stq(ptr, (MANTD(temp) << 11) | (1LL << 63));
430 /* exponent + sign */
431 e = EXPD(temp) - EXPBIAS + 16383;
432 e |= SIGND(temp) >> 16;
433 stw(ptr + 8, e);
434}
435#else
436
437/* XXX: same endianness assumed */
438
439#ifdef CONFIG_USER_ONLY
440
441static inline CPU86_LDouble helper_fldt(target_ulong ptr)
442{
443 return *(CPU86_LDouble *)ptr;
444}
445
446static inline void helper_fstt(CPU86_LDouble f, target_ulong ptr)
447{
448 *(CPU86_LDouble *)ptr = f;
449}
450
451#else
452
453/* we use memory access macros */
454
455static inline CPU86_LDouble helper_fldt(target_ulong ptr)
456{
457 CPU86_LDoubleU temp;
458
459 temp.l.lower = ldq(ptr);
460 temp.l.upper = lduw(ptr + 8);
461 return temp.d;
462}
463
464static inline void helper_fstt(CPU86_LDouble f, target_ulong ptr)
465{
466 CPU86_LDoubleU temp;
467
468 temp.d = f;
469 stq(ptr, temp.l.lower);
470 stw(ptr + 8, temp.l.upper);
471}
472
473#endif /* !CONFIG_USER_ONLY */
474
475#endif /* USE_X86LDOUBLE */
476
477#define FPUS_IE (1 << 0)
478#define FPUS_DE (1 << 1)
479#define FPUS_ZE (1 << 2)
480#define FPUS_OE (1 << 3)
481#define FPUS_UE (1 << 4)
482#define FPUS_PE (1 << 5)
483#define FPUS_SF (1 << 6)
484#define FPUS_SE (1 << 7)
485#define FPUS_B (1 << 15)
486
487#define FPUC_EM 0x3f
488
489extern const CPU86_LDouble f15rk[7];
490
491void helper_fldt_ST0_A0(void);
492void helper_fstt_ST0_A0(void);
493void fpu_raise_exception(void);
494CPU86_LDouble helper_fdiv(CPU86_LDouble a, CPU86_LDouble b);
495void helper_fbld_ST0_A0(void);
496void helper_fbst_ST0_A0(void);
497void helper_f2xm1(void);
498void helper_fyl2x(void);
499void helper_fptan(void);
500void helper_fpatan(void);
501void helper_fxtract(void);
502void helper_fprem1(void);
503void helper_fprem(void);
504void helper_fyl2xp1(void);
505void helper_fsqrt(void);
506void helper_fsincos(void);
507void helper_frndint(void);
508void helper_fscale(void);
509void helper_fsin(void);
510void helper_fcos(void);
511void helper_fxam_ST0(void);
512void helper_fstenv(target_ulong ptr, int data32);
513void helper_fldenv(target_ulong ptr, int data32);
514void helper_fsave(target_ulong ptr, int data32);
515void helper_frstor(target_ulong ptr, int data32);
516void helper_fxsave(target_ulong ptr, int data64);
517void helper_fxrstor(target_ulong ptr, int data64);
518void restore_native_fp_state(CPUState *env);
519void save_native_fp_state(CPUState *env);
520float approx_rsqrt(float a);
521float approx_rcp(float a);
522void update_fp_status(void);
523void helper_hlt(void);
524void helper_monitor(void);
525void helper_mwait(void);
526
527extern const uint8_t parity_table[256];
528extern const uint8_t rclw_table[32];
529extern const uint8_t rclb_table[32];
530
531static inline uint32_t compute_eflags(void)
532{
533 return env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
534}
535
536/* NOTE: CC_OP must be modified manually to CC_OP_EFLAGS */
537static inline void load_eflags(int eflags, int update_mask)
538{
539 CC_SRC = eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
540 DF = 1 - (2 * ((eflags >> 10) & 1));
541 env->eflags = (env->eflags & ~update_mask) |
542 (eflags & update_mask);
543}
544
545static inline void env_to_regs(void)
546{
547#ifdef reg_EAX
548 EAX = env->regs[R_EAX];
549#endif
550#ifdef reg_ECX
551 ECX = env->regs[R_ECX];
552#endif
553#ifdef reg_EDX
554 EDX = env->regs[R_EDX];
555#endif
556#ifdef reg_EBX
557 EBX = env->regs[R_EBX];
558#endif
559#ifdef reg_ESP
560 ESP = env->regs[R_ESP];
561#endif
562#ifdef reg_EBP
563 EBP = env->regs[R_EBP];
564#endif
565#ifdef reg_ESI
566 ESI = env->regs[R_ESI];
567#endif
568#ifdef reg_EDI
569 EDI = env->regs[R_EDI];
570#endif
571}
572
573static inline void regs_to_env(void)
574{
575#ifdef reg_EAX
576 env->regs[R_EAX] = EAX;
577#endif
578#ifdef reg_ECX
579 env->regs[R_ECX] = ECX;
580#endif
581#ifdef reg_EDX
582 env->regs[R_EDX] = EDX;
583#endif
584#ifdef reg_EBX
585 env->regs[R_EBX] = EBX;
586#endif
587#ifdef reg_ESP
588 env->regs[R_ESP] = ESP;
589#endif
590#ifdef reg_EBP
591 env->regs[R_EBP] = EBP;
592#endif
593#ifdef reg_ESI
594 env->regs[R_ESI] = ESI;
595#endif
596#ifdef reg_EDI
597 env->regs[R_EDI] = EDI;
598#endif
599}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette