2004-06-18 18:11:11 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-25 01:05:47 +03:00
|
|
|
// $Id$
|
2005-03-21 00:19:38 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2004-06-18 18:11:11 +04:00
|
|
|
//
|
2012-02-01 16:07:53 +04:00
|
|
|
// Copyright (c) 2003-2012 Stanislav Shwartsman
|
2007-03-24 00:27:13 +03:00
|
|
|
// Written by Stanislav Shwartsman [sshwarts at sourceforge net]
|
2004-06-18 18:11:11 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
2009-02-08 20:29:34 +03:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-05-12 22:07:48 +04:00
|
|
|
//
|
2004-06-18 18:11:11 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#define NEED_CPU_REG_SHORTCUTS 1
|
|
|
|
#include "bochs.h"
|
2006-03-07 01:03:16 +03:00
|
|
|
#include "cpu/cpu.h"
|
2004-06-18 18:11:11 +04:00
|
|
|
#define LOG_THIS BX_CPU_THIS_PTR
|
|
|
|
|
|
|
|
#if BX_SUPPORT_FPU
|
|
|
|
|
2008-04-05 01:05:37 +04:00
|
|
|
extern float_status_t FPU_pre_exception_handling(Bit16u control_word);
|
|
|
|
|
2004-06-18 18:11:11 +04:00
|
|
|
#include "softfloatx80.h"
|
|
|
|
|
|
|
|
static int status_word_flags_fpu_compare(int float_relation)
|
|
|
|
{
|
|
|
|
switch(float_relation) {
|
|
|
|
case float_relation_unordered:
|
|
|
|
return (FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
|
|
|
|
|
|
|
case float_relation_greater:
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
case float_relation_less:
|
|
|
|
return (FPU_SW_C0);
|
|
|
|
|
|
|
|
case float_relation_equal:
|
|
|
|
return (FPU_SW_C3);
|
|
|
|
}
|
|
|
|
|
2009-03-11 00:43:11 +03:00
|
|
|
return (-1); // should never get here
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPU_C::write_eflags_fpu_compare(int float_relation)
|
|
|
|
{
|
|
|
|
switch(float_relation) {
|
|
|
|
case float_relation_unordered:
|
|
|
|
setEFlagsOSZAPC(EFlagsZFMask | EFlagsPFMask | EFlagsCFMask);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case float_relation_greater:
|
|
|
|
setEFlagsOSZAPC(0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case float_relation_less:
|
|
|
|
setEFlagsOSZAPC(EFlagsCFMask);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case float_relation_equal:
|
|
|
|
setEFlagsOSZAPC(EFlagsZFMask);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
BX_PANIC(("write_eflags: unknown floating point compare relation"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FCOM_STi(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2012-02-01 16:07:53 +04:00
|
|
|
int pop_stack = 0;
|
|
|
|
if (i->getIaOpcode() == BX_IA_FCOMP_STi)
|
|
|
|
pop_stack = 1;
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
clear_C1();
|
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(i->src()))
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2009-03-11 00:43:11 +03:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
int rc = floatx80_compare(BX_READ_FPU_REG(0), BX_READ_FPU_REG(i->src()), status);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(status_word_flags_fpu_compare(rc));
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FCOMI_ST0_STj(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
int pop_stack = i->b1() & 4;
|
|
|
|
|
|
|
|
clear_C1();
|
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(i->src()))
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setEFlagsOSZAPC(EFlagsZFMask | EFlagsPFMask | EFlagsCFMask);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2004-06-18 18:11:11 +04:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
int rc = floatx80_compare(BX_READ_FPU_REG(0), BX_READ_FPU_REG(i->src()), status);
|
2009-04-13 02:07:59 +04:00
|
|
|
BX_CPU_THIS_PTR write_eflags_fpu_compare(rc);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FUCOMI_ST0_STj(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
int pop_stack = i->b1() & 4;
|
|
|
|
|
|
|
|
clear_C1();
|
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(i->src()))
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setEFlagsOSZAPC(EFlagsZFMask | EFlagsPFMask | EFlagsCFMask);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2004-06-18 18:11:11 +04:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
int rc = floatx80_compare_quiet(BX_READ_FPU_REG(0), BX_READ_FPU_REG(i->src()), status);
|
2009-04-13 02:07:59 +04:00
|
|
|
BX_CPU_THIS_PTR write_eflags_fpu_compare(rc);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FUCOM_STi(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2012-02-01 16:07:53 +04:00
|
|
|
int pop_stack = 0;
|
|
|
|
if (i->getIaOpcode() == BX_IA_FUCOMP_STi)
|
|
|
|
pop_stack = 1;
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(i->src()))
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2004-06-18 18:11:11 +04:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
int rc = floatx80_compare_quiet(BX_READ_FPU_REG(0), BX_READ_FPU_REG(i->src()), status);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(status_word_flags_fpu_compare(rc));
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FCOM_SINGLE_REAL(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
|
|
|
|
2012-02-01 16:07:53 +04:00
|
|
|
int rc, pop_stack = 0;
|
|
|
|
if (i->getIaOpcode() == BX_IA_FCOMP_SINGLE_REAL)
|
|
|
|
pop_stack = 1;
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-04-27 18:00:55 +04:00
|
|
|
RMAddr(i) = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-04-26 23:38:53 +04:00
|
|
|
float32 load_reg = read_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
|
|
|
|
2004-06-18 18:11:11 +04:00
|
|
|
clear_C1();
|
|
|
|
|
|
|
|
if (IS_TAG_EMPTY(0))
|
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2004-06-18 18:11:11 +04:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
|
|
|
|
2009-05-21 16:20:06 +04:00
|
|
|
floatx80 a = BX_READ_FPU_REG(0);
|
|
|
|
|
2009-05-28 20:31:08 +04:00
|
|
|
if (floatx80_is_nan(a) || floatx80_is_unsupported(a) || float32_is_nan(load_reg)) {
|
2009-05-21 16:20:06 +04:00
|
|
|
rc = float_relation_unordered;
|
|
|
|
float_raise(status, float_flag_invalid);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rc = floatx80_compare(a, float32_to_floatx80(load_reg, status), status);
|
|
|
|
}
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(status_word_flags_fpu_compare(rc));
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FCOM_DOUBLE_REAL(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
|
|
|
|
2012-02-01 16:07:53 +04:00
|
|
|
int rc, pop_stack = 0;
|
|
|
|
if (i->getIaOpcode() == BX_IA_FCOMP_DOUBLE_REAL)
|
|
|
|
pop_stack = 1;
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-04-27 18:00:55 +04:00
|
|
|
RMAddr(i) = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-04-26 23:38:53 +04:00
|
|
|
float64 load_reg = read_virtual_qword(i->seg(), RMAddr(i));
|
|
|
|
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
|
|
|
|
2004-06-18 18:11:11 +04:00
|
|
|
clear_C1();
|
|
|
|
|
|
|
|
if (IS_TAG_EMPTY(0))
|
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2004-06-18 18:11:11 +04:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
|
|
|
|
2009-05-21 16:20:06 +04:00
|
|
|
floatx80 a = BX_READ_FPU_REG(0);
|
|
|
|
|
2009-05-28 20:31:08 +04:00
|
|
|
if (floatx80_is_nan(a) || floatx80_is_unsupported(a) || float64_is_nan(load_reg)) {
|
2009-05-21 16:20:06 +04:00
|
|
|
rc = float_relation_unordered;
|
|
|
|
float_raise(status, float_flag_invalid);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rc = floatx80_compare(a, float64_to_floatx80(load_reg, status), status);
|
|
|
|
}
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(status_word_flags_fpu_compare(rc));
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FICOM_WORD_INTEGER(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
|
|
|
|
2012-02-01 16:07:53 +04:00
|
|
|
int pop_stack = 0;
|
|
|
|
if (i->getIaOpcode() == BX_IA_FICOMP_WORD_INTEGER)
|
|
|
|
pop_stack = 1;
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-04-27 18:00:55 +04:00
|
|
|
RMAddr(i) = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-04-26 23:38:53 +04:00
|
|
|
Bit16s load_reg = (Bit16s) read_virtual_word(i->seg(), RMAddr(i));
|
|
|
|
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
|
|
|
|
2004-06-18 18:11:11 +04:00
|
|
|
clear_C1();
|
|
|
|
|
|
|
|
if (IS_TAG_EMPTY(0))
|
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2004-06-18 18:11:11 +04:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
int rc = floatx80_compare(BX_READ_FPU_REG(0),
|
2009-04-13 02:07:59 +04:00
|
|
|
int32_to_floatx80((Bit32s)(load_reg)), status);
|
|
|
|
setcc(status_word_flags_fpu_compare(rc));
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FICOM_DWORD_INTEGER(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
|
|
|
|
2012-02-01 16:07:53 +04:00
|
|
|
int pop_stack = 0;
|
|
|
|
if (i->getIaOpcode() == BX_IA_FICOMP_DWORD_INTEGER)
|
|
|
|
pop_stack = 1;
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-04-27 18:00:55 +04:00
|
|
|
RMAddr(i) = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-04-26 23:38:53 +04:00
|
|
|
Bit32s load_reg = (Bit32s) read_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
|
|
|
|
2004-06-18 18:11:11 +04:00
|
|
|
clear_C1();
|
|
|
|
|
|
|
|
if (IS_TAG_EMPTY(0))
|
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2004-06-18 18:11:11 +04:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
|
|
|
|
2009-03-11 00:43:11 +03:00
|
|
|
int rc = floatx80_compare(BX_READ_FPU_REG(0), int32_to_floatx80(load_reg), status);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(status_word_flags_fpu_compare(rc));
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
if (pop_stack)
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DE D9 */
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FCOMPP(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
clear_C1();
|
|
|
|
|
|
|
|
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(1))
|
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2004-06-18 18:11:11 +04:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
|
|
|
|
|
|
|
int rc = floatx80_compare(BX_READ_FPU_REG(0), BX_READ_FPU_REG(1), status);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(status_word_flags_fpu_compare(rc));
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* DA E9 */
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FUCOMPP(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(1))
|
|
|
|
{
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
if(BX_CPU_THIS_PTR the_i387.is_IA_masked())
|
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
float_status_t status =
|
2004-06-18 18:11:11 +04:00
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
|
|
|
|
|
|
|
int rc = floatx80_compare_quiet(BX_READ_FPU_REG(0), BX_READ_FPU_REG(1), status);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(status_word_flags_fpu_compare(rc));
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-05-28 23:25:33 +04:00
|
|
|
if (! FPU_exception(status.float_exception_flags)) {
|
2009-03-11 00:43:11 +03:00
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
BX_CPU_THIS_PTR the_i387.FPU_pop();
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* D9 E4 */
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FTST(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
clear_C1();
|
|
|
|
|
2009-04-13 02:07:59 +04:00
|
|
|
if (IS_TAG_EMPTY(0)) {
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(FPU_EX_Stack_Underflow);
|
2009-04-13 02:07:59 +04:00
|
|
|
setcc(FPU_SW_C0|FPU_SW_C2|FPU_SW_C3);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
2009-04-13 02:07:59 +04:00
|
|
|
else {
|
|
|
|
extern const floatx80 Const_Z;
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-04-13 02:07:59 +04:00
|
|
|
float_status_t status =
|
|
|
|
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
|
2004-06-18 18:11:11 +04:00
|
|
|
|
2009-04-13 02:07:59 +04:00
|
|
|
int rc = floatx80_compare(BX_READ_FPU_REG(0), Const_Z, status);
|
2009-03-11 00:43:11 +03:00
|
|
|
setcc(status_word_flags_fpu_compare(rc));
|
2009-05-28 23:25:33 +04:00
|
|
|
FPU_exception(status.float_exception_flags);
|
2009-04-13 02:07:59 +04:00
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* D9 E5 */
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FXAM(bxInstruction_c *i)
|
2004-06-18 18:11:11 +04:00
|
|
|
{
|
|
|
|
BX_CPU_THIS_PTR prepareFPU(i);
|
2009-04-27 18:00:55 +04:00
|
|
|
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
|
|
|
|
floatx80 reg = BX_READ_FPU_REG(0);
|
|
|
|
int sign = floatx80_sign(reg);
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
/*
|
|
|
|
* Examine the contents of the ST(0) register and sets the condition
|
|
|
|
* code flags C0, C2 and C3 in the FPU status word to indicate the
|
2004-06-18 18:11:11 +04:00
|
|
|
* class of value or number in the register.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (IS_TAG_EMPTY(0))
|
|
|
|
{
|
|
|
|
setcc(FPU_SW_C3|FPU_SW_C1|FPU_SW_C0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float_class_t aClass = floatx80_class(reg);
|
|
|
|
|
|
|
|
switch(aClass)
|
|
|
|
{
|
|
|
|
case float_zero:
|
|
|
|
setcc(FPU_SW_C3|FPU_SW_C1);
|
|
|
|
break;
|
2008-02-06 01:33:35 +03:00
|
|
|
|
2004-06-18 18:11:11 +04:00
|
|
|
case float_NaN:
|
|
|
|
// unsupported handled as NaNs
|
|
|
|
if (floatx80_is_unsupported(reg)) {
|
2008-02-06 01:33:35 +03:00
|
|
|
setcc(FPU_SW_C1);
|
2004-06-18 18:11:11 +04:00
|
|
|
} else {
|
|
|
|
setcc(FPU_SW_C1|FPU_SW_C0);
|
|
|
|
}
|
|
|
|
break;
|
2008-02-06 01:33:35 +03:00
|
|
|
|
2004-06-18 18:11:11 +04:00
|
|
|
case float_negative_inf:
|
|
|
|
case float_positive_inf:
|
|
|
|
setcc(FPU_SW_C2|FPU_SW_C1|FPU_SW_C0);
|
|
|
|
break;
|
2008-02-06 01:33:35 +03:00
|
|
|
|
2004-06-18 18:11:11 +04:00
|
|
|
case float_denormal:
|
|
|
|
setcc(FPU_SW_C3|FPU_SW_C2|FPU_SW_C1);
|
|
|
|
break;
|
2008-02-06 01:33:35 +03:00
|
|
|
|
2004-06-18 18:11:11 +04:00
|
|
|
case float_normalized:
|
|
|
|
setcc(FPU_SW_C2|FPU_SW_C1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-06 01:33:35 +03:00
|
|
|
/*
|
|
|
|
* The C1 flag is set to the sign of the value in ST(0), regardless
|
2004-06-18 18:11:11 +04:00
|
|
|
* of whether the register is empty or full.
|
|
|
|
*/
|
|
|
|
if (! sign)
|
|
|
|
clear_C1();
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-06-18 18:11:11 +04:00
|
|
|
}
|
2008-04-05 01:05:37 +04:00
|
|
|
|
|
|
|
#endif
|