Bochs/bochs/pc_system.h
Kevin Lawton 3a5f338419 Integrated patches for:
- Paging code rehash.  You must now use --enable-4meg-pages to
    use 4Meg pages, with the default of disabled, since we don't well
    support 4Meg pages yet.  Paging table walks model a real CPU
    more closely now, and I fixed some bugs in the old logic.
  - Segment check redundancy elimination.  After a segment is loaded,
    reads and writes are marked when a segment type check succeeds, and
    they are skipped thereafter, when possible.
  - Repeated IO and memory string copy acceleration.  Only some variants
    of instructions are available on all platforms, word and dword
    variants only on x86 for the moment due to alignment and endian issues.
    This is compiled in currently with no option - I should add a configure
    option.
  - Added a guest linear address to host TLB.  Actually, I just stick
    the host address (mem.vector[addr] address) in the upper 29 bits
    of the field 'combined_access' since they are unused.  Convenient
    for now.  I'm only storing page frame addresses.  This was the
    simplest for of such a TLB.  We can likely enhance this.  Also,
    I only accelerated the normal read/write routines in access.cc.
    Could also modify the read-modify-write versions too.  You must
    use --enable-guest2host-tlb, to try this out.  Currently speeds
    up Win95 boot time by about 3.5% for me.  More ground to cover...
  - Minor mods to CPUI/MOV_CdRd for CMOV.
  - Integrated enhancements from Volker to getHostMemAddr() for PCI
    being enabled.
2002-09-01 20:12:09 +00:00

162 lines
4.5 KiB
C++

/////////////////////////////////////////////////////////////////////////
// $Id: pc_system.h,v 1.12 2002-09-01 20:12:09 kevinlawton Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 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 BX_MAX_TIMERS 16
#define BX_NULL_TIMER_HANDLE 10000 /* set uninitialized timer handles to this */
#if BX_SHOW_IPS
extern unsigned long ips_count;
#endif
typedef void (*bx_timer_handler_t)(void *);
extern class bx_pc_system_c bx_pc_system;
#ifdef PROVIDE_M_IPS
extern double m_ips;
#endif
class bx_pc_system_c : private logfunctions {
private:
struct {
Bit64u period;
Bit64u remaining;
Boolean active;
Boolean continuous;
Boolean triggered;
bx_timer_handler_t funct;
void *this_ptr;
} timer[BX_MAX_TIMERS];
unsigned num_timers;
Bit64u num_cpu_ticks_in_period;
void expire_ticks(void);
#if !defined(PROVIDE_M_IPS)
double m_ips; // Millions of Instructions Per Second
#endif
public:
Bit64u num_cpu_ticks_left;
Boolean HRQ; // Hold Request
//Boolean INTR; // Interrupt
// Address line 20 control:
// 1 = enabled: extended memory is accessible
// 0 = disabled: A20 address line is forced low to simulate
// an 8088 address map
Boolean enable_a20;
// start out masking physical memory addresses to:
// 8086: 20 bits
// 286: 24 bits
// 386: 32 bits
// when A20 line is disabled, mask physical memory addresses to:
// 286: 20 bits
// 386: 20 bits
//
Bit32u a20_mask;
void set_HRQ(Boolean val); // set the Hold ReQuest line
void set_INTR(Boolean value); // set the INTR line to value
int IntEnabled( void );
int InterruptSignal( PCS_OP operation );
int ResetSignal( PCS_OP operation );
Bit8u IAC(void);
bx_pc_system_c(void);
void init_ips(Bit32u ips);
void timer_handler(void);
int register_timer( void *this_ptr, bx_timer_handler_t, Bit32u useconds,
Boolean continuous, Boolean active);
void start_timers(void);
void activate_timer( unsigned timer_index, Bit32u useconds,
Boolean continuous );
void deactivate_timer( unsigned timer_index );
static BX_CPP_INLINE void tick1(void) {
#if BX_SHOW_IPS
{
extern unsigned long ips_count;
ips_count++;
}
#endif
if (--bx_pc_system.num_cpu_ticks_left == 0) {
bx_pc_system.timer_handler();
}
}
static BX_CPP_INLINE void tickn(Bit64u n) {
#if BX_SHOW_IPS
{
extern unsigned long ips_count;
ips_count += n;
}
#endif
if (bx_pc_system.num_cpu_ticks_left > n) {
bx_pc_system.num_cpu_ticks_left -= n;
return;
}
while (n >= bx_pc_system.num_cpu_ticks_left) {
n -= bx_pc_system.num_cpu_ticks_left;
bx_pc_system.num_cpu_ticks_left = 0;
bx_pc_system.timer_handler();
}
}
Bit64u ticks_remaining(int index)
{
return timer[index].remaining;
}
static const Bit64u COUNTER_INTERVAL;
int register_timer_ticks(void* this_ptr, bx_timer_handler_t, Bit64u ticks, Boolean continuous, Boolean active);
void activate_timer_ticks(unsigned index, Bit64u instructions, Boolean continuous);
static void counter_timer_handler(void* this_ptr);
static void wait_for_event();
#if BX_DEBUGGER
static void timebp_handler(void* this_ptr);
#endif
Bit64u counter;
int counter_timer_index;
Bit64u time_usec();
Bit64u time_ticks();
Bit32u inp(Bit16u addr, unsigned io_len);
void outp(Bit16u addr, Bit32u value, unsigned io_len);
void set_enable_a20(Bit8u value);
Boolean get_enable_a20(void);
void exit(void);
};