2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2008-03-23 00:29:41 +03:00
|
|
|
// $Id: mult16.cc,v 1.29 2008-03-22 21:29:40 sshwarts Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2001-04-10 06:20:02 +04:00
|
|
|
// Copyright (C) 2001 MandrakeSoft S.A.
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// MandrakeSoft S.A.
|
|
|
|
// 43, rue d'Aboukir
|
|
|
|
// 75002 Paris - France
|
|
|
|
// http://www.linux-mandrake.com/
|
|
|
|
// http://www.mandrakesoft.com/
|
|
|
|
//
|
|
|
|
// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::MUL_AXEw(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-05-21 00:06:50 +04:00
|
|
|
Bit16u op1_16, op2_16;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
op1_16 = AX;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
/* op2 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op2_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
2008-01-10 22:37:56 +03:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2005-05-21 00:06:50 +04:00
|
|
|
/* pointer, segment address pair */
|
2007-12-20 23:58:38 +03:00
|
|
|
op2_16 = read_virtual_word(i->seg(), RMAddr(i));
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
Bit32u product_32 = ((Bit32u) op1_16) * ((Bit32u) op2_16);
|
|
|
|
Bit16u product_16l = (product_32 & 0xFFFF);
|
|
|
|
Bit16u product_16h = product_32 >> 16;
|
|
|
|
/* now write product back to destination */
|
|
|
|
AX = product_16l;
|
|
|
|
DX = product_16h;
|
2007-12-06 19:57:59 +03:00
|
|
|
|
|
|
|
/* set EFLAGS */
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(product_16l);
|
|
|
|
if(product_16h != 0)
|
|
|
|
{
|
|
|
|
ASSERT_FLAGS_OxxxxC();
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::IMUL_AXEw(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-05-21 00:06:50 +04:00
|
|
|
Bit16s op1_16, op2_16;
|
|
|
|
|
|
|
|
op1_16 = AX;
|
|
|
|
|
|
|
|
/* op2 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op2_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
2008-01-10 22:37:56 +03:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2005-05-21 00:06:50 +04:00
|
|
|
/* pointer, segment address pair */
|
2007-12-20 23:58:38 +03:00
|
|
|
op2_16 = (Bit16s) read_virtual_word(i->seg(), RMAddr(i));
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
Bit32s product_32 = ((Bit32s) op1_16) * ((Bit32s) op2_16);
|
|
|
|
Bit16u product_16l = (product_32 & 0xFFFF);
|
|
|
|
Bit16u product_16h = product_32 >> 16;
|
|
|
|
|
|
|
|
/* now write product back to destination */
|
|
|
|
AX = product_16l;
|
|
|
|
DX = product_16h;
|
|
|
|
|
|
|
|
/* set eflags:
|
|
|
|
* IMUL r/m16: condition for clearing CF & OF:
|
|
|
|
* DX:AX = sign-extend of AX
|
|
|
|
*/
|
2007-12-06 19:57:59 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(product_16l);
|
|
|
|
if(product_32 != (Bit16s)product_32)
|
|
|
|
{
|
|
|
|
ASSERT_FLAGS_OxxxxC();
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::DIV_AXEw(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-05-21 00:06:50 +04:00
|
|
|
Bit16u op2_16, remainder_16, quotient_16l;
|
|
|
|
Bit32u op1_32, quotient_32;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
op1_32 = (((Bit32u) DX) << 16) | ((Bit32u) AX);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
/* op2 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op2_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
2008-01-10 22:37:56 +03:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2005-05-21 00:06:50 +04:00
|
|
|
/* pointer, segment address pair */
|
2007-12-20 23:58:38 +03:00
|
|
|
op2_16 = read_virtual_word(i->seg(), RMAddr(i));
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
if (op2_16 == 0)
|
|
|
|
exception(BX_DE_EXCEPTION, 0, 0);
|
2004-08-18 23:27:52 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
quotient_32 = op1_32 / op2_16;
|
|
|
|
remainder_16 = op1_32 % op2_16;
|
|
|
|
quotient_16l = quotient_32 & 0xFFFF;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
if (quotient_32 != quotient_16l)
|
|
|
|
exception(BX_DE_EXCEPTION, 0, 0);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
/* now write quotient back to destination */
|
|
|
|
AX = quotient_16l;
|
|
|
|
DX = remainder_16;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::IDIV_AXEw(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-05-21 00:06:50 +04:00
|
|
|
Bit16s op2_16, remainder_16, quotient_16l;
|
|
|
|
Bit32s op1_32, quotient_32;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
op1_32 = ((((Bit32u) DX) << 16) | ((Bit32u) AX));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
/* op2 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op2_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
2008-01-10 22:37:56 +03:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2005-05-21 00:06:50 +04:00
|
|
|
/* pointer, segment address pair */
|
2007-12-20 23:58:38 +03:00
|
|
|
op2_16 = (Bit16s) read_virtual_word(i->seg(), RMAddr(i));
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
if (op2_16 == 0)
|
|
|
|
exception(BX_DE_EXCEPTION, 0, 0);
|
2004-08-18 23:27:52 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
/* check MIN_INT divided by -1 case */
|
|
|
|
if ((op1_32 == ((Bit32s)0x80000000)) && (op2_16 == -1))
|
|
|
|
exception(BX_DE_EXCEPTION, 0, 0);
|
2004-08-18 23:27:52 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
quotient_32 = op1_32 / op2_16;
|
|
|
|
remainder_16 = op1_32 % op2_16;
|
|
|
|
quotient_16l = quotient_32 & 0xFFFF;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
if (quotient_32 != quotient_16l)
|
|
|
|
exception(BX_DE_EXCEPTION, 0, 0);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-05-21 00:06:50 +04:00
|
|
|
/* now write quotient back to destination */
|
|
|
|
AX = quotient_16l;
|
|
|
|
DX = remainder_16;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::IMUL_GwEwIw(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-05-21 00:06:50 +04:00
|
|
|
Bit16s op2_16, op3_16;
|
|
|
|
|
|
|
|
op3_16 = i->Iw();
|
|
|
|
|
|
|
|
/* op2 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op2_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
2008-01-10 22:37:56 +03:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2005-05-21 00:06:50 +04:00
|
|
|
/* pointer, segment address pair */
|
2007-12-20 23:58:38 +03:00
|
|
|
op2_16 = (Bit16s) read_virtual_word(i->seg(), RMAddr(i));
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
Bit32s product_32 = op2_16 * op3_16;
|
2007-12-06 19:57:59 +03:00
|
|
|
Bit16u product_16 = (product_32 & 0xFFFF);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* now write product back to destination */
|
2007-12-06 19:57:59 +03:00
|
|
|
BX_WRITE_16BIT_REG(i->nnn(), product_16);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* set eflags:
|
|
|
|
* IMUL r16,r/m16,imm16: condition for clearing CF & OF:
|
|
|
|
* result exactly fits within r16
|
|
|
|
*/
|
2007-12-06 19:57:59 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(product_16);
|
|
|
|
if(product_32 != (Bit16s) product_32)
|
|
|
|
{
|
|
|
|
ASSERT_FLAGS_OxxxxC();
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::IMUL_GwEw(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-05-21 00:06:50 +04:00
|
|
|
Bit16s op1_16, op2_16;
|
|
|
|
|
|
|
|
/* op2 is a register or memory reference */
|
|
|
|
if (i->modC0()) {
|
|
|
|
op2_16 = BX_READ_16BIT_REG(i->rm());
|
|
|
|
}
|
|
|
|
else {
|
2008-01-10 22:37:56 +03:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2005-05-21 00:06:50 +04:00
|
|
|
/* pointer, segment address pair */
|
2007-12-20 23:58:38 +03:00
|
|
|
op2_16 = (Bit16s) read_virtual_word(i->seg(), RMAddr(i));
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
op1_16 = BX_READ_16BIT_REG(i->nnn());
|
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
Bit32s product_32 = op1_16 * op2_16;
|
2007-12-06 19:57:59 +03:00
|
|
|
Bit16u product_16 = (product_32 & 0xFFFF);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* now write product back to destination */
|
2007-12-06 19:57:59 +03:00
|
|
|
BX_WRITE_16BIT_REG(i->nnn(), product_16);
|
2005-05-21 00:06:50 +04:00
|
|
|
|
|
|
|
/* set eflags:
|
2007-12-06 19:57:59 +03:00
|
|
|
* IMUL r16,r/m16: condition for clearing CF & OF:
|
2005-05-21 00:06:50 +04:00
|
|
|
* result exactly fits within r16
|
|
|
|
*/
|
2007-12-06 19:57:59 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(product_16);
|
|
|
|
if(product_32 != (Bit16s) product_32)
|
|
|
|
{
|
|
|
|
ASSERT_FLAGS_OxxxxC();
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|