2bbb1ef8eb
don't need it, moved the output of it into the general io functions. saves space, as well as removes the confusing output if a '\n' is left off
462 lines
10 KiB
C++
462 lines
10 KiB
C++
// Copyright (C) 2001 MandrakeSoft S.A.
|
|
//
|
|
// 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define NEED_CPU_REG_SHORTCUTS 1
|
|
#include "bochs.h"
|
|
#define LOG_THIS BX_CPU_THIS_PTR
|
|
|
|
|
|
void
|
|
BX_CPU_C::SHLD_EdGd(BxInstruction_t *i)
|
|
{
|
|
Bit32u op1_32, op2_32, result_32;
|
|
unsigned count;
|
|
|
|
/* op1:op2 << count. result stored in op1 */
|
|
|
|
if (i->b1 == 0x1a4)
|
|
count = i->Ib & 0x1f;
|
|
else // 0x1a5
|
|
count = CL & 0x1f;
|
|
|
|
if (!count) return; /* NOP */
|
|
|
|
/* op1 is a register or memory reference */
|
|
if (i->mod == 0xc0) {
|
|
op1_32 = BX_READ_32BIT_REG(i->rm);
|
|
}
|
|
else {
|
|
/* pointer, segment address pair */
|
|
read_RMW_virtual_dword(i->seg, i->rm_addr, &op1_32);
|
|
}
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn);
|
|
|
|
result_32 = (op1_32 << count) | (op2_32 >> (32 - count));
|
|
|
|
/* now write result back to destination */
|
|
if (i->mod == 0xc0) {
|
|
BX_WRITE_32BIT_REG(i->rm, result_32);
|
|
}
|
|
else {
|
|
write_RMW_virtual_dword(result_32);
|
|
}
|
|
|
|
/* set eflags:
|
|
* SHLD count affects the following flags: S,Z,P,C,O
|
|
*/
|
|
set_CF((op1_32 >> (32 - count)) & 0x01);
|
|
if (count == 1)
|
|
set_OF(((op1_32 ^ result_32) & 0x80000000) > 0);
|
|
set_ZF(result_32 == 0);
|
|
set_PF_base(result_32);
|
|
set_SF(result_32 >> 31);
|
|
}
|
|
|
|
|
|
void
|
|
BX_CPU_C::SHRD_EdGd(BxInstruction_t *i)
|
|
{
|
|
#if BX_CPU_LEVEL < 3
|
|
BX_PANIC(("shrd_evgvib: not supported on < 386"));
|
|
#else
|
|
Bit32u op1_32, op2_32, result_32;
|
|
unsigned count;
|
|
|
|
if (i->b1 == 0x1ac)
|
|
count = i->Ib & 0x1f;
|
|
else // 0x1ad
|
|
count = CL & 0x1f;
|
|
|
|
if (!count) return; /* NOP */
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
|
if (i->mod == 0xc0) {
|
|
op1_32 = BX_READ_32BIT_REG(i->rm);
|
|
}
|
|
else {
|
|
/* pointer, segment address pair */
|
|
read_RMW_virtual_dword(i->seg, i->rm_addr, &op1_32);
|
|
}
|
|
op2_32 = BX_READ_32BIT_REG(i->nnn);
|
|
|
|
result_32 = (op2_32 << (32 - count)) | (op1_32 >> count);
|
|
|
|
/* now write result back to destination */
|
|
if (i->mod == 0xc0) {
|
|
BX_WRITE_32BIT_REG(i->rm, result_32);
|
|
}
|
|
else {
|
|
write_RMW_virtual_dword(result_32);
|
|
}
|
|
|
|
/* set eflags:
|
|
* SHRD count affects the following flags: S,Z,P,C,O
|
|
*/
|
|
|
|
set_CF((op1_32 >> (count - 1)) & 0x01);
|
|
set_ZF(result_32 == 0);
|
|
set_SF(result_32 >> 31);
|
|
/* for shift of 1, OF set if sign change occurred. */
|
|
if (count == 1)
|
|
set_OF(((op1_32 ^ result_32) & 0x80000000) > 0);
|
|
set_PF_base(result_32);
|
|
#endif /* BX_CPU_LEVEL >= 3 */
|
|
}
|
|
|
|
|
|
|
|
void
|
|
BX_CPU_C::ROL_Ed(BxInstruction_t *i)
|
|
{
|
|
|
|
Bit32u op1_32, result_32;
|
|
unsigned count;
|
|
|
|
if (i->b1 == 0xc1)
|
|
count = i->Ib & 0x1f;
|
|
else if (i->b1 == 0xd1)
|
|
count = 1;
|
|
else // (i->b1 == 0xd3)
|
|
count = CL & 0x1f;
|
|
|
|
/* op1 is a register or memory reference */
|
|
if (i->mod == 0xc0) {
|
|
op1_32 = BX_READ_32BIT_REG(i->rm);
|
|
}
|
|
else {
|
|
/* pointer, segment address pair */
|
|
read_RMW_virtual_dword(i->seg, i->rm_addr, &op1_32);
|
|
}
|
|
|
|
if (count) {
|
|
result_32 = (op1_32 << count) | (op1_32 >> (32 - count));
|
|
|
|
/* now write result back to destination */
|
|
if (i->mod == 0xc0) {
|
|
BX_WRITE_32BIT_REG(i->rm, result_32);
|
|
}
|
|
else {
|
|
write_RMW_virtual_dword(result_32);
|
|
}
|
|
|
|
/* set eflags:
|
|
* ROL count affects the following flags: C
|
|
*/
|
|
|
|
set_CF(result_32 & 0x01);
|
|
if (count == 1)
|
|
set_OF(((op1_32 ^ result_32) & 0x80000000) > 0);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
BX_CPU_C::ROR_Ed(BxInstruction_t *i)
|
|
{
|
|
Bit32u op1_32, result_32, result_b31;
|
|
unsigned count;
|
|
|
|
if (i->b1 == 0xc1)
|
|
count = i->Ib & 0x1f;
|
|
else if (i->b1 == 0xd1)
|
|
count = 1;
|
|
else // (i->b1 == 0xd3)
|
|
count = CL & 0x1f;
|
|
|
|
/* op1 is a register or memory reference */
|
|
if (i->mod == 0xc0) {
|
|
op1_32 = BX_READ_32BIT_REG(i->rm);
|
|
}
|
|
else {
|
|
/* pointer, segment address pair */
|
|
read_RMW_virtual_dword(i->seg, i->rm_addr, &op1_32);
|
|
}
|
|
|
|
if (count) {
|
|
result_32 = (op1_32 >> count) | (op1_32 << (32 - count));
|
|
|
|
/* now write result back to destination */
|
|
if (i->mod == 0xc0) {
|
|
BX_WRITE_32BIT_REG(i->rm, result_32);
|
|
}
|
|
else {
|
|
write_RMW_virtual_dword(result_32);
|
|
}
|
|
|
|
/* set eflags:
|
|
* ROR count affects the following flags: C
|
|
*/
|
|
result_b31 = result_32 & 0x80000000;
|
|
|
|
set_CF(result_b31 != 0);
|
|
if (count == 1)
|
|
set_OF(((op1_32 ^ result_32) & 0x80000000) > 0);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
void
|
|
BX_CPU_C::RCL_Ed(BxInstruction_t *i)
|
|
{
|
|
Bit32u op1_32, result_32;
|
|
unsigned count;
|
|
|
|
if (i->b1 == 0xc1)
|
|
count = i->Ib & 0x1f;
|
|
else if (i->b1 == 0xd1)
|
|
count = 1;
|
|
else // (i->b1 == 0xd3)
|
|
count = CL & 0x1f;
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
|
if (i->mod == 0xc0) {
|
|
op1_32 = BX_READ_32BIT_REG(i->rm);
|
|
}
|
|
else {
|
|
/* pointer, segment address pair */
|
|
read_RMW_virtual_dword(i->seg, i->rm_addr, &op1_32);
|
|
}
|
|
|
|
if (!count) return;
|
|
|
|
if (count==1) {
|
|
result_32 = (op1_32 << 1) | get_CF();
|
|
}
|
|
else {
|
|
result_32 = (op1_32 << count) |
|
|
(get_CF() << (count - 1)) |
|
|
(op1_32 >> (33 - count));
|
|
}
|
|
|
|
/* now write result back to destination */
|
|
if (i->mod == 0xc0) {
|
|
BX_WRITE_32BIT_REG(i->rm, result_32);
|
|
}
|
|
else {
|
|
write_RMW_virtual_dword(result_32);
|
|
}
|
|
|
|
/* set eflags:
|
|
* RCL count affects the following flags: C
|
|
*/
|
|
if (count == 1)
|
|
set_OF(((op1_32 ^ result_32) & 0x80000000) > 0);
|
|
set_CF((op1_32 >> (32 - count)) & 0x01);
|
|
}
|
|
|
|
|
|
|
|
void
|
|
BX_CPU_C::RCR_Ed(BxInstruction_t *i)
|
|
{
|
|
Bit32u op1_32, result_32;
|
|
unsigned count;
|
|
|
|
if (i->b1 == 0xc1)
|
|
count = i->Ib & 0x1f;
|
|
else if (i->b1 == 0xd1)
|
|
count = 1;
|
|
else // (i->b1 == 0xd3)
|
|
count = CL & 0x1f;
|
|
|
|
|
|
/* op1 is a register or memory reference */
|
|
if (i->mod == 0xc0) {
|
|
op1_32 = BX_READ_32BIT_REG(i->rm);
|
|
}
|
|
else {
|
|
/* pointer, segment address pair */
|
|
read_RMW_virtual_dword(i->seg, i->rm_addr, &op1_32);
|
|
}
|
|
|
|
if (!count) return;
|
|
|
|
if (count==1) {
|
|
result_32 = (op1_32 >> 1) | (get_CF() << 31);
|
|
}
|
|
else {
|
|
result_32 = (op1_32 >> count) |
|
|
(get_CF() << (32 - count)) |
|
|
(op1_32 << (33 - count));
|
|
}
|
|
|
|
/* now write result back to destination */
|
|
if (i->mod == 0xc0) {
|
|
BX_WRITE_32BIT_REG(i->rm, result_32);
|
|
}
|
|
else {
|
|
write_RMW_virtual_dword(result_32);
|
|
}
|
|
|
|
/* set eflags:
|
|
* RCR count affects the following flags: C
|
|
*/
|
|
|
|
set_CF((op1_32 >> (count - 1)) & 0x01);
|
|
if (count == 1)
|
|
set_OF(((op1_32 ^ result_32) & 0x80000000) > 0);
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
BX_CPU_C::SHL_Ed(BxInstruction_t *i)
|
|
{
|
|
Bit32u op1_32, result_32;
|
|
unsigned count;
|
|
|
|
if (i->b1 == 0xc1)
|
|
count = i->Ib & 0x1f;
|
|
else if (i->b1 == 0xd1)
|
|
count = 1;
|
|
else // (i->b1 == 0xd3)
|
|
count = CL & 0x1f;
|
|
|
|
/* op1 is a register or memory reference */
|
|
if (i->mod == 0xc0) {
|
|
op1_32 = BX_READ_32BIT_REG(i->rm);
|
|
}
|
|
else {
|
|
/* pointer, segment address pair */
|
|
read_RMW_virtual_dword(i->seg, i->rm_addr, &op1_32);
|
|
}
|
|
|
|
if (!count) return;
|
|
|
|
result_32 = (op1_32 << count);
|
|
|
|
/* now write result back to destination */
|
|
if (i->mod == 0xc0) {
|
|
BX_WRITE_32BIT_REG(i->rm, result_32);
|
|
}
|
|
else {
|
|
write_RMW_virtual_dword(result_32);
|
|
}
|
|
|
|
SET_FLAGS_OSZAPC_32(op1_32, count, result_32, BX_INSTR_SHL32);
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
BX_CPU_C::SHR_Ed(BxInstruction_t *i)
|
|
{
|
|
Bit32u op1_32, result_32;
|
|
unsigned count;
|
|
|
|
if (i->b1 == 0xc1)
|
|
count = i->Ib & 0x1f;
|
|
else if (i->b1 == 0xd1)
|
|
count = 1;
|
|
else // (i->b1 == 0xd3)
|
|
count = CL & 0x1f;
|
|
|
|
/* op1 is a register or memory reference */
|
|
if (i->mod == 0xc0) {
|
|
op1_32 = BX_READ_32BIT_REG(i->rm);
|
|
}
|
|
else {
|
|
/* pointer, segment address pair */
|
|
read_RMW_virtual_dword(i->seg, i->rm_addr, &op1_32);
|
|
}
|
|
|
|
if (!count) return;
|
|
|
|
result_32 = (op1_32 >> count);
|
|
|
|
/* now write result back to destination */
|
|
if (i->mod == 0xc0) {
|
|
BX_WRITE_32BIT_REG(i->rm, result_32);
|
|
}
|
|
else {
|
|
write_RMW_virtual_dword(result_32);
|
|
}
|
|
|
|
SET_FLAGS_OSZAPC_32(op1_32, count, result_32, BX_INSTR_SHR32);
|
|
}
|
|
|
|
|
|
|
|
void
|
|
BX_CPU_C::SAR_Ed(BxInstruction_t *i)
|
|
{
|
|
Bit32u op1_32, result_32;
|
|
unsigned count;
|
|
|
|
if (i->b1 == 0xc1)
|
|
count = i->Ib & 0x1f;
|
|
else if (i->b1 == 0xd1)
|
|
count = 1;
|
|
else // (i->b1 == 0xd3)
|
|
count = CL & 0x1f;
|
|
|
|
/* op1 is a register or memory reference */
|
|
if (i->mod == 0xc0) {
|
|
op1_32 = BX_READ_32BIT_REG(i->rm);
|
|
}
|
|
else {
|
|
/* pointer, segment address pair */
|
|
read_RMW_virtual_dword(i->seg, i->rm_addr, &op1_32);
|
|
}
|
|
|
|
if (!count) return;
|
|
|
|
/* count < 32, since only lower 5 bits used */
|
|
if (op1_32 & 0x80000000) {
|
|
result_32 = (op1_32 >> count) | (0xffffffff << (32 - count));
|
|
}
|
|
else {
|
|
result_32 = (op1_32 >> count);
|
|
}
|
|
|
|
/* now write result back to destination */
|
|
if (i->mod == 0xc0) {
|
|
BX_WRITE_32BIT_REG(i->rm, result_32);
|
|
}
|
|
else {
|
|
write_RMW_virtual_dword(result_32);
|
|
}
|
|
|
|
/* set eflags:
|
|
* SAR count affects the following flags: S,Z,P,C
|
|
*/
|
|
|
|
set_CF((op1_32 >> (count - 1)) & 0x01);
|
|
set_ZF(result_32 == 0);
|
|
set_SF(result_32 >> 31);
|
|
if (count == 1)
|
|
set_OF(0);
|
|
set_PF_base(result_32);
|
|
}
|