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-07-07 00:01:18 +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-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_EdGdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, op2_32, result_32;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned of, cf;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), eaddr);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2008-04-05 21:51:55 +04:00
|
|
|
if (i->b1() == 0xa4) // 0x1a4
|
2007-11-20 20:15:33 +03:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
else // 0x1a5
|
2007-11-20 20:15:33 +03:00
|
|
|
count = CL;
|
|
|
|
|
|
|
|
count &= 0x1f; // use only 5 LSB's
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn());
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 = (op1_32 << count) | (op2_32 >> (32 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31); // of = cf ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
|
|
|
|
|
|
|
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_EdGdR(bxInstruction_c *i)
|
2008-04-05 23:08:01 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, op2_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned of, cf;
|
|
|
|
|
|
|
|
if (i->b1() == 0xa4) // 0x1a4
|
|
|
|
count = i->Ib();
|
|
|
|
else // 0x1a5
|
|
|
|
count = CL;
|
|
|
|
|
|
|
|
count &= 0x1f; // use only 5 LSB's
|
2011-07-07 00:01:18 +04:00
|
|
|
|
2010-10-01 13:13:21 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_CLEAR_64BIT_HIGH(i->rm()); // always clear upper part of the register
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
else {
|
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn());
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 = (op1_32 << count) | (op2_32 >> (32 - count));
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31); // of = cf ^ result31
|
|
|
|
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_EdGdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, op2_32, result_32;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned cf, of;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), eaddr);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2008-04-05 21:51:55 +04:00
|
|
|
if (i->b1() == 0xac) // 0x1ac
|
2007-11-20 20:15:33 +03:00
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
else // 0x1ad
|
2007-11-20 20:15:33 +03:00
|
|
|
count = CL;
|
|
|
|
|
|
|
|
count &= 0x1f; // use only 5 LSB's
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn());
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 = (op2_32 << (32 - count)) | (op1_32 >> count);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_32 >> (count - 1)) & 0x1;
|
|
|
|
of = ((result_32 << 1) ^ result_32) >> 31; // of = result30 ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
|
|
|
|
|
|
|
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_EdGdR(bxInstruction_c *i)
|
2008-04-05 23:08:01 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, op2_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned cf, of;
|
|
|
|
|
|
|
|
if (i->b1() == 0xac) // 0x1ac
|
|
|
|
count = i->Ib();
|
|
|
|
else // 0x1ad
|
|
|
|
count = CL;
|
|
|
|
|
|
|
|
count &= 0x1f; // use only 5 LSB's
|
2011-07-07 00:01:18 +04:00
|
|
|
|
2010-10-01 13:13:21 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_CLEAR_64BIT_HIGH(i->rm()); // always clear upper part of the register
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
else {
|
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn());
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
result_32 = (op2_32 << (32 - count)) | (op1_32 >> count);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2008-04-05 23:08:01 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_32 >> (count - 1)) & 0x1;
|
|
|
|
of = ((result_32 << 1) ^ result_32) >> 31; // of = result30 ^ result31
|
|
|
|
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_EdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), eaddr);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
result_32 = (op1_32 << count) | (op1_32 >> (32 - count));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
unsigned bit0 = (result_32 & 0x1);
|
|
|
|
unsigned bit31 = (result_32 >> 31);
|
|
|
|
// of = cf ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(bit0 ^ bit31, bit0);
|
|
|
|
}
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2008-05-03 02:47:07 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::ROL_EdR(bxInstruction_c *i)
|
2008-05-03 02:47:07 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned bit0, bit31;
|
|
|
|
|
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
count &= 0x1f;
|
2011-07-07 00:01:18 +04:00
|
|
|
|
2010-10-01 13:13:21 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_CLEAR_64BIT_HIGH(i->rm()); // always clear upper part of the register
|
2011-07-07 00:01:18 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
result_32 = (op1_32 << count) | (op1_32 >> (32 - count));
|
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
|
|
|
|
|
|
|
bit0 = (result_32 & 0x1);
|
|
|
|
bit31 = (result_32 >> 31);
|
|
|
|
// of = cf ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(bit0 ^ bit31, bit0);
|
2010-10-01 13:13:21 +04:00
|
|
|
}
|
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::ROR_EdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2004-08-28 00:13:32 +04:00
|
|
|
Bit32u op1_32, result_32;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned bit31, bit30;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), eaddr);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
result_32 = (op1_32 >> count) | (op1_32 << (32 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
bit31 = (result_32 >> 31) & 1;
|
|
|
|
bit30 = (result_32 >> 30) & 1;
|
|
|
|
// of = result30 ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(bit30 ^ bit31, bit31);
|
|
|
|
}
|
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2008-05-03 02:47:07 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::ROR_EdR(bxInstruction_c *i)
|
2008-05-03 02:47:07 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned bit31, bit30;
|
|
|
|
|
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2011-07-07 00:01:18 +04:00
|
|
|
|
2010-10-01 13:13:21 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_CLEAR_64BIT_HIGH(i->rm()); // always clear upper part of the register
|
2011-07-07 00:01:18 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
result_32 = (op1_32 >> count) | (op1_32 << (32 - count));
|
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
|
|
|
|
|
|
|
bit31 = (result_32 >> 31) & 1;
|
|
|
|
bit30 = (result_32 >> 30) & 1;
|
|
|
|
// of = result30 ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(bit30 ^ bit31, bit31);
|
2010-10-01 13:13:21 +04:00
|
|
|
}
|
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_EdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned cf, of;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), eaddr);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2011-07-07 00:01:18 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_NEXT_INSTR(i);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
if (count==1) {
|
|
|
|
result_32 = (op1_32 << 1) | getB_CF();
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
|
|
|
else {
|
2008-05-03 02:47:07 +04:00
|
|
|
result_32 = (op1_32 << count) | (getB_CF() << (count - 1)) |
|
|
|
|
(op1_32 >> (33 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31); // of = cf ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2008-05-03 02:47:07 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::RCL_EdR(bxInstruction_c *i)
|
2008-05-03 02:47:07 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned cf, of;
|
|
|
|
|
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2010-10-01 13:13:21 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_CLEAR_64BIT_HIGH(i->rm()); // always clear upper part of the register
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2010-10-01 13:13:21 +04:00
|
|
|
}
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
if (count==1) {
|
|
|
|
result_32 = (op1_32 << 1) | getB_CF();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result_32 = (op1_32 << count) | (getB_CF() << (count - 1)) |
|
2001-04-10 05:04:59 +04:00
|
|
|
(op1_32 >> (33 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31); // of = cf ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2004-08-28 00:13:32 +04:00
|
|
|
}
|
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::RCR_EdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned cf, of;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), eaddr);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
if (!count) {
|
|
|
|
BX_NEXT_INSTR(i);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
if (count==1) {
|
|
|
|
result_32 = (op1_32 >> 1) | (getB_CF() << 31);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
|
|
|
else {
|
2008-05-03 02:47:07 +04:00
|
|
|
result_32 = (op1_32 >> count) | (getB_CF() << (32 - count)) |
|
|
|
|
(op1_32 << (33 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
cf = (op1_32 >> (count - 1)) & 0x1;
|
|
|
|
of = ((result_32 << 1) ^ result_32) >> 31; // of = result30 ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2011-07-07 00:01:18 +04:00
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2008-05-03 02:47:07 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::RCR_EdR(bxInstruction_c *i)
|
2008-05-03 02:47:07 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned cf, of;
|
|
|
|
|
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2011-07-07 00:01:18 +04:00
|
|
|
|
2010-10-01 13:13:21 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_CLEAR_64BIT_HIGH(i->rm()); // always clear upper part of the register
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2010-10-01 13:13:21 +04:00
|
|
|
}
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
if (count==1) {
|
|
|
|
result_32 = (op1_32 >> 1) | (getB_CF() << 31);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result_32 = (op1_32 >> count) | (getB_CF() << (32 - count)) |
|
2001-04-10 05:04:59 +04:00
|
|
|
(op1_32 << (33 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
cf = (op1_32 >> (count - 1)) & 0x1;
|
|
|
|
of = ((result_32 << 1) ^ result_32) >> 31; // of = result30 ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
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_EdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned cf, of;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), eaddr);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
/* count < 32, since only lower 5 bits used */
|
|
|
|
result_32 = (op1_32 << count);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31);
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2008-05-03 02:47:07 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::SHL_EdR(bxInstruction_c *i)
|
2008-05-03 02:47:07 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned cf, of;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2011-07-07 00:01:18 +04:00
|
|
|
|
2010-10-01 13:13:21 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_CLEAR_64BIT_HIGH(i->rm()); // always clear upper part of the register
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
else {
|
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
|
|
|
result_32 = (op1_32 << count);
|
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2001-04-10 05:04:59 +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_EdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned of, cf;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), eaddr);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
result_32 = (op1_32 >> count);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_32 >> (count - 1)) & 0x1;
|
|
|
|
// note, that of == result31 if count == 1 and
|
|
|
|
// of == 0 if count >= 2
|
|
|
|
of = ((result_32 << 1) ^ result_32) >> 31;
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
|
|
|
|
|
|
|
BX_NEXT_INSTR(i);
|
2008-05-03 02:47:07 +04:00
|
|
|
}
|
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_EdR(bxInstruction_c *i)
|
2008-05-03 02:47:07 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
unsigned of, cf;
|
|
|
|
|
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2011-07-07 00:01:18 +04:00
|
|
|
|
2010-10-01 13:13:21 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_CLEAR_64BIT_HIGH(i->rm()); // always clear upper part of the register
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
else {
|
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
result_32 = (op1_32 >> count);
|
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
cf = (op1_32 >> (count - 1)) & 0x1;
|
|
|
|
// note, that of == result31 if count == 1 and
|
|
|
|
// of == 0 if count >= 2
|
|
|
|
of = ((result_32 << 1) ^ result_32) >> 31;
|
2007-12-06 23:39:11 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
|
|
|
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::SAR_EdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-05-03 02:47:07 +04:00
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), eaddr);
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
if (count) {
|
|
|
|
/* count < 32, since only lower 5 bits used */
|
|
|
|
result_32 = ((Bit32s) op1_32) >> count;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
|
|
|
set_CF((op1_32 >> (count - 1)) & 1);
|
|
|
|
clear_OF(); /* signed overflow cannot happen in SAR instruction */
|
|
|
|
}
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_NEXT_INSTR(i);
|
2008-05-03 02:47:07 +04:00
|
|
|
}
|
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_INSF_TYPE BX_CPP_AttrRegparmN(1) BX_CPU_C::SAR_EdR(bxInstruction_c *i)
|
2008-05-03 02:47:07 +04:00
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
|
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2011-07-07 00:01:18 +04:00
|
|
|
|
2010-10-01 13:13:21 +04:00
|
|
|
if (!count) {
|
|
|
|
BX_CLEAR_64BIT_HIGH(i->rm()); // always clear upper part of the register
|
|
|
|
}
|
2011-07-07 00:01:18 +04:00
|
|
|
else {
|
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
|
|
|
result_32 = ((Bit32s) op1_32) >> count;
|
2008-05-03 02:47:07 +04:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2011-07-07 00:01:18 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32);
|
|
|
|
set_CF((op1_32 >> (count - 1)) & 1);
|
|
|
|
clear_OF(); /* signed overflow cannot happen in SAR instruction */
|
|
|
|
}
|
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
|
|
|
}
|