2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2008-05-03 02:47:07 +04:00
|
|
|
// $Id: shift32.cc,v 1.45 2008-05-02 22:47:07 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-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
|
|
|
|
2008-04-05 23:08:01 +04:00
|
|
|
void 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-05-03 02:47:07 +04:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
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
|
|
|
if (!count) return;
|
|
|
|
|
|
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn());
|
|
|
|
|
|
|
|
result_32 = (op1_32 << count) | (op2_32 >> (32 - count));
|
|
|
|
|
2008-04-05 23:08:01 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
|
|
|
|
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31); // of = cf ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::SHLD_EdGdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
if (!count) return;
|
|
|
|
|
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn());
|
|
|
|
|
|
|
|
result_32 = (op1_32 << count) | (op2_32 >> (32 - count));
|
|
|
|
|
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
|
|
|
|
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31); // of = cf ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-04-05 23:08:01 +04:00
|
|
|
void 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-05-03 02:47:07 +04:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
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
|
|
|
if (!count) return;
|
|
|
|
|
|
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn());
|
|
|
|
|
|
|
|
result_32 = (op2_32 << (32 - count)) | (op1_32 >> count);
|
|
|
|
|
2008-04-05 23:08:01 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
|
|
|
|
|
|
|
cf = (op1_32 >> (count - 1)) & 0x1;
|
|
|
|
of = ((result_32 << 1) ^ result_32) >> 31; // of = result30 ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::SHRD_EdGdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
if (!count) return;
|
|
|
|
|
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn());
|
|
|
|
|
|
|
|
result_32 = (op2_32 << (32 - count)) | (op1_32 >> count);
|
|
|
|
|
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
|
|
|
|
|
|
|
cf = (op1_32 >> (count - 1)) & 0x1;
|
|
|
|
of = ((result_32 << 1) ^ result_32) >> 31; // of = result30 ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
void 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
|
|
|
|
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), RMAddr(i));
|
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;
|
2008-05-03 02:47:07 +04:00
|
|
|
if (! count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
result_32 = (op1_32 << count) | (op1_32 >> (32 - count));
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::ROL_EdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
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;
|
2004-12-25 01:44:13 +03:00
|
|
|
if (! count) return;
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
2004-12-25 01:44:13 +03:00
|
|
|
result_32 = (op1_32 << count) | (op1_32 >> (32 - count));
|
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
|
|
|
bit0 = (result_32 & 0x1);
|
|
|
|
bit31 = (result_32 >> 31);
|
|
|
|
// of = cf ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(bit0 ^ bit31, bit0);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
void 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-05-03 02:47:07 +04:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2008-05-03 02:47:07 +04:00
|
|
|
if (! count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
result_32 = (op1_32 >> count) | (op1_32 << (32 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
bit31 = (result_32 >> 31) & 1;
|
|
|
|
bit30 = (result_32 >> 30) & 1;
|
|
|
|
// of = result30 ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(bit30 ^ bit31, bit31);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::ROR_EdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
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;
|
2004-12-25 01:44:13 +03:00
|
|
|
if (! count) return;
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
2004-12-25 01:44:13 +03:00
|
|
|
result_32 = (op1_32 >> count) | (op1_32 << (32 - count));
|
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
|
|
|
bit31 = (result_32 >> 31) & 1;
|
|
|
|
bit30 = (result_32 >> 30) & 1;
|
|
|
|
// of = result30 ^ result31
|
|
|
|
SET_FLAGS_OxxxxC(bit30 ^ bit31, bit31);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
void 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-05-03 02:47:07 +04:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2008-05-03 02:47:07 +04:00
|
|
|
if (!count) return;
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::RCL_EdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
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;
|
2004-12-25 01:44:13 +03:00
|
|
|
if (!count) return;
|
|
|
|
|
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);
|
2004-08-28 00:13:32 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
void 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-05-03 02:47:07 +04:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2008-05-03 02:47:07 +04:00
|
|
|
if (!count) return;
|
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);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::RCR_EdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
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;
|
2004-12-25 01:44:13 +03:00
|
|
|
if (!count) return;
|
|
|
|
|
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);
|
2004-12-25 01:44:13 +03:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
void 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-05-03 02:47:07 +04:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2008-05-03 02:47:07 +04:00
|
|
|
if (!count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
|
|
|
result_32 = (op1_32 << count);
|
|
|
|
|
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31);
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::SHL_EdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
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;
|
2004-12-25 01:44:13 +03:00
|
|
|
if (!count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
2004-12-25 01:44:13 +03:00
|
|
|
result_32 = (op1_32 << count);
|
2007-12-06 23:39:11 +03:00
|
|
|
cf = (op1_32 >> (32 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_32 >> 31);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
void 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-05-03 02:47:07 +04:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2008-05-03 02:47:07 +04:00
|
|
|
if (!count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
result_32 = (op1_32 >> count);
|
|
|
|
|
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::SHR_EdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
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;
|
2007-10-22 02:07:33 +04:00
|
|
|
if (!count) return;
|
2001-04-10 05:04:59 +04: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
|
|
|
result_32 = (op1_32 >> count);
|
2008-05-03 02:47:07 +04:00
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), result_32);
|
2007-12-06 23:39:11 +03: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;
|
|
|
|
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
void 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-05-03 02:47:07 +04:00
|
|
|
BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
|
|
|
|
|
|
|
/* pointer, segment address pair */
|
|
|
|
op1_32 = read_RMW_virtual_dword(i->seg(), RMAddr(i));
|
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2008-05-03 02:47:07 +04:00
|
|
|
if (!count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
|
|
|
if (op1_32 & 0x80000000) {
|
|
|
|
result_32 = (op1_32 >> count) | (0xffffffff << (32 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
|
|
|
else {
|
2008-05-03 02:47:07 +04:00
|
|
|
result_32 = (op1_32 >> count);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
write_RMW_virtual_dword(result_32);
|
|
|
|
|
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
|
|
|
set_CF((op1_32 >> (count - 1)) & 1);
|
|
|
|
clear_OF(); /* signed overflow cannot happen in SAR instruction */
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::SAR_EdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
|
|
unsigned count;
|
|
|
|
|
|
|
|
if (i->b1() == 0xd3)
|
|
|
|
count = CL;
|
|
|
|
else // 0xc1 or 0xd1
|
|
|
|
count = i->Ib();
|
|
|
|
|
|
|
|
count &= 0x1f;
|
2004-12-25 01:44:13 +03:00
|
|
|
if (!count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-05-03 02:47:07 +04:00
|
|
|
op1_32 = BX_READ_32BIT_REG(i->rm());
|
|
|
|
|
2005-07-01 18:06:02 +04:00
|
|
|
/* count < 32, since only lower 5 bits used */
|
2004-12-25 01:44:13 +03:00
|
|
|
if (op1_32 & 0x80000000) {
|
|
|
|
result_32 = (op1_32 >> count) | (0xffffffff << (32 - count));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result_32 = (op1_32 >> count);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
SET_FLAGS_OSZAPC_LOGIC_32(result_32); /* handle SF, ZF and AF flags */
|
2007-12-06 19:57:59 +03:00
|
|
|
set_CF((op1_32 >> (count - 1)) & 1);
|
|
|
|
clear_OF(); /* signed overflow cannot happen in SAR instruction */
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|