2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-25 00:54:04 +03:00
|
|
|
// $Id$
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2011-04-24 00:39:27 +04:00
|
|
|
// Copyright (C) 2001-2011 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
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::AAA(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2011-04-23 14:49:36 +04:00
|
|
|
int tmpCF = 0, tmpAF = 0;
|
|
|
|
|
2008-02-03 00:46:54 +03:00
|
|
|
/*
|
2004-08-14 23:34:02 +04:00
|
|
|
* Note: This instruction incorrectly documented in Intel's materials.
|
2004-03-10 23:14:56 +03:00
|
|
|
* The right description is:
|
|
|
|
*
|
|
|
|
* IF (((AL and 0FH) > 9) or (AF==1)
|
2004-03-13 22:37:57 +03:00
|
|
|
* THEN
|
2004-03-10 23:14:56 +03:00
|
|
|
* IF CPU<286 THEN { AL <- AL+6 }
|
|
|
|
* ELSE { AX <- AX+6 }
|
|
|
|
* AH <- AH+1
|
|
|
|
* CF <- 1
|
|
|
|
* AF <- 1
|
2004-03-13 22:37:57 +03:00
|
|
|
* ELSE
|
2004-03-10 23:14:56 +03:00
|
|
|
* CF <- 0
|
|
|
|
* AF <- 0
|
2004-03-13 22:37:57 +03:00
|
|
|
* ENDIF
|
2004-03-10 23:14:56 +03:00
|
|
|
* AL <- AL and 0Fh
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Validated against Intel Pentium family hardware. */
|
|
|
|
|
2004-03-09 23:45:17 +03:00
|
|
|
/* AAA affects the following flags: A,C */
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-02-15 22:03:54 +03:00
|
|
|
if (((AL & 0x0f) > 9) || get_AF())
|
2004-03-09 23:45:17 +03:00
|
|
|
{
|
2004-03-26 15:43:19 +03:00
|
|
|
AX = AX + 0x106;
|
2011-04-23 14:49:36 +04:00
|
|
|
tmpAF = tmpCF = 1;
|
2004-03-09 23:45:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
AL = AL & 0x0f;
|
2004-03-13 22:37:57 +03:00
|
|
|
|
|
|
|
/* AAA affects also the following flags: Z,S,O,P */
|
|
|
|
/* modification of the flags is undocumented */
|
2004-03-19 00:43:18 +03:00
|
|
|
|
2008-02-03 00:46:54 +03:00
|
|
|
/* The following behaviour seems to match the P6 and
|
2004-03-19 00:43:18 +03:00
|
|
|
its derived processors. */
|
2011-04-23 14:49:36 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_8(AL);
|
|
|
|
set_CF(tmpCF);
|
|
|
|
set_AF(tmpAF);
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::AAS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2011-04-23 14:49:36 +04:00
|
|
|
int tmpCF = 0, tmpAF = 0;
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
/* AAS affects the following flags: A,C */
|
|
|
|
|
2008-02-15 22:03:54 +03:00
|
|
|
if (((AL & 0x0F) > 0x09) || get_AF())
|
2004-03-09 23:45:17 +03:00
|
|
|
{
|
2004-03-26 15:43:19 +03:00
|
|
|
AX = AX - 0x106;
|
2011-04-23 14:49:36 +04:00
|
|
|
tmpAF = tmpCF = 1;
|
2004-03-09 23:45:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
AL = AL & 0x0f;
|
2004-03-13 22:37:57 +03:00
|
|
|
|
2004-03-19 00:43:18 +03:00
|
|
|
/* AAS affects also the following flags: Z,S,O,P */
|
2004-03-13 22:37:57 +03:00
|
|
|
/* modification of the flags is undocumented */
|
2004-03-19 00:43:18 +03:00
|
|
|
|
2008-02-03 00:46:54 +03:00
|
|
|
/* The following behaviour seems to match the P6 and
|
2004-03-19 00:43:18 +03:00
|
|
|
its derived processors. */
|
2011-04-23 14:49:36 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_8(AL);
|
|
|
|
set_CF(tmpCF);
|
|
|
|
set_AF(tmpAF);
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::AAM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2004-03-19 00:43:18 +03:00
|
|
|
Bit8u al, imm8 = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-03-09 23:45:17 +03:00
|
|
|
if (imm8 == 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_DE_EXCEPTION, 0);
|
2002-07-06 15:02:35 +04:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
al = AL;
|
|
|
|
AH = al / imm8;
|
|
|
|
AL = al % imm8;
|
|
|
|
|
2004-03-19 00:43:18 +03:00
|
|
|
/* modification of flags A,C,O is undocumented */
|
2008-02-03 00:46:54 +03:00
|
|
|
/* The following behaviour seems to match the P6 and
|
2004-03-19 00:43:18 +03:00
|
|
|
its derived processors. */
|
2007-11-20 20:15:33 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_8(AL);
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::AAD(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2004-03-19 00:43:18 +03:00
|
|
|
Bit16u tmp = AH;
|
2007-11-20 20:15:33 +03:00
|
|
|
tmp *= i->Ib();
|
2004-03-19 00:43:18 +03:00
|
|
|
tmp += AL;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-11-20 20:15:33 +03:00
|
|
|
AX = (tmp & 0xff);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-07-06 15:02:35 +04:00
|
|
|
/* modification of flags A,C,O is undocumented */
|
2008-02-03 00:46:54 +03:00
|
|
|
/* The following behaviour seems to match the P6 and
|
2004-03-19 00:43:18 +03:00
|
|
|
its derived processors. */
|
2007-11-20 20:15:33 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_8(AL);
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::DAA(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2004-03-09 23:45:17 +03:00
|
|
|
Bit8u tmpAL = AL;
|
2011-04-23 14:49:36 +04:00
|
|
|
int tmpCF = 0, tmpAF = 0;
|
2004-03-10 23:14:56 +03:00
|
|
|
|
|
|
|
/* Validated against Intel Pentium family hardware. */
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// DAA affects the following flags: S,Z,A,P,C
|
|
|
|
|
2004-03-10 23:14:56 +03:00
|
|
|
if (((tmpAL & 0x0F) > 0x09) || get_AF())
|
2004-03-09 23:45:17 +03:00
|
|
|
{
|
2004-03-10 23:14:56 +03:00
|
|
|
tmpCF = ((AL > 0xF9) || get_CF());
|
|
|
|
AL = AL + 0x06;
|
2011-04-23 14:49:36 +04:00
|
|
|
tmpAF = 1;
|
2004-03-09 23:45:17 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-03-10 23:14:56 +03:00
|
|
|
if ((tmpAL > 0x99) || get_CF())
|
2004-03-09 23:45:17 +03:00
|
|
|
{
|
2004-03-10 23:14:56 +03:00
|
|
|
AL = AL + 0x60;
|
2004-03-09 23:45:17 +03:00
|
|
|
tmpCF = 1;
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-04-23 14:49:36 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_8(AL);
|
2004-03-09 23:45:17 +03:00
|
|
|
set_CF(tmpCF);
|
2011-04-23 14:49:36 +04:00
|
|
|
set_AF(tmpAF);
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-03-19 00:43:18 +03:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::DAS(bxInstruction_c *i)
|
2004-03-19 00:43:18 +03:00
|
|
|
{
|
|
|
|
/* The algorithm for DAS is fashioned after the pseudo code in the
|
|
|
|
* Pentium Processor Family Developer's Manual, volume 3. It seems
|
|
|
|
* to have changed from earlier processor's manuals. I'm not sure
|
|
|
|
* if this is a correction in the algorithm printed, or Intel has
|
2008-02-03 00:46:54 +03:00
|
|
|
* changed the handling of instruction. Validated against Intel
|
2004-03-19 00:43:18 +03:00
|
|
|
* Pentium family hardware.
|
|
|
|
*/
|
|
|
|
|
|
|
|
Bit8u tmpAL = AL;
|
2011-04-23 14:49:36 +04:00
|
|
|
int tmpCF = 0, tmpAF = 0;
|
2004-03-19 00:43:18 +03:00
|
|
|
|
|
|
|
/* DAS effect the following flags: A,C,S,Z,P */
|
|
|
|
|
|
|
|
if (((tmpAL & 0x0F) > 0x09) || get_AF())
|
|
|
|
{
|
|
|
|
tmpCF = (AL < 0x06) || get_CF();
|
|
|
|
AL = AL - 0x06;
|
2011-04-23 14:49:36 +04:00
|
|
|
tmpAF = 1;
|
2004-03-19 00:43:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((tmpAL > 0x99) || get_CF())
|
|
|
|
{
|
|
|
|
AL = AL - 0x60;
|
|
|
|
tmpCF = 1;
|
|
|
|
}
|
|
|
|
|
2011-04-23 14:49:36 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_8(AL);
|
2004-03-19 00:43:18 +03:00
|
|
|
set_CF(tmpCF);
|
2011-04-23 14:49:36 +04:00
|
|
|
set_AF(tmpAF);
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|