2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2005-10-17 03:13:19 +04:00
|
|
|
// $Id: flag_ctrl_pro.cc,v 1.20 2005-10-16 23:13:19 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
|
|
|
|
|
|
|
|
2005-09-29 21:32:32 +04:00
|
|
|
void BX_CPP_AttrRegparmN(1) BX_CPU_C::setEFlags(Bit32u val)
|
|
|
|
{
|
|
|
|
// VM flag could not be set from long mode
|
|
|
|
if (IsLongMode()) {
|
|
|
|
if (get_VM()) BX_PANIC(("VM is set in long mode !"));
|
|
|
|
val &= ~EFlagsVMMask;
|
|
|
|
}
|
|
|
|
BX_CPU_THIS_PTR eflags.val32 = val;
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = 0; // OSZAPC flags are known.
|
|
|
|
set_VM(val & EFlagsVMMask);
|
|
|
|
}
|
|
|
|
|
2003-03-03 02:59:12 +03:00
|
|
|
void BX_CPP_AttrRegparmN(2)
|
2002-10-05 10:33:10 +04:00
|
|
|
BX_CPU_C::writeEFlags(Bit32u flags, Bit32u changeMask)
|
|
|
|
{
|
|
|
|
Bit32u supportMask, newEFlags;
|
|
|
|
|
|
|
|
// Build a mask of the non-reserved bits:
|
2005-10-17 03:13:19 +04:00
|
|
|
// ID,VIP,VIF,AC,VM,RF,x,NT,IOPL,OF,DF,IF,TF,SF,ZF,x,AF,x,PF,x,CF
|
2002-10-05 10:33:10 +04:00
|
|
|
supportMask = 0x00037fd5;
|
|
|
|
#if BX_CPU_LEVEL >= 4
|
2005-10-17 03:13:19 +04:00
|
|
|
supportMask |= (EFlagsIDMask | EFlagsACMask); // ID/AC
|
|
|
|
#endif
|
|
|
|
#if BX_SUPPORT_VME
|
|
|
|
supportMask |= (EFlagsVPMask | EFlagsVFMask); // VIP/VIF
|
2002-10-05 10:33:10 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Screen out changing of any unsupported bits.
|
|
|
|
changeMask &= supportMask;
|
|
|
|
|
|
|
|
newEFlags = (BX_CPU_THIS_PTR eflags.val32 & ~changeMask) |
|
|
|
|
(flags & changeMask);
|
2005-09-29 21:32:32 +04:00
|
|
|
BX_CPU_THIS_PTR setEFlags(newEFlags);
|
|
|
|
// OSZAPC flags are known - done in setEFlags(newEFlags)
|
2002-10-05 10:33:10 +04:00
|
|
|
|
2005-10-17 03:13:19 +04:00
|
|
|
if (newEFlags & EFlagsTFMask) {
|
2002-10-05 10:33:10 +04:00
|
|
|
BX_CPU_THIS_PTR async_event = 1; // TF = 1
|
2005-09-29 21:32:32 +04:00
|
|
|
}
|
2002-10-05 10:33:10 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2003-03-03 02:59:12 +03:00
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2002-10-25 15:44:41 +04:00
|
|
|
BX_CPU_C::write_flags(Bit16u flags, bx_bool change_IOPL, bx_bool change_IF)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-10-17 03:13:19 +04:00
|
|
|
// Build a mask of the following bits:
|
|
|
|
// x,NT,IOPL,OF,DF,IF,TF,SF,ZF,x,AF,x,PF,x,CF
|
2002-10-05 10:33:10 +04:00
|
|
|
Bit32u changeMask = 0x0dd5;
|
2002-09-08 08:08:14 +04:00
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
2005-10-17 03:13:19 +04:00
|
|
|
changeMask |= EFlagsNTMask; // NT is modified as requested.
|
2001-04-10 05:04:59 +04:00
|
|
|
if (change_IOPL)
|
2005-10-17 03:13:19 +04:00
|
|
|
changeMask |= EFlagsIOPLMask; // IOPL is modified as requested.
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
2002-09-12 22:10:46 +04:00
|
|
|
if (change_IF)
|
2005-10-17 03:13:19 +04:00
|
|
|
changeMask |= EFlagsIFMask;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-05 10:33:10 +04:00
|
|
|
writeEFlags(Bit32u(flags), changeMask);
|
2002-09-08 08:08:14 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
|
2002-09-08 08:08:14 +04:00
|
|
|
#if BX_CPU_LEVEL >= 3
|
2005-07-01 18:06:02 +04:00
|
|
|
void BX_CPU_C::write_eflags(Bit32u eflags_raw, bx_bool change_IOPL,
|
|
|
|
bx_bool change_IF, bx_bool change_VM, bx_bool change_RF)
|
2002-09-08 08:08:14 +04:00
|
|
|
{
|
2005-10-17 03:13:19 +04:00
|
|
|
// Build a mask of the following bits:
|
|
|
|
// ID,VIP,VIF,AC,VM,RF,x,NT,IOPL,OF,DF,IF,TF,SF,ZF,x,AF,x,PF,x,CF
|
|
|
|
Bit32u changeMask = EFlagsOSZAPCMask | EFlagsTFMask |
|
|
|
|
EFlagsDFMask | EFlagsNTMask;
|
2002-09-08 08:08:14 +04:00
|
|
|
#if BX_CPU_LEVEL >= 4
|
2005-10-17 03:13:19 +04:00
|
|
|
changeMask |= (EFlagsIDMask | EFlagsACMask); // ID/AC
|
2002-09-08 08:08:14 +04:00
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
if (change_IOPL)
|
2005-10-17 03:13:19 +04:00
|
|
|
changeMask |= EFlagsIOPLMask;
|
- the debugger was broken by recent changes in the cpu flags. To provide
a consistent way of accessing these flags that works both inside and
outside the BX_CPU class, I added inline accessor methods for each
flag: assert_FLAG(), clear_FLAG(), set_FLAG(value), and get_FLAG ()
that returns its value. I use assert to mean "set the value to one"
to avoid confusion, since there's also a set method that takes a value.
- the eflags access macros (e.g. GetEFlagsDFLogical, ClearEFlagsTF) are
now defined in terms of the inline accessors. In most cases it will
result in the same code anyway. The major advantage of the accesors
is that they can be used from inside or outside the BX_CPU object, while
the macros can only be used from inside.
- since almost all eflags were stored in val32 now, I went ahead and
removed the if_, rf, and vm fields. Now the val32 bit is the
"official" value for these flags, and they have accessors just like
everything else.
- init.cc: move the registration of registers until after they have been
initialized so that the initial value of each parameter is correct.
Modified files:
debug/dbg_main.cc cpu/cpu.h cpu/debugstuff.cc cpu/flag_ctrl.cc
cpu/flag_ctrl_pro.cc cpu/init.cc
2002-09-11 07:55:22 +04:00
|
|
|
if (change_IF)
|
2005-10-17 03:13:19 +04:00
|
|
|
changeMask |= EFlagsIFMask;
|
2002-10-05 10:33:10 +04:00
|
|
|
if (change_VM)
|
2005-10-17 03:13:19 +04:00
|
|
|
changeMask |= EFlagsVMMask;
|
- the debugger was broken by recent changes in the cpu flags. To provide
a consistent way of accessing these flags that works both inside and
outside the BX_CPU class, I added inline accessor methods for each
flag: assert_FLAG(), clear_FLAG(), set_FLAG(value), and get_FLAG ()
that returns its value. I use assert to mean "set the value to one"
to avoid confusion, since there's also a set method that takes a value.
- the eflags access macros (e.g. GetEFlagsDFLogical, ClearEFlagsTF) are
now defined in terms of the inline accessors. In most cases it will
result in the same code anyway. The major advantage of the accesors
is that they can be used from inside or outside the BX_CPU object, while
the macros can only be used from inside.
- since almost all eflags were stored in val32 now, I went ahead and
removed the if_, rf, and vm fields. Now the val32 bit is the
"official" value for these flags, and they have accessors just like
everything else.
- init.cc: move the registration of registers until after they have been
initialized so that the initial value of each parameter is correct.
Modified files:
debug/dbg_main.cc cpu/cpu.h cpu/debugstuff.cc cpu/flag_ctrl.cc
cpu/flag_ctrl_pro.cc cpu/init.cc
2002-09-11 07:55:22 +04:00
|
|
|
if (change_RF)
|
2005-10-17 03:13:19 +04:00
|
|
|
changeMask |= EFlagsRFMask;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-05 10:33:10 +04:00
|
|
|
writeEFlags(eflags_raw, changeMask);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
#endif /* BX_CPU_LEVEL >= 3 */
|
|
|
|
|
2005-06-16 21:25:04 +04:00
|
|
|
// Cause arithmetic flags to be in known state and cached in val32.
|
|
|
|
Bit32u BX_CPU_C::force_flags(void)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2002-09-08 08:08:14 +04:00
|
|
|
if (BX_CPU_THIS_PTR lf_flags_status) {
|
|
|
|
(void) get_CF();
|
|
|
|
(void) get_PF();
|
|
|
|
(void) get_AF();
|
|
|
|
(void) get_ZF();
|
|
|
|
(void) get_SF();
|
|
|
|
(void) get_OF();
|
2004-09-30 20:50:03 +04:00
|
|
|
}
|
|
|
|
|
2005-06-16 21:25:04 +04:00
|
|
|
return BX_CPU_THIS_PTR eflags.val32;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bit16u BX_CPU_C::read_flags(void)
|
|
|
|
{
|
|
|
|
Bit16u flags16 = (Bit16u) BX_CPU_THIS_PTR force_flags();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* 8086: bits 12-15 always set to 1.
|
|
|
|
* 286: in real mode, bits 12-15 always cleared.
|
|
|
|
* 386+: real-mode: bit15 cleared, bits 14..12 are last loaded value
|
|
|
|
* protected-mode: bit 15 clear, bit 14 = last loaded, IOPL?
|
|
|
|
*/
|
2005-06-16 21:25:04 +04:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#if BX_CPU_LEVEL < 2
|
2005-06-16 21:25:04 +04:00
|
|
|
flags16 |= 0xF000; /* 8086 nature */
|
2001-04-10 05:04:59 +04:00
|
|
|
#elif BX_CPU_LEVEL == 2
|
|
|
|
if (real_mode()) {
|
2002-09-08 08:08:14 +04:00
|
|
|
flags16 &= 0x0FFF; /* 80286 in real mode nature */
|
2005-06-16 21:25:04 +04:00
|
|
|
}
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
2002-09-08 08:08:14 +04:00
|
|
|
return(flags16);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
2004-09-30 20:50:03 +04:00
|
|
|
Bit32u BX_CPU_C::read_eflags(void)
|
2001-04-10 05:04:59 +04:00
|
|
|
{
|
2005-06-16 21:25:04 +04:00
|
|
|
Bit32u flags32 = BX_CPU_THIS_PTR force_flags();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* 386+: real-mode: bit15 cleared, bits 14..12 are last loaded value
|
|
|
|
* protected-mode: bit 15 clear, bit 14 = last loaded, IOPL?
|
|
|
|
*/
|
|
|
|
#endif
|
|
|
|
|
2002-09-08 08:08:14 +04:00
|
|
|
return(flags32);
|
2001-04-10 05:04:59 +04:00
|
|
|
}
|
2005-06-16 21:25:04 +04:00
|
|
|
#endif
|