2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2010-03-25 00:26:13 +03:00
|
|
|
// $Id: soft_int.cc,v 1.61 2010-03-24 21:26:13 sshwarts Exp $
|
2005-03-19 23:44:01 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
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-18 02:28:33 +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
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::BOUND_GwMa(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-01-28 23:50:48 +03:00
|
|
|
Bit16s op1_16 = BX_READ_16BIT_REG(i->nnn());
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2009-11-02 18:00:47 +03:00
|
|
|
Bit32u eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-01-10 22:37:56 +03:00
|
|
|
|
2009-11-02 18:00:47 +03:00
|
|
|
Bit16s bound_min = (Bit16s) read_virtual_word_32(i->seg(), eaddr);
|
|
|
|
Bit16s bound_max = (Bit16s) read_virtual_word_32(i->seg(), eaddr+2);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-01-28 23:50:48 +03:00
|
|
|
if (op1_16 < bound_min || op1_16 > bound_max) {
|
|
|
|
BX_INFO(("BOUND_GdMa: fails bounds test"));
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_BR_EXCEPTION, 0);
|
2005-01-28 23:50:48 +03: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::BOUND_GdMa(bxInstruction_c *i)
|
2005-01-28 23:50:48 +03:00
|
|
|
{
|
|
|
|
Bit32s op1_32 = BX_READ_32BIT_REG(i->nnn());
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2009-11-02 18:00:47 +03:00
|
|
|
Bit32u eaddr = BX_CPU_CALL_METHODR(i->ResolveModrm, (i));
|
2008-01-10 22:37:56 +03:00
|
|
|
|
2009-11-02 18:00:47 +03:00
|
|
|
Bit32s bound_min = (Bit32s) read_virtual_dword_32(i->seg(), eaddr);
|
|
|
|
Bit32s bound_max = (Bit32s) read_virtual_dword_32(i->seg(), eaddr+4);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2005-01-28 23:50:48 +03:00
|
|
|
if (op1_32 < bound_min || op1_32 > bound_max) {
|
|
|
|
BX_INFO(("BOUND_GdMa: fails bounds test"));
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_BR_EXCEPTION, 0);
|
2004-03-26 21:41:12 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2010-03-05 23:24:08 +03:00
|
|
|
// This is an undocumented instrucion (opcode 0xf1) which
|
|
|
|
// is useful for an ICE system
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::INT1(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2009-01-31 13:43:24 +03:00
|
|
|
#if BX_SUPPORT_VMX
|
|
|
|
VMexit_Event(i, BX_PRIVILEGED_SOFTWARE_INTERRUPT, 1, 0, 0);
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#if BX_DEBUGGER
|
2006-02-12 23:21:36 +03:00
|
|
|
BX_CPU_THIS_PTR show_flag |= Flag_softint;
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
2010-03-05 23:24:08 +03:00
|
|
|
BX_CPU_THIS_PTR EXT = 1;
|
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
// interrupt is not RSP safe
|
2009-01-31 13:43:24 +03:00
|
|
|
interrupt(1, BX_PRIVILEGED_SOFTWARE_INTERRUPT, 0, 0);
|
2007-11-24 17:22:34 +03:00
|
|
|
|
2010-03-05 23:24:08 +03:00
|
|
|
BX_CPU_THIS_PTR EXT = 0;
|
|
|
|
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_FAR_BRANCH(BX_CPU_ID, BX_INSTR_IS_INT,
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value,
|
2002-09-13 04:15:23 +04:00
|
|
|
EIP);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::INT3(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
// INT 3 is not IOPL sensitive
|
|
|
|
|
2009-01-31 13:43:24 +03:00
|
|
|
#if BX_SUPPORT_VMX
|
|
|
|
VMexit_Event(i, BX_SOFTWARE_EXCEPTION, 3, 0, 0);
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#if BX_DEBUGGER
|
2006-02-12 23:21:36 +03:00
|
|
|
BX_CPU_THIS_PTR show_flag |= Flag_softint;
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
// interrupt is not RSP safe
|
2009-01-21 00:28:43 +03:00
|
|
|
interrupt(3, BX_SOFTWARE_EXCEPTION, 0, 0);
|
2007-11-24 17:22:34 +03:00
|
|
|
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_FAR_BRANCH(BX_CPU_ID, BX_INSTR_IS_INT,
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value,
|
2002-09-13 04:15:23 +04:00
|
|
|
EIP);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::INT_Ib(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
|
|
|
#if BX_DEBUGGER
|
2006-02-12 23:21:36 +03:00
|
|
|
BX_CPU_THIS_PTR show_flag |= Flag_softint;
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
2005-03-10 01:01:13 +03:00
|
|
|
Bit8u vector = i->Ib();
|
|
|
|
|
2009-01-31 13:43:24 +03:00
|
|
|
#if BX_SUPPORT_VMX
|
|
|
|
VMexit_Event(i, BX_SOFTWARE_INTERRUPT, vector, 0, 0);
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#ifdef SHOW_EXIT_STATUS
|
2008-02-15 22:03:54 +03:00
|
|
|
if ((vector == 0x21) && (AH == 0x4c)) {
|
2005-03-10 01:01:13 +03:00
|
|
|
BX_INFO(("INT 21/4C called AL=0x%02x, BX=0x%04x", (unsigned) AL, (unsigned) BX));
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-03-25 00:26:13 +03:00
|
|
|
RSP_SPECULATIVE;
|
|
|
|
|
|
|
|
if (v8086_mode()) {
|
|
|
|
// redirect interrupt through virtual-mode idt
|
|
|
|
if (v86_redirect_interrupt(vector)) goto done;
|
|
|
|
}
|
|
|
|
|
2009-01-21 00:28:43 +03:00
|
|
|
interrupt(vector, BX_SOFTWARE_INTERRUPT, 0, 0);
|
2007-11-24 17:22:34 +03:00
|
|
|
|
|
|
|
done:
|
|
|
|
|
2009-03-10 19:28:01 +03:00
|
|
|
RSP_COMMIT;
|
2007-11-24 17:22:34 +03:00
|
|
|
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_FAR_BRANCH(BX_CPU_ID, BX_INSTR_IS_INT,
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value,
|
2002-09-13 04:15:23 +04:00
|
|
|
EIP);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
2008-03-23 00:29:41 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::INTO(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2009-01-23 12:26:24 +03:00
|
|
|
if (get_OF()) {
|
|
|
|
|
2009-01-31 13:43:24 +03:00
|
|
|
#if BX_SUPPORT_VMX
|
|
|
|
VMexit_Event(i, BX_SOFTWARE_EXCEPTION, 4, 0, 0);
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#if BX_DEBUGGER
|
2009-01-23 12:26:24 +03:00
|
|
|
BX_CPU_THIS_PTR show_flag |= Flag_softint;
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
2007-11-24 17:22:34 +03:00
|
|
|
// interrupt is not RSP safe
|
2009-01-21 00:28:43 +03:00
|
|
|
interrupt(4, BX_SOFTWARE_EXCEPTION, 0, 0);
|
2007-11-24 17:22:34 +03:00
|
|
|
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_FAR_BRANCH(BX_CPU_ID, BX_INSTR_IS_INT,
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.value,
|
2002-09-13 04:15:23 +04:00
|
|
|
EIP);
|
2005-03-10 01:01:13 +03:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|