402d02974d
in cpu.cc out of the main loop, and into the asynchronous events handling. I went through all the code paths, and there doesn't seem to be any reason for that code to be in the hot loop. Added another accessor for getting instruction data, called modC0(). A lot of instructions test whether the mod field of mod-nnn-rm is 0xc0 or not, ie., it's a register operation and not memory. So I flag this in fetchdecode{,64}.cc. This added on the order of 1% performance improvement for a Win95 boot. Macroized a few leftover calls to Write_RMV_virtual_xyz() that didn't get modified in the x86-64 merge. Really, they just call the real function for now, but I want to have them available to do direct writes with the guest2host TLB pointers.
223 lines
5.2 KiB
C++
223 lines
5.2 KiB
C++
/////////////////////////////////////////////////////////////////////////
|
|
// $Id: segment_ctrl.cc,v 1.10 2002-09-20 03:52:58 kevinlawton Exp $
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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::LES_GvMp(bxInstruction_c *i)
|
|
{
|
|
if (i->modC0()) {
|
|
// (BW) NT seems to use this when booting.
|
|
BX_INFO(("invalid use of LES, must use memory reference!"));
|
|
UndefinedOpcode(i);
|
|
}
|
|
|
|
#if BX_CPU_LEVEL > 2
|
|
if (i->os32L()) {
|
|
Bit16u es;
|
|
Bit32u reg_32;
|
|
|
|
read_virtual_dword(i->seg(), RMAddr(i), ®_32);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 4, &es);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES], es);
|
|
|
|
BX_WRITE_32BIT_REGZ(i->nnn(), reg_32);
|
|
}
|
|
else
|
|
#endif /* BX_CPU_LEVEL > 2 */
|
|
{ /* 16 bit mode */
|
|
Bit16u reg_16, es;
|
|
|
|
read_virtual_word(i->seg(), RMAddr(i), ®_16);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 2, &es);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES], es);
|
|
|
|
BX_WRITE_16BIT_REG(i->nnn(), reg_16);
|
|
}
|
|
}
|
|
|
|
void
|
|
BX_CPU_C::LDS_GvMp(bxInstruction_c *i)
|
|
{
|
|
if (i->modC0()) {
|
|
BX_PANIC(("invalid use of LDS, must use memory reference!"));
|
|
UndefinedOpcode(i);
|
|
}
|
|
|
|
#if BX_CPU_LEVEL > 2
|
|
if (i->os32L()) {
|
|
Bit16u ds;
|
|
Bit32u reg_32;
|
|
|
|
read_virtual_dword(i->seg(), RMAddr(i), ®_32);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 4, &ds);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS], ds);
|
|
|
|
BX_WRITE_32BIT_REGZ(i->nnn(), reg_32);
|
|
}
|
|
else
|
|
#endif /* BX_CPU_LEVEL > 2 */
|
|
{ /* 16 bit mode */
|
|
Bit16u reg_16, ds;
|
|
|
|
read_virtual_word(i->seg(), RMAddr(i), ®_16);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 2, &ds);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS], ds);
|
|
|
|
BX_WRITE_16BIT_REG(i->nnn(), reg_16);
|
|
}
|
|
}
|
|
|
|
void
|
|
BX_CPU_C::LFS_GvMp(bxInstruction_c *i)
|
|
{
|
|
#if BX_CPU_LEVEL < 3
|
|
BX_PANIC(("lfs_gvmp: not supported on 8086"));
|
|
#else /* 386+ */
|
|
|
|
if (i->modC0()) {
|
|
BX_PANIC(("invalid use of LFS, must use memory reference!"));
|
|
UndefinedOpcode(i);
|
|
}
|
|
|
|
if (i->os32L()) {
|
|
Bit32u reg_32;
|
|
Bit16u fs;
|
|
|
|
read_virtual_dword(i->seg(), RMAddr(i), ®_32);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 4, &fs);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS], fs);
|
|
|
|
BX_WRITE_32BIT_REGZ(i->nnn(), reg_32);
|
|
}
|
|
else { /* 16 bit operand size */
|
|
Bit16u reg_16;
|
|
Bit16u fs;
|
|
|
|
read_virtual_word(i->seg(), RMAddr(i), ®_16);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 2, &fs);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS], fs);
|
|
|
|
BX_WRITE_16BIT_REG(i->nnn(), reg_16);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void
|
|
BX_CPU_C::LGS_GvMp(bxInstruction_c *i)
|
|
{
|
|
#if BX_CPU_LEVEL < 3
|
|
BX_PANIC(("lgs_gvmp: not supported on 8086"));
|
|
#else /* 386+ */
|
|
|
|
if (i->modC0()) {
|
|
BX_PANIC(("invalid use of LGS, must use memory reference!"));
|
|
UndefinedOpcode(i);
|
|
}
|
|
|
|
if (i->os32L()) {
|
|
Bit32u reg_32;
|
|
Bit16u gs;
|
|
|
|
read_virtual_dword(i->seg(), RMAddr(i), ®_32);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 4, &gs);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS], gs);
|
|
|
|
BX_WRITE_32BIT_REGZ(i->nnn(), reg_32);
|
|
}
|
|
else { /* 16 bit operand size */
|
|
Bit16u reg_16;
|
|
Bit16u gs;
|
|
|
|
read_virtual_word(i->seg(), RMAddr(i), ®_16);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 2, &gs);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS], gs);
|
|
|
|
BX_WRITE_16BIT_REG(i->nnn(), reg_16);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void
|
|
BX_CPU_C::LSS_GvMp(bxInstruction_c *i)
|
|
{
|
|
#if BX_CPU_LEVEL < 3
|
|
BX_PANIC(("lss_gvmp: not supported on 8086"));
|
|
#else /* 386+ */
|
|
|
|
if (i->modC0()) {
|
|
BX_PANIC(("invalid use of LSS, must use memory reference!"));
|
|
UndefinedOpcode(i);
|
|
}
|
|
|
|
if (i->os32L()) {
|
|
Bit32u reg_32;
|
|
Bit16u ss_raw;
|
|
|
|
read_virtual_dword(i->seg(), RMAddr(i), ®_32);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 4, &ss_raw);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS], ss_raw);
|
|
|
|
BX_WRITE_32BIT_REGZ(i->nnn(), reg_32);
|
|
}
|
|
else { /* 16 bit operand size */
|
|
Bit16u reg_16;
|
|
Bit16u ss_raw;
|
|
|
|
read_virtual_word(i->seg(), RMAddr(i), ®_16);
|
|
read_virtual_word(i->seg(), RMAddr(i) + 2, &ss_raw);
|
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS], ss_raw);
|
|
|
|
BX_WRITE_16BIT_REG(i->nnn(), reg_16);
|
|
}
|
|
#endif
|
|
}
|