2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2007-12-20 23:58:38 +03:00
|
|
|
// $Id: stack32.cc,v 1.44 2007-12-20 20:58:37 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-12-20 21:29:42 +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
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
// Make code more tidy with a few macros.
|
|
|
|
#if BX_SUPPORT_X86_64==0
|
|
|
|
#define RSP ESP
|
|
|
|
#endif
|
|
|
|
|
2007-11-18 21:49:19 +03:00
|
|
|
void BX_CPU_C::POP_EdM(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 1;
|
|
|
|
BX_CPU_THIS_PTR prev_rsp = RSP;
|
|
|
|
|
2007-12-20 21:29:42 +03:00
|
|
|
Bit32u val32 = pop_32();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-11-20 20:15:33 +03:00
|
|
|
// Note: there is one little weirdism here. It is possible to use
|
|
|
|
// ESP in the modrm addressing. If used, the value of ESP after the
|
|
|
|
// pop is used to calculate the address.
|
|
|
|
if (i->rm()==4 && i->sibBase()==4) {
|
2007-11-18 21:49:19 +03:00
|
|
|
// call method on BX_CPU_C object
|
|
|
|
BX_CPU_CALL_METHODR (i->ResolveModrm, (i));
|
2004-11-27 23:36:53 +03:00
|
|
|
}
|
2007-12-20 21:29:42 +03:00
|
|
|
write_virtual_dword(i->seg(), RMAddr(i), val32);
|
2007-11-24 17:22:34 +03:00
|
|
|
|
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 0;
|
2007-11-18 21:49:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPU_C::POP_EdR(bxInstruction_c *i)
|
|
|
|
{
|
2007-12-20 21:29:42 +03:00
|
|
|
BX_WRITE_32BIT_REGZ(i->rm(), pop_32());
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-11-02 19:10:02 +03:00
|
|
|
void BX_CPU_C::PUSH_ERX(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-14 00:07:08 +03:00
|
|
|
push_32(BX_READ_32BIT_REG(i->opcodeReg()));
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-11-02 19:10:02 +03:00
|
|
|
void BX_CPU_C::POP_ERX(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-12-20 21:29:42 +03:00
|
|
|
BX_WRITE_32BIT_REGZ(i->opcodeReg(), pop_32());
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::PUSH32_CS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-30 11:49:12 +03:00
|
|
|
push_32(BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2004-11-02 19:10:02 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::PUSH32_DS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-30 11:49:12 +03:00
|
|
|
push_32(BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS].selector.value);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2004-11-02 19:10:02 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::PUSH32_ES(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-30 11:49:12 +03:00
|
|
|
push_32(BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES].selector.value);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2004-11-02 19:10:02 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::PUSH32_FS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-30 11:49:12 +03:00
|
|
|
push_32(BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS].selector.value);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2004-11-02 19:10:02 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::PUSH32_GS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-30 11:49:12 +03:00
|
|
|
push_32(BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS].selector.value);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2004-11-02 19:10:02 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::PUSH32_SS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-30 11:49:12 +03:00
|
|
|
push_32(BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].selector.value);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::POP32_DS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 1;
|
|
|
|
BX_CPU_THIS_PTR prev_rsp = RSP;
|
|
|
|
|
2007-12-20 21:29:42 +03:00
|
|
|
Bit32u ds = pop_32();
|
2005-07-31 21:57:27 +04:00
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_DS], (Bit16u) ds);
|
2007-11-24 17:22:34 +03:00
|
|
|
|
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2004-11-02 19:10:02 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::POP32_ES(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 1;
|
|
|
|
BX_CPU_THIS_PTR prev_rsp = RSP;
|
|
|
|
|
2007-12-20 21:29:42 +03:00
|
|
|
Bit32u es = pop_32();
|
2005-07-31 21:57:27 +04:00
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_ES], (Bit16u) es);
|
2007-11-24 17:22:34 +03:00
|
|
|
|
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2004-11-02 19:10:02 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::POP32_FS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 1;
|
|
|
|
BX_CPU_THIS_PTR prev_rsp = RSP;
|
|
|
|
|
2007-12-20 21:29:42 +03:00
|
|
|
Bit32u fs = pop_32();
|
2005-07-31 21:57:27 +04:00
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_FS], (Bit16u) fs);
|
2007-11-24 17:22:34 +03:00
|
|
|
|
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2004-11-02 19:10:02 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::POP32_GS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 1;
|
|
|
|
BX_CPU_THIS_PTR prev_rsp = RSP;
|
|
|
|
|
2007-12-20 21:29:42 +03:00
|
|
|
Bit32u gs = pop_32();
|
2005-07-31 21:57:27 +04:00
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_GS], (Bit16u) gs);
|
2007-11-24 17:22:34 +03:00
|
|
|
|
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2004-11-02 19:10:02 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
void BX_CPU_C::POP32_SS(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 1;
|
|
|
|
BX_CPU_THIS_PTR prev_rsp = RSP;
|
|
|
|
|
2007-12-20 21:29:42 +03:00
|
|
|
Bit32u ss = pop_32();
|
2005-07-31 21:57:27 +04:00
|
|
|
load_seg_reg(&BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS], (Bit16u) ss);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 0;
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
// POP SS inhibits interrupts, debug exceptions and single-step
|
|
|
|
// trap exceptions until the execution boundary following the
|
|
|
|
// next instruction is reached.
|
|
|
|
// Same code as MOV_SwEw()
|
|
|
|
BX_CPU_THIS_PTR inhibit_mask |=
|
|
|
|
BX_INHIBIT_INTERRUPTS | BX_INHIBIT_DEBUG;
|
|
|
|
BX_CPU_THIS_PTR async_event = 1;
|
|
|
|
}
|
|
|
|
|
2007-11-18 21:52:44 +03:00
|
|
|
void BX_CPU_C::PUSH_Id(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
push_32(i->Id());
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPU_C::PUSH_EdM(bxInstruction_c *i)
|
|
|
|
{
|
2007-12-20 23:58:38 +03:00
|
|
|
Bit32u op1_32 = read_virtual_dword(i->seg(), RMAddr(i));
|
2007-11-18 21:52:44 +03:00
|
|
|
|
|
|
|
push_32(op1_32);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPU_C::PUSH_EdR(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
push_32(BX_READ_32BIT_REG(i->rm()));
|
|
|
|
}
|
|
|
|
|
2004-11-02 19:10:02 +03:00
|
|
|
void BX_CPU_C::PUSHAD32(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-03-03 00:03:25 +03:00
|
|
|
Bit32u temp_ESP = ESP;
|
|
|
|
Bit16u temp_SP = SP;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
if (BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].cache.u.segment.d_b)
|
2007-03-03 00:03:25 +03:00
|
|
|
{
|
2007-12-20 21:29:42 +03:00
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP - 4), EAX);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP - 8), ECX);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP - 12), EDX);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP - 16), EBX);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP - 20), temp_ESP);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP - 24), EBP);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP - 28), ESI);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP - 32), EDI);
|
2007-03-03 00:03:25 +03:00
|
|
|
ESP -= 32;
|
2005-01-28 23:50:48 +03:00
|
|
|
}
|
2007-03-03 00:03:25 +03:00
|
|
|
else
|
|
|
|
{
|
2007-12-20 21:29:42 +03:00
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP - 4), EAX);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP - 8), ECX);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP - 12), EDX);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP - 16), EBX);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP - 20), temp_ESP);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP - 24), EBP);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP - 28), ESI);
|
|
|
|
write_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP - 32), EDI);
|
2007-03-03 00:03:25 +03:00
|
|
|
SP -= 32;
|
2005-01-28 23:50:48 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-11-02 19:10:02 +03:00
|
|
|
void BX_CPU_C::POPAD32(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2007-03-03 00:03:25 +03:00
|
|
|
Bit32u edi, esi, ebp, ebx, edx, ecx, eax;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-03-03 00:03:25 +03:00
|
|
|
if (BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].cache.u.segment.d_b)
|
|
|
|
{
|
|
|
|
Bit32u temp_ESP = ESP;
|
2007-12-20 23:58:38 +03:00
|
|
|
edi = read_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP + 0));
|
|
|
|
esi = read_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP + 4));
|
|
|
|
ebp = read_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP + 8));
|
|
|
|
ebx = read_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP + 16));
|
|
|
|
edx = read_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP + 20));
|
|
|
|
ecx = read_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP + 24));
|
|
|
|
eax = read_virtual_dword(BX_SEG_REG_SS, (Bit32u) (temp_ESP + 28));
|
2007-03-03 00:03:25 +03:00
|
|
|
ESP += 32;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Bit16u temp_SP = SP;
|
2007-12-20 23:58:38 +03:00
|
|
|
edi = read_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP + 0));
|
|
|
|
esi = read_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP + 4));
|
|
|
|
ebp = read_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP + 8));
|
|
|
|
ebx = read_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP + 16));
|
|
|
|
edx = read_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP + 20));
|
|
|
|
ecx = read_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP + 24));
|
|
|
|
eax = read_virtual_dword(BX_SEG_REG_SS, (Bit16u) (temp_SP + 28));
|
2007-03-03 00:03:25 +03:00
|
|
|
SP += 32;
|
2005-01-28 23:50:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
EDI = edi;
|
|
|
|
ESI = esi;
|
|
|
|
EBP = ebp;
|
|
|
|
EBX = ebx;
|
|
|
|
EDX = edx;
|
|
|
|
ECX = ecx;
|
|
|
|
EAX = eax;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2007-11-17 15:44:10 +03:00
|
|
|
|
2005-07-31 21:57:27 +04:00
|
|
|
#if BX_CPU_LEVEL >= 2
|
2007-11-22 20:33:06 +03:00
|
|
|
void BX_CPU_C::ENTER16_IwIb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-02-17 00:27:21 +03:00
|
|
|
unsigned ss32 = BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].cache.u.segment.d_b;
|
|
|
|
|
|
|
|
Bit16u imm16 = i->Iw();
|
2004-11-27 23:36:53 +03:00
|
|
|
Bit8u level = i->Ib2();
|
|
|
|
level &= 0x1F;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 1;
|
|
|
|
BX_CPU_THIS_PTR prev_rsp = RSP;
|
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
Bit32u ebp; // Use temp copy in case of exception.
|
2007-11-22 20:33:06 +03:00
|
|
|
push_16(BP);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-11-27 23:36:53 +03:00
|
|
|
Bit32u frame_ptr32 = ESP;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
if (ss32) {
|
|
|
|
ebp = EBP;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ebp = BP;
|
|
|
|
}
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
if (level > 0) {
|
|
|
|
/* do level-1 times */
|
|
|
|
while (--level) {
|
2007-11-22 20:33:06 +03:00
|
|
|
Bit16u temp16;
|
|
|
|
|
|
|
|
if (ss32) {
|
|
|
|
ebp -= 2;
|
2007-12-20 23:58:38 +03:00
|
|
|
temp16 = read_virtual_word(BX_SEG_REG_SS, ebp);
|
2004-11-27 23:36:53 +03:00
|
|
|
}
|
2007-11-22 20:33:06 +03:00
|
|
|
else { /* 16bit stacksize */
|
2007-12-20 23:58:38 +03:00
|
|
|
ebp -= 2;
|
|
|
|
ebp &= 0xffff;
|
|
|
|
temp16 = read_virtual_word(BX_SEG_REG_SS, ebp);
|
2005-08-10 22:40:38 +04:00
|
|
|
}
|
2007-11-22 20:33:06 +03:00
|
|
|
push_16(temp16);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* push(frame pointer) */
|
2007-11-22 20:33:06 +03:00
|
|
|
push_16((Bit16u)frame_ptr32);
|
|
|
|
}
|
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 0;
|
|
|
|
|
2007-11-22 20:33:06 +03:00
|
|
|
if (ss32) {
|
|
|
|
EBP = frame_ptr32;
|
|
|
|
ESP -= imm16;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BP = (Bit16u) frame_ptr32;
|
|
|
|
SP -= imm16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPU_C::ENTER32_IwIb(bxInstruction_c *i)
|
|
|
|
{
|
|
|
|
unsigned ss32 = BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].cache.u.segment.d_b;
|
|
|
|
|
|
|
|
Bit16u imm16 = i->Iw();
|
|
|
|
Bit8u level = i->Ib2();
|
|
|
|
level &= 0x1F;
|
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 1;
|
|
|
|
BX_CPU_THIS_PTR prev_rsp = RSP;
|
|
|
|
|
2007-11-22 20:33:06 +03:00
|
|
|
Bit32u ebp; // Use temp copy in case of exception.
|
|
|
|
push_32(EBP);
|
|
|
|
|
|
|
|
Bit32u frame_ptr32 = ESP;
|
|
|
|
|
|
|
|
if (ss32) {
|
|
|
|
ebp = EBP;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ebp = BP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (level > 0) {
|
|
|
|
/* do level-1 times */
|
|
|
|
while (--level) {
|
|
|
|
Bit32u temp32;
|
|
|
|
|
|
|
|
if (ss32) {
|
|
|
|
ebp -= 4;
|
2007-12-20 23:58:38 +03:00
|
|
|
temp32 = read_virtual_dword(BX_SEG_REG_SS, ebp);
|
2007-11-22 20:33:06 +03:00
|
|
|
}
|
|
|
|
else { /* 16bit stacksize */
|
2007-12-20 23:58:38 +03:00
|
|
|
ebp -= 4;
|
|
|
|
ebp &= 0xffff;
|
|
|
|
temp32 = read_virtual_dword(BX_SEG_REG_SS, ebp);
|
2007-11-22 20:33:06 +03:00
|
|
|
}
|
|
|
|
push_32(temp32);
|
2004-11-27 23:36:53 +03:00
|
|
|
}
|
2007-11-22 20:33:06 +03:00
|
|
|
|
|
|
|
/* push(frame pointer) */
|
|
|
|
push_32(frame_ptr32);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 0;
|
|
|
|
|
2005-02-17 00:27:21 +03:00
|
|
|
if (ss32) {
|
2006-04-05 21:31:35 +04:00
|
|
|
EBP = frame_ptr32;
|
2005-02-17 00:27:21 +03:00
|
|
|
ESP -= imm16;
|
2004-11-27 23:36:53 +03:00
|
|
|
}
|
2005-02-17 00:27:21 +03:00
|
|
|
else {
|
|
|
|
BP = (Bit16u) frame_ptr32;
|
|
|
|
SP -= imm16;
|
2004-11-27 23:36:53 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2004-11-27 23:36:53 +03:00
|
|
|
void BX_CPU_C::LEAVE(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
Bit32u temp_EBP;
|
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
|
|
|
if (BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].cache.u.segment.d_b)
|
|
|
|
temp_EBP = EBP;
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
temp_EBP = BP;
|
|
|
|
|
2006-06-12 20:58:27 +04:00
|
|
|
if (protected_mode()) {
|
|
|
|
if (IS_DATA_SEGMENT_EXPAND_DOWN(BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].cache.type)) {
|
2001-04-10 05:04:59 +04:00
|
|
|
if (temp_EBP <= BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].cache.u.segment.limit_scaled) {
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("LEAVE: BP > BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].limit"));
|
2001-04-10 05:04:59 +04:00
|
|
|
exception(BX_SS_EXCEPTION, 0, 0);
|
|
|
|
}
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else { /* normal */
|
|
|
|
if (temp_EBP > BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].cache.u.segment.limit_scaled) {
|
2001-05-30 22:56:02 +04:00
|
|
|
BX_PANIC(("LEAVE: BP > BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].limit"));
|
2001-04-10 05:04:59 +04:00
|
|
|
exception(BX_SS_EXCEPTION, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2005-05-21 00:06:50 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 1;
|
|
|
|
BX_CPU_THIS_PTR prev_rsp = RSP;
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
// delete frame
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
|
|
|
if (BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].cache.u.segment.d_b)
|
|
|
|
ESP = EBP;
|
|
|
|
else
|
|
|
|
#endif
|
2007-11-24 17:22:34 +03:00
|
|
|
SP = BP;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// restore frame pointer
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->os32L()) {
|
2007-12-20 21:29:42 +03:00
|
|
|
EBP = pop_32();
|
2004-05-11 01:05:51 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
else
|
|
|
|
#endif
|
2004-05-11 01:05:51 +04:00
|
|
|
{
|
2007-12-20 21:29:42 +03:00
|
|
|
BP = pop_16();
|
2004-05-11 01:05:51 +04:00
|
|
|
}
|
2007-11-24 17:22:34 +03:00
|
|
|
|
|
|
|
BX_CPU_THIS_PTR speculative_rsp = 0;
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2005-07-31 21:57:27 +04:00
|
|
|
#endif
|