2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2010-03-19 01:19:10 +03:00
|
|
|
// $Id: mult32.cc,v 1.35 2010-03-18 22:19:10 sshwarts Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2009-12-04 19:53:12 +03:00
|
|
|
// Copyright (C) 2001-2009 The Bochs Project
|
2001-04-10 05:04:59 +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-01-16 21:18:59 +03:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA B 02110-1301 USA
|
2007-11-18 02:28:33 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2001-05-24 22:46:34 +04:00
|
|
|
#define NEED_CPU_REG_SHORTCUTS 1
|
2001-04-10 05:04:59 +04:00
|
|
|
#include "bochs.h"
|
2006-03-07 01:03:16 +03:00
|
|
|
#include "cpu.h"
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
#define LOG_THIS BX_CPU_THIS_PTR
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-09-15 05:00:20 +04:00
|
|
|
#if BX_SUPPORT_X86_64==0
|
|
|
|
#define RAX EAX
|
|
|
|
#define RDX EDX
|
|
|
|
#endif
|
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::MUL_EAXEdR(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit32u op1_32 = EAX;
|
|
|
|
Bit32u op2_32 = BX_READ_32BIT_REG(i->rm());
|
2005-05-21 00:06:50 +04:00
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit64u product_64 = ((Bit64u) op1_32) * ((Bit64u) op2_32);
|
|
|
|
Bit32u product_32l = GET32L(product_64);
|
|
|
|
Bit32u product_32h = GET32H(product_64);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* now write product back to destination */
|
|
|
|
RAX = product_32l;
|
|
|
|
RDX = product_32h;
|
2007-12-06 19:57:59 +03:00
|
|
|
|
|
|
|
/* set EFLAGS */
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(product_32l);
|
|
|
|
if(product_32h != 0)
|
|
|
|
{
|
|
|
|
ASSERT_FLAGS_OxxxxC();
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::IMUL_EAXEdR(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit32s op1_32 = EAX;
|
|
|
|
Bit32s op2_32 = BX_READ_32BIT_REG(i->rm());
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
Bit64s product_64 = ((Bit64s) op1_32) * ((Bit64s) op2_32);
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit32u product_32l = GET32L(product_64);
|
|
|
|
Bit32u product_32h = GET32H(product_64);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* now write product back to destination */
|
|
|
|
RAX = product_32l;
|
|
|
|
RDX = product_32h;
|
|
|
|
|
|
|
|
/* set eflags:
|
|
|
|
* IMUL r/m32: condition for clearing CF & OF:
|
|
|
|
* EDX:EAX = sign-extend of EAX
|
|
|
|
*/
|
2007-12-06 19:57:59 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(product_32l);
|
|
|
|
if(product_64 != (Bit32s)product_64)
|
|
|
|
{
|
|
|
|
ASSERT_FLAGS_OxxxxC();
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::DIV_EAXEdR(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit32u op2_32 = BX_READ_32BIT_REG(i->rm());
|
2005-05-21 00:06:50 +04:00
|
|
|
if (op2_32 == 0) {
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_DE_EXCEPTION, 0);
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit64u op1_64 = (((Bit64u) EDX) << 32) + ((Bit64u) EAX);
|
|
|
|
|
|
|
|
Bit64u quotient_64 = op1_64 / op2_32;
|
|
|
|
Bit32u remainder_32 = (Bit32u) (op1_64 % op2_32);
|
|
|
|
Bit32u quotient_32l = (Bit32u) (quotient_64 & 0xFFFFFFFF);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
if (quotient_64 != quotient_32l)
|
|
|
|
{
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_DE_EXCEPTION, 0);
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set EFLAGS:
|
|
|
|
* DIV affects the following flags: O,S,Z,A,P,C are undefined
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* now write quotient back to destination */
|
|
|
|
RAX = quotient_32l;
|
|
|
|
RDX = remainder_32;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::IDIV_EAXEdR(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit64s op1_64 = (((Bit64u) EDX) << 32) | ((Bit64u) EAX);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
/* check MIN_INT case */
|
|
|
|
if (op1_64 == ((Bit64s)BX_CONST64(0x8000000000000000)))
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_DE_EXCEPTION, 0);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit32s op2_32 = BX_READ_32BIT_REG(i->rm());
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
if (op2_32 == 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_DE_EXCEPTION, 0);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit64s quotient_64 = op1_64 / op2_32;
|
|
|
|
Bit32s remainder_32 = (Bit32s) (op1_64 % op2_32);
|
|
|
|
Bit32s quotient_32l = (Bit32s) (quotient_64 & 0xFFFFFFFF);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
if (quotient_64 != quotient_32l)
|
|
|
|
{
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_DE_EXCEPTION, 0);
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set EFLAGS:
|
|
|
|
* IDIV affects the following flags: O,S,Z,A,P,C are undefined
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* now write quotient back to destination */
|
2010-03-19 01:19:10 +03:00
|
|
|
RAX = (Bit32u) quotient_32l;
|
|
|
|
RDX = (Bit32u) remainder_32;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::IMUL_GdEdIdR(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit32s op2_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
Bit32s op3_32 = i->Id();
|
2005-05-21 00:06:50 +04:00
|
|
|
|
2007-12-27 02:07:44 +03:00
|
|
|
Bit64s product_64 = ((Bit64s) op2_32) * ((Bit64s) op3_32);
|
|
|
|
Bit32u product_32 = (Bit32u)(product_64 & 0xFFFFFFFF);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* now write product back to destination */
|
2007-12-06 19:57:59 +03:00
|
|
|
BX_WRITE_32BIT_REGZ(i->nnn(), product_32);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* set eflags:
|
|
|
|
* IMUL r32,r/m32,imm32: condition for clearing CF & OF:
|
|
|
|
* result exactly fits within r32
|
|
|
|
*/
|
2007-12-06 19:57:59 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(product_32);
|
|
|
|
if(product_64 != (Bit32s) product_64)
|
|
|
|
{
|
|
|
|
ASSERT_FLAGS_OxxxxC();
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-08-11 01:16:12 +04:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::IMUL_GdEdR(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2008-08-11 01:16:12 +04:00
|
|
|
Bit32s op1_32 = BX_READ_32BIT_REG(i->nnn());
|
|
|
|
Bit32s op2_32 = BX_READ_32BIT_REG(i->rm());
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
Bit64s product_64 = ((Bit64s) op1_32) * ((Bit64s) op2_32);
|
2007-12-27 02:07:44 +03:00
|
|
|
Bit32u product_32 = (Bit32u)(product_64 & 0xFFFFFFFF);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* now write product back to destination */
|
2007-12-06 19:57:59 +03:00
|
|
|
BX_WRITE_32BIT_REGZ(i->nnn(), product_32);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* set eflags:
|
2007-12-06 19:57:59 +03:00
|
|
|
* IMUL r32,r/m32: condition for clearing CF & OF:
|
2005-05-21 00:06:50 +04:00
|
|
|
* result exactly fits within r32
|
|
|
|
*/
|
2007-12-06 19:57:59 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(product_32);
|
|
|
|
if(product_64 != (Bit32s) product_64)
|
|
|
|
{
|
|
|
|
ASSERT_FLAGS_OxxxxC();
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|