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
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2012-08-05 17:52:40 +04:00
|
|
|
// Copyright (C) 2001-2012 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-17 21:08:46 +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::SHLD_EwGwM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-02-17 00:27:21 +03:00
|
|
|
Bit32u temp_32, result_32;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned of, cf;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* op1:op2 << count. result stored in op1 */
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SHLD_EwGw)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else // BX_IA_SHLD_EwGwIb
|
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
count &= 0x1f; // use only 5 LSB's
|
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2012-09-09 21:44:42 +04:00
|
|
|
Bit32u op1_16 = (Bit32u) read_RMW_virtual_word(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
2012-09-09 21:44:42 +04:00
|
|
|
Bit32u op2_16 = (Bit32u) BX_READ_16BIT_REG(i->src());
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
2012-09-09 21:44:42 +04:00
|
|
|
temp_32 = (op1_16 << 16) | (op2_16); // double formed by op1:op2
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 = temp_32 << count;
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
// hack to act like x86 SHLD when count > 16
|
|
|
|
if (count > 16) {
|
2012-09-09 21:44:42 +04:00
|
|
|
// for Pentium processor, when count > 16, actually shifting op1:op2:op2 << count,
|
2011-07-07 00:01:18 +04:00
|
|
|
// it is the same as shifting op2:op2 by count-16
|
2012-09-09 21:44:42 +04:00
|
|
|
// For P6 and later (CPU_LEVEL >= 6), when count > 16, actually shifting op1:op2:op1 << count,
|
|
|
|
// which is the same as shifting op2:op1 by count-16
|
|
|
|
// The behavior is undefined so both ways are correct, we prefer P6 way of implementation
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 |= (op1_16 << (count - 16));
|
|
|
|
}
|
2007-12-06 23:39:11 +03:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
Bit16u result_16 = (Bit16u)(result_32 >> 16);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_word(result_16);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (temp_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_16 >> 15); // of = cf ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2008-04-05 23:08:01 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::SHLD_EwGwR(bxInstruction_c *i)
|
2008-04-05 23:08:01 +04:00
|
|
|
{
|
|
|
|
Bit32u temp_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned of, cf;
|
|
|
|
|
|
|
|
/* op1:op2 << count. result stored in op1 */
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SHLD_EwGw)
|
2008-04-05 23:08:01 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else // BX_IA_SHLD_EwGwIb
|
|
|
|
count = i->Ib();
|
2008-04-05 23:08:01 +04:00
|
|
|
|
|
|
|
count &= 0x1f; // use only 5 LSB's
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
2012-09-09 21:44:42 +04:00
|
|
|
Bit32u op1_16 = (Bit32u) BX_READ_16BIT_REG(i->dst());
|
|
|
|
Bit32u op2_16 = (Bit32u) BX_READ_16BIT_REG(i->src());
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
2012-09-09 21:44:42 +04:00
|
|
|
temp_32 = (op1_16 << 16) | (op2_16); // double formed by op1:op2
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 = temp_32 << count;
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
// hack to act like x86 SHLD when count > 16
|
|
|
|
if (count > 16) {
|
2012-09-09 21:44:42 +04:00
|
|
|
// for Pentium processor, when count > 16, actually shifting op1:op2:op2 << count,
|
2011-07-07 00:01:18 +04:00
|
|
|
// it is the same as shifting op2:op2 by count-16
|
2012-09-09 21:44:42 +04:00
|
|
|
// For P6 and later (CPU_LEVEL >= 6), when count > 16, actually shifting op1:op2:op1 << count,
|
|
|
|
// which is the same as shifting op2:op1 by count-16
|
|
|
|
// The behavior is undefined so both ways are correct, we prefer P6 way of implementation
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 |= (op1_16 << (count - 16));
|
|
|
|
}
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
Bit16u result_16 = (Bit16u)(result_32 >> 16);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
BX_WRITE_16BIT_REG(i->dst(), result_16);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (temp_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_16 >> 15); // of = cf ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2007-12-06 23:39:11 +03:00
|
|
|
|
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::SHRD_EwGwM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-02-17 00:27:21 +03:00
|
|
|
Bit32u temp_32, result_32;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned cf, of;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SHRD_EwGw)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else // BX_IA_SHRD_EwGwIb
|
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2012-09-09 21:44:42 +04:00
|
|
|
Bit32u op1_16 = (Bit32u) read_RMW_virtual_word(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
2012-09-09 21:44:42 +04:00
|
|
|
Bit32u op2_16 = (Bit32u) BX_READ_16BIT_REG(i->src());
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
|
|
|
temp_32 = (op2_16 << 16) | op1_16; // double formed by op2:op1
|
|
|
|
result_32 = temp_32 >> count;
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
// hack to act like x86 SHRD when count > 16
|
|
|
|
if (count > 16) {
|
2012-09-09 21:44:42 +04:00
|
|
|
// for Pentium processor, when count > 16, actually shifting op2:op2:op1 >> count,
|
2011-07-07 00:01:18 +04:00
|
|
|
// it is the same as shifting op2:op2 by count-16
|
2012-09-09 21:44:42 +04:00
|
|
|
// For P6 and later (CPU_LEVEL >= 6), when count > 16, actually shifting op1:op2:op1 >> count,
|
|
|
|
// which is the same as shifting op1:op2 by count-16
|
|
|
|
// The behavior is undefined so both ways are correct, we prefer P6 way of implementation
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 |= (op1_16 << (32 - count));
|
|
|
|
}
|
2007-12-06 23:39:11 +03:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
Bit16u result_16 = (Bit16u) result_32;
|
2008-02-03 00:46:54 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_word(result_16);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_16 >> (count - 1)) & 0x1;
|
|
|
|
of = ((Bit16u)((result_16 << 1) ^ result_16) >> 15) & 0x1; // of = result14 ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2008-04-05 23:08:01 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::SHRD_EwGwR(bxInstruction_c *i)
|
2008-04-05 23:08:01 +04:00
|
|
|
{
|
|
|
|
Bit32u temp_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned cf, of;
|
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SHRD_EwGw)
|
2008-04-05 23:08:01 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else // BX_IA_SHRD_EwGwIb
|
|
|
|
count = i->Ib();
|
2008-04-05 23:08:01 +04:00
|
|
|
|
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
2012-09-09 21:44:42 +04:00
|
|
|
Bit32u op1_16 = (Bit32u) BX_READ_16BIT_REG(i->dst());
|
|
|
|
Bit32u op2_16 = (Bit32u) BX_READ_16BIT_REG(i->src());
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
|
|
|
temp_32 = (op2_16 << 16) | op1_16; // double formed by op2:op1
|
|
|
|
result_32 = temp_32 >> count;
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
// hack to act like x86 SHRD when count > 16
|
|
|
|
if (count > 16) {
|
2012-09-09 21:44:42 +04:00
|
|
|
// for Pentium processor, when count > 16, actually shifting op2:op2:op1 >> count,
|
2011-07-07 00:01:18 +04:00
|
|
|
// it is the same as shifting op2:op2 by count-16
|
2012-09-09 21:44:42 +04:00
|
|
|
// For P6 and later (CPU_LEVEL >= 6), when count > 16, actually shifting op1:op2:op1 >> count,
|
|
|
|
// which is the same as shifting op1:op2 by count-16
|
|
|
|
// The behavior is undefined so both ways are correct, we prefer P6 way of implementation
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 |= (op1_16 << (32 - count));
|
|
|
|
}
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
Bit16u result_16 = (Bit16u) result_32;
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
BX_WRITE_16BIT_REG(i->dst(), result_16);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_16 >> (count - 1)) & 0x1;
|
|
|
|
of = ((Bit16u)((result_16 << 1) ^ result_16) >> 15) & 0x1; // of = result14 ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2007-12-06 23:39:11 +03:00
|
|
|
|
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::ROL_EwM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
unsigned count;
|
2007-12-06 21:35:33 +03:00
|
|
|
unsigned bit0, bit15;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_ROL_Ew)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2007-12-30 23:16:35 +03:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2010-05-18 11:28:05 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
Bit16u op1_16 = read_RMW_virtual_word(i->seg(), eaddr);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-06 21:35:33 +03:00
|
|
|
if ((count & 0x0f) == 0) {
|
|
|
|
if (count & 0x10) {
|
|
|
|
bit0 = (op1_16 & 0x1);
|
|
|
|
bit15 = (op1_16 >> 15);
|
2007-12-06 23:39:11 +03:00
|
|
|
// of = cf ^ result15
|
2007-12-06 21:35:33 +03:00
|
|
|
SET_FLAGS_OxxxxC(bit0 ^ bit15, bit0);
|
2005-02-17 00:27:21 +03:00
|
|
|
}
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
else {
|
|
|
|
count &= 0x0f; // only use bottom 4 bits
|
2007-12-06 21:35:33 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
Bit16u result_16 = (op1_16 << count) | (op1_16 >> (16 - count));
|
2004-08-28 00:13:32 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_word(result_16);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
bit0 = (result_16 & 0x1);
|
|
|
|
bit15 = (result_16 >> 15);
|
|
|
|
// of = cf ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(bit0 ^ bit15, bit0);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2010-05-18 11:28:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::ROL_EwR(bxInstruction_c *i)
|
2010-05-18 11:28:05 +04:00
|
|
|
{
|
|
|
|
unsigned count;
|
|
|
|
unsigned bit0, bit15;
|
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_ROL_Ew)
|
2010-05-18 11:28:05 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2010-05-18 11:28:05 +04:00
|
|
|
count = i->Ib();
|
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
Bit16u op1_16 = BX_READ_16BIT_REG(i->dst());
|
2010-05-18 11:28:05 +04:00
|
|
|
|
|
|
|
if ((count & 0x0f) == 0) {
|
|
|
|
if (count & 0x10) {
|
|
|
|
bit0 = (op1_16 & 0x1);
|
|
|
|
bit15 = (op1_16 >> 15);
|
|
|
|
// of = cf ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(bit0 ^ bit15, bit0);
|
|
|
|
}
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
else {
|
|
|
|
count &= 0x0f; // only use bottom 4 bits
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
Bit16u result_16 = (op1_16 << count) | (op1_16 >> (16 - count));
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
BX_WRITE_16BIT_REG(i->dst(), result_16);
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
bit0 = (result_16 & 0x1);
|
|
|
|
bit15 = (result_16 >> 15);
|
|
|
|
// of = cf ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(bit0 ^ bit15, bit0);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
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::ROR_EwM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
unsigned count;
|
2007-12-06 21:35:33 +03:00
|
|
|
unsigned bit14, bit15;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_ROR_Ew)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2007-12-30 23:16:35 +03:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2010-05-18 11:28:05 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
Bit16u op1_16 = read_RMW_virtual_word(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
if ((count & 0x0f) == 0) {
|
|
|
|
if (count & 0x10) {
|
2007-12-06 21:35:33 +03:00
|
|
|
bit14 = (op1_16 >> 14) & 1;
|
|
|
|
bit15 = (op1_16 >> 15) & 1;
|
2008-02-03 00:46:54 +03:00
|
|
|
// of = result14 ^ result15
|
2007-12-06 21:35:33 +03:00
|
|
|
SET_FLAGS_OxxxxC(bit14 ^ bit15, bit15);
|
2005-02-17 00:27:21 +03:00
|
|
|
}
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
else {
|
|
|
|
count &= 0x0f; // use only 4 LSB's
|
2007-12-06 21:35:33 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
Bit16u result_16 = (op1_16 >> count) | (op1_16 << (16 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_word(result_16);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
bit14 = (result_16 >> 14) & 1;
|
|
|
|
bit15 = (result_16 >> 15) & 1;
|
|
|
|
// of = result14 ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(bit14 ^ bit15, bit15);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2010-05-18 11:28:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::ROR_EwR(bxInstruction_c *i)
|
2010-05-18 11:28:05 +04:00
|
|
|
{
|
|
|
|
unsigned count;
|
|
|
|
unsigned bit14, bit15;
|
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_ROR_Ew)
|
2010-05-18 11:28:05 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2010-05-18 11:28:05 +04:00
|
|
|
count = i->Ib();
|
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
Bit16u op1_16 = BX_READ_16BIT_REG(i->dst());
|
2010-05-18 11:28:05 +04:00
|
|
|
|
|
|
|
if ((count & 0x0f) == 0) {
|
|
|
|
if (count & 0x10) {
|
|
|
|
bit14 = (op1_16 >> 14) & 1;
|
|
|
|
bit15 = (op1_16 >> 15) & 1;
|
|
|
|
// of = result14 ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(bit14 ^ bit15, bit15);
|
|
|
|
}
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
else {
|
|
|
|
count &= 0x0f; // use only 4 LSB's
|
2008-02-03 00:46:54 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
Bit16u result_16 = (op1_16 >> count) | (op1_16 << (16 - count));
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
BX_WRITE_16BIT_REG(i->dst(), result_16);
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
bit14 = (result_16 >> 14) & 1;
|
|
|
|
bit15 = (result_16 >> 15) & 1;
|
|
|
|
// of = result14 ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(bit14 ^ bit15, bit15);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
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::RCL_EwM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2010-05-18 11:28:05 +04:00
|
|
|
Bit16u result_16;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned of, cf;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_RCL_Ew)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2007-12-30 23:16:35 +03:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
count = (count & 0x1f) % 17;
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2010-05-18 11:28:05 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
Bit16u op1_16 = read_RMW_virtual_word(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
if (count==1) {
|
|
|
|
result_16 = (op1_16 << 1) | getB_CF();
|
|
|
|
}
|
|
|
|
else if (count==16) {
|
|
|
|
result_16 = (getB_CF() << 15) | (op1_16 >> 1);
|
|
|
|
}
|
|
|
|
else { // 2..15
|
|
|
|
result_16 = (op1_16 << count) | (getB_CF() << (count - 1)) |
|
|
|
|
(op1_16 >> (17 - count));
|
|
|
|
}
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_word(result_16);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_16 >> (16 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_16 >> 15); // of = cf ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2004-12-25 01:44:13 +03:00
|
|
|
|
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::RCL_EwR(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2010-05-18 11:28:05 +04:00
|
|
|
Bit16u result_16;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned of, cf;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_RCL_Ew)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2007-12-30 23:16:35 +03:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
count = (count & 0x1f) % 17;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
2012-08-05 17:52:40 +04:00
|
|
|
Bit16u op1_16 = BX_READ_16BIT_REG(i->dst());
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count==1) {
|
|
|
|
result_16 = (op1_16 << 1) | getB_CF();
|
|
|
|
}
|
|
|
|
else if (count==16) {
|
|
|
|
result_16 = (getB_CF() << 15) | (op1_16 >> 1);
|
|
|
|
}
|
|
|
|
else { // 2..15
|
|
|
|
result_16 = (op1_16 << count) | (getB_CF() << (count - 1)) |
|
|
|
|
(op1_16 >> (17 - count));
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
BX_WRITE_16BIT_REG(i->dst(), result_16);
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_16 >> (16 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_16 >> 15); // of = cf ^ result15
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2010-05-18 11:28:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::RCR_EwM(bxInstruction_c *i)
|
2010-05-18 11:28:05 +04:00
|
|
|
{
|
|
|
|
unsigned count;
|
|
|
|
unsigned of, cf;
|
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_RCR_Ew)
|
2010-05-18 11:28:05 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2010-05-18 11:28:05 +04:00
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count = (count & 0x1f) % 17;
|
|
|
|
|
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
Bit16u op1_16 = read_RMW_virtual_word(i->seg(), eaddr);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
Bit16u result_16 = (op1_16 >> count) | (getB_CF() << (16 - count)) |
|
|
|
|
(op1_16 << (17 - count));
|
2004-08-28 00:13:32 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_word(result_16);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_16 >> (count - 1)) & 0x1;
|
|
|
|
of = ((Bit16u)((result_16 << 1) ^ result_16) >> 15) & 0x1; // of = result15 ^ result14
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2010-05-18 11:28:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::RCR_EwR(bxInstruction_c *i)
|
2010-05-18 11:28:05 +04:00
|
|
|
{
|
|
|
|
unsigned count;
|
|
|
|
unsigned of, cf;
|
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_RCR_Ew)
|
2010-05-18 11:28:05 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2010-05-18 11:28:05 +04:00
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count = (count & 0x1f) % 17;
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
2012-08-05 17:52:40 +04:00
|
|
|
Bit16u op1_16 = BX_READ_16BIT_REG(i->dst());
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
Bit16u result_16 = (op1_16 >> count) | (getB_CF() << (16 - count)) |
|
|
|
|
(op1_16 << (17 - count));
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
BX_WRITE_16BIT_REG(i->dst(), result_16);
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_16 >> (count - 1)) & 0x1;
|
|
|
|
of = ((Bit16u)((result_16 << 1) ^ result_16) >> 15) & 0x1; // of = result15 ^ result14
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2004-12-25 01:44:13 +03:00
|
|
|
|
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::SHL_EwM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2010-05-18 11:28:05 +04:00
|
|
|
Bit16u result_16;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned of = 0, cf = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SHL_Ew)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2007-12-30 23:16:35 +03:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2010-05-18 11:28:05 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
Bit16u op1_16 = read_RMW_virtual_word(i->seg(), eaddr);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
if (count <= 16) {
|
|
|
|
result_16 = (op1_16 << count);
|
|
|
|
cf = (op1_16 >> (16 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_16 >> 15); // of = cf ^ result15
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result_16 = 0;
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_word(result_16);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2010-05-18 11:28:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::SHL_EwR(bxInstruction_c *i)
|
2010-05-18 11:28:05 +04:00
|
|
|
{
|
|
|
|
Bit16u result_16;
|
|
|
|
unsigned count;
|
|
|
|
unsigned of = 0, cf = 0;
|
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SHL_Ew)
|
2010-05-18 11:28:05 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2010-05-18 11:28:05 +04:00
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
2012-08-05 17:52:40 +04:00
|
|
|
Bit16u op1_16 = BX_READ_16BIT_REG(i->dst());
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count <= 16) {
|
|
|
|
result_16 = (op1_16 << count);
|
|
|
|
cf = (op1_16 >> (16 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_16 >> 15); // of = cf ^ result15
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result_16 = 0;
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2012-08-05 17:52:40 +04:00
|
|
|
BX_WRITE_16BIT_REG(i->dst(), result_16);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
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::SHR_EwM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned of, cf;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SHR_Ew)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2007-12-30 23:16:35 +03:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2010-05-18 11:28:05 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
Bit16u op1_16 = read_RMW_virtual_word(i->seg(), eaddr);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
Bit16u result_16 = (op1_16 >> count);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_word(result_16);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_16 >> (count - 1)) & 0x1;
|
|
|
|
// note, that of == result15 if count == 1 and
|
|
|
|
// of == 0 if count >= 2
|
|
|
|
of = ((Bit16u)((result_16 << 1) ^ result_16) >> 15) & 0x1;
|
2007-12-06 23:39:11 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2007-12-06 23:39:11 +03:00
|
|
|
|
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::SHR_EwR(bxInstruction_c *i)
|
2010-05-18 11:28:05 +04:00
|
|
|
{
|
|
|
|
unsigned count;
|
|
|
|
unsigned of, cf;
|
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SHR_Ew)
|
2010-05-18 11:28:05 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2010-05-18 11:28:05 +04:00
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
2012-08-05 17:52:40 +04:00
|
|
|
Bit16u op1_16 = BX_READ_16BIT_REG(i->dst());
|
2011-07-07 00:01:18 +04:00
|
|
|
Bit16u result_16 = (op1_16 >> count);
|
2012-08-05 17:52:40 +04:00
|
|
|
BX_WRITE_16BIT_REG(i->dst(), result_16);
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_16 >> (count - 1)) & 0x1;
|
|
|
|
// note, that of == result15 if count == 1 and
|
|
|
|
// of == 0 if count >= 2
|
|
|
|
of = ((Bit16u)((result_16 << 1) ^ result_16) >> 15) & 0x1;
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2010-05-18 11:28:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::SAR_EwM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned count, cf;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SAR_Ew)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2007-12-30 23:16:35 +03:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2010-05-18 11:28:05 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
Bit16u op1_16 = read_RMW_virtual_word(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
Bit16u result_16 = ((Bit16s) op1_16) >> count;
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (((Bit16s) op1_16) >> (count - 1)) & 0x1;
|
2007-12-06 19:57:59 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
|
|
|
/* signed overflow cannot happen in SAR instruction */
|
|
|
|
SET_FLAGS_OxxxxC(0, cf);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_word(result_16);
|
|
|
|
}
|
2007-12-06 19:57:59 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2010-05-18 11:28:05 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::SAR_EwR(bxInstruction_c *i)
|
2010-05-18 11:28:05 +04:00
|
|
|
{
|
|
|
|
unsigned count, cf;
|
|
|
|
|
2012-05-08 20:42:15 +04:00
|
|
|
if (i->getIaOpcode() == BX_IA_SAR_Ew)
|
2010-05-18 11:28:05 +04:00
|
|
|
count = CL;
|
2012-05-08 20:42:15 +04:00
|
|
|
else
|
2010-05-18 11:28:05 +04:00
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f; /* use only 5 LSB's */
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
2012-08-05 17:52:40 +04:00
|
|
|
Bit16u op1_16 = BX_READ_16BIT_REG(i->dst());
|
2011-07-07 00:01:18 +04:00
|
|
|
Bit16u result_16 = ((Bit16s) op1_16) >> count;
|
2012-08-05 17:52:40 +04:00
|
|
|
BX_WRITE_16BIT_REG(i->dst(), result_16);
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (((Bit16s) op1_16) >> (count - 1)) & 0x1;
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_16(result_16);
|
|
|
|
/* signed overflow cannot happen in SAR instruction */
|
|
|
|
SET_FLAGS_OxxxxC(0, cf);
|
|
|
|
}
|
2010-05-18 11:28:05 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|