Exception handling improvments from Pavel Dovgalyuk.
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJV+HMuAAoJEK0ScMxN0CebIlsH/RcW2lwZwsYN0pQ5E1wE4HYe KDOFy3lMOmgZhbiA+++QMe7V7FIQ5ESIw8wpidIxj8XQUjUlnlwxHx+2zM2mY1Bk r3ObiDwGFtTSKp7yRedPMjeNjxuHknFylMDPvbqUbB8Gr+SAVQtxvuf7rLsw8i+z CtUesLdyqCXQ76i8k+oHudUAeu5pp5uf2y7j2Hlo5EL6Iu8gHo1nYmlpabaHbNx9 Tbf3KqtI9M0T/X76pcqEUHdHPKRYmOcD7Jhw1y2kA/NfsBIPxvpWjcZsyhoJMQVU PHNmJwYiiw1gffcbTOzd0ZZM49tF3BHyFqvpR8Bvt41Z/JhHyTqqnpJTwrX4ChA= =HlmV -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/rth/tags/pull-target-i386-20150915' into staging Exception handling improvments from Pavel Dovgalyuk. # gpg: Signature made Tue 15 Sep 2015 20:36:14 BST using RSA key ID 4DD0279B # gpg: Good signature from "Richard Henderson <rth7680@gmail.com>" # gpg: aka "Richard Henderson <rth@redhat.com>" # gpg: aka "Richard Henderson <rth@twiddle.net>" * remotes/rth/tags/pull-target-i386-20150915: target-i386: exception handling for other helper functions target-i386: exception handling for seg_helper functions target-i386: exception handling for memory helpers target-i386: exception handling for div instructions target-i386: exception handling for FPU instructions target-i386: introduce new raise_exception functions Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
3c4698d0b5
@ -378,7 +378,7 @@ void helper_sti_vm(CPUX86State *env)
|
||||
{
|
||||
env->eflags |= VIF_MASK;
|
||||
if (env->eflags & VIP_MASK) {
|
||||
raise_exception(env, EXCP0D_GPF);
|
||||
raise_exception_ra(env, EXCP0D_GPF, GETPC());
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
@ -1267,8 +1267,12 @@ void cpu_x86_inject_mce(Monitor *mon, X86CPU *cpu, int bank,
|
||||
|
||||
/* excp_helper.c */
|
||||
void QEMU_NORETURN raise_exception(CPUX86State *env, int exception_index);
|
||||
void QEMU_NORETURN raise_exception_ra(CPUX86State *env, int exception_index,
|
||||
uintptr_t retaddr);
|
||||
void QEMU_NORETURN raise_exception_err(CPUX86State *env, int exception_index,
|
||||
int error_code);
|
||||
void QEMU_NORETURN raise_exception_err_ra(CPUX86State *env, int exception_index,
|
||||
int error_code, uintptr_t retaddr);
|
||||
void QEMU_NORETURN raise_interrupt(CPUX86State *nenv, int intno, int is_int,
|
||||
int error_code, int next_eip_addend);
|
||||
|
||||
|
@ -22,14 +22,6 @@
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "exec/helper-proto.h"
|
||||
|
||||
#if 0
|
||||
#define raise_exception_err(env, a, b) \
|
||||
do { \
|
||||
qemu_log("raise_exception line=%d\n", __LINE__); \
|
||||
(raise_exception_err)(env, a, b); \
|
||||
} while (0)
|
||||
#endif
|
||||
|
||||
void helper_raise_interrupt(CPUX86State *env, int intno, int next_eip_addend)
|
||||
{
|
||||
raise_interrupt(env, intno, 1, 0, next_eip_addend);
|
||||
@ -92,7 +84,8 @@ static int check_exception(CPUX86State *env, int intno, int *error_code)
|
||||
*/
|
||||
static void QEMU_NORETURN raise_interrupt2(CPUX86State *env, int intno,
|
||||
int is_int, int error_code,
|
||||
int next_eip_addend)
|
||||
int next_eip_addend,
|
||||
uintptr_t retaddr)
|
||||
{
|
||||
CPUState *cs = CPU(x86_env_get_cpu(env));
|
||||
|
||||
@ -108,7 +101,7 @@ static void QEMU_NORETURN raise_interrupt2(CPUX86State *env, int intno,
|
||||
env->error_code = error_code;
|
||||
env->exception_is_int = is_int;
|
||||
env->exception_next_eip = env->eip + next_eip_addend;
|
||||
cpu_loop_exit(cs);
|
||||
cpu_loop_exit_restore(cs, retaddr);
|
||||
}
|
||||
|
||||
/* shortcuts to generate exceptions */
|
||||
@ -116,16 +109,27 @@ static void QEMU_NORETURN raise_interrupt2(CPUX86State *env, int intno,
|
||||
void QEMU_NORETURN raise_interrupt(CPUX86State *env, int intno, int is_int,
|
||||
int error_code, int next_eip_addend)
|
||||
{
|
||||
raise_interrupt2(env, intno, is_int, error_code, next_eip_addend);
|
||||
raise_interrupt2(env, intno, is_int, error_code, next_eip_addend, 0);
|
||||
}
|
||||
|
||||
void raise_exception_err(CPUX86State *env, int exception_index,
|
||||
int error_code)
|
||||
{
|
||||
raise_interrupt2(env, exception_index, 0, error_code, 0);
|
||||
raise_interrupt2(env, exception_index, 0, error_code, 0, 0);
|
||||
}
|
||||
|
||||
void raise_exception_err_ra(CPUX86State *env, int exception_index,
|
||||
int error_code, uintptr_t retaddr)
|
||||
{
|
||||
raise_interrupt2(env, exception_index, 0, error_code, 0, retaddr);
|
||||
}
|
||||
|
||||
void raise_exception(CPUX86State *env, int exception_index)
|
||||
{
|
||||
raise_interrupt2(env, exception_index, 0, 0, 0);
|
||||
raise_interrupt2(env, exception_index, 0, 0, 0, 0);
|
||||
}
|
||||
|
||||
void raise_exception_ra(CPUX86State *env, int exception_index, uintptr_t retaddr)
|
||||
{
|
||||
raise_interrupt2(env, exception_index, 0, 0, 0, retaddr);
|
||||
}
|
||||
|
@ -67,22 +67,24 @@ static inline void fpop(CPUX86State *env)
|
||||
env->fpstt = (env->fpstt + 1) & 7;
|
||||
}
|
||||
|
||||
static inline floatx80 helper_fldt(CPUX86State *env, target_ulong ptr)
|
||||
static inline floatx80 helper_fldt(CPUX86State *env, target_ulong ptr,
|
||||
uintptr_t retaddr)
|
||||
{
|
||||
CPU_LDoubleU temp;
|
||||
|
||||
temp.l.lower = cpu_ldq_data(env, ptr);
|
||||
temp.l.upper = cpu_lduw_data(env, ptr + 8);
|
||||
temp.l.lower = cpu_ldq_data_ra(env, ptr, retaddr);
|
||||
temp.l.upper = cpu_lduw_data_ra(env, ptr + 8, retaddr);
|
||||
return temp.d;
|
||||
}
|
||||
|
||||
static inline void helper_fstt(CPUX86State *env, floatx80 f, target_ulong ptr)
|
||||
static inline void helper_fstt(CPUX86State *env, floatx80 f, target_ulong ptr,
|
||||
uintptr_t retaddr)
|
||||
{
|
||||
CPU_LDoubleU temp;
|
||||
|
||||
temp.d = f;
|
||||
cpu_stq_data(env, ptr, temp.l.lower);
|
||||
cpu_stw_data(env, ptr + 8, temp.l.upper);
|
||||
cpu_stq_data_ra(env, ptr, temp.l.lower, retaddr);
|
||||
cpu_stw_data_ra(env, ptr + 8, temp.l.upper, retaddr);
|
||||
}
|
||||
|
||||
/* x87 FPU helpers */
|
||||
@ -125,10 +127,10 @@ static inline floatx80 helper_fdiv(CPUX86State *env, floatx80 a, floatx80 b)
|
||||
return floatx80_div(a, b, &env->fp_status);
|
||||
}
|
||||
|
||||
static void fpu_raise_exception(CPUX86State *env)
|
||||
static void fpu_raise_exception(CPUX86State *env, uintptr_t retaddr)
|
||||
{
|
||||
if (env->cr[0] & CR0_NE_MASK) {
|
||||
raise_exception(env, EXCP10_COPR);
|
||||
raise_exception_ra(env, EXCP10_COPR, retaddr);
|
||||
}
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
else {
|
||||
@ -313,14 +315,14 @@ void helper_fldt_ST0(CPUX86State *env, target_ulong ptr)
|
||||
int new_fpstt;
|
||||
|
||||
new_fpstt = (env->fpstt - 1) & 7;
|
||||
env->fpregs[new_fpstt].d = helper_fldt(env, ptr);
|
||||
env->fpregs[new_fpstt].d = helper_fldt(env, ptr, GETPC());
|
||||
env->fpstt = new_fpstt;
|
||||
env->fptags[new_fpstt] = 0; /* validate stack entry */
|
||||
}
|
||||
|
||||
void helper_fstt_ST0(CPUX86State *env, target_ulong ptr)
|
||||
{
|
||||
helper_fstt(env, ST0, ptr);
|
||||
helper_fstt(env, ST0, ptr, GETPC());
|
||||
}
|
||||
|
||||
void helper_fpush(CPUX86State *env)
|
||||
@ -603,7 +605,7 @@ void helper_fclex(CPUX86State *env)
|
||||
void helper_fwait(CPUX86State *env)
|
||||
{
|
||||
if (env->fpus & FPUS_SE) {
|
||||
fpu_raise_exception(env);
|
||||
fpu_raise_exception(env, GETPC());
|
||||
}
|
||||
}
|
||||
|
||||
@ -633,11 +635,11 @@ void helper_fbld_ST0(CPUX86State *env, target_ulong ptr)
|
||||
|
||||
val = 0;
|
||||
for (i = 8; i >= 0; i--) {
|
||||
v = cpu_ldub_data(env, ptr + i);
|
||||
v = cpu_ldub_data_ra(env, ptr + i, GETPC());
|
||||
val = (val * 100) + ((v >> 4) * 10) + (v & 0xf);
|
||||
}
|
||||
tmp = int64_to_floatx80(val, &env->fp_status);
|
||||
if (cpu_ldub_data(env, ptr + 9) & 0x80) {
|
||||
if (cpu_ldub_data_ra(env, ptr + 9, GETPC()) & 0x80) {
|
||||
tmp = floatx80_chs(tmp);
|
||||
}
|
||||
fpush(env);
|
||||
@ -654,10 +656,10 @@ void helper_fbst_ST0(CPUX86State *env, target_ulong ptr)
|
||||
mem_ref = ptr;
|
||||
mem_end = mem_ref + 9;
|
||||
if (val < 0) {
|
||||
cpu_stb_data(env, mem_end, 0x80);
|
||||
cpu_stb_data_ra(env, mem_end, 0x80, GETPC());
|
||||
val = -val;
|
||||
} else {
|
||||
cpu_stb_data(env, mem_end, 0x00);
|
||||
cpu_stb_data_ra(env, mem_end, 0x00, GETPC());
|
||||
}
|
||||
while (mem_ref < mem_end) {
|
||||
if (val == 0) {
|
||||
@ -666,10 +668,10 @@ void helper_fbst_ST0(CPUX86State *env, target_ulong ptr)
|
||||
v = val % 100;
|
||||
val = val / 100;
|
||||
v = ((v / 10) << 4) | (v % 10);
|
||||
cpu_stb_data(env, mem_ref++, v);
|
||||
cpu_stb_data_ra(env, mem_ref++, v, GETPC());
|
||||
}
|
||||
while (mem_ref < mem_end) {
|
||||
cpu_stb_data(env, mem_ref++, 0);
|
||||
cpu_stb_data_ra(env, mem_ref++, 0, GETPC());
|
||||
}
|
||||
}
|
||||
|
||||
@ -977,7 +979,8 @@ void helper_fxam_ST0(CPUX86State *env)
|
||||
}
|
||||
}
|
||||
|
||||
void helper_fstenv(CPUX86State *env, target_ulong ptr, int data32)
|
||||
static void do_fstenv(CPUX86State *env, target_ulong ptr, int data32,
|
||||
uintptr_t retaddr)
|
||||
{
|
||||
int fpus, fptag, exp, i;
|
||||
uint64_t mant;
|
||||
@ -1005,37 +1008,43 @@ void helper_fstenv(CPUX86State *env, target_ulong ptr, int data32)
|
||||
}
|
||||
if (data32) {
|
||||
/* 32 bit */
|
||||
cpu_stl_data(env, ptr, env->fpuc);
|
||||
cpu_stl_data(env, ptr + 4, fpus);
|
||||
cpu_stl_data(env, ptr + 8, fptag);
|
||||
cpu_stl_data(env, ptr + 12, 0); /* fpip */
|
||||
cpu_stl_data(env, ptr + 16, 0); /* fpcs */
|
||||
cpu_stl_data(env, ptr + 20, 0); /* fpoo */
|
||||
cpu_stl_data(env, ptr + 24, 0); /* fpos */
|
||||
cpu_stl_data_ra(env, ptr, env->fpuc, retaddr);
|
||||
cpu_stl_data_ra(env, ptr + 4, fpus, retaddr);
|
||||
cpu_stl_data_ra(env, ptr + 8, fptag, retaddr);
|
||||
cpu_stl_data_ra(env, ptr + 12, 0, retaddr); /* fpip */
|
||||
cpu_stl_data_ra(env, ptr + 16, 0, retaddr); /* fpcs */
|
||||
cpu_stl_data_ra(env, ptr + 20, 0, retaddr); /* fpoo */
|
||||
cpu_stl_data_ra(env, ptr + 24, 0, retaddr); /* fpos */
|
||||
} else {
|
||||
/* 16 bit */
|
||||
cpu_stw_data(env, ptr, env->fpuc);
|
||||
cpu_stw_data(env, ptr + 2, fpus);
|
||||
cpu_stw_data(env, ptr + 4, fptag);
|
||||
cpu_stw_data(env, ptr + 6, 0);
|
||||
cpu_stw_data(env, ptr + 8, 0);
|
||||
cpu_stw_data(env, ptr + 10, 0);
|
||||
cpu_stw_data(env, ptr + 12, 0);
|
||||
cpu_stw_data_ra(env, ptr, env->fpuc, retaddr);
|
||||
cpu_stw_data_ra(env, ptr + 2, fpus, retaddr);
|
||||
cpu_stw_data_ra(env, ptr + 4, fptag, retaddr);
|
||||
cpu_stw_data_ra(env, ptr + 6, 0, retaddr);
|
||||
cpu_stw_data_ra(env, ptr + 8, 0, retaddr);
|
||||
cpu_stw_data_ra(env, ptr + 10, 0, retaddr);
|
||||
cpu_stw_data_ra(env, ptr + 12, 0, retaddr);
|
||||
}
|
||||
}
|
||||
|
||||
void helper_fldenv(CPUX86State *env, target_ulong ptr, int data32)
|
||||
void helper_fstenv(CPUX86State *env, target_ulong ptr, int data32)
|
||||
{
|
||||
do_fstenv(env, ptr, data32, GETPC());
|
||||
}
|
||||
|
||||
static void do_fldenv(CPUX86State *env, target_ulong ptr, int data32,
|
||||
uintptr_t retaddr)
|
||||
{
|
||||
int i, fpus, fptag;
|
||||
|
||||
if (data32) {
|
||||
cpu_set_fpuc(env, cpu_lduw_data(env, ptr));
|
||||
fpus = cpu_lduw_data(env, ptr + 4);
|
||||
fptag = cpu_lduw_data(env, ptr + 8);
|
||||
cpu_set_fpuc(env, cpu_lduw_data_ra(env, ptr, retaddr));
|
||||
fpus = cpu_lduw_data_ra(env, ptr + 4, retaddr);
|
||||
fptag = cpu_lduw_data_ra(env, ptr + 8, retaddr);
|
||||
} else {
|
||||
cpu_set_fpuc(env, cpu_lduw_data(env, ptr));
|
||||
fpus = cpu_lduw_data(env, ptr + 2);
|
||||
fptag = cpu_lduw_data(env, ptr + 4);
|
||||
cpu_set_fpuc(env, cpu_lduw_data_ra(env, ptr, retaddr));
|
||||
fpus = cpu_lduw_data_ra(env, ptr + 2, retaddr);
|
||||
fptag = cpu_lduw_data_ra(env, ptr + 4, retaddr);
|
||||
}
|
||||
env->fpstt = (fpus >> 11) & 7;
|
||||
env->fpus = fpus & ~0x3800;
|
||||
@ -1045,17 +1054,22 @@ void helper_fldenv(CPUX86State *env, target_ulong ptr, int data32)
|
||||
}
|
||||
}
|
||||
|
||||
void helper_fldenv(CPUX86State *env, target_ulong ptr, int data32)
|
||||
{
|
||||
do_fldenv(env, ptr, data32, GETPC());
|
||||
}
|
||||
|
||||
void helper_fsave(CPUX86State *env, target_ulong ptr, int data32)
|
||||
{
|
||||
floatx80 tmp;
|
||||
int i;
|
||||
|
||||
helper_fstenv(env, ptr, data32);
|
||||
do_fstenv(env, ptr, data32, GETPC());
|
||||
|
||||
ptr += (14 << data32);
|
||||
for (i = 0; i < 8; i++) {
|
||||
tmp = ST(i);
|
||||
helper_fstt(env, tmp, ptr);
|
||||
helper_fstt(env, tmp, ptr, GETPC());
|
||||
ptr += 10;
|
||||
}
|
||||
|
||||
@ -1078,11 +1092,11 @@ void helper_frstor(CPUX86State *env, target_ulong ptr, int data32)
|
||||
floatx80 tmp;
|
||||
int i;
|
||||
|
||||
helper_fldenv(env, ptr, data32);
|
||||
do_fldenv(env, ptr, data32, GETPC());
|
||||
ptr += (14 << data32);
|
||||
|
||||
for (i = 0; i < 8; i++) {
|
||||
tmp = helper_fldt(env, ptr);
|
||||
tmp = helper_fldt(env, ptr, GETPC());
|
||||
ST(i) = tmp;
|
||||
ptr += 10;
|
||||
}
|
||||
@ -1100,7 +1114,8 @@ void cpu_x86_frstor(CPUX86State *env, target_ulong ptr, int data32)
|
||||
}
|
||||
#endif
|
||||
|
||||
void helper_fxsave(CPUX86State *env, target_ulong ptr, int data64)
|
||||
static void do_fxsave(CPUX86State *env, target_ulong ptr, int data64,
|
||||
uintptr_t retaddr)
|
||||
{
|
||||
int fpus, fptag, i, nb_xmm_regs;
|
||||
floatx80 tmp;
|
||||
@ -1108,7 +1123,7 @@ void helper_fxsave(CPUX86State *env, target_ulong ptr, int data64)
|
||||
|
||||
/* The operand must be 16 byte aligned */
|
||||
if (ptr & 0xf) {
|
||||
raise_exception(env, EXCP0D_GPF);
|
||||
raise_exception_ra(env, EXCP0D_GPF, retaddr);
|
||||
}
|
||||
|
||||
fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
|
||||
@ -1116,33 +1131,33 @@ void helper_fxsave(CPUX86State *env, target_ulong ptr, int data64)
|
||||
for (i = 0; i < 8; i++) {
|
||||
fptag |= (env->fptags[i] << i);
|
||||
}
|
||||
cpu_stw_data(env, ptr, env->fpuc);
|
||||
cpu_stw_data(env, ptr + 2, fpus);
|
||||
cpu_stw_data(env, ptr + 4, fptag ^ 0xff);
|
||||
cpu_stw_data_ra(env, ptr, env->fpuc, retaddr);
|
||||
cpu_stw_data_ra(env, ptr + 2, fpus, retaddr);
|
||||
cpu_stw_data_ra(env, ptr + 4, fptag ^ 0xff, retaddr);
|
||||
#ifdef TARGET_X86_64
|
||||
if (data64) {
|
||||
cpu_stq_data(env, ptr + 0x08, 0); /* rip */
|
||||
cpu_stq_data(env, ptr + 0x10, 0); /* rdp */
|
||||
cpu_stq_data_ra(env, ptr + 0x08, 0, retaddr); /* rip */
|
||||
cpu_stq_data_ra(env, ptr + 0x10, 0, retaddr); /* rdp */
|
||||
} else
|
||||
#endif
|
||||
{
|
||||
cpu_stl_data(env, ptr + 0x08, 0); /* eip */
|
||||
cpu_stl_data(env, ptr + 0x0c, 0); /* sel */
|
||||
cpu_stl_data(env, ptr + 0x10, 0); /* dp */
|
||||
cpu_stl_data(env, ptr + 0x14, 0); /* sel */
|
||||
cpu_stl_data_ra(env, ptr + 0x08, 0, retaddr); /* eip */
|
||||
cpu_stl_data_ra(env, ptr + 0x0c, 0, retaddr); /* sel */
|
||||
cpu_stl_data_ra(env, ptr + 0x10, 0, retaddr); /* dp */
|
||||
cpu_stl_data_ra(env, ptr + 0x14, 0, retaddr); /* sel */
|
||||
}
|
||||
|
||||
addr = ptr + 0x20;
|
||||
for (i = 0; i < 8; i++) {
|
||||
tmp = ST(i);
|
||||
helper_fstt(env, tmp, addr);
|
||||
helper_fstt(env, tmp, addr, retaddr);
|
||||
addr += 16;
|
||||
}
|
||||
|
||||
if (env->cr[4] & CR4_OSFXSR_MASK) {
|
||||
/* XXX: finish it */
|
||||
cpu_stl_data(env, ptr + 0x18, env->mxcsr); /* mxcsr */
|
||||
cpu_stl_data(env, ptr + 0x1c, 0x0000ffff); /* mxcsr_mask */
|
||||
cpu_stl_data_ra(env, ptr + 0x18, env->mxcsr, retaddr); /* mxcsr */
|
||||
cpu_stl_data_ra(env, ptr + 0x1c, 0x0000ffff, retaddr); /* mxcsr_mask */
|
||||
if (env->hflags & HF_CS64_MASK) {
|
||||
nb_xmm_regs = 16;
|
||||
} else {
|
||||
@ -1154,15 +1169,21 @@ void helper_fxsave(CPUX86State *env, target_ulong ptr, int data64)
|
||||
|| (env->hflags & HF_CPL_MASK)
|
||||
|| !(env->hflags & HF_LMA_MASK)) {
|
||||
for (i = 0; i < nb_xmm_regs; i++) {
|
||||
cpu_stq_data(env, addr, env->xmm_regs[i].XMM_Q(0));
|
||||
cpu_stq_data(env, addr + 8, env->xmm_regs[i].XMM_Q(1));
|
||||
cpu_stq_data_ra(env, addr, env->xmm_regs[i].XMM_Q(0), retaddr);
|
||||
cpu_stq_data_ra(env, addr + 8, env->xmm_regs[i].XMM_Q(1), retaddr);
|
||||
addr += 16;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void helper_fxrstor(CPUX86State *env, target_ulong ptr, int data64)
|
||||
void helper_fxsave(CPUX86State *env, target_ulong ptr, int data64)
|
||||
{
|
||||
do_fxsave(env, ptr, data64, GETPC());
|
||||
}
|
||||
|
||||
static void do_fxrstor(CPUX86State *env, target_ulong ptr, int data64,
|
||||
uintptr_t retaddr)
|
||||
{
|
||||
int i, fpus, fptag, nb_xmm_regs;
|
||||
floatx80 tmp;
|
||||
@ -1170,12 +1191,12 @@ void helper_fxrstor(CPUX86State *env, target_ulong ptr, int data64)
|
||||
|
||||
/* The operand must be 16 byte aligned */
|
||||
if (ptr & 0xf) {
|
||||
raise_exception(env, EXCP0D_GPF);
|
||||
raise_exception_ra(env, EXCP0D_GPF, retaddr);
|
||||
}
|
||||
|
||||
cpu_set_fpuc(env, cpu_lduw_data(env, ptr));
|
||||
fpus = cpu_lduw_data(env, ptr + 2);
|
||||
fptag = cpu_lduw_data(env, ptr + 4);
|
||||
cpu_set_fpuc(env, cpu_lduw_data_ra(env, ptr, retaddr));
|
||||
fpus = cpu_lduw_data_ra(env, ptr + 2, retaddr);
|
||||
fptag = cpu_lduw_data_ra(env, ptr + 4, retaddr);
|
||||
env->fpstt = (fpus >> 11) & 7;
|
||||
env->fpus = fpus & ~0x3800;
|
||||
fptag ^= 0xff;
|
||||
@ -1185,15 +1206,15 @@ void helper_fxrstor(CPUX86State *env, target_ulong ptr, int data64)
|
||||
|
||||
addr = ptr + 0x20;
|
||||
for (i = 0; i < 8; i++) {
|
||||
tmp = helper_fldt(env, addr);
|
||||
tmp = helper_fldt(env, addr, retaddr);
|
||||
ST(i) = tmp;
|
||||
addr += 16;
|
||||
}
|
||||
|
||||
if (env->cr[4] & CR4_OSFXSR_MASK) {
|
||||
/* XXX: finish it */
|
||||
cpu_set_mxcsr(env, cpu_ldl_data(env, ptr + 0x18));
|
||||
/* cpu_ldl_data(env, ptr + 0x1c); */
|
||||
cpu_set_mxcsr(env, cpu_ldl_data_ra(env, ptr + 0x18, retaddr));
|
||||
/* cpu_ldl_data_ra(env, ptr + 0x1c, retaddr); */
|
||||
if (env->hflags & HF_CS64_MASK) {
|
||||
nb_xmm_regs = 16;
|
||||
} else {
|
||||
@ -1205,14 +1226,19 @@ void helper_fxrstor(CPUX86State *env, target_ulong ptr, int data64)
|
||||
|| (env->hflags & HF_CPL_MASK)
|
||||
|| !(env->hflags & HF_LMA_MASK)) {
|
||||
for (i = 0; i < nb_xmm_regs; i++) {
|
||||
env->xmm_regs[i].XMM_Q(0) = cpu_ldq_data(env, addr);
|
||||
env->xmm_regs[i].XMM_Q(1) = cpu_ldq_data(env, addr + 8);
|
||||
env->xmm_regs[i].XMM_Q(0) = cpu_ldq_data_ra(env, addr, retaddr);
|
||||
env->xmm_regs[i].XMM_Q(1) = cpu_ldq_data_ra(env, addr + 8, retaddr);
|
||||
addr += 16;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void helper_fxrstor(CPUX86State *env, target_ulong ptr, int data64)
|
||||
{
|
||||
do_fxrstor(env, ptr, data64, GETPC());
|
||||
}
|
||||
|
||||
void cpu_get_fp80(uint64_t *pmant, uint16_t *pexp, floatx80 f)
|
||||
{
|
||||
CPU_LDoubleU temp;
|
||||
|
@ -30,9 +30,9 @@ DEF_HELPER_2(verw, void, env, tl)
|
||||
DEF_HELPER_2(lldt, void, env, int)
|
||||
DEF_HELPER_2(ltr, void, env, int)
|
||||
DEF_HELPER_3(load_seg, void, env, int, int)
|
||||
DEF_HELPER_4(ljmp_protected, void, env, int, tl, int)
|
||||
DEF_HELPER_4(ljmp_protected, void, env, int, tl, tl)
|
||||
DEF_HELPER_5(lcall_real, void, env, int, tl, int, int)
|
||||
DEF_HELPER_5(lcall_protected, void, env, int, tl, int, int)
|
||||
DEF_HELPER_5(lcall_protected, void, env, int, tl, int, tl)
|
||||
DEF_HELPER_2(iret_real, void, env, int)
|
||||
DEF_HELPER_3(iret_protected, void, env, int, int)
|
||||
DEF_HELPER_3(lret_protected, void, env, int, int)
|
||||
|
@ -48,11 +48,11 @@ void helper_divb_AL(CPUX86State *env, target_ulong t0)
|
||||
num = (env->regs[R_EAX] & 0xffff);
|
||||
den = (t0 & 0xff);
|
||||
if (den == 0) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q = (num / den);
|
||||
if (q > 0xff) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q &= 0xff;
|
||||
r = (num % den) & 0xff;
|
||||
@ -66,11 +66,11 @@ void helper_idivb_AL(CPUX86State *env, target_ulong t0)
|
||||
num = (int16_t)env->regs[R_EAX];
|
||||
den = (int8_t)t0;
|
||||
if (den == 0) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q = (num / den);
|
||||
if (q != (int8_t)q) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q &= 0xff;
|
||||
r = (num % den) & 0xff;
|
||||
@ -84,11 +84,11 @@ void helper_divw_AX(CPUX86State *env, target_ulong t0)
|
||||
num = (env->regs[R_EAX] & 0xffff) | ((env->regs[R_EDX] & 0xffff) << 16);
|
||||
den = (t0 & 0xffff);
|
||||
if (den == 0) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q = (num / den);
|
||||
if (q > 0xffff) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q &= 0xffff;
|
||||
r = (num % den) & 0xffff;
|
||||
@ -103,11 +103,11 @@ void helper_idivw_AX(CPUX86State *env, target_ulong t0)
|
||||
num = (env->regs[R_EAX] & 0xffff) | ((env->regs[R_EDX] & 0xffff) << 16);
|
||||
den = (int16_t)t0;
|
||||
if (den == 0) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q = (num / den);
|
||||
if (q != (int16_t)q) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q &= 0xffff;
|
||||
r = (num % den) & 0xffff;
|
||||
@ -123,12 +123,12 @@ void helper_divl_EAX(CPUX86State *env, target_ulong t0)
|
||||
num = ((uint32_t)env->regs[R_EAX]) | ((uint64_t)((uint32_t)env->regs[R_EDX]) << 32);
|
||||
den = t0;
|
||||
if (den == 0) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q = (num / den);
|
||||
r = (num % den);
|
||||
if (q > 0xffffffff) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
env->regs[R_EAX] = (uint32_t)q;
|
||||
env->regs[R_EDX] = (uint32_t)r;
|
||||
@ -142,12 +142,12 @@ void helper_idivl_EAX(CPUX86State *env, target_ulong t0)
|
||||
num = ((uint32_t)env->regs[R_EAX]) | ((uint64_t)((uint32_t)env->regs[R_EDX]) << 32);
|
||||
den = t0;
|
||||
if (den == 0) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
q = (num / den);
|
||||
r = (num % den);
|
||||
if (q != (int32_t)q) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
env->regs[R_EAX] = (uint32_t)q;
|
||||
env->regs[R_EDX] = (uint32_t)r;
|
||||
@ -379,12 +379,12 @@ void helper_divq_EAX(CPUX86State *env, target_ulong t0)
|
||||
uint64_t r0, r1;
|
||||
|
||||
if (t0 == 0) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
r0 = env->regs[R_EAX];
|
||||
r1 = env->regs[R_EDX];
|
||||
if (div64(&r0, &r1, t0)) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
env->regs[R_EAX] = r0;
|
||||
env->regs[R_EDX] = r1;
|
||||
@ -395,12 +395,12 @@ void helper_idivq_EAX(CPUX86State *env, target_ulong t0)
|
||||
uint64_t r0, r1;
|
||||
|
||||
if (t0 == 0) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
r0 = env->regs[R_EAX];
|
||||
r1 = env->regs[R_EDX];
|
||||
if (idiv64(&r0, &r1, t0)) {
|
||||
raise_exception(env, EXCP00_DIVZ);
|
||||
raise_exception_ra(env, EXCP00_DIVZ, GETPC());
|
||||
}
|
||||
env->regs[R_EAX] = r0;
|
||||
env->regs[R_EDX] = r1;
|
||||
|
@ -60,13 +60,14 @@ void helper_cmpxchg8b(CPUX86State *env, target_ulong a0)
|
||||
int eflags;
|
||||
|
||||
eflags = cpu_cc_compute_all(env, CC_OP);
|
||||
d = cpu_ldq_data(env, a0);
|
||||
d = cpu_ldq_data_ra(env, a0, GETPC());
|
||||
if (d == (((uint64_t)env->regs[R_EDX] << 32) | (uint32_t)env->regs[R_EAX])) {
|
||||
cpu_stq_data(env, a0, ((uint64_t)env->regs[R_ECX] << 32) | (uint32_t)env->regs[R_EBX]);
|
||||
cpu_stq_data_ra(env, a0, ((uint64_t)env->regs[R_ECX] << 32)
|
||||
| (uint32_t)env->regs[R_EBX], GETPC());
|
||||
eflags |= CC_Z;
|
||||
} else {
|
||||
/* always do the store */
|
||||
cpu_stq_data(env, a0, d);
|
||||
cpu_stq_data_ra(env, a0, d, GETPC());
|
||||
env->regs[R_EDX] = (uint32_t)(d >> 32);
|
||||
env->regs[R_EAX] = (uint32_t)d;
|
||||
eflags &= ~CC_Z;
|
||||
@ -81,19 +82,19 @@ void helper_cmpxchg16b(CPUX86State *env, target_ulong a0)
|
||||
int eflags;
|
||||
|
||||
if ((a0 & 0xf) != 0) {
|
||||
raise_exception(env, EXCP0D_GPF);
|
||||
raise_exception_ra(env, EXCP0D_GPF, GETPC());
|
||||
}
|
||||
eflags = cpu_cc_compute_all(env, CC_OP);
|
||||
d0 = cpu_ldq_data(env, a0);
|
||||
d1 = cpu_ldq_data(env, a0 + 8);
|
||||
d0 = cpu_ldq_data_ra(env, a0, GETPC());
|
||||
d1 = cpu_ldq_data_ra(env, a0 + 8, GETPC());
|
||||
if (d0 == env->regs[R_EAX] && d1 == env->regs[R_EDX]) {
|
||||
cpu_stq_data(env, a0, env->regs[R_EBX]);
|
||||
cpu_stq_data(env, a0 + 8, env->regs[R_ECX]);
|
||||
cpu_stq_data_ra(env, a0, env->regs[R_EBX], GETPC());
|
||||
cpu_stq_data_ra(env, a0 + 8, env->regs[R_ECX], GETPC());
|
||||
eflags |= CC_Z;
|
||||
} else {
|
||||
/* always do the store */
|
||||
cpu_stq_data(env, a0, d0);
|
||||
cpu_stq_data(env, a0 + 8, d1);
|
||||
cpu_stq_data_ra(env, a0, d0, GETPC());
|
||||
cpu_stq_data_ra(env, a0 + 8, d1, GETPC());
|
||||
env->regs[R_EDX] = d1;
|
||||
env->regs[R_EAX] = d0;
|
||||
eflags &= ~CC_Z;
|
||||
@ -106,11 +107,11 @@ void helper_boundw(CPUX86State *env, target_ulong a0, int v)
|
||||
{
|
||||
int low, high;
|
||||
|
||||
low = cpu_ldsw_data(env, a0);
|
||||
high = cpu_ldsw_data(env, a0 + 2);
|
||||
low = cpu_ldsw_data_ra(env, a0, GETPC());
|
||||
high = cpu_ldsw_data_ra(env, a0 + 2, GETPC());
|
||||
v = (int16_t)v;
|
||||
if (v < low || v > high) {
|
||||
raise_exception(env, EXCP05_BOUND);
|
||||
raise_exception_ra(env, EXCP05_BOUND, GETPC());
|
||||
}
|
||||
}
|
||||
|
||||
@ -118,10 +119,10 @@ void helper_boundl(CPUX86State *env, target_ulong a0, int v)
|
||||
{
|
||||
int low, high;
|
||||
|
||||
low = cpu_ldl_data(env, a0);
|
||||
high = cpu_ldl_data(env, a0 + 4);
|
||||
low = cpu_ldl_data_ra(env, a0, GETPC());
|
||||
high = cpu_ldl_data_ra(env, a0 + 4, GETPC());
|
||||
if (v < low || v > high) {
|
||||
raise_exception(env, EXCP05_BOUND);
|
||||
raise_exception_ra(env, EXCP05_BOUND, GETPC());
|
||||
}
|
||||
}
|
||||
|
||||
@ -141,11 +142,7 @@ void tlb_fill(CPUState *cs, target_ulong addr, int is_write, int mmu_idx,
|
||||
X86CPU *cpu = X86_CPU(cs);
|
||||
CPUX86State *env = &cpu->env;
|
||||
|
||||
if (retaddr) {
|
||||
/* now we have a real cpu fault */
|
||||
cpu_restore_state(cs, retaddr);
|
||||
}
|
||||
raise_exception_err(env, cs->exception_index, env->error_code);
|
||||
raise_exception_err_ra(env, cs->exception_index, env->error_code, retaddr);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
@ -220,7 +220,7 @@ void helper_rdtsc(CPUX86State *env)
|
||||
uint64_t val;
|
||||
|
||||
if ((env->cr[4] & CR4_TSD_MASK) && ((env->hflags & HF_CPL_MASK) != 0)) {
|
||||
raise_exception(env, EXCP0D_GPF);
|
||||
raise_exception_ra(env, EXCP0D_GPF, GETPC());
|
||||
}
|
||||
cpu_svm_check_intercept_param(env, SVM_EXIT_RDTSC, 0);
|
||||
|
||||
@ -238,7 +238,7 @@ void helper_rdtscp(CPUX86State *env)
|
||||
void helper_rdpmc(CPUX86State *env)
|
||||
{
|
||||
if ((env->cr[4] & CR4_PCE_MASK) && ((env->hflags & HF_CPL_MASK) != 0)) {
|
||||
raise_exception(env, EXCP0D_GPF);
|
||||
raise_exception_ra(env, EXCP0D_GPF, GETPC());
|
||||
}
|
||||
cpu_svm_check_intercept_param(env, SVM_EXIT_RDPMC, 0);
|
||||
|
||||
@ -589,7 +589,7 @@ void helper_hlt(CPUX86State *env, int next_eip_addend)
|
||||
void helper_monitor(CPUX86State *env, target_ulong ptr)
|
||||
{
|
||||
if ((uint32_t)env->regs[R_ECX] != 0) {
|
||||
raise_exception(env, EXCP0D_GPF);
|
||||
raise_exception_ra(env, EXCP0D_GPF, GETPC());
|
||||
}
|
||||
/* XXX: store address? */
|
||||
cpu_svm_check_intercept_param(env, SVM_EXIT_MONITOR, 0);
|
||||
@ -601,7 +601,7 @@ void helper_mwait(CPUX86State *env, int next_eip_addend)
|
||||
X86CPU *cpu;
|
||||
|
||||
if ((uint32_t)env->regs[R_ECX] != 0) {
|
||||
raise_exception(env, EXCP0D_GPF);
|
||||
raise_exception_ra(env, EXCP0D_GPF, GETPC());
|
||||
}
|
||||
cpu_svm_check_intercept_param(env, SVM_EXIT_MWAIT, 0);
|
||||
env->eip += next_eip_addend;
|
||||
|
@ -483,7 +483,7 @@ void glue(helper_maskmov, SUFFIX)(CPUX86State *env, Reg *d, Reg *s,
|
||||
|
||||
for (i = 0; i < (8 << SHIFT); i++) {
|
||||
if (s->B(i) & 0x80) {
|
||||
cpu_stb_data(env, a0 + i, d->B(i));
|
||||
cpu_stb_data_ra(env, a0 + i, d->B(i), GETPC());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -663,14 +663,9 @@ static void gen_helper_out_func(TCGMemOp ot, TCGv_i32 v, TCGv_i32 n)
|
||||
static void gen_check_io(DisasContext *s, TCGMemOp ot, target_ulong cur_eip,
|
||||
uint32_t svm_flags)
|
||||
{
|
||||
int state_saved;
|
||||
target_ulong next_eip;
|
||||
|
||||
state_saved = 0;
|
||||
if (s->pe && (s->cpl > s->iopl || s->vm86)) {
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(cur_eip);
|
||||
state_saved = 1;
|
||||
tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]);
|
||||
switch (ot) {
|
||||
case MO_8:
|
||||
@ -687,10 +682,8 @@ static void gen_check_io(DisasContext *s, TCGMemOp ot, target_ulong cur_eip,
|
||||
}
|
||||
}
|
||||
if(s->flags & HF_SVMI_MASK) {
|
||||
if (!state_saved) {
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(cur_eip);
|
||||
}
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(cur_eip);
|
||||
svm_flags |= (1 << (4 + ot));
|
||||
next_eip = s->pc - s->cs_base;
|
||||
tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]);
|
||||
@ -2297,12 +2290,9 @@ static inline void gen_op_movl_seg_T0_vm(int seg_reg)
|
||||
|
||||
/* move T0 to seg_reg and compute if the CPU state may change. Never
|
||||
call this function with seg_reg == R_CS */
|
||||
static void gen_movl_seg_T0(DisasContext *s, int seg_reg, target_ulong cur_eip)
|
||||
static void gen_movl_seg_T0(DisasContext *s, int seg_reg)
|
||||
{
|
||||
if (s->pe && !s->vm86) {
|
||||
/* XXX: optimize by finding processor state dynamically */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(cur_eip);
|
||||
tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]);
|
||||
gen_helper_load_seg(cpu_env, tcg_const_i32(seg_reg), cpu_tmp2_i32);
|
||||
/* abort translation because the addseg value may change or
|
||||
@ -4841,21 +4831,17 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
case 6: /* div */
|
||||
switch(ot) {
|
||||
case MO_8:
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_divb_AL(cpu_env, cpu_T[0]);
|
||||
break;
|
||||
case MO_16:
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_divw_AX(cpu_env, cpu_T[0]);
|
||||
break;
|
||||
default:
|
||||
case MO_32:
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_divl_EAX(cpu_env, cpu_T[0]);
|
||||
break;
|
||||
#ifdef TARGET_X86_64
|
||||
case MO_64:
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_divq_EAX(cpu_env, cpu_T[0]);
|
||||
break;
|
||||
#endif
|
||||
@ -4864,21 +4850,17 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
case 7: /* idiv */
|
||||
switch(ot) {
|
||||
case MO_8:
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_idivb_AL(cpu_env, cpu_T[0]);
|
||||
break;
|
||||
case MO_16:
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_idivw_AX(cpu_env, cpu_T[0]);
|
||||
break;
|
||||
default:
|
||||
case MO_32:
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_idivl_EAX(cpu_env, cpu_T[0]);
|
||||
break;
|
||||
#ifdef TARGET_X86_64
|
||||
case MO_64:
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_idivq_EAX(cpu_env, cpu_T[0]);
|
||||
break;
|
||||
#endif
|
||||
@ -4951,12 +4933,10 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
gen_op_ld_v(s, MO_16, cpu_T[0], cpu_A0);
|
||||
do_lcall:
|
||||
if (s->pe && !s->vm86) {
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]);
|
||||
gen_helper_lcall_protected(cpu_env, cpu_tmp2_i32, cpu_T[1],
|
||||
tcg_const_i32(dflag - 1),
|
||||
tcg_const_i32(s->pc - pc_start));
|
||||
tcg_const_tl(s->pc - s->cs_base));
|
||||
} else {
|
||||
tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]);
|
||||
gen_helper_lcall_real(cpu_env, cpu_tmp2_i32, cpu_T[1],
|
||||
@ -4978,11 +4958,9 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
gen_op_ld_v(s, MO_16, cpu_T[0], cpu_A0);
|
||||
do_ljmp:
|
||||
if (s->pe && !s->vm86) {
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]);
|
||||
gen_helper_ljmp_protected(cpu_env, cpu_tmp2_i32, cpu_T[1],
|
||||
tcg_const_i32(s->pc - pc_start));
|
||||
tcg_const_tl(s->pc - s->cs_base));
|
||||
} else {
|
||||
gen_op_movl_seg_T0_vm(R_CS);
|
||||
gen_op_jmp_v(cpu_T[1]);
|
||||
@ -5211,8 +5189,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
if (dflag == MO_64) {
|
||||
if (!(s->cpuid_ext_features & CPUID_EXT_CX16))
|
||||
goto illegal_op;
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_update_cc_op(s);
|
||||
gen_lea_modrm(env, s, modrm);
|
||||
gen_helper_cmpxchg16b(cpu_env, cpu_A0);
|
||||
} else
|
||||
@ -5220,8 +5196,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
{
|
||||
if (!(s->cpuid_features & CPUID_CX8))
|
||||
goto illegal_op;
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_update_cc_op(s);
|
||||
gen_lea_modrm(env, s, modrm);
|
||||
gen_helper_cmpxchg8b(cpu_env, cpu_A0);
|
||||
}
|
||||
@ -5323,7 +5297,7 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
goto illegal_op;
|
||||
reg = b >> 3;
|
||||
ot = gen_pop_T0(s);
|
||||
gen_movl_seg_T0(s, reg, pc_start - s->cs_base);
|
||||
gen_movl_seg_T0(s, reg);
|
||||
gen_pop_update(s, ot);
|
||||
if (reg == R_SS) {
|
||||
/* if reg == SS, inhibit interrupts/trace. */
|
||||
@ -5341,7 +5315,7 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
case 0x1a1: /* pop fs */
|
||||
case 0x1a9: /* pop gs */
|
||||
ot = gen_pop_T0(s);
|
||||
gen_movl_seg_T0(s, (b >> 3) & 7, pc_start - s->cs_base);
|
||||
gen_movl_seg_T0(s, (b >> 3) & 7);
|
||||
gen_pop_update(s, ot);
|
||||
if (s->is_jmp) {
|
||||
gen_jmp_im(s->pc - s->cs_base);
|
||||
@ -5392,7 +5366,7 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
if (reg >= 6 || reg == R_CS)
|
||||
goto illegal_op;
|
||||
gen_ldst_modrm(env, s, modrm, MO_16, OR_TMP0, 0);
|
||||
gen_movl_seg_T0(s, reg, pc_start - s->cs_base);
|
||||
gen_movl_seg_T0(s, reg);
|
||||
if (reg == R_SS) {
|
||||
/* if reg == SS, inhibit interrupts/trace */
|
||||
/* If several instructions disable interrupts, only the
|
||||
@ -5604,7 +5578,7 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
gen_add_A0_im(s, 1 << ot);
|
||||
/* load the segment first to handle exceptions properly */
|
||||
gen_op_ld_v(s, MO_16, cpu_T[0], cpu_A0);
|
||||
gen_movl_seg_T0(s, op, pc_start - s->cs_base);
|
||||
gen_movl_seg_T0(s, op);
|
||||
/* then put the data */
|
||||
gen_op_mov_reg_v(ot, reg, cpu_T[1]);
|
||||
if (s->is_jmp) {
|
||||
@ -5836,8 +5810,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
}
|
||||
break;
|
||||
case 0x0c: /* fldenv mem */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fldenv(cpu_env, cpu_A0, tcg_const_i32(dflag - 1));
|
||||
break;
|
||||
case 0x0d: /* fldcw mem */
|
||||
@ -5846,8 +5818,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
gen_helper_fldcw(cpu_env, cpu_tmp2_i32);
|
||||
break;
|
||||
case 0x0e: /* fnstenv mem */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fstenv(cpu_env, cpu_A0, tcg_const_i32(dflag - 1));
|
||||
break;
|
||||
case 0x0f: /* fnstcw mem */
|
||||
@ -5856,24 +5826,16 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
s->mem_index, MO_LEUW);
|
||||
break;
|
||||
case 0x1d: /* fldt mem */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fldt_ST0(cpu_env, cpu_A0);
|
||||
break;
|
||||
case 0x1f: /* fstpt mem */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fstt_ST0(cpu_env, cpu_A0);
|
||||
gen_helper_fpop(cpu_env);
|
||||
break;
|
||||
case 0x2c: /* frstor mem */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_frstor(cpu_env, cpu_A0, tcg_const_i32(dflag - 1));
|
||||
break;
|
||||
case 0x2e: /* fnsave mem */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fsave(cpu_env, cpu_A0, tcg_const_i32(dflag - 1));
|
||||
break;
|
||||
case 0x2f: /* fnstsw mem */
|
||||
@ -5882,13 +5844,9 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
s->mem_index, MO_LEUW);
|
||||
break;
|
||||
case 0x3c: /* fbld */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fbld_ST0(cpu_env, cpu_A0);
|
||||
break;
|
||||
case 0x3e: /* fbstp */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fbst_ST0(cpu_env, cpu_A0);
|
||||
gen_helper_fpop(cpu_env);
|
||||
break;
|
||||
@ -5923,8 +5881,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
switch(rm) {
|
||||
case 0: /* fnop */
|
||||
/* check exceptions (FreeBSD FPU probe) */
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fwait(cpu_env);
|
||||
break;
|
||||
default:
|
||||
@ -6440,8 +6396,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
set_cc_op(s, CC_OP_EFLAGS);
|
||||
}
|
||||
} else {
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_iret_protected(cpu_env, tcg_const_i32(dflag - 1),
|
||||
tcg_const_i32(s->pc - s->cs_base));
|
||||
set_cc_op(s, CC_OP_EFLAGS);
|
||||
@ -6894,8 +6848,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
(HF_MP_MASK | HF_TS_MASK)) {
|
||||
gen_exception(s, EXCP07_PREX, pc_start - s->cs_base);
|
||||
} else {
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fwait(cpu_env);
|
||||
}
|
||||
break;
|
||||
@ -6979,7 +6931,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
goto illegal_op;
|
||||
gen_op_mov_v_reg(ot, cpu_T[0], reg);
|
||||
gen_lea_modrm(env, s, modrm);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]);
|
||||
if (ot == MO_16) {
|
||||
gen_helper_boundw(cpu_env, cpu_A0, cpu_tmp2_i32);
|
||||
@ -7093,8 +7044,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
if (!s->pe) {
|
||||
gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
|
||||
} else {
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_sysenter(cpu_env);
|
||||
gen_eob(s);
|
||||
}
|
||||
@ -7106,8 +7055,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
if (!s->pe) {
|
||||
gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
|
||||
} else {
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_sysexit(cpu_env, tcg_const_i32(dflag - 1));
|
||||
gen_eob(s);
|
||||
}
|
||||
@ -7124,8 +7071,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
if (!s->pe) {
|
||||
gen_exception(s, EXCP0D_GPF, pc_start - s->cs_base);
|
||||
} else {
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_sysret(cpu_env, tcg_const_i32(dflag - 1));
|
||||
/* condition codes are modified only in long mode */
|
||||
if (s->lma) {
|
||||
@ -7171,7 +7116,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
} else {
|
||||
gen_svm_check_intercept(s, pc_start, SVM_EXIT_LDTR_WRITE);
|
||||
gen_ldst_modrm(env, s, modrm, MO_16, OR_TMP0, 0);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]);
|
||||
gen_helper_lldt(cpu_env, cpu_tmp2_i32);
|
||||
}
|
||||
@ -7192,7 +7136,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
} else {
|
||||
gen_svm_check_intercept(s, pc_start, SVM_EXIT_TR_WRITE);
|
||||
gen_ldst_modrm(env, s, modrm, MO_16, OR_TMP0, 0);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
tcg_gen_trunc_tl_i32(cpu_tmp2_i32, cpu_T[0]);
|
||||
gen_helper_ltr(cpu_env, cpu_tmp2_i32);
|
||||
}
|
||||
@ -7725,8 +7668,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
break;
|
||||
}
|
||||
gen_lea_modrm(env, s, modrm);
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fxsave(cpu_env, cpu_A0, tcg_const_i32(dflag == MO_64));
|
||||
break;
|
||||
case 1: /* fxrstor */
|
||||
@ -7738,8 +7679,6 @@ static target_ulong disas_insn(CPUX86State *env, DisasContext *s,
|
||||
break;
|
||||
}
|
||||
gen_lea_modrm(env, s, modrm);
|
||||
gen_update_cc_op(s);
|
||||
gen_jmp_im(pc_start - s->cs_base);
|
||||
gen_helper_fxrstor(cpu_env, cpu_A0, tcg_const_i32(dflag == MO_64));
|
||||
break;
|
||||
case 2: /* ldmxcsr */
|
||||
|
Loading…
Reference in New Issue
Block a user