2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2003-02-13 18:04:11 +03:00
|
|
|
// $Id: ctrl_xfer8.cc,v 1.14 2003-02-13 15:04:00 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
|
|
|
|
|
|
|
|
|
|
|
|
|
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"
|
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
|
|
|
|
|
|
|
|
|
|
|
|
2002-09-14 21:29:47 +04:00
|
|
|
#if BX_SUPPORT_X86_64==0
|
|
|
|
// Make life a little easier for the 64/32-bit merge.
|
|
|
|
#define RCX ECX
|
|
|
|
#define RIP EIP
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-09-18 02:50:53 +04:00
|
|
|
BX_CPU_C::JCXZ_Jb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
I integrated my hacks to get Linux/x86-64 booting. To keep
these from interfering from a normal compile here's what I did.
In config.h.in (which will generate config.h after a configure),
I added a #define called KPL64Hacks:
#define KPL64Hacks
*After* running configure, you must set this by hand. It will
default to off, so you won't get my hacks in a normal compile.
This will go away soon. There is also a macro just after that
called BailBigRSP(). You don't need to enabled that, but you
can. In many of the instructions which seemed like they could
be hit by the fetchdecode64() process, but which also touched
EIP/ESP, I inserted a macro. Usually this macro expands to nothing.
If you like, you can enabled it, and it will panic if it finds
the upper bits of RIP/RSP set. This helped me find bugs.
Also, I cleaned up the emulation in ctrl_xfer{8,16,32}.cc.
There were some really old legacy code snippets which directly
accessed operands on the stack with access_linear. Lots of
ugly code instead of just pop_32() etc. Cleaning those up,
minimized the number of instructions which directly manipulate
the stack pointer, which should help in refining 64-bit support.
2002-09-24 04:44:56 +04:00
|
|
|
BailBigRSP("JCXZ_Jb");
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as64L()) {
|
2002-09-14 21:29:47 +04:00
|
|
|
if ( RCX == 0 ) {
|
2002-09-18 02:50:53 +04:00
|
|
|
RIP += (Bit32s) i->Id();
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_TAKEN(BX_CPU_ID, RIP);
|
2002-09-14 21:29:47 +04:00
|
|
|
revalidate_prefetch_q();
|
|
|
|
}
|
|
|
|
#if BX_INSTRUMENTATION
|
|
|
|
else {
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_NOT_TAKEN(BX_CPU_ID);
|
2002-09-14 21:29:47 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Bit32u temp_ECX;
|
|
|
|
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as32L())
|
2002-09-14 21:29:47 +04:00
|
|
|
temp_ECX = ECX;
|
|
|
|
else
|
|
|
|
temp_ECX = CX;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-09-14 21:29:47 +04:00
|
|
|
if ( temp_ECX == 0 ) {
|
|
|
|
Bit32u new_EIP;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-09-18 02:50:53 +04:00
|
|
|
new_EIP = EIP + (Bit32s) i->Id();
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->os32L()==0)
|
2002-09-14 21:29:47 +04:00
|
|
|
new_EIP &= 0x0000ffff;
|
2001-04-10 05:04:59 +04:00
|
|
|
#if BX_CPU_LEVEL >= 2
|
2002-09-14 21:29:47 +04:00
|
|
|
if (protected_mode()) {
|
|
|
|
if ( new_EIP > BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].cache.u.segment.limit_scaled ) {
|
|
|
|
BX_PANIC(("jcxz_jb: offset outside of CS limits"));
|
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
#endif
|
2002-09-14 21:29:47 +04:00
|
|
|
EIP = new_EIP;
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_TAKEN(BX_CPU_ID, new_EIP);
|
2002-09-14 21:29:47 +04:00
|
|
|
revalidate_prefetch_q();
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
#if BX_INSTRUMENTATION
|
2002-09-14 21:29:47 +04:00
|
|
|
else {
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_NOT_TAKEN(BX_CPU_ID);
|
2002-09-14 21:29:47 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
2002-09-14 21:29:47 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-09-18 02:50:53 +04:00
|
|
|
BX_CPU_C::LOOPNE_Jb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
I integrated my hacks to get Linux/x86-64 booting. To keep
these from interfering from a normal compile here's what I did.
In config.h.in (which will generate config.h after a configure),
I added a #define called KPL64Hacks:
#define KPL64Hacks
*After* running configure, you must set this by hand. It will
default to off, so you won't get my hacks in a normal compile.
This will go away soon. There is also a macro just after that
called BailBigRSP(). You don't need to enabled that, but you
can. In many of the instructions which seemed like they could
be hit by the fetchdecode64() process, but which also touched
EIP/ESP, I inserted a macro. Usually this macro expands to nothing.
If you like, you can enabled it, and it will panic if it finds
the upper bits of RIP/RSP set. This helped me find bugs.
Also, I cleaned up the emulation in ctrl_xfer{8,16,32}.cc.
There were some really old legacy code snippets which directly
accessed operands on the stack with access_linear. Lots of
ugly code instead of just pop_32() etc. Cleaning those up,
minimized the number of instructions which directly manipulate
the stack pointer, which should help in refining 64-bit support.
2002-09-24 04:44:56 +04:00
|
|
|
BailBigRSP("loopne_jb");
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as64L()) {
|
2002-09-14 21:29:47 +04:00
|
|
|
|
|
|
|
if ( ((--RCX)!=0) && (get_ZF()==0) ) {
|
|
|
|
|
2002-09-18 02:50:53 +04:00
|
|
|
RIP += (Bit32s) i->Id();
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_TAKEN(BX_CPU_ID, RIP);
|
2002-09-14 21:29:47 +04:00
|
|
|
revalidate_prefetch_q();
|
|
|
|
}
|
|
|
|
#if BX_INSTRUMENTATION
|
|
|
|
else {
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_NOT_TAKEN(BX_CPU_ID);
|
2002-09-14 21:29:47 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Bit32u count, new_EIP;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as32L())
|
2002-09-14 21:29:47 +04:00
|
|
|
count = ECX;
|
|
|
|
else
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif /* BX_CPU_LEVEL >= 3 */
|
2002-09-14 21:29:47 +04:00
|
|
|
count = CX;
|
|
|
|
|
|
|
|
count--;
|
|
|
|
if ( (count!=0) && (get_ZF()==0) ) {
|
|
|
|
|
2002-09-18 02:50:53 +04:00
|
|
|
new_EIP = EIP + (Bit32s) i->Id();
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->os32L()==0)
|
2002-09-14 21:29:47 +04:00
|
|
|
new_EIP &= 0x0000ffff;
|
|
|
|
if (protected_mode()) {
|
|
|
|
if (new_EIP > BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].cache.u.segment.limit_scaled) {
|
|
|
|
BX_PANIC(("loopne_jb: offset outside of CS limits"));
|
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
EIP = new_EIP;
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_TAKEN(BX_CPU_ID, new_EIP);
|
2002-09-14 21:29:47 +04:00
|
|
|
revalidate_prefetch_q();
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
#if BX_INSTRUMENTATION
|
2002-09-14 21:29:47 +04:00
|
|
|
else {
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_NOT_TAKEN(BX_CPU_ID);
|
2002-09-14 21:29:47 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as32L())
|
2002-09-14 21:29:47 +04:00
|
|
|
RCX = ECX - 1; // zero extend
|
|
|
|
else
|
|
|
|
CX--;
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-09-18 02:50:53 +04:00
|
|
|
BX_CPU_C::LOOPE_Jb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
I integrated my hacks to get Linux/x86-64 booting. To keep
these from interfering from a normal compile here's what I did.
In config.h.in (which will generate config.h after a configure),
I added a #define called KPL64Hacks:
#define KPL64Hacks
*After* running configure, you must set this by hand. It will
default to off, so you won't get my hacks in a normal compile.
This will go away soon. There is also a macro just after that
called BailBigRSP(). You don't need to enabled that, but you
can. In many of the instructions which seemed like they could
be hit by the fetchdecode64() process, but which also touched
EIP/ESP, I inserted a macro. Usually this macro expands to nothing.
If you like, you can enabled it, and it will panic if it finds
the upper bits of RIP/RSP set. This helped me find bugs.
Also, I cleaned up the emulation in ctrl_xfer{8,16,32}.cc.
There were some really old legacy code snippets which directly
accessed operands on the stack with access_linear. Lots of
ugly code instead of just pop_32() etc. Cleaning those up,
minimized the number of instructions which directly manipulate
the stack pointer, which should help in refining 64-bit support.
2002-09-24 04:44:56 +04:00
|
|
|
BailBigRSP("loope_jb");
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as64L()) {
|
2002-09-14 21:29:47 +04:00
|
|
|
|
|
|
|
if ( ((--RCX)!=0) && (get_ZF()) ) {
|
|
|
|
|
2002-09-18 02:50:53 +04:00
|
|
|
RIP += (Bit32s) i->Id();
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_TAKEN(BX_CPU_ID, RIP);
|
2002-09-14 21:29:47 +04:00
|
|
|
revalidate_prefetch_q();
|
|
|
|
}
|
|
|
|
#if BX_INSTRUMENTATION
|
|
|
|
else {
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_NOT_TAKEN(BX_CPU_ID);
|
2002-09-14 21:29:47 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Bit32u count, new_EIP;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as32L())
|
2002-09-14 21:29:47 +04:00
|
|
|
count = ECX;
|
|
|
|
else
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif /* BX_CPU_LEVEL >= 3 */
|
2002-09-14 21:29:47 +04:00
|
|
|
count = CX;
|
|
|
|
|
|
|
|
count--;
|
|
|
|
if ( (count!=0) && get_ZF()) {
|
|
|
|
|
2002-09-18 02:50:53 +04:00
|
|
|
new_EIP = EIP + (Bit32s) i->Id();
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->os32L()==0)
|
2002-09-14 21:29:47 +04:00
|
|
|
new_EIP &= 0x0000ffff;
|
|
|
|
if (protected_mode()) {
|
|
|
|
if (new_EIP > BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].cache.u.segment.limit_scaled) {
|
|
|
|
BX_PANIC(("loope_jb: offset outside of CS limits"));
|
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
EIP = new_EIP;
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_TAKEN(BX_CPU_ID, new_EIP);
|
2002-09-14 21:29:47 +04:00
|
|
|
revalidate_prefetch_q();
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
#if BX_INSTRUMENTATION
|
2002-09-14 21:29:47 +04:00
|
|
|
else {
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_NOT_TAKEN(BX_CPU_ID);
|
2002-09-14 21:29:47 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as32L())
|
2002-09-14 21:29:47 +04:00
|
|
|
RCX = ECX - 1; // zero extend
|
|
|
|
else
|
|
|
|
CX--;
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-09-18 02:50:53 +04:00
|
|
|
BX_CPU_C::LOOP_Jb(bxInstruction_c *i)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
I integrated my hacks to get Linux/x86-64 booting. To keep
these from interfering from a normal compile here's what I did.
In config.h.in (which will generate config.h after a configure),
I added a #define called KPL64Hacks:
#define KPL64Hacks
*After* running configure, you must set this by hand. It will
default to off, so you won't get my hacks in a normal compile.
This will go away soon. There is also a macro just after that
called BailBigRSP(). You don't need to enabled that, but you
can. In many of the instructions which seemed like they could
be hit by the fetchdecode64() process, but which also touched
EIP/ESP, I inserted a macro. Usually this macro expands to nothing.
If you like, you can enabled it, and it will panic if it finds
the upper bits of RIP/RSP set. This helped me find bugs.
Also, I cleaned up the emulation in ctrl_xfer{8,16,32}.cc.
There were some really old legacy code snippets which directly
accessed operands on the stack with access_linear. Lots of
ugly code instead of just pop_32() etc. Cleaning those up,
minimized the number of instructions which directly manipulate
the stack pointer, which should help in refining 64-bit support.
2002-09-24 04:44:56 +04:00
|
|
|
BailBigRSP("loop_jb");
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as64L()) {
|
2002-09-14 21:29:47 +04:00
|
|
|
|
|
|
|
if ( ((--RCX)!=0) ) {
|
|
|
|
|
2002-09-18 02:50:53 +04:00
|
|
|
RIP += (Bit32s) i->Id();
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_TAKEN(BX_CPU_ID, RIP);
|
2002-09-14 21:29:47 +04:00
|
|
|
revalidate_prefetch_q();
|
|
|
|
}
|
|
|
|
#if BX_INSTRUMENTATION
|
|
|
|
else {
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_NOT_TAKEN(BX_CPU_ID);
|
2002-09-14 21:29:47 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Bit32u count, new_EIP;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as32L())
|
2002-09-14 21:29:47 +04:00
|
|
|
count = ECX;
|
|
|
|
else
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif /* BX_CPU_LEVEL >= 3 */
|
2002-09-14 21:29:47 +04:00
|
|
|
count = CX;
|
|
|
|
|
|
|
|
count--;
|
|
|
|
if (count != 0) {
|
|
|
|
|
2002-09-18 02:50:53 +04:00
|
|
|
new_EIP = EIP + (Bit32s) i->Id();
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->os32L()==0)
|
2002-09-14 21:29:47 +04:00
|
|
|
new_EIP &= 0x0000ffff;
|
|
|
|
if (protected_mode()) {
|
|
|
|
if (new_EIP > BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].cache.u.segment.limit_scaled) {
|
|
|
|
BX_PANIC(("loop_jb: offset outside of CS limits"));
|
|
|
|
exception(BX_GP_EXCEPTION, 0, 0);
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2002-09-14 21:29:47 +04:00
|
|
|
EIP = new_EIP;
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_TAKEN(BX_CPU_ID, new_EIP);
|
2002-09-14 21:29:47 +04:00
|
|
|
revalidate_prefetch_q();
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
#if BX_INSTRUMENTATION
|
2002-09-14 21:29:47 +04:00
|
|
|
else {
|
2003-02-13 18:04:11 +03:00
|
|
|
BX_INSTR_CNEAR_BRANCH_NOT_TAKEN(BX_CPU_ID);
|
2002-09-14 21:29:47 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
2002-09-18 09:36:48 +04:00
|
|
|
if (i->as32L())
|
2002-09-14 21:29:47 +04:00
|
|
|
RCX = ECX - 1; // zero extend
|
|
|
|
else
|
|
|
|
CX--;
|
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|