2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2009-12-04 19:53:12 +03:00
|
|
|
// $Id: shift8.cc,v 1.42 2009-12-04 16:53:12 sshwarts Exp $
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2009-12-04 19:53:12 +03:00
|
|
|
// Copyright (C) 2001-2009 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
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::ROL_Eb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit8u op1_8, result_8;
|
|
|
|
unsigned count;
|
2007-12-06 21:35:33 +03:00
|
|
|
unsigned bit0, bit7;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd2)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2007-12-30 23:16:35 +03:00
|
|
|
else // 0xc0 or 0xd0
|
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2007-11-17 19:20:37 +03:00
|
|
|
op1_8 = BX_READ_8BIT_REGx(i->rm(), i->extend8bitL());
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2001-04-10 05:04:59 +04:00
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_8 = read_RMW_virtual_byte(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-06 21:35:33 +03:00
|
|
|
if ((count & 0x07) == 0) {
|
|
|
|
if (count & 0x18) {
|
|
|
|
bit0 = (op1_8 & 1);
|
|
|
|
bit7 = (op1_8 >> 7);
|
|
|
|
SET_FLAGS_OxxxxC(bit0 ^ bit7, bit0);
|
2005-02-17 00:27:21 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2007-12-06 21:35:33 +03:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
count &= 0x7; // use only lowest 3 bits
|
2004-08-28 00:13:32 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
result_8 = (op1_8 << count) | (op1_8 >> (8 - count));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_8BIT_REGx(i->rm(), i->extend8bitL(), result_8);
|
|
|
|
}
|
|
|
|
else {
|
2006-03-26 22:58:01 +04:00
|
|
|
write_RMW_virtual_byte(result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* set eflags:
|
|
|
|
* ROL count affects the following flags: C, O
|
|
|
|
*/
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-06 21:35:33 +03:00
|
|
|
bit0 = (result_8 & 1);
|
|
|
|
bit7 = (result_8 >> 7);
|
|
|
|
|
|
|
|
SET_FLAGS_OxxxxC(bit0 ^ bit7, bit0);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::ROR_Eb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit8u op1_8, result_8;
|
|
|
|
unsigned count;
|
2007-12-06 21:35:33 +03:00
|
|
|
unsigned bit6, bit7;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd2)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2007-12-30 23:16:35 +03:00
|
|
|
else // 0xc0 or 0xd0
|
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2007-11-17 19:20:37 +03:00
|
|
|
op1_8 = BX_READ_8BIT_REGx(i->rm(), i->extend8bitL());
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2001-04-10 05:04:59 +04:00
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_8 = read_RMW_virtual_byte(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-06 21:35:33 +03:00
|
|
|
if ((count & 0x07) == 0) {
|
|
|
|
if (count & 0x18) {
|
|
|
|
bit6 = (op1_8 >> 6) & 1;
|
|
|
|
bit7 = (op1_8 >> 7) & 1;
|
|
|
|
|
|
|
|
SET_FLAGS_OxxxxC(bit6 ^ bit7, bit7);
|
2005-02-17 00:27:21 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2007-12-06 23:39:11 +03:00
|
|
|
|
|
|
|
count &= 0x7; /* use only bottom 3 bits */
|
2004-08-28 00:13:32 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
result_8 = (op1_8 >> count) | (op1_8 << (8 - count));
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_8BIT_REGx(i->rm(), i->extend8bitL(), result_8);
|
|
|
|
}
|
|
|
|
else {
|
2006-03-26 22:58:01 +04:00
|
|
|
write_RMW_virtual_byte(result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* set eflags:
|
|
|
|
* ROR count affects the following flags: C, O
|
|
|
|
*/
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-06 21:35:33 +03:00
|
|
|
bit6 = (result_8 >> 6) & 1;
|
|
|
|
bit7 = (result_8 >> 7) & 1;
|
|
|
|
|
|
|
|
SET_FLAGS_OxxxxC(bit6 ^ bit7, bit7);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::RCL_Eb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit8u op1_8, result_8;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned of, cf;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd2)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2007-12-30 23:16:35 +03:00
|
|
|
else // 0xc0 or 0xd0
|
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2007-11-17 19:20:37 +03:00
|
|
|
op1_8 = BX_READ_8BIT_REGx(i->rm(), i->extend8bitL());
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2001-04-10 05:04:59 +04:00
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_8 = read_RMW_virtual_byte(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2007-12-30 23:16:35 +03:00
|
|
|
|
|
|
|
count = (count & 0x1f) % 9;
|
2008-02-03 00:46:54 +03:00
|
|
|
|
2004-08-28 00:13:32 +04:00
|
|
|
if (! count) return;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-08-28 00:13:32 +04:00
|
|
|
if (count==1) {
|
|
|
|
result_8 = (op1_8 << 1) | getB_CF();
|
|
|
|
}
|
|
|
|
else {
|
2004-12-25 01:44:13 +03:00
|
|
|
result_8 = (op1_8 << count) | (getB_CF() << (count - 1)) |
|
2007-12-06 21:35:33 +03:00
|
|
|
(op1_8 >> (9 - count));
|
2004-08-28 00:13:32 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-08-28 00:13:32 +04:00
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_8BIT_REGx(i->rm(), i->extend8bitL(), result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2004-08-28 00:13:32 +04:00
|
|
|
else {
|
2006-03-26 22:58:01 +04:00
|
|
|
write_RMW_virtual_byte(result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
cf = (op1_8 >> (8 - count)) & 0x01;
|
|
|
|
of = cf ^ (result_8 >> 7); // of = cf ^ result7
|
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2004-08-28 00:13:32 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::RCR_Eb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit8u op1_8, result_8;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned cf, of;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd2)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2007-12-30 23:16:35 +03:00
|
|
|
else // 0xc0 or 0xd0
|
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2007-11-17 19:20:37 +03:00
|
|
|
op1_8 = BX_READ_8BIT_REGx(i->rm(), i->extend8bitL());
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2001-04-10 05:04:59 +04:00
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_8 = read_RMW_virtual_byte(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
count = (count & 0x1f) % 9;
|
|
|
|
|
2004-08-28 00:13:32 +04:00
|
|
|
if (! count) return;
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
result_8 = (op1_8 >> count) | (getB_CF() << (8 - count)) |
|
2001-04-10 05:04:59 +04:00
|
|
|
(op1_8 << (9 - count));
|
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
/* now write result back to destination */
|
|
|
|
if (i->modC0()) {
|
|
|
|
BX_WRITE_8BIT_REGx(i->rm(), i->extend8bitL(), result_8);
|
|
|
|
}
|
|
|
|
else {
|
2006-03-26 22:58:01 +04:00
|
|
|
write_RMW_virtual_byte(result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
cf = (op1_8 >> (count - 1)) & 0x1;
|
2009-06-20 13:10:48 +04:00
|
|
|
of = (((result_8 << 1) ^ result_8) >> 7) & 0x1; // of = result6 ^ result7
|
2007-12-06 23:39:11 +03:00
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::SHL_Eb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit8u op1_8, result_8;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned of = 0, cf = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd2)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2007-12-30 23:16:35 +03:00
|
|
|
else // 0xc0 or 0xd0
|
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2007-11-17 19:20:37 +03:00
|
|
|
op1_8 = BX_READ_8BIT_REGx(i->rm(), i->extend8bitL());
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2001-04-10 05:04:59 +04:00
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_8 = read_RMW_virtual_byte(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
if (!count) return;
|
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
if (count <= 8) {
|
|
|
|
result_8 = (op1_8 << count);
|
|
|
|
cf = (op1_8 >> (8 - count)) & 0x1;
|
|
|
|
of = cf ^ (result_8 >> 7);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result_8 = 0;
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* now write result back to destination */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2002-09-18 09:36:48 +04:00
|
|
|
BX_WRITE_8BIT_REGx(i->rm(), i->extend8bitL(), result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2006-03-26 22:58:01 +04:00
|
|
|
write_RMW_virtual_byte(result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2009-06-21 00:39:51 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_8(result_8);
|
2007-12-06 23:39:11 +03:00
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::SHR_Eb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit8u op1_8, result_8;
|
|
|
|
unsigned count;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned cf, of;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd2)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2007-12-30 23:16:35 +03:00
|
|
|
else // 0xc0 or 0xd0
|
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2007-11-17 19:20:37 +03:00
|
|
|
op1_8 = BX_READ_8BIT_REGx(i->rm(), i->extend8bitL());
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2001-04-10 05:04:59 +04:00
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_8 = read_RMW_virtual_byte(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
if (!count) return;
|
|
|
|
|
|
|
|
result_8 = (op1_8 >> count);
|
|
|
|
|
|
|
|
/* now write result back to destination */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2002-09-18 09:36:48 +04:00
|
|
|
BX_WRITE_8BIT_REGx(i->rm(), i->extend8bitL(), result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2006-03-26 22:58:01 +04:00
|
|
|
write_RMW_virtual_byte(result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
cf = (op1_8 >> (count - 1)) & 0x1;
|
|
|
|
// note, that of == result7 if count == 1 and
|
|
|
|
// of == 0 if count >= 2
|
2009-06-21 00:39:51 +04:00
|
|
|
of = (((result_8 << 1) ^ result_8) >> 7) & 0x1;
|
2007-12-06 23:39:11 +03:00
|
|
|
|
2009-06-21 00:39:51 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_8(result_8);
|
2007-12-06 23:39:11 +03:00
|
|
|
SET_FLAGS_OxxxxC(of, cf);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::SAR_Eb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit8u op1_8, result_8;
|
2007-12-06 23:39:11 +03:00
|
|
|
unsigned count, cf;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-12-30 23:16:35 +03:00
|
|
|
if (i->b1() == 0xd2)
|
2001-04-10 05:04:59 +04:00
|
|
|
count = CL;
|
2007-12-30 23:16:35 +03:00
|
|
|
else // 0xc0 or 0xd0
|
|
|
|
count = i->Ib();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-25 01:44:13 +03:00
|
|
|
count &= 0x1f;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2007-11-17 19:20:37 +03:00
|
|
|
op1_8 = BX_READ_8BIT_REGx(i->rm(), i->extend8bitL());
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2008-08-08 13:22:49 +04:00
|
|
|
bx_address eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2001-04-10 05:04:59 +04:00
|
|
|
/* pointer, segment address pair */
|
2008-08-08 13:22:49 +04:00
|
|
|
op1_8 = read_RMW_virtual_byte(i->seg(), eaddr);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
if (!count) return;
|
|
|
|
|
|
|
|
if (count < 8) {
|
|
|
|
if (op1_8 & 0x80) {
|
|
|
|
result_8 = (op1_8 >> count) | (0xff << (8 - count));
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
|
|
|
result_8 = (op1_8 >> count);
|
|
|
|
}
|
2007-12-06 19:57:59 +03:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
cf = (op1_8 >> (count - 1)) & 0x1;
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
|
|
|
if (op1_8 & 0x80) {
|
|
|
|
result_8 = 0xff;
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
|
|
|
result_8 = 0;
|
|
|
|
}
|
2007-12-06 19:57:59 +03:00
|
|
|
|
2007-12-06 23:39:11 +03:00
|
|
|
cf = (result_8 & 0x1);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2009-06-21 00:39:51 +04:00
|
|
|
SET_FLAGS_OSZAPC_LOGIC_8(result_8);
|
2007-12-06 23:39:11 +03:00
|
|
|
/* signed overflow cannot happen in SAR instruction */
|
2008-02-03 00:46:54 +03:00
|
|
|
SET_FLAGS_OxxxxC(0, cf);
|
2007-12-06 19:57:59 +03:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
/* now write result back to destination */
|
2002-09-20 07:52:59 +04:00
|
|
|
if (i->modC0()) {
|
2002-09-18 09:36:48 +04:00
|
|
|
BX_WRITE_8BIT_REGx(i->rm(), i->extend8bitL(), result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else {
|
2006-03-26 22:58:01 +04:00
|
|
|
write_RMW_virtual_byte(result_8);
|
2004-12-25 01:44:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|