Bochs/bochs/cpu/fpu/fpu_trans.cc

461 lines
11 KiB
C++
Raw Normal View History

/////////////////////////////////////////////////////////////////////////
// $Id$
2005-03-21 00:19:38 +03:00
/////////////////////////////////////////////////////////////////////////
//
2009-10-15 00:45:29 +04:00
// Copyright (c) 2003-2009 Stanislav Shwartsman
2007-03-24 00:27:13 +03:00
// Written by Stanislav Shwartsman [sshwarts at sourceforge net]
//
// 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
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//
/////////////////////////////////////////////////////////////////////////
#define NEED_CPU_REG_SHORTCUTS 1
#include "bochs.h"
#include "cpu/cpu.h"
#define LOG_THIS BX_CPU_THIS_PTR
#if BX_SUPPORT_FPU
#include "softfloatx80.h"
#include "softfloat-specialize.h"
extern float_status_t FPU_pre_exception_handling(Bit16u control_word);
/* D9 F0 */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::F2XM1(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
2008-05-10 13:17:24 +04:00
if (IS_TAG_EMPTY(0)) {
2009-05-28 23:25:33 +04:00
FPU_stack_underflow(0);
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS);
floatx80 result = f2xm1(BX_READ_FPU_REG(0), status);
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags))
2009-03-11 00:43:11 +03:00
BX_WRITE_FPU_REG(result, 0);
BX_NEXT_INSTR(i);
}
/* D9 F1 */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FYL2X(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(1))
{
2009-11-01 20:37:14 +03:00
FPU_stack_underflow(1, 1 /* pop_stack */);
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS);
floatx80 result = fyl2x(BX_READ_FPU_REG(0), BX_READ_FPU_REG(1), status);
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_WRITE_FPU_REG(result, 0);
}
BX_NEXT_INSTR(i);
}
/* D9 F2 */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FPTAN(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
clear_C2();
2008-05-10 14:15:01 +04:00
if (IS_TAG_EMPTY(0) || ! IS_TAG_EMPTY(-1))
{
2008-05-10 14:15:01 +04:00
if(IS_TAG_EMPTY(0))
2009-05-28 23:25:33 +04:00
FPU_exception(FPU_EX_Stack_Underflow);
2008-05-10 14:15:01 +04:00
else
2009-05-28 23:25:33 +04:00
FPU_exception(FPU_EX_Stack_Overflow);
2008-05-10 13:17:24 +04:00
/* The masked response */
if (BX_CPU_THIS_PTR the_i387.is_IA_masked())
{
BX_WRITE_FPU_REG(floatx80_default_nan, 0);
2008-05-10 13:17:24 +04:00
BX_CPU_THIS_PTR the_i387.FPU_push();
BX_WRITE_FPU_REG(floatx80_default_nan, 0);
2008-05-10 13:17:24 +04:00
}
BX_NEXT_INSTR(i);
}
extern const floatx80 Const_1;
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS);
floatx80 y = BX_READ_FPU_REG(0);
if (ftan(y, status) == -1)
{
2008-05-10 13:17:24 +04:00
FPU_PARTIAL_STATUS |= FPU_SW_C2;
BX_NEXT_INSTR(i);
}
if (floatx80_is_nan(y))
{
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags))
2008-05-10 13:17:24 +04:00
{
BX_WRITE_FPU_REG(y, 0);
2008-05-10 13:17:24 +04:00
BX_CPU_THIS_PTR the_i387.FPU_push();
BX_WRITE_FPU_REG(y, 0);
2008-05-10 13:17:24 +04:00
}
BX_NEXT_INSTR(i);
}
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags)) {
2009-03-11 00:43:11 +03:00
BX_WRITE_FPU_REG(y, 0);
BX_CPU_THIS_PTR the_i387.FPU_push();
BX_WRITE_FPU_REG(Const_1, 0);
}
BX_NEXT_INSTR(i);
}
/* D9 F3 */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FPATAN(bxInstruction_c *i)
{
2008-07-14 22:54:10 +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);
clear_C1();
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(1))
{
2009-11-01 20:37:14 +03:00
FPU_stack_underflow(1, 1 /* pop_stack */);
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS);
floatx80 result = fpatan(BX_READ_FPU_REG(0), BX_READ_FPU_REG(1), status);
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_WRITE_FPU_REG(result, 0);
}
BX_NEXT_INSTR(i);
}
/* D9 F4 */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FXTRACT(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
2008-05-10 14:15:01 +04:00
if (IS_TAG_EMPTY(0) || ! IS_TAG_EMPTY(-1))
{
2008-05-10 14:15:01 +04:00
if(IS_TAG_EMPTY(0))
2009-05-28 23:25:33 +04:00
FPU_exception(FPU_EX_Stack_Underflow);
2008-05-10 14:15:01 +04:00
else
2009-05-28 23:25:33 +04:00
FPU_exception(FPU_EX_Stack_Overflow);
2008-05-10 13:17:24 +04:00
/* The masked response */
if (BX_CPU_THIS_PTR the_i387.is_IA_masked())
{
BX_WRITE_FPU_REG(floatx80_default_nan, 0);
2008-05-10 13:17:24 +04:00
BX_CPU_THIS_PTR the_i387.FPU_push();
BX_WRITE_FPU_REG(floatx80_default_nan, 0);
2008-05-10 13:17:24 +04:00
}
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
floatx80 a = BX_READ_FPU_REG(0);
floatx80 b = floatx80_extract(a, status);
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags)) {
2009-03-11 00:43:11 +03:00
BX_WRITE_FPU_REG(b, 0); // exponent
BX_CPU_THIS_PTR the_i387.FPU_push();
BX_WRITE_FPU_REG(a, 0); // fraction
}
BX_NEXT_INSTR(i);
}
/* D9 F5 */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FPREM1(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
2009-05-21 22:24:00 +04:00
clear_C2();
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(1))
{
2009-05-28 23:25:33 +04:00
FPU_stack_underflow(0);
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
Bit64u quotient;
floatx80 a = BX_READ_FPU_REG(0);
floatx80 b = BX_READ_FPU_REG(1);
2010-03-23 01:11:00 +03:00
floatx80 result;
2010-03-23 01:11:00 +03:00
int flags = floatx80_ieee754_remainder(a, b, result, quotient, status);
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags)) {
2010-03-23 01:11:00 +03:00
if (flags >= 0) {
2010-03-22 21:09:40 +03:00
int cc = 0;
2010-03-23 01:11:00 +03:00
if (flags) cc = FPU_SW_C2;
2010-03-22 21:09:40 +03:00
else {
if (quotient & 1) cc |= FPU_SW_C1;
if (quotient & 2) cc |= FPU_SW_C3;
if (quotient & 4) cc |= FPU_SW_C0;
}
setcc(cc);
2009-03-11 00:43:11 +03:00
}
BX_WRITE_FPU_REG(result, 0);
}
BX_NEXT_INSTR(i);
}
/* D9 F8 */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FPREM(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
2009-05-21 22:24:00 +04:00
clear_C2();
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(1))
{
2009-05-28 23:25:33 +04:00
FPU_stack_underflow(0);
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
Bit64u quotient;
floatx80 a = BX_READ_FPU_REG(0);
floatx80 b = BX_READ_FPU_REG(1);
2010-03-23 01:11:00 +03:00
floatx80 result;
2010-03-23 01:11:00 +03:00
int flags = floatx80_remainder(a, b, result, quotient, status);
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags)) {
2010-03-23 01:11:00 +03:00
if (flags >= 0) {
2010-03-22 21:09:40 +03:00
int cc = 0;
2010-03-23 01:11:00 +03:00
if (flags) cc = FPU_SW_C2;
2010-03-22 21:09:40 +03:00
else {
if (quotient & 1) cc |= FPU_SW_C1;
if (quotient & 2) cc |= FPU_SW_C3;
if (quotient & 4) cc |= FPU_SW_C0;
}
setcc(cc);
2009-03-11 00:43:11 +03:00
}
BX_WRITE_FPU_REG(result, 0);
}
BX_NEXT_INSTR(i);
}
/* D9 F9 */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FYL2XP1(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(1))
{
2009-11-01 20:37:14 +03:00
FPU_stack_underflow(1, 1 /* pop_stack */);
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS);
floatx80 result = fyl2xp1(BX_READ_FPU_REG(0), BX_READ_FPU_REG(1), status);
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_WRITE_FPU_REG(result, 0);
}
BX_NEXT_INSTR(i);
}
/* D9 FB */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FSINCOS(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
clear_C2();
2008-05-10 14:15:01 +04:00
if (IS_TAG_EMPTY(0) || ! IS_TAG_EMPTY(-1))
{
2008-05-10 14:15:01 +04:00
if(IS_TAG_EMPTY(0))
2009-05-28 23:25:33 +04:00
FPU_exception(FPU_EX_Stack_Underflow);
2008-05-10 14:15:01 +04:00
else
2009-05-28 23:25:33 +04:00
FPU_exception(FPU_EX_Stack_Overflow);
2008-05-10 13:17:24 +04:00
/* The masked response */
if (BX_CPU_THIS_PTR the_i387.is_IA_masked())
{
BX_WRITE_FPU_REG(floatx80_default_nan, 0);
2008-05-10 13:17:24 +04:00
BX_CPU_THIS_PTR the_i387.FPU_push();
BX_WRITE_FPU_REG(floatx80_default_nan, 0);
2008-05-10 13:17:24 +04:00
}
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS);
floatx80 y = BX_READ_FPU_REG(0);
floatx80 sin_y, cos_y;
if (fsincos(y, &sin_y, &cos_y, status) == -1)
{
2008-05-10 13:17:24 +04:00
FPU_PARTIAL_STATUS |= FPU_SW_C2;
BX_NEXT_INSTR(i);
}
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags)) {
2009-03-11 00:43:11 +03:00
BX_WRITE_FPU_REG(sin_y, 0);
BX_CPU_THIS_PTR the_i387.FPU_push();
BX_WRITE_FPU_REG(cos_y, 0);
}
BX_NEXT_INSTR(i);
}
/* D9 FD */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FSCALE(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
if (IS_TAG_EMPTY(0) || IS_TAG_EMPTY(1))
{
2009-05-28 23:25:33 +04:00
FPU_stack_underflow(0);
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word());
floatx80 result = floatx80_scale(BX_READ_FPU_REG(0), BX_READ_FPU_REG(1), status);
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags))
2009-03-11 00:43:11 +03:00
BX_WRITE_FPU_REG(result, 0);
BX_NEXT_INSTR(i);
}
/* D9 FE */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FSIN(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
clear_C2();
2008-05-10 13:17:24 +04:00
if (IS_TAG_EMPTY(0)) {
2009-05-28 23:25:33 +04:00
FPU_stack_underflow(0);
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS);
floatx80 y = BX_READ_FPU_REG(0);
if (fsin(y, status) == -1)
{
2008-05-10 13:17:24 +04:00
FPU_PARTIAL_STATUS |= FPU_SW_C2;
BX_NEXT_INSTR(i);
}
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags))
2009-03-11 00:43:11 +03:00
BX_WRITE_FPU_REG(y, 0);
BX_NEXT_INSTR(i);
}
/* D9 FF */
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::FCOS(bxInstruction_c *i)
{
BX_CPU_THIS_PTR prepareFPU(i);
2009-04-27 18:00:55 +04:00
BX_CPU_THIS_PTR FPU_update_last_instruction(i);
clear_C1();
clear_C2();
2008-05-10 13:17:24 +04:00
if (IS_TAG_EMPTY(0)) {
2009-05-28 23:25:33 +04:00
FPU_stack_underflow(0);
BX_NEXT_INSTR(i);
}
float_status_t status =
2008-05-10 13:17:24 +04:00
FPU_pre_exception_handling(BX_CPU_THIS_PTR the_i387.get_control_word() | FPU_PR_80_BITS);
floatx80 y = BX_READ_FPU_REG(0);
if (fcos(y, status) == -1)
{
2008-05-10 13:17:24 +04:00
FPU_PARTIAL_STATUS |= FPU_SW_C2;
BX_NEXT_INSTR(i);
}
2009-05-28 23:25:33 +04:00
if (! FPU_exception(status.float_exception_flags))
2009-03-11 00:43:11 +03:00
BX_WRITE_FPU_REG(y, 0);
BX_NEXT_INSTR(i);
}
#endif