2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2002-09-05 00:23:54 +04:00
|
|
|
// $Id: cpu.h,v 1.28 2002-09-04 20:23:54 kevinlawton 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
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef BX_CPU_H
|
|
|
|
# define BX_CPU_H 1
|
|
|
|
|
|
|
|
#include <setjmp.h>
|
|
|
|
|
|
|
|
#include "cpu/lazy_flags.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define BX_SREG_ES 0
|
|
|
|
#define BX_SREG_CS 1
|
|
|
|
#define BX_SREG_SS 2
|
|
|
|
#define BX_SREG_DS 3
|
|
|
|
#define BX_SREG_FS 4
|
|
|
|
#define BX_SREG_GS 5
|
|
|
|
|
|
|
|
// segment register encoding
|
|
|
|
#define BX_SEG_REG_ES 0
|
|
|
|
#define BX_SEG_REG_CS 1
|
|
|
|
#define BX_SEG_REG_SS 2
|
|
|
|
#define BX_SEG_REG_DS 3
|
|
|
|
#define BX_SEG_REG_FS 4
|
|
|
|
#define BX_SEG_REG_GS 5
|
|
|
|
#define BX_SEG_REG_NULL 8
|
|
|
|
#define BX_NULL_SEG_REG(seg) ((seg) & BX_SEG_REG_NULL)
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef BX_LITTLE_ENDIAN
|
|
|
|
#define BX_REG8L_OFFSET 0
|
|
|
|
#define BX_REG8H_OFFSET 1
|
|
|
|
#define BX_REG16_OFFSET 0
|
|
|
|
#else // BX_BIG_ENDIAN
|
|
|
|
#define BX_REG8L_OFFSET 3
|
|
|
|
#define BX_REG8H_OFFSET 2
|
|
|
|
#define BX_REG16_OFFSET 2
|
|
|
|
#endif // ifdef BX_LITTLE_ENDIAN
|
|
|
|
|
|
|
|
#define BX_8BIT_REG_AL 0
|
|
|
|
#define BX_8BIT_REG_CL 1
|
|
|
|
#define BX_8BIT_REG_DL 2
|
|
|
|
#define BX_8BIT_REG_BL 3
|
|
|
|
#define BX_8BIT_REG_AH 4
|
|
|
|
#define BX_8BIT_REG_CH 5
|
|
|
|
#define BX_8BIT_REG_DH 6
|
|
|
|
#define BX_8BIT_REG_BH 7
|
|
|
|
|
|
|
|
#define BX_16BIT_REG_AX 0
|
|
|
|
#define BX_16BIT_REG_CX 1
|
|
|
|
#define BX_16BIT_REG_DX 2
|
|
|
|
#define BX_16BIT_REG_BX 3
|
|
|
|
#define BX_16BIT_REG_SP 4
|
|
|
|
#define BX_16BIT_REG_BP 5
|
|
|
|
#define BX_16BIT_REG_SI 6
|
|
|
|
#define BX_16BIT_REG_DI 7
|
|
|
|
|
|
|
|
#define BX_32BIT_REG_EAX 0
|
|
|
|
#define BX_32BIT_REG_ECX 1
|
|
|
|
#define BX_32BIT_REG_EDX 2
|
|
|
|
#define BX_32BIT_REG_EBX 3
|
|
|
|
#define BX_32BIT_REG_ESP 4
|
|
|
|
#define BX_32BIT_REG_EBP 5
|
|
|
|
#define BX_32BIT_REG_ESI 6
|
|
|
|
#define BX_32BIT_REG_EDI 7
|
|
|
|
|
|
|
|
|
2001-05-24 22:46:34 +04:00
|
|
|
#if defined(NEED_CPU_REG_SHORTCUTS)
|
|
|
|
|
|
|
|
/* WARNING:
|
|
|
|
Only BX_CPU_C member functions can use these shortcuts safely!
|
|
|
|
Functions that use the shortcuts outside of BX_CPU_C might work
|
|
|
|
when BX_USE_CPU_SMF=1 but will fail when BX_USE_CPU_SMF=0
|
|
|
|
(for example in SMP mode).
|
|
|
|
*/
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
// access to 8 bit general registers
|
|
|
|
#define AL (BX_CPU_THIS_PTR gen_reg[0].word.byte.rl)
|
|
|
|
#define CL (BX_CPU_THIS_PTR gen_reg[1].word.byte.rl)
|
|
|
|
#define DL (BX_CPU_THIS_PTR gen_reg[2].word.byte.rl)
|
|
|
|
#define BL (BX_CPU_THIS_PTR gen_reg[3].word.byte.rl)
|
|
|
|
#define AH (BX_CPU_THIS_PTR gen_reg[0].word.byte.rh)
|
|
|
|
#define CH (BX_CPU_THIS_PTR gen_reg[1].word.byte.rh)
|
|
|
|
#define DH (BX_CPU_THIS_PTR gen_reg[2].word.byte.rh)
|
|
|
|
#define BH (BX_CPU_THIS_PTR gen_reg[3].word.byte.rh)
|
|
|
|
|
|
|
|
|
|
|
|
// access to 16 bit general registers
|
|
|
|
#define AX (BX_CPU_THIS_PTR gen_reg[0].word.rx)
|
|
|
|
#define CX (BX_CPU_THIS_PTR gen_reg[1].word.rx)
|
|
|
|
#define DX (BX_CPU_THIS_PTR gen_reg[2].word.rx)
|
|
|
|
#define BX (BX_CPU_THIS_PTR gen_reg[3].word.rx)
|
|
|
|
#define SP (BX_CPU_THIS_PTR gen_reg[4].word.rx)
|
|
|
|
#define BP (BX_CPU_THIS_PTR gen_reg[5].word.rx)
|
|
|
|
#define SI (BX_CPU_THIS_PTR gen_reg[6].word.rx)
|
|
|
|
#define DI (BX_CPU_THIS_PTR gen_reg[7].word.rx)
|
|
|
|
|
|
|
|
// access to 16 bit instruction pointer
|
|
|
|
#define IP (* (Bit16u *) (((Bit8u *) &BX_CPU_THIS_PTR eip) + BX_REG16_OFFSET))
|
|
|
|
|
|
|
|
|
|
|
|
// accesss to 32 bit general registers
|
|
|
|
#define EAX BX_CPU_THIS_PTR gen_reg[0].erx
|
|
|
|
#define ECX BX_CPU_THIS_PTR gen_reg[1].erx
|
|
|
|
#define EDX BX_CPU_THIS_PTR gen_reg[2].erx
|
|
|
|
#define EBX BX_CPU_THIS_PTR gen_reg[3].erx
|
|
|
|
#define ESP BX_CPU_THIS_PTR gen_reg[4].erx
|
|
|
|
#define EBP BX_CPU_THIS_PTR gen_reg[5].erx
|
|
|
|
#define ESI BX_CPU_THIS_PTR gen_reg[6].erx
|
|
|
|
#define EDI BX_CPU_THIS_PTR gen_reg[7].erx
|
|
|
|
|
|
|
|
// access to 32 bit instruction pointer
|
|
|
|
#define EIP BX_CPU_THIS_PTR eip
|
|
|
|
|
2001-05-24 22:46:34 +04:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#define BX_READ_8BIT_REG(index) (((index) < 4) ? \
|
|
|
|
(BX_CPU_THIS_PTR gen_reg[index].word.byte.rl) : \
|
|
|
|
(BX_CPU_THIS_PTR gen_reg[(index)-4].word.byte.rh))
|
|
|
|
#define BX_READ_16BIT_REG(index) (BX_CPU_THIS_PTR gen_reg[index].word.rx)
|
|
|
|
#define BX_READ_32BIT_REG(index) (BX_CPU_THIS_PTR gen_reg[index].erx)
|
|
|
|
|
|
|
|
#define BX_READ_16BIT_BASE_REG(var, index) {\
|
|
|
|
var = *BX_CPU_THIS_PTR _16bit_base_reg[index];\
|
|
|
|
}
|
|
|
|
|
|
|
|
#define BX_READ_16BIT_INDEX_REG(var, index) {\
|
|
|
|
var = *BX_CPU_THIS_PTR _16bit_index_reg[index];\
|
|
|
|
}
|
|
|
|
|
|
|
|
#define BX_WRITE_8BIT_REG(index, val) {\
|
|
|
|
if ((index) < 4) \
|
|
|
|
BX_CPU_THIS_PTR gen_reg[index].word.byte.rl = val; \
|
|
|
|
else \
|
|
|
|
BX_CPU_THIS_PTR gen_reg[(index)-4].word.byte.rh = val; \
|
|
|
|
}
|
|
|
|
#define BX_WRITE_16BIT_REG(index, val) {\
|
|
|
|
BX_CPU_THIS_PTR gen_reg[index].word.rx = val; \
|
|
|
|
}
|
|
|
|
#define BX_WRITE_32BIT_REG(index, val) {\
|
|
|
|
BX_CPU_THIS_PTR gen_reg[index].erx = val; \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define TF BX_CPU_THIS_PTR eflags.tf
|
|
|
|
#define IF BX_CPU_THIS_PTR eflags.if_
|
|
|
|
#define DF BX_CPU_THIS_PTR eflags.df
|
|
|
|
|
|
|
|
#define IOPL BX_CPU_THIS_PTR eflags.iopl
|
|
|
|
#ifndef CPL
|
|
|
|
#define CPL (BX_CPU_THIS_PTR sregs[BX_SEG_REG_CS].selector.rpl)
|
|
|
|
#endif
|
|
|
|
|
2001-05-24 22:46:34 +04:00
|
|
|
|
|
|
|
#endif // defined(NEED_CPU_REG_SHORTCUTS)
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#define BX_DE_EXCEPTION 0 // Divide Error (fault)
|
|
|
|
#define BX_DB_EXCEPTION 1 // Debug (fault/trap)
|
|
|
|
#define BX_BP_EXCEPTION 3 // Breakpoint (trap)
|
|
|
|
#define BX_OF_EXCEPTION 4 // Overflow (trap)
|
|
|
|
#define BX_BR_EXCEPTION 5 // BOUND (fault)
|
|
|
|
#define BX_UD_EXCEPTION 6
|
|
|
|
#define BX_NM_EXCEPTION 7
|
|
|
|
#define BX_DF_EXCEPTION 8
|
|
|
|
#define BX_TS_EXCEPTION 10
|
|
|
|
#define BX_NP_EXCEPTION 11
|
|
|
|
#define BX_SS_EXCEPTION 12
|
|
|
|
#define BX_GP_EXCEPTION 13
|
|
|
|
#define BX_PF_EXCEPTION 14
|
|
|
|
#define BX_MF_EXCEPTION 16
|
|
|
|
#define BX_AC_EXCEPTION 17
|
|
|
|
|
2002-03-27 19:04:05 +03:00
|
|
|
/* MSR registers */
|
|
|
|
#define BX_MSR_P5_MC_ADDR 0x0000
|
|
|
|
#define BX_MSR_MC_TYPE 0x0001
|
|
|
|
#define BX_MSR_TSC 0x0010
|
|
|
|
#define BX_MSR_CESR 0x0011
|
|
|
|
#define BX_MSR_CTR0 0x0012
|
|
|
|
#define BX_MSR_CTR1 0x0013
|
|
|
|
#define BX_MSR_APICBASE 0x001b
|
|
|
|
#define BX_MSR_EBL_CR_POWERON 0x002a
|
|
|
|
#define BX_MSR_TEST_CTL 0x0033
|
|
|
|
#define BX_MSR_BIOS_UPDT_TRIG 0x0079
|
|
|
|
#define BX_MSR_BBL_CR_D0 0x0088
|
|
|
|
#define BX_MSR_BBL_CR_D1 0x0089
|
|
|
|
#define BX_MSR_BBL_CR_D2 0x008a
|
|
|
|
#define BX_MSR_BBL_CR_D3 0x008b /* = BIOS_SIGN */
|
|
|
|
#define BX_MSR_PERFCTR0 0x00c1
|
|
|
|
#define BX_MSR_PERFCTR1 0x00c2
|
|
|
|
#define BX_MSR_MTRRCAP 0x00fe
|
|
|
|
#define BX_MSR_BBL_CR_ADDR 0x0116
|
|
|
|
#define BX_MSR_BBL_DECC 0x0118
|
|
|
|
#define BX_MSR_BBL_CR_CTL 0x0119
|
|
|
|
#define BX_MSR_BBL_CR_TRIG 0x011a
|
|
|
|
#define BX_MSR_BBL_CR_BUSY 0x011b
|
|
|
|
#define BX_MSR_BBL_CR_CTL3 0x011e
|
|
|
|
#define BX_MSR_MCG_CAP 0x0179
|
|
|
|
#define BX_MSR_MCG_STATUS 0x017a
|
|
|
|
#define BX_MSR_MCG_CTL 0x017b
|
|
|
|
#define BX_MSR_EVNTSEL0 0x0186
|
|
|
|
#define BX_MSR_EVNTSEL1 0x0187
|
|
|
|
#define BX_MSR_DEBUGCTLMSR 0x01d9
|
|
|
|
#define BX_MSR_LASTBRANCHFROMIP 0x01db
|
|
|
|
#define BX_MSR_LASTBRANCHTOIP 0x01dc
|
|
|
|
#define BX_MSR_LASTINTOIP 0x01dd
|
|
|
|
#define BX_MSR_ROB_CR_BKUPTMPDR6 0x01e0
|
|
|
|
#define BX_MSR_MTRRPHYSBASE0 0x0200
|
|
|
|
#define BX_MSR_MTRRPHYSMASK0 0x0201
|
|
|
|
#define BX_MSR_MTRRPHYSBASE1 0x0202
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
/* 31|30|29|28|27|26|25|24|23|22|21|20|19|18|17|16
|
|
|
|
* ==|==|=====|==|==|==|==|==|==|==|==|==|==|==|==
|
|
|
|
* 0| 0| 0| 0| 0| 0| 0| 0| 0| 0|ID|VP|VF|AC|VM|RF
|
|
|
|
*
|
|
|
|
* 15|14|13|12|11|10| 9| 8| 7| 6| 5| 4| 3| 2| 1| 0
|
|
|
|
* ==|==|=====|==|==|==|==|==|==|==|==|==|==|==|==
|
|
|
|
* 0|NT| IOPL|OF|DF|IF|TF|SF|ZF| 0|AF| 0|PF| 1|CF
|
|
|
|
*/
|
|
|
|
|
|
|
|
// In order to get access to these fields from the Dynamic Translation
|
|
|
|
// code, using only 8bit offsets, I needed to move these fields
|
|
|
|
// together.
|
|
|
|
Bit32u cf;
|
|
|
|
Bit32u af;
|
|
|
|
Bit32u zf;
|
|
|
|
Bit32u sf;
|
|
|
|
Bit32u of;
|
|
|
|
|
|
|
|
Boolean bit1;
|
|
|
|
Bit8u pf_byte; /* PF derived from last result byte when needed */
|
|
|
|
Boolean bit3;
|
|
|
|
Boolean bit5;
|
|
|
|
Boolean tf;
|
|
|
|
Boolean if_;
|
|
|
|
Boolean df;
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
|
|
Bit8u iopl;
|
|
|
|
Boolean nt;
|
|
|
|
#endif
|
|
|
|
Boolean bit15;
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
|
|
|
Boolean rf;
|
|
|
|
Boolean vm;
|
|
|
|
#endif
|
|
|
|
#if BX_CPU_LEVEL >= 4
|
|
|
|
Boolean ac; // alignment check
|
|
|
|
// Boolean vif; // Virtual Interrupt Flag
|
|
|
|
// Boolean vip; // Virtual Interrupt Pending
|
|
|
|
Boolean id; // late model 486 and beyond had CPUID
|
|
|
|
#endif
|
|
|
|
} bx_flags_reg_t;
|
|
|
|
|
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
|
|
typedef struct {
|
|
|
|
Bit32u val32; // 32bit value of register
|
|
|
|
|
|
|
|
// bitfields broken out for efficient access
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
|
|
|
Boolean pg; // paging
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// CR0 notes:
|
|
|
|
// Each x86 level has its own quirks regarding how it handles
|
|
|
|
// reserved bits. I used DOS DEBUG.EXE in real mode on the
|
|
|
|
// following processors, tried to clear bits 1..30, then tried
|
|
|
|
// to set bits 1..30, to see how these bits are handled.
|
|
|
|
// I found the following:
|
|
|
|
//
|
|
|
|
// Processor try to clear bits 1..30 try to set bits 1..30
|
|
|
|
// 386 7FFFFFF0 7FFFFFFE
|
|
|
|
// 486DX2 00000010 6005003E
|
|
|
|
// Pentium 00000010 7FFFFFFE
|
|
|
|
// Pentium-II 00000010 6005003E
|
|
|
|
//
|
|
|
|
// My assumptions:
|
|
|
|
// All processors: bit 4 is hardwired to 1 (not true on all clones)
|
|
|
|
// 386: bits 5..30 of CR0 are also hardwired to 1
|
|
|
|
// Pentium: reserved bits retain value set using mov cr0, reg32
|
|
|
|
// 486DX2/Pentium-II: reserved bits are hardwired to 0
|
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 4
|
|
|
|
Boolean cd; // cache disable
|
|
|
|
Boolean nw; // no write-through
|
|
|
|
Boolean am; // alignment mask
|
|
|
|
Boolean wp; // write-protect
|
|
|
|
Boolean ne; // numerics exception
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Boolean ts; // task switched
|
|
|
|
Boolean em; // emulate math coprocessor
|
|
|
|
Boolean mp; // monitor coprocessor
|
|
|
|
Boolean pe; // protected mode enable
|
|
|
|
} bx_cr0_t;
|
|
|
|
#endif
|
|
|
|
|
2002-03-27 19:04:05 +03:00
|
|
|
#if BX_CPU_LEVEL >= 5
|
|
|
|
typedef struct {
|
|
|
|
Bit8u p5_mc_addr;
|
|
|
|
Bit8u p5_mc_type;
|
|
|
|
Bit8u tsc;
|
|
|
|
Bit8u cesr;
|
|
|
|
Bit8u ctr0;
|
|
|
|
Bit8u ctr1;
|
|
|
|
Bit64u apicbase;
|
|
|
|
/* TODO finish of the others */
|
|
|
|
} bx_regs_msr_t;
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
typedef struct { /* bx_selector_t */
|
|
|
|
Bit16u value; /* the 16bit value of the selector */
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
|
|
/* the following fields are extracted from the value field in protected
|
|
|
|
mode only. They're used for sake of efficiency */
|
|
|
|
Bit16u index; /* 13bit index extracted from value in protected mode */
|
|
|
|
Bit8u ti; /* table indicator bit extracted from value */
|
|
|
|
Bit8u rpl; /* RPL extracted from value */
|
|
|
|
#endif
|
|
|
|
} bx_selector_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
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-02 00:12:09 +04:00
|
|
|
|
|
|
|
#define SegValidCache 0x1
|
|
|
|
#define SegAccessROK 0x2
|
|
|
|
#define SegAccessWOK 0x4
|
|
|
|
Boolean valid; // Holds above values, Or'd together. Used to
|
|
|
|
// hold only 0 or 1.
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
Boolean p; /* present */
|
|
|
|
Bit8u dpl; /* descriptor privilege level 0..3 */
|
|
|
|
Boolean segment; /* 0 = system/gate, 1 = data/code segment */
|
|
|
|
Bit8u type; /* For system & gate descriptors, only
|
|
|
|
* 0 = invalid descriptor (reserved)
|
|
|
|
* 1 = 286 available Task State Segment (TSS)
|
|
|
|
* 2 = LDT descriptor
|
|
|
|
* 3 = 286 busy Task State Segment (TSS)
|
|
|
|
* 4 = 286 call gate
|
|
|
|
* 5 = task gate
|
|
|
|
* 6 = 286 interrupt gate
|
|
|
|
* 7 = 286 trap gate
|
|
|
|
* 8 = (reserved)
|
|
|
|
* 9 = 386 available TSS
|
|
|
|
* 10 = (reserved)
|
|
|
|
* 11 = 386 busy TSS
|
|
|
|
* 12 = 386 call gate
|
|
|
|
* 13 = (reserved)
|
|
|
|
* 14 = 386 interrupt gate
|
|
|
|
* 15 = 386 trap gate */
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
Boolean executable; /* 1=code, 0=data or stack segment */
|
|
|
|
Boolean c_ed; /* for code: 1=conforming,
|
|
|
|
for data/stack: 1=expand down */
|
|
|
|
Boolean r_w; /* for code: readable?, for data/stack: writeable? */
|
|
|
|
Boolean a; /* accessed? */
|
|
|
|
Bit32u base; /* base address: 286=24bits, 386=32bits */
|
|
|
|
Bit32u limit; /* limit: 286=16bits, 386=20bits */
|
|
|
|
Bit32u limit_scaled; /* for efficiency, this contrived field is set to
|
|
|
|
* limit for byte granular, and
|
|
|
|
* (limit << 12) | 0xfff for page granular seg's
|
|
|
|
*/
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
|
|
|
Boolean g; /* granularity: 0=byte, 1=4K (page) */
|
|
|
|
Boolean d_b; /* default size: 0=16bit, 1=32bit */
|
|
|
|
Boolean avl; /* available for use by system */
|
|
|
|
#endif
|
|
|
|
} segment;
|
|
|
|
struct {
|
|
|
|
Bit8u word_count; /* 5bits (0..31) #words to copy from caller's stack
|
|
|
|
* to called procedure's stack. (call gates only)*/
|
|
|
|
Bit16u dest_selector;
|
|
|
|
Bit16u dest_offset;
|
|
|
|
} gate286;
|
|
|
|
struct { // type 5: Task Gate Descriptor
|
|
|
|
Bit16u tss_selector; // TSS segment selector
|
|
|
|
} taskgate;
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
|
|
|
struct {
|
|
|
|
Bit8u dword_count; /* 5bits (0..31) #dwords to copy from caller's stack
|
|
|
|
* to called procedure's stack. (call gates only)*/
|
|
|
|
Bit16u dest_selector;
|
|
|
|
Bit32u dest_offset;
|
|
|
|
} gate386;
|
|
|
|
#endif
|
|
|
|
struct {
|
|
|
|
Bit32u base; /* 24 bit 286 TSS base */
|
|
|
|
Bit16u limit; /* 16 bit 286 TSS limit */
|
|
|
|
} tss286;
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
|
|
|
struct {
|
|
|
|
Bit32u base; /* 32 bit 386 TSS base */
|
|
|
|
Bit32u limit; /* 20 bit 386 TSS limit */
|
|
|
|
Bit32u limit_scaled; // Same notes as for 'segment' field
|
|
|
|
Boolean g; /* granularity: 0=byte, 1=4K (page) */
|
|
|
|
Boolean avl; /* available for use by system */
|
|
|
|
} tss386;
|
|
|
|
#endif
|
|
|
|
struct {
|
|
|
|
Bit32u base; /* 286=24 386+ =32 bit LDT base */
|
|
|
|
Bit16u limit; /* 286+ =16 bit LDT limit */
|
|
|
|
} ldt;
|
|
|
|
} u;
|
|
|
|
|
|
|
|
} bx_descriptor_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
bx_selector_t selector;
|
|
|
|
bx_descriptor_t cache;
|
|
|
|
} bx_segment_reg_t;
|
|
|
|
|
|
|
|
typedef void * (*BxVoidFPtr_t)(void);
|
2001-05-23 12:16:07 +04:00
|
|
|
class BX_CPU_C;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
typedef struct BxInstruction_tag {
|
|
|
|
// prefix stuff here...
|
|
|
|
unsigned attr; // attribute from fetchdecode
|
|
|
|
unsigned b1; // opcode1 byte
|
2002-09-03 08:54:28 +04:00
|
|
|
unsigned os_32, as_32; // OperandSize/AddressSize is 32bit
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned rep_used;
|
2002-09-03 08:54:28 +04:00
|
|
|
unsigned seg;
|
2001-04-10 05:04:59 +04:00
|
|
|
unsigned modrm; // mod-nnn-r/m byte
|
|
|
|
unsigned mod;
|
|
|
|
unsigned nnn;
|
|
|
|
unsigned rm;
|
|
|
|
Bit16u displ16u; // for 16-bit modrm forms
|
|
|
|
Bit32u displ32u; // for 32-bit modrm forms
|
|
|
|
unsigned sib; // scale-index-base (2nd modrm byte)
|
|
|
|
unsigned scale;
|
|
|
|
unsigned index;
|
|
|
|
unsigned base;
|
|
|
|
Bit32u addr_displacement; // address displacement
|
|
|
|
Bit32u rm_addr;
|
|
|
|
Bit32u Id;
|
|
|
|
Bit16u Iw;
|
|
|
|
Bit8u Ib;
|
|
|
|
Bit8u Ib2; // for ENTER_IwIb
|
|
|
|
Bit16u Iw2; // for JMP_Ap
|
|
|
|
unsigned ilen; // instruction length
|
|
|
|
unsigned flags_in, flags_out; // flags needed, flags modified
|
2001-05-23 12:16:07 +04:00
|
|
|
|
|
|
|
#if BX_USE_CPU_SMF
|
2001-04-10 05:04:59 +04:00
|
|
|
void (*ResolveModrm)(BxInstruction_tag *);
|
2001-05-23 12:16:07 +04:00
|
|
|
void (*execute)(BxInstruction_tag *);
|
|
|
|
#else
|
|
|
|
void (BX_CPU_C::*ResolveModrm)(BxInstruction_tag *);
|
|
|
|
void (BX_CPU_C::*execute)(BxInstruction_tag *);
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#if BX_DYNAMIC_TRANSLATION
|
|
|
|
BxVoidFPtr_t DTResolveModrm;
|
|
|
|
#endif
|
|
|
|
#if BX_DYNAMIC_TRANSLATION
|
|
|
|
unsigned DTAttr;
|
|
|
|
Bit8u * (*DTFPtr)(Bit8u *, BxInstruction_tag *);
|
|
|
|
unsigned DTMemRegsUsed;
|
|
|
|
#endif
|
|
|
|
} BxInstruction_t;
|
|
|
|
|
2001-05-23 12:16:07 +04:00
|
|
|
#if BX_USE_CPU_SMF
|
2001-04-10 05:04:59 +04:00
|
|
|
typedef void (*BxExecutePtr_t)(BxInstruction_t *);
|
2001-05-23 12:16:07 +04:00
|
|
|
#else
|
|
|
|
typedef void (BX_CPU_C::*BxExecutePtr_t)(BxInstruction_t *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
#if BX_DYNAMIC_TRANSLATION
|
|
|
|
typedef Bit8u * (*BxDTASResolveModrm_t)(Bit8u *, BxInstruction_t *,
|
|
|
|
unsigned, unsigned);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if BX_DYNAMIC_TRANSLATION
|
|
|
|
// Arrays of function pointers which handle a specific
|
|
|
|
// mod-rm address format
|
|
|
|
extern BxDTASResolveModrm_t BxDTResolve32Mod0[];
|
|
|
|
extern BxDTASResolveModrm_t BxDTResolve32Mod1or2[];
|
|
|
|
extern BxDTASResolveModrm_t BxDTResolve32Mod0Base[];
|
|
|
|
extern BxDTASResolveModrm_t BxDTResolve32Mod1or2Base[];
|
|
|
|
extern BxDTASResolveModrm_t BxDTResolve16Mod1or2[];
|
|
|
|
extern BxDTASResolveModrm_t BxDTResolve16Mod0[];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if BX_CPU_LEVEL < 2
|
|
|
|
/* no GDTR or IDTR register in an 8086 */
|
|
|
|
#else
|
|
|
|
typedef struct {
|
|
|
|
Bit32u base; /* base address: 24bits=286,32bits=386 */
|
|
|
|
Bit16u limit; /* limit, 16bits */
|
|
|
|
} bx_global_segment_reg_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if BX_USE_TLB
|
|
|
|
typedef struct {
|
|
|
|
Bit32u lpf; // linear page frame
|
|
|
|
Bit32u ppf; // physical page frame
|
2002-09-04 12:59:13 +04:00
|
|
|
Bit32u accessBits;
|
2001-04-10 05:04:59 +04:00
|
|
|
} bx_TLB_entry;
|
|
|
|
#endif // #if BX_USE_TLB
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef BX_BIG_ENDIAN
|
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
Bit32u erx;
|
|
|
|
struct {
|
|
|
|
Bit16u word_filler;
|
|
|
|
union {
|
|
|
|
Bit16u rx;
|
|
|
|
struct {
|
|
|
|
Bit8u rh;
|
|
|
|
Bit8u rl;
|
|
|
|
} byte;
|
|
|
|
};
|
|
|
|
} word;
|
|
|
|
};
|
|
|
|
} bx_gen_reg_t;
|
|
|
|
#else
|
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
Bit32u erx;
|
|
|
|
struct {
|
|
|
|
union {
|
|
|
|
Bit16u rx;
|
|
|
|
struct {
|
|
|
|
Bit8u rl;
|
|
|
|
Bit8u rh;
|
|
|
|
} byte;
|
|
|
|
};
|
|
|
|
Bit16u word_filler;
|
|
|
|
} word;
|
|
|
|
};
|
|
|
|
} bx_gen_reg_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-05-23 12:16:07 +04:00
|
|
|
typedef enum {
|
|
|
|
APIC_TYPE_NONE,
|
|
|
|
APIC_TYPE_IOAPIC,
|
|
|
|
APIC_TYPE_LOCAL_APIC
|
|
|
|
} bx_apic_type_t;
|
|
|
|
|
2002-03-27 19:04:05 +03:00
|
|
|
#define APIC_BASE_ADDR 0xfee00000 // default APIC address
|
|
|
|
|
2001-06-12 17:07:43 +04:00
|
|
|
#if BX_SUPPORT_APIC
|
2001-05-23 12:16:07 +04:00
|
|
|
class bx_generic_apic_c : public logfunctions {
|
|
|
|
protected:
|
|
|
|
Bit32u base_addr;
|
|
|
|
Bit8u id;
|
|
|
|
#define APIC_UNKNOWN_ID 0xff
|
|
|
|
#define APIC_VERSION_ID 0x00170011 // same version as 82093 IOAPIC
|
|
|
|
public:
|
|
|
|
bx_generic_apic_c ();
|
|
|
|
virtual ~bx_generic_apic_c ();
|
|
|
|
virtual void init ();
|
|
|
|
virtual void hwreset () { }
|
|
|
|
Bit32u get_base (void) { return base_addr; }
|
|
|
|
void set_base (Bit32u newbase);
|
|
|
|
void set_id (Bit8u newid);
|
|
|
|
Bit8u get_id () { return id; }
|
|
|
|
virtual char *get_name();
|
|
|
|
Boolean is_selected (Bit32u addr, Bit32u len);
|
|
|
|
void read (Bit32u addr, void *data, unsigned len);
|
|
|
|
virtual void read_aligned(Bit32u address, Bit32u *data, unsigned len);
|
|
|
|
virtual void write(Bit32u address, Bit32u *value, unsigned len);
|
|
|
|
virtual void startup_msg (Bit32u vector);
|
|
|
|
// on local APIC, trigger means deliver to the CPU.
|
|
|
|
// on I/O APIC, trigger means direct to another APIC according to table.
|
|
|
|
virtual void trigger_irq (unsigned num, unsigned from);
|
|
|
|
virtual void untrigger_irq (unsigned num, unsigned from);
|
|
|
|
virtual Bit32u get_delivery_bitmask (Bit8u dest, Bit8u dest_mode);
|
2002-03-25 04:58:34 +03:00
|
|
|
virtual Boolean deliver (Bit8u destination, Bit8u dest_mode, Bit8u delivery_mode, Bit8u vector, Bit8u polarity, Bit8u trig_mode);
|
2001-05-23 12:16:07 +04:00
|
|
|
virtual Boolean match_logical_addr (Bit8u address);
|
|
|
|
virtual bx_apic_type_t get_type ();
|
2002-03-25 04:58:34 +03:00
|
|
|
virtual void set_arb_id (int newid); // only implemented on local apics
|
2001-05-23 12:16:07 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
class bx_local_apic_c : public bx_generic_apic_c {
|
|
|
|
#define BX_LOCAL_APIC_MAX_INTS 256
|
|
|
|
// TMR=trigger mode register. Cleared for edge-triggered interrupts
|
|
|
|
// and set for level-triggered interrupts. If set, local APIC must send
|
|
|
|
// EOI message to all other APICs. EOI's are not implemented.
|
|
|
|
Bit8u tmr[BX_LOCAL_APIC_MAX_INTS];
|
|
|
|
// IRR=interrupt request register. When an interrupt is triggered by
|
|
|
|
// the I/O APIC or another processor, it sets a bit in irr. The bit is
|
|
|
|
// cleared when the interrupt is acknowledged by the processor.
|
|
|
|
Bit8u irr[BX_LOCAL_APIC_MAX_INTS];
|
|
|
|
// ISR=in-service register. When an IRR bit is cleared, the corresponding
|
|
|
|
// bit in ISR is set. The ISR bit is cleared when
|
|
|
|
Bit8u isr[BX_LOCAL_APIC_MAX_INTS];
|
|
|
|
Bit32u arb_id, arb_priority, task_priority, log_dest, dest_format, spurious_vec;
|
|
|
|
Bit32u lvt[6];
|
|
|
|
#define APIC_LVT_TIMER 0
|
|
|
|
#define APIC_LVT_THERMAL 1
|
|
|
|
#define APIC_LVT_PERFORM 2
|
|
|
|
#define APIC_LVT_LINT0 3
|
|
|
|
#define APIC_LVT_LINT1 4
|
|
|
|
#define APIC_LVT_ERROR 5
|
|
|
|
Bit32u timer_initial, timer_current, timer_divconf;
|
|
|
|
Boolean timer_active; // internal state, not accessible from bus
|
|
|
|
Bit32u timer_divide_counter, timer_divide_factor;
|
|
|
|
Bit32u icr_high, icr_low;
|
|
|
|
Bit32u err_status;
|
|
|
|
#define APIC_ERR_ILLEGAL_ADDR 0x80
|
|
|
|
#define APIC_ERR_RX_ILLEGAL_VEC 0x40
|
|
|
|
#define APIC_ERR_TX_ILLEGAL_VEC 0x20
|
|
|
|
#define APIC_ERR_RX_ACCEPT_ERR 0x08
|
|
|
|
#define APIC_ERR_TX_ACCEPT_ERR 0x04
|
|
|
|
#define APIC_ERR_RX_CHECKSUM 0x02
|
|
|
|
#define APIC_ERR_TX_CHECKSUM 0x01
|
|
|
|
public:
|
|
|
|
bx_local_apic_c(BX_CPU_C *mycpu);
|
|
|
|
virtual ~bx_local_apic_c(void);
|
|
|
|
BX_CPU_C *cpu;
|
|
|
|
virtual void hwreset ();
|
|
|
|
virtual void init ();
|
|
|
|
BX_CPU_C *get_cpu (Bit8u id);
|
|
|
|
void set_id (Bit8u newid); // redefine to set cpu->name
|
|
|
|
virtual char *get_name();
|
|
|
|
virtual void write (Bit32u addr, Bit32u *data, unsigned len);
|
|
|
|
virtual void read_aligned(Bit32u address, Bit32u *data, unsigned len);
|
|
|
|
virtual void startup_msg (Bit32u vector);
|
|
|
|
// on local APIC, trigger means raise the CPU's INTR line. For now
|
|
|
|
// I also have to raise pc_system.INTR but that should be replaced
|
|
|
|
// with the cpu-specific INTR signals.
|
|
|
|
virtual void trigger_irq (unsigned num, unsigned from);
|
|
|
|
virtual void untrigger_irq (unsigned num, unsigned from);
|
|
|
|
Bit8u acknowledge_int (); // only the local CPU should call this
|
|
|
|
int highest_priority_int (Bit8u *array);
|
|
|
|
void service_local_apic ();
|
|
|
|
void print_status ();
|
|
|
|
virtual Boolean match_logical_addr (Bit8u address);
|
|
|
|
virtual Boolean is_local_apic () { return true; }
|
|
|
|
virtual bx_apic_type_t get_type () { return APIC_TYPE_LOCAL_APIC; }
|
|
|
|
virtual Bit32u get_delivery_bitmask (Bit8u dest, Bit8u dest_mode);
|
2002-03-25 04:58:34 +03:00
|
|
|
virtual Boolean deliver (Bit8u destination, Bit8u dest_mode, Bit8u delivery_mode, Bit8u vector, Bit8u polarity, Bit8u trig_mode);
|
2001-05-23 12:16:07 +04:00
|
|
|
Bit8u get_ppr ();
|
|
|
|
Bit8u get_apr ();
|
|
|
|
void periodic (Bit32u usec_delta);
|
|
|
|
void set_divide_configuration (Bit32u value);
|
2002-03-27 19:04:05 +03:00
|
|
|
virtual void update_msr_apicbase(Bit32u newaddr);
|
2002-03-25 04:58:34 +03:00
|
|
|
virtual void set_arb_id (int newid);
|
2001-05-23 12:16:07 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#define APIC_MAX_ID 16
|
|
|
|
extern bx_generic_apic_c *apic_index[APIC_MAX_ID];
|
2001-06-12 17:07:43 +04:00
|
|
|
#endif // if BX_SUPPORT_APIC
|
2001-05-23 12:16:07 +04:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2001-05-23 12:16:07 +04:00
|
|
|
#if BX_USE_CPU_SMF == 0
|
|
|
|
// normal member functions. This can ONLY be used within BX_CPU_C classes.
|
|
|
|
// Anyone on the outside should use the BX_CPU macro (defined in bochs.h)
|
|
|
|
// instead.
|
2001-04-10 05:04:59 +04:00
|
|
|
# define BX_CPU_THIS_PTR this->
|
|
|
|
# define BX_SMF
|
|
|
|
# define BX_CPU_C_PREFIX BX_CPU_C::
|
2001-05-23 12:16:07 +04:00
|
|
|
// with normal member functions, calling a member fn pointer looks like
|
|
|
|
// object->*(fnptr)(arg, ...);
|
|
|
|
// Since this is different from when SMF=1, encapsulate it in a macro.
|
|
|
|
# define BX_CPU_CALL_METHOD(func, args) \
|
2001-09-12 03:32:14 +04:00
|
|
|
do { \
|
2001-06-28 23:45:44 +04:00
|
|
|
BX_INSTR_OPCODE_BEGIN (BX_CPU_THIS_PTR sregs[BX_SREG_CS].cache.u.segment.base + BX_CPU_THIS_PTR prev_eip); \
|
|
|
|
(this->*((BxExecutePtr_t) (func))) args \
|
|
|
|
BX_INSTR_OPCODE_END (BX_CPU_THIS_PTR sregs[BX_SREG_CS].cache.u.segment.base + BX_CPU_THIS_PTR prev_eip); \
|
|
|
|
} while (0)
|
2001-04-10 05:04:59 +04:00
|
|
|
#else
|
2001-05-23 12:16:07 +04:00
|
|
|
// static member functions. With SMF, there is only one CPU by definition.
|
|
|
|
# define BX_CPU_THIS_PTR BX_CPU(0)->
|
2001-04-10 05:04:59 +04:00
|
|
|
# define BX_SMF static
|
|
|
|
# define BX_CPU_C_PREFIX
|
2001-06-28 23:45:44 +04:00
|
|
|
# define BX_CPU_CALL_METHOD(func, args) \
|
|
|
|
do { \
|
|
|
|
BX_INSTR_OPCODE_BEGIN (BX_CPU_THIS_PTR sregs[BX_SREG_CS].cache.u.segment.base + BX_CPU_THIS_PTR prev_eip); \
|
|
|
|
((BxExecutePtr_t) (func)) args; \
|
|
|
|
BX_INSTR_OPCODE_END (BX_CPU_THIS_PTR sregs[BX_SREG_CS].cache.u.segment.base + BX_CPU_THIS_PTR prev_eip); \
|
|
|
|
} while (0)
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef void (*BxDTShim_t)(void);
|
|
|
|
|
2001-05-23 12:16:07 +04:00
|
|
|
class BX_MEM_C;
|
|
|
|
|
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
|
|
|
class BX_CPU_C : public logfunctions {
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
public: // for now...
|
|
|
|
|
2001-05-23 12:16:07 +04:00
|
|
|
char name[64];
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
// General register set
|
|
|
|
// eax: accumulator
|
|
|
|
// ebx: base
|
|
|
|
// ecx: count
|
|
|
|
// edx: data
|
|
|
|
// ebp: base pointer
|
|
|
|
// esi: source index
|
|
|
|
// edi: destination index
|
|
|
|
// esp: stack pointer
|
|
|
|
bx_gen_reg_t gen_reg[8];
|
|
|
|
|
|
|
|
Bit32u eip; // instruction pointer
|
|
|
|
#if BX_CPU_LEVEL > 0
|
|
|
|
// so that we can back up when handling faults, exceptions, etc.
|
|
|
|
// we need to store the value of the instruction pointer, before
|
|
|
|
// each fetch/execute cycle.
|
|
|
|
Bit32u prev_eip;
|
|
|
|
#endif
|
|
|
|
// A few pointer to functions for use by the dynamic translation
|
|
|
|
// code. Keep them close to the gen_reg declaration, so I can
|
|
|
|
// use an 8bit offset to access them.
|
|
|
|
|
|
|
|
#if BX_DYNAMIC_TRANSLATION
|
|
|
|
BxDTShim_t DTWrite8vShim;
|
|
|
|
BxDTShim_t DTWrite16vShim;
|
|
|
|
BxDTShim_t DTWrite32vShim;
|
|
|
|
BxDTShim_t DTRead8vShim;
|
|
|
|
BxDTShim_t DTRead16vShim;
|
|
|
|
BxDTShim_t DTRead32vShim;
|
|
|
|
BxDTShim_t DTReadRMW8vShim;
|
|
|
|
BxDTShim_t DTReadRMW16vShim;
|
|
|
|
BxDTShim_t DTReadRMW32vShim;
|
|
|
|
BxDTShim_t DTWriteRMW8vShim;
|
|
|
|
BxDTShim_t DTWriteRMW16vShim;
|
|
|
|
BxDTShim_t DTWriteRMW32vShim;
|
|
|
|
BxDTShim_t DTSetFlagsOSZAPCPtr;
|
|
|
|
BxDTShim_t DTIndBrHandler;
|
|
|
|
BxDTShim_t DTDirBrHandler;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// status and control flags register set
|
|
|
|
Bit32u lf_flags_status;
|
|
|
|
Boolean lf_pf;
|
|
|
|
bx_flags_reg_t eflags;
|
|
|
|
|
|
|
|
bx_lf_flags_entry oszapc;
|
|
|
|
bx_lf_flags_entry oszap;
|
|
|
|
|
|
|
|
Bit32u prev_esp;
|
|
|
|
|
|
|
|
#define BX_INHIBIT_INTERRUPTS 0x01
|
|
|
|
#define BX_INHIBIT_DEBUG 0x02
|
|
|
|
// What events to inhibit at any given time. Certain instructions
|
|
|
|
// inhibit interrupts, some debug exceptions and single-step traps.
|
|
|
|
unsigned inhibit_mask;
|
|
|
|
|
|
|
|
/* user segment register set */
|
|
|
|
bx_segment_reg_t sregs[6];
|
|
|
|
|
|
|
|
/* system segment registers */
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
|
|
bx_global_segment_reg_t gdtr; /* global descriptor table register */
|
|
|
|
bx_global_segment_reg_t idtr; /* interrupt descriptor table register */
|
|
|
|
#endif
|
|
|
|
bx_segment_reg_t ldtr; /* interrupt descriptor table register */
|
|
|
|
bx_segment_reg_t tr; /* task register */
|
|
|
|
|
|
|
|
|
|
|
|
/* debug registers 0-7 (unimplemented) */
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
|
|
|
Bit32u dr0;
|
|
|
|
Bit32u dr1;
|
|
|
|
Bit32u dr2;
|
|
|
|
Bit32u dr3;
|
|
|
|
Bit32u dr6;
|
|
|
|
Bit32u dr7;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* TR3 - TR7 (Test Register 3-7), unimplemented */
|
|
|
|
|
|
|
|
/* Control registers */
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
|
|
bx_cr0_t cr0;
|
|
|
|
Bit32u cr1;
|
|
|
|
Bit32u cr2;
|
|
|
|
Bit32u cr3;
|
|
|
|
#endif
|
|
|
|
#if BX_CPU_LEVEL >= 4
|
|
|
|
Bit32u cr4;
|
|
|
|
#endif
|
|
|
|
|
2002-03-27 19:04:05 +03:00
|
|
|
#if BX_CPU_LEVEL >= 5
|
|
|
|
bx_regs_msr_t msr;
|
|
|
|
#endif
|
|
|
|
|
2001-05-23 12:16:07 +04:00
|
|
|
// pointer to the address space that this processor uses.
|
|
|
|
BX_MEM_C *mem;
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
Boolean EXT; /* 1 if processing external interrupt or exception
|
|
|
|
* or if not related to current instruction,
|
|
|
|
* 0 if current CS:IP caused exception */
|
|
|
|
unsigned errorno; /* signal exception during instruction emulation */
|
|
|
|
|
|
|
|
Bit32u debug_trap; // holds DR6 value to be set as well
|
|
|
|
volatile Boolean async_event;
|
2001-05-23 12:16:07 +04:00
|
|
|
volatile Boolean INTR;
|
2002-04-18 04:22:20 +04:00
|
|
|
volatile Boolean kill_bochs_request;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-03-27 19:04:05 +03:00
|
|
|
/* wether this CPU is the BSP always set for UP */
|
|
|
|
Boolean bsp;
|
2001-04-10 05:04:59 +04:00
|
|
|
// for accessing registers by index number
|
|
|
|
Bit16u *_16bit_base_reg[8];
|
|
|
|
Bit16u *_16bit_index_reg[8];
|
|
|
|
Bit32u empty_register;
|
|
|
|
|
|
|
|
// for decoding instructions; accessing seg reg's by index
|
|
|
|
unsigned sreg_mod00_rm16[8];
|
|
|
|
unsigned sreg_mod01_rm16[8];
|
|
|
|
unsigned sreg_mod10_rm16[8];
|
|
|
|
unsigned sreg_mod01_rm32[8];
|
|
|
|
unsigned sreg_mod10_rm32[8];
|
|
|
|
unsigned sreg_mod0_base32[8];
|
|
|
|
unsigned sreg_mod1or2_base32[8];
|
|
|
|
|
|
|
|
// for exceptions
|
|
|
|
jmp_buf jmp_buf_env;
|
|
|
|
Bit8u curr_exception[2];
|
|
|
|
|
|
|
|
static const Boolean is_exception_OK[3][3];
|
|
|
|
|
|
|
|
bx_segment_reg_t save_cs;
|
|
|
|
bx_segment_reg_t save_ss;
|
|
|
|
Bit32u save_eip;
|
|
|
|
Bit32u save_esp;
|
|
|
|
|
2002-09-02 22:44:35 +04:00
|
|
|
|
|
|
|
// Boundaries of current page, based on EIP
|
|
|
|
Bit32u eipPageBias;
|
|
|
|
Bit32u eipPageWindowSize;
|
|
|
|
Bit8u *eipFetchPtr;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if BX_DEBUGGER
|
2002-04-01 08:42:43 +04:00
|
|
|
Bit32u watchpoint;
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit8u break_point;
|
|
|
|
#ifdef MAGIC_BREAKPOINT
|
|
|
|
Bit8u magic_break;
|
|
|
|
#endif
|
|
|
|
Bit8u stop_reason;
|
|
|
|
Bit8u trace;
|
2001-10-03 23:53:48 +04:00
|
|
|
Bit8u trace_reg;
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit8u mode_break; /* BW */
|
|
|
|
Boolean debug_vm; /* BW contains current mode*/
|
|
|
|
Bit8u show_eip; /* BW record eip at special instr f.ex eip */
|
|
|
|
Bit8u show_flag; /* BW shows instr class executed */
|
2001-05-23 12:16:07 +04:00
|
|
|
bx_guard_found_t guard_found;
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// for paging
|
|
|
|
#if BX_USE_TLB
|
|
|
|
struct {
|
|
|
|
bx_TLB_entry entry[BX_TLB_SIZE];
|
|
|
|
} TLB;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct {
|
|
|
|
Bit32u paddress1; // physical address after translation of 1st len1 bytes of data
|
|
|
|
Bit32u paddress2; // physical address after translation of 2nd len2 bytes of data
|
|
|
|
Bit32u len1; // number of bytes in page 1
|
|
|
|
Bit32u len2; // number of bytes in page 2
|
|
|
|
unsigned pages; // number of pages access spans (1 or 2)
|
|
|
|
} address_xlation;
|
|
|
|
|
|
|
|
// for lazy flags processing
|
|
|
|
BX_SMF Boolean get_OF(void);
|
|
|
|
BX_SMF Boolean get_SF(void);
|
|
|
|
BX_SMF Boolean get_ZF(void);
|
|
|
|
BX_SMF Boolean get_AF(void);
|
|
|
|
BX_SMF Boolean get_PF(void);
|
|
|
|
BX_SMF Boolean get_CF(void);
|
|
|
|
|
|
|
|
// constructors & destructors...
|
2001-05-23 12:16:07 +04:00
|
|
|
BX_CPU_C();
|
2001-04-10 05:04:59 +04:00
|
|
|
~BX_CPU_C(void);
|
2001-05-23 12:16:07 +04:00
|
|
|
void init (BX_MEM_C *addrspace);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// prototypes for CPU instructions...
|
|
|
|
BX_SMF void ADD_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void ADD_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void ADD_GbEb(BxInstruction_t *);
|
|
|
|
BX_SMF void ADD_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void ADD_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void ADD_EAXId(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_GbEb(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_EAXId(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_AXIw(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void PUSH_CS(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_DS(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_DS(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_ES(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_ES(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_FS(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_FS(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_GS(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_GS(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_SS(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_SS(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void ADC_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_GbEb(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_EAXId(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_GbEb(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_EAXId(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void AND_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_GbEb(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_EAXId(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_AXIw(BxInstruction_t *);
|
|
|
|
BX_SMF void DAA(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_GbEb(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_EAXId(BxInstruction_t *);
|
|
|
|
BX_SMF void DAS(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void XOR_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_GbEb(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_EAXId(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_AXIw(BxInstruction_t *);
|
|
|
|
BX_SMF void AAA(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_GbEb(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_EAXId(BxInstruction_t *);
|
|
|
|
BX_SMF void AAS(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void PUSHAD32(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSHAD16(BxInstruction_t *);
|
|
|
|
BX_SMF void POPAD32(BxInstruction_t *);
|
|
|
|
BX_SMF void POPAD16(BxInstruction_t *);
|
|
|
|
BX_SMF void BOUND_GvMa(BxInstruction_t *);
|
|
|
|
BX_SMF void ARPL_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_Id(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_Iw(BxInstruction_t *);
|
|
|
|
BX_SMF void IMUL_GdEdId(BxInstruction_t *);
|
|
|
|
BX_SMF void INSB_YbDX(BxInstruction_t *);
|
|
|
|
BX_SMF void INSW_YvDX(BxInstruction_t *);
|
|
|
|
BX_SMF void OUTSB_DXXb(BxInstruction_t *);
|
|
|
|
BX_SMF void OUTSW_DXXv(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void TEST_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void TEST_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void TEST_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void XCHG_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void XCHG_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void XCHG_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_GbEb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_EwSw(BxInstruction_t *);
|
|
|
|
BX_SMF void LEA_GdM(BxInstruction_t *);
|
|
|
|
BX_SMF void LEA_GwM(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_SwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_Ev(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void CBW(BxInstruction_t *);
|
|
|
|
BX_SMF void CWD(BxInstruction_t *);
|
|
|
|
BX_SMF void CALL32_Ap(BxInstruction_t *);
|
|
|
|
BX_SMF void CALL16_Ap(BxInstruction_t *);
|
|
|
|
BX_SMF void FWAIT(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSHF_Fv(BxInstruction_t *);
|
|
|
|
BX_SMF void POPF_Fv(BxInstruction_t *);
|
|
|
|
BX_SMF void SAHF(BxInstruction_t *);
|
|
|
|
BX_SMF void LAHF(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void MOV_ALOb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_EAXOd(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_AXOw(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_ObAL(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_OdEAX(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_OwAX(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVSB_XbYb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVSW_XvYv(BxInstruction_t *);
|
|
|
|
BX_SMF void CMPSB_XbYb(BxInstruction_t *);
|
|
|
|
BX_SMF void CMPSW_XvYv(BxInstruction_t *);
|
|
|
|
BX_SMF void TEST_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void TEST_EAXId(BxInstruction_t *);
|
|
|
|
BX_SMF void TEST_AXIw(BxInstruction_t *);
|
|
|
|
BX_SMF void STOSB_YbAL(BxInstruction_t *);
|
|
|
|
BX_SMF void STOSW_YveAX(BxInstruction_t *);
|
|
|
|
BX_SMF void LODSB_ALXb(BxInstruction_t *);
|
|
|
|
BX_SMF void LODSW_eAXXv(BxInstruction_t *);
|
|
|
|
BX_SMF void SCASB_ALXb(BxInstruction_t *);
|
|
|
|
BX_SMF void SCASW_eAXXv(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void RETnear32(BxInstruction_t *);
|
|
|
|
BX_SMF void RETnear16(BxInstruction_t *);
|
|
|
|
BX_SMF void LES_GvMp(BxInstruction_t *);
|
|
|
|
BX_SMF void LDS_GvMp(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_EbIb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_EdId(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void ENTER_IwIb(BxInstruction_t *);
|
|
|
|
BX_SMF void LEAVE(BxInstruction_t *);
|
|
|
|
BX_SMF void RETfar32(BxInstruction_t *);
|
|
|
|
BX_SMF void RETfar16(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void INT1(BxInstruction_t *);
|
|
|
|
BX_SMF void INT3(BxInstruction_t *);
|
|
|
|
BX_SMF void INT_Ib(BxInstruction_t *);
|
|
|
|
BX_SMF void INTO(BxInstruction_t *);
|
|
|
|
BX_SMF void IRET32(BxInstruction_t *);
|
|
|
|
BX_SMF void IRET16(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void AAM(BxInstruction_t *);
|
|
|
|
BX_SMF void AAD(BxInstruction_t *);
|
|
|
|
BX_SMF void SALC(BxInstruction_t *);
|
|
|
|
BX_SMF void XLAT(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void LOOPNE_Jb(BxInstruction_t *);
|
|
|
|
BX_SMF void LOOPE_Jb(BxInstruction_t *);
|
|
|
|
BX_SMF void LOOP_Jb(BxInstruction_t *);
|
|
|
|
BX_SMF void JCXZ_Jb(BxInstruction_t *);
|
|
|
|
BX_SMF void IN_ALIb(BxInstruction_t *);
|
|
|
|
BX_SMF void IN_eAXIb(BxInstruction_t *);
|
|
|
|
BX_SMF void OUT_IbAL(BxInstruction_t *);
|
|
|
|
BX_SMF void OUT_IbeAX(BxInstruction_t *);
|
|
|
|
BX_SMF void CALL_Aw(BxInstruction_t *);
|
|
|
|
BX_SMF void CALL_Ad(BxInstruction_t *);
|
|
|
|
BX_SMF void JMP_Jd(BxInstruction_t *);
|
|
|
|
BX_SMF void JMP_Jw(BxInstruction_t *);
|
|
|
|
BX_SMF void JMP_Ap(BxInstruction_t *);
|
|
|
|
BX_SMF void IN_ALDX(BxInstruction_t *);
|
|
|
|
BX_SMF void IN_eAXDX(BxInstruction_t *);
|
|
|
|
BX_SMF void OUT_DXAL(BxInstruction_t *);
|
|
|
|
BX_SMF void OUT_DXeAX(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void HLT(BxInstruction_t *);
|
|
|
|
BX_SMF void CMC(BxInstruction_t *);
|
|
|
|
BX_SMF void CLC(BxInstruction_t *);
|
|
|
|
BX_SMF void STC(BxInstruction_t *);
|
|
|
|
BX_SMF void CLI(BxInstruction_t *);
|
|
|
|
BX_SMF void STI(BxInstruction_t *);
|
|
|
|
BX_SMF void CLD(BxInstruction_t *);
|
|
|
|
BX_SMF void STD(BxInstruction_t *);
|
|
|
|
|
|
|
|
|
|
|
|
BX_SMF void LAR_GvEw(BxInstruction_t *);
|
|
|
|
BX_SMF void LSL_GvEw(BxInstruction_t *);
|
|
|
|
BX_SMF void CLTS(BxInstruction_t *);
|
|
|
|
BX_SMF void INVD(BxInstruction_t *);
|
|
|
|
BX_SMF void WBINVD(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void MOV_CdRd(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_DdRd(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_RdCd(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_RdDd(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_TdRd(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_RdTd(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void JCC_Jd(BxInstruction_t *);
|
|
|
|
BX_SMF void JCC_Jw(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void SETO_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETNO_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETB_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETNB_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETZ_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETNZ_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETBE_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETNBE_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETS_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETNS_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETP_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETNP_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETL_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETNL_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETLE_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SETNLE_Eb(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void CPUID(BxInstruction_t *);
|
|
|
|
BX_SMF void BT_EvGv(BxInstruction_t *);
|
|
|
|
BX_SMF void SHLD_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void SHLD_EwGw(BxInstruction_t *);
|
|
|
|
|
|
|
|
|
|
|
|
BX_SMF void BTS_EvGv(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void SHRD_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void SHRD_EdGd(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void IMUL_GdEd(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void LSS_GvMp(BxInstruction_t *);
|
|
|
|
BX_SMF void BTR_EvGv(BxInstruction_t *);
|
|
|
|
BX_SMF void LFS_GvMp(BxInstruction_t *);
|
|
|
|
BX_SMF void LGS_GvMp(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVZX_GdEb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVZX_GwEb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVZX_GdEw(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVZX_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void BTC_EvGv(BxInstruction_t *);
|
|
|
|
BX_SMF void BSF_GvEv(BxInstruction_t *);
|
|
|
|
BX_SMF void BSR_GvEv(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVSX_GdEb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVSX_GwEb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVSX_GdEw(BxInstruction_t *);
|
|
|
|
BX_SMF void MOVSX_GwEw(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void BSWAP_EAX(BxInstruction_t *);
|
|
|
|
BX_SMF void BSWAP_ECX(BxInstruction_t *);
|
|
|
|
BX_SMF void BSWAP_EDX(BxInstruction_t *);
|
|
|
|
BX_SMF void BSWAP_EBX(BxInstruction_t *);
|
|
|
|
BX_SMF void BSWAP_ESP(BxInstruction_t *);
|
|
|
|
BX_SMF void BSWAP_EBP(BxInstruction_t *);
|
|
|
|
BX_SMF void BSWAP_ESI(BxInstruction_t *);
|
|
|
|
BX_SMF void BSWAP_EDI(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void ADD_EbIb(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_EbIb(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_EbIb(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_EbIb(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_EbIb(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void XOR_EbIb(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_EbIb(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_EbIb(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void ADD_EdId(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_EdId(BxInstruction_t *);
|
|
|
|
BX_SMF void OR_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_EdId(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_EdId(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_EdId(BxInstruction_t *);
|
|
|
|
BX_SMF void AND_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_EdId(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_EdId(BxInstruction_t *);
|
|
|
|
BX_SMF void XOR_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_EdId(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void ROL_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void ROR_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void RCL_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void RCR_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SHL_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SHR_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void SAR_Eb(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void ROL_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void ROL_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void ROR_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void ROR_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void RCL_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void RCL_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void RCR_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void RCR_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void SHL_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void SHL_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void SHR_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void SHR_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void SAR_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void SAR_Ew(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void TEST_EbIb(BxInstruction_t *);
|
|
|
|
BX_SMF void NOT_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void NEG_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void MUL_ALEb(BxInstruction_t *);
|
|
|
|
BX_SMF void IMUL_ALEb(BxInstruction_t *);
|
|
|
|
BX_SMF void DIV_ALEb(BxInstruction_t *);
|
|
|
|
BX_SMF void IDIV_ALEb(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void TEST_EdId(BxInstruction_t *);
|
|
|
|
BX_SMF void TEST_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void NOT_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void NOT_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void NEG_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void MUL_EAXEd(BxInstruction_t *);
|
|
|
|
BX_SMF void IMUL_EAXEd(BxInstruction_t *);
|
|
|
|
BX_SMF void DIV_EAXEd(BxInstruction_t *);
|
|
|
|
BX_SMF void IDIV_EAXEd(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void INC_Eb(BxInstruction_t *);
|
|
|
|
BX_SMF void DEC_Eb(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void INC_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void DEC_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void CALL_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void CALL_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void CALL32_Ep(BxInstruction_t *);
|
|
|
|
BX_SMF void CALL16_Ep(BxInstruction_t *);
|
|
|
|
BX_SMF void JMP_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void JMP_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void JMP32_Ep(BxInstruction_t *);
|
|
|
|
BX_SMF void JMP16_Ep(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_Ew(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void SLDT_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void STR_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void LLDT_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void LTR_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void VERR_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void VERW_Ew(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void SGDT_Ms(BxInstruction_t *);
|
|
|
|
BX_SMF void SIDT_Ms(BxInstruction_t *);
|
|
|
|
BX_SMF void LGDT_Ms(BxInstruction_t *);
|
|
|
|
BX_SMF void LIDT_Ms(BxInstruction_t *);
|
|
|
|
BX_SMF void SMSW_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void LMSW_Ew(BxInstruction_t *);
|
|
|
|
|
|
|
|
|
|
|
|
BX_SMF void BT_EvIb(BxInstruction_t *);
|
|
|
|
BX_SMF void BTS_EvIb(BxInstruction_t *);
|
|
|
|
BX_SMF void BTR_EvIb(BxInstruction_t *);
|
|
|
|
BX_SMF void BTC_EvIb(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void ESC0(BxInstruction_t *);
|
|
|
|
BX_SMF void ESC1(BxInstruction_t *);
|
|
|
|
BX_SMF void ESC2(BxInstruction_t *);
|
|
|
|
BX_SMF void ESC3(BxInstruction_t *);
|
|
|
|
BX_SMF void ESC4(BxInstruction_t *);
|
|
|
|
BX_SMF void ESC5(BxInstruction_t *);
|
|
|
|
BX_SMF void ESC6(BxInstruction_t *);
|
|
|
|
BX_SMF void ESC7(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void fpu_execute(BxInstruction_t *i);
|
|
|
|
BX_SMF void fpu_init(void);
|
2001-09-15 10:55:14 +04:00
|
|
|
BX_SMF void fpu_print_regs (void);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
BX_SMF void CMPXCHG_XBTS(BxInstruction_t *);
|
|
|
|
BX_SMF void CMPXCHG_IBTS(BxInstruction_t *);
|
|
|
|
BX_SMF void CMPXCHG_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void CMPXCHG_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void CMPXCHG8B(BxInstruction_t *);
|
|
|
|
BX_SMF void XADD_EbGb(BxInstruction_t *);
|
|
|
|
BX_SMF void XADD_EdGd(BxInstruction_t *);
|
|
|
|
BX_SMF void RETnear32_Iw(BxInstruction_t *);
|
|
|
|
BX_SMF void RETnear16_Iw(BxInstruction_t *);
|
|
|
|
BX_SMF void RETfar32_Iw(BxInstruction_t *);
|
|
|
|
BX_SMF void RETfar16_Iw(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void LOADALL(BxInstruction_t *);
|
|
|
|
BX_SMF void CMOV_GdEd(BxInstruction_t *);
|
|
|
|
BX_SMF void CMOV_GwEw(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void ADD_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void ADD_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void ADD_AXIw(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_AXIw(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_AXIw(BxInstruction_t *);
|
|
|
|
BX_SMF void SBB_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_AXIw(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_AXIw(BxInstruction_t *);
|
|
|
|
BX_SMF void CWDE(BxInstruction_t *);
|
|
|
|
BX_SMF void CDQ(BxInstruction_t *);
|
|
|
|
BX_SMF void XADD_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void ADD_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void ADC_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void SUB_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void CMP_EwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void NEG_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void INC_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void DEC_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void CMPXCHG_EwGw(BxInstruction_t *);
|
|
|
|
BX_SMF void MUL_AXEw(BxInstruction_t *);
|
|
|
|
BX_SMF void IMUL_AXEw(BxInstruction_t *);
|
|
|
|
BX_SMF void DIV_AXEw(BxInstruction_t *);
|
|
|
|
BX_SMF void IDIV_AXEw(BxInstruction_t *);
|
|
|
|
BX_SMF void IMUL_GwEwIw(BxInstruction_t *);
|
|
|
|
BX_SMF void IMUL_GwEw(BxInstruction_t *);
|
|
|
|
BX_SMF void NOP(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_RLIb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_RHIb(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_RXIw(BxInstruction_t *);
|
|
|
|
BX_SMF void MOV_ERXId(BxInstruction_t *);
|
|
|
|
BX_SMF void INC_RX(BxInstruction_t *);
|
|
|
|
BX_SMF void DEC_RX(BxInstruction_t *);
|
|
|
|
BX_SMF void INC_ERX(BxInstruction_t *);
|
|
|
|
BX_SMF void DEC_ERX(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_RX(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_RX(BxInstruction_t *);
|
|
|
|
BX_SMF void PUSH_ERX(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_ERX(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_Ew(BxInstruction_t *);
|
|
|
|
BX_SMF void POP_Ed(BxInstruction_t *);
|
|
|
|
BX_SMF void XCHG_RXAX(BxInstruction_t *);
|
|
|
|
BX_SMF void XCHG_ERXEAX(BxInstruction_t *);
|
|
|
|
|
|
|
|
// mch added
|
|
|
|
BX_SMF void INVLPG(BxInstruction_t *);
|
|
|
|
BX_SMF void wait_for_interrupt();
|
|
|
|
BX_SMF void RSM(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void WRMSR(BxInstruction_t *);
|
|
|
|
BX_SMF void RDTSC(BxInstruction_t *);
|
|
|
|
BX_SMF void RDMSR(BxInstruction_t *);
|
|
|
|
BX_SMF void SetCR0(Bit32u val_32);
|
|
|
|
BX_SMF void dynamic_translate(void);
|
|
|
|
BX_SMF void dynamic_init(void);
|
|
|
|
BX_SMF unsigned FetchDecode(Bit8u *, BxInstruction_t *, unsigned, Boolean);
|
|
|
|
BX_SMF void UndefinedOpcode(BxInstruction_t *);
|
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
|
|
|
BX_SMF void BxError(BxInstruction_t *i);
|
|
|
|
BX_SMF void BxResolveError(BxInstruction_t *i);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
BX_SMF void Resolve16Mod0Rm0(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod0Rm1(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod0Rm2(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod0Rm3(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod0Rm4(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod0Rm5(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod0Rm7(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void Resolve16Mod1or2Rm0(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod1or2Rm1(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod1or2Rm2(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod1or2Rm3(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod1or2Rm4(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod1or2Rm5(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod1or2Rm6(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve16Mod1or2Rm7(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void Resolve32Mod0Rm0(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Rm1(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Rm2(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Rm3(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Rm6(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Rm7(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void Resolve32Mod1or2Rm0(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Rm1(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Rm2(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Rm3(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Rm5(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Rm6(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Rm7(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void Resolve32Mod0Base0(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Base1(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Base2(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Base3(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Base4(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Base5(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Base6(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod0Base7(BxInstruction_t *);
|
|
|
|
|
|
|
|
BX_SMF void Resolve32Mod1or2Base0(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Base1(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Base2(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Base3(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Base4(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Base5(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Base6(BxInstruction_t *);
|
|
|
|
BX_SMF void Resolve32Mod1or2Base7(BxInstruction_t *);
|
|
|
|
|
|
|
|
|
|
|
|
BX_SMF void REP(void (*)(void));
|
|
|
|
BX_SMF void REP_ZF(void (*)(void), unsigned rep_prefix);
|
|
|
|
#if BX_DEBUGGER
|
|
|
|
BX_SMF void dbg_take_irq(void);
|
|
|
|
BX_SMF void dbg_force_interrupt(unsigned vector);
|
|
|
|
BX_SMF void dbg_take_dma(void);
|
|
|
|
BX_SMF Boolean dbg_get_cpu(bx_dbg_cpu_t *cpu);
|
|
|
|
BX_SMF Boolean dbg_set_cpu(bx_dbg_cpu_t *cpu);
|
|
|
|
BX_SMF Boolean dbg_set_reg(unsigned reg, Bit32u val);
|
|
|
|
BX_SMF Bit32u dbg_get_reg(unsigned reg);
|
|
|
|
BX_SMF Boolean dbg_get_sreg(bx_dbg_sreg_t *sreg, unsigned sreg_no);
|
|
|
|
BX_SMF unsigned dbg_query_pending(void);
|
|
|
|
BX_SMF Bit32u dbg_get_descriptor_l(bx_descriptor_t *);
|
|
|
|
BX_SMF Bit32u dbg_get_descriptor_h(bx_descriptor_t *);
|
|
|
|
BX_SMF Bit32u dbg_get_eflags(void);
|
|
|
|
BX_SMF Boolean dbg_is_begin_instr_bpoint(Bit32u cs, Bit32u eip, Bit32u laddr,
|
|
|
|
Bit32u is_32);
|
|
|
|
BX_SMF Boolean dbg_is_end_instr_bpoint(Bit32u cs, Bit32u eip,
|
|
|
|
Bit32u laddr, Bit32u is_32);
|
|
|
|
#endif
|
|
|
|
#if BX_DEBUGGER || BX_DISASM || BX_INSTRUMENTATION
|
|
|
|
BX_SMF void dbg_xlate_linear2phy(Bit32u linear, Bit32u *phy, Boolean *valid);
|
|
|
|
#endif
|
|
|
|
BX_SMF void atexit(void);
|
|
|
|
|
|
|
|
// now for some ancillary functions...
|
2001-05-23 12:16:07 +04:00
|
|
|
BX_SMF void cpu_loop(Bit32s max_instr_count);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_SMF void decode_exgx16(unsigned need_fetch);
|
|
|
|
BX_SMF void decode_exgx32(unsigned need_fetch);
|
|
|
|
|
|
|
|
BX_SMF void prefetch(void);
|
|
|
|
BX_SMF void revalidate_prefetch_q(void);
|
|
|
|
BX_SMF void invalidate_prefetch_q(void);
|
|
|
|
|
|
|
|
BX_SMF void write_virtual_checks(bx_segment_reg_t *seg, Bit32u offset, unsigned length);
|
|
|
|
BX_SMF void read_virtual_checks(bx_segment_reg_t *seg, Bit32u offset, unsigned length);
|
|
|
|
BX_SMF void write_virtual_byte(unsigned seg, Bit32u offset, Bit8u *data);
|
|
|
|
BX_SMF void write_virtual_word(unsigned seg, Bit32u offset, Bit16u *data);
|
|
|
|
BX_SMF void write_virtual_dword(unsigned seg, Bit32u offset, Bit32u *data);
|
2002-09-05 00:23:54 +04:00
|
|
|
BX_SMF void write_virtual_qword(unsigned seg, Bit32u offset, Bit64u *data);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_SMF void read_virtual_byte(unsigned seg, Bit32u offset, Bit8u *data);
|
|
|
|
BX_SMF void read_virtual_word(unsigned seg, Bit32u offset, Bit16u *data);
|
|
|
|
BX_SMF void read_virtual_dword(unsigned seg, Bit32u offset, Bit32u *data);
|
2002-09-05 00:23:54 +04:00
|
|
|
BX_SMF void read_virtual_qword(unsigned seg, Bit32u offset, Bit64u *data);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
BX_SMF void read_RMW_virtual_byte(unsigned seg, Bit32u offset, Bit8u *data);
|
|
|
|
BX_SMF void read_RMW_virtual_word(unsigned seg, Bit32u offset, Bit16u *data);
|
|
|
|
BX_SMF void read_RMW_virtual_dword(unsigned seg, Bit32u offset, Bit32u *data);
|
|
|
|
BX_SMF void write_RMW_virtual_byte(Bit8u val8);
|
|
|
|
BX_SMF void write_RMW_virtual_word(Bit16u val16);
|
|
|
|
BX_SMF void write_RMW_virtual_dword(Bit32u val32);
|
|
|
|
|
|
|
|
BX_SMF void access_linear(Bit32u address, unsigned length, unsigned pl,
|
|
|
|
unsigned rw, void *data);
|
|
|
|
BX_SMF Bit32u itranslate_linear(Bit32u laddress, unsigned pl);
|
|
|
|
BX_SMF Bit32u dtranslate_linear(Bit32u laddress, unsigned pl, unsigned rw);
|
|
|
|
BX_SMF void TLB_flush(void);
|
|
|
|
BX_SMF void TLB_clear(void);
|
|
|
|
BX_SMF void TLB_init(void);
|
|
|
|
BX_SMF void set_INTR(Boolean value);
|
|
|
|
BX_SMF char *strseg(bx_segment_reg_t *seg);
|
|
|
|
BX_SMF void interrupt(Bit8u vector, Boolean is_INT, Boolean is_error_code,
|
|
|
|
Bit16u error_code);
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
|
|
BX_SMF void exception(unsigned vector, Bit16u error_code, Boolean is_INT);
|
|
|
|
#endif
|
|
|
|
BX_SMF int int_number(bx_segment_reg_t *seg);
|
|
|
|
BX_SMF void shutdown_cpu(void);
|
|
|
|
BX_SMF void enable_paging(void);
|
|
|
|
BX_SMF void disable_paging(void);
|
|
|
|
BX_SMF void CR3_change(Bit32u value32);
|
2002-09-04 12:59:13 +04:00
|
|
|
BX_SMF void pagingWPChanged(void);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_SMF void reset(unsigned source);
|
|
|
|
|
|
|
|
BX_SMF void jump_protected(BxInstruction_t *, Bit16u cs, Bit32u disp32);
|
|
|
|
BX_SMF void call_protected(BxInstruction_t *, Bit16u cs, Bit32u disp32);
|
|
|
|
BX_SMF void return_protected(BxInstruction_t *, Bit16u pop_bytes);
|
|
|
|
BX_SMF void iret_protected(BxInstruction_t *);
|
|
|
|
BX_SMF void validate_seg_regs(void);
|
|
|
|
BX_SMF void stack_return_to_v86(Bit32u new_eip, Bit32u raw_cs_selector,
|
|
|
|
Bit32u flags32);
|
|
|
|
BX_SMF void stack_return_from_v86(BxInstruction_t *);
|
|
|
|
BX_SMF void init_v8086_mode(void);
|
|
|
|
BX_SMF void v8086_message(void);
|
|
|
|
BX_SMF void task_switch(bx_selector_t *selector,
|
|
|
|
bx_descriptor_t *descriptor,
|
|
|
|
unsigned source,
|
|
|
|
Bit32u dword1, Bit32u dword2);
|
|
|
|
BX_SMF void get_SS_ESP_from_TSS(unsigned pl, Bit16u *ss, Bit32u *esp);
|
|
|
|
BX_SMF void write_flags(Bit16u flags, Boolean change_IOPL, Boolean change_IF);
|
|
|
|
BX_SMF void write_eflags(Bit32u eflags, Boolean change_IOPL, Boolean change_IF,
|
|
|
|
Boolean change_VM, Boolean change_RF);
|
|
|
|
BX_SMF Bit16u read_flags(void);
|
|
|
|
BX_SMF Bit32u read_eflags(void);
|
|
|
|
|
|
|
|
BX_SMF Bit8u inp8(Bit16u addr);
|
|
|
|
BX_SMF void outp8(Bit16u addr, Bit8u value);
|
|
|
|
BX_SMF Bit16u inp16(Bit16u addr);
|
|
|
|
BX_SMF void outp16(Bit16u addr, Bit16u value);
|
|
|
|
BX_SMF Bit32u inp32(Bit16u addr);
|
|
|
|
BX_SMF void outp32(Bit16u addr, Bit32u value);
|
|
|
|
BX_SMF Boolean allow_io(Bit16u addr, unsigned len);
|
|
|
|
BX_SMF void enter_protected_mode(void);
|
|
|
|
BX_SMF void enter_real_mode(void);
|
|
|
|
BX_SMF void parse_selector(Bit16u raw_selector, bx_selector_t *selector);
|
|
|
|
BX_SMF void parse_descriptor(Bit32u dword1, Bit32u dword2, bx_descriptor_t *temp);
|
|
|
|
BX_SMF void load_ldtr(bx_selector_t *selector, bx_descriptor_t *descriptor);
|
|
|
|
BX_SMF void load_cs(bx_selector_t *selector, bx_descriptor_t *descriptor, Bit8u cpl);
|
|
|
|
BX_SMF void load_ss(bx_selector_t *selector, bx_descriptor_t *descriptor, Bit8u cpl);
|
|
|
|
BX_SMF void fetch_raw_descriptor(bx_selector_t *selector,
|
|
|
|
Bit32u *dword1, Bit32u *dword2, Bit8u exception);
|
|
|
|
BX_SMF void load_seg_reg(bx_segment_reg_t *seg, Bit16u new_value);
|
|
|
|
BX_SMF Boolean fetch_raw_descriptor2(bx_selector_t *selector,
|
|
|
|
Bit32u *dword1, Bit32u *dword2);
|
|
|
|
BX_SMF void push_16(Bit16u value16);
|
|
|
|
BX_SMF void push_32(Bit32u value32);
|
|
|
|
BX_SMF void pop_16(Bit16u *value16_ptr);
|
|
|
|
BX_SMF void pop_32(Bit32u *value32_ptr);
|
|
|
|
BX_SMF Boolean can_push(bx_descriptor_t *descriptor, Bit32u esp, Bit32u bytes);
|
|
|
|
BX_SMF Boolean can_pop(Bit32u bytes);
|
|
|
|
BX_SMF void sanity_checks(void);
|
|
|
|
|
|
|
|
BX_SMF void debug(Bit32u offset);
|
|
|
|
|
|
|
|
#if BX_X86_DEBUGGER
|
|
|
|
// x86 hardware debug support
|
|
|
|
BX_SMF Bit32u hwdebug_compare(Bit32u laddr, unsigned size,
|
|
|
|
unsigned opa, unsigned opb);
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_SMF BX_CPP_INLINE void set_CF(Boolean val);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_AF(Boolean val);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_ZF(Boolean val);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_SF(Boolean val);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_OF(Boolean val);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_PF(Boolean val);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_PF_base(Bit8u val);
|
|
|
|
|
|
|
|
|
|
|
|
BX_SMF BX_CPP_INLINE void set_AX(Bit16u ax);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_BX(Bit16u bx);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_CX(Bit16u cx);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_DX(Bit16u dx);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_AL(Bit8u al);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_AH(Bit8u ah);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_BL(Bit8u bl);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_BH(Bit8u bh);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_CL(Bit8u cl);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_CH(Bit8u ch);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_DL(Bit8u dl);
|
|
|
|
BX_SMF BX_CPP_INLINE void set_DH(Bit8u dh);
|
|
|
|
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u get_AL(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u get_AH(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u get_BL(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u get_BH(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u get_CL(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u get_CH(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u get_DL(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u get_DH(void);
|
|
|
|
|
|
|
|
BX_SMF BX_CPP_INLINE Bit16u get_AX(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit16u get_BX(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit16u get_CX(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Bit16u get_DX(void);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_SMF BX_CPP_INLINE Boolean real_mode(void);
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_SMF BX_CPP_INLINE Boolean protected_mode(void);
|
|
|
|
BX_SMF BX_CPP_INLINE Boolean v8086_mode(void);
|
2001-05-23 12:16:07 +04:00
|
|
|
#endif
|
2001-06-12 17:07:43 +04:00
|
|
|
#if BX_SUPPORT_APIC
|
2001-05-23 12:16:07 +04:00
|
|
|
bx_local_apic_c local_apic;
|
|
|
|
Boolean int_from_local_apic;
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#if BX_X86_DEBUGGER
|
|
|
|
#define BX_HWDebugInstruction 0x00
|
|
|
|
#define BX_HWDebugMemW 0x01
|
|
|
|
#define BX_HWDebugIO 0x02
|
|
|
|
#define BX_HWDebugMemRW 0x03
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-06-05 21:35:08 +04:00
|
|
|
#if BX_SMP_PROCESSORS==1
|
|
|
|
// single processor simulation, so there's one of everything
|
|
|
|
extern BX_CPU_C bx_cpu;
|
|
|
|
#else
|
|
|
|
// multiprocessor simulation, we need an array of cpus and memories
|
2001-05-23 12:16:07 +04:00
|
|
|
extern BX_CPU_C *bx_cpu_array[BX_SMP_PROCESSORS];
|
2001-06-05 21:35:08 +04:00
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2001-05-24 22:46:34 +04:00
|
|
|
#if defined(NEED_CPU_REG_SHORTCUTS)
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_AX(Bit16u ax) { AX = ax; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_BX(Bit16u bx) { BX = bx; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_CX(Bit16u cx) { CX = cx; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_DX(Bit16u dx) { DX = dx; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_AL(Bit8u al) { AL = al; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_AH(Bit8u ah) { AH = ah; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_BL(Bit8u bl) { BL = bl; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_BH(Bit8u bh) { BH = bh; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_CL(Bit8u cl) { CL = cl; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_CH(Bit8u ch) { CH = ch; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_DL(Bit8u dl) { DL = dl; };
|
|
|
|
BX_SMF BX_CPP_INLINE void BX_CPU_C_PREFIX set_DH(Bit8u dh) { DH = dh; };
|
|
|
|
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u BX_CPU_C_PREFIX get_AL(void) { return(AL); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u BX_CPU_C_PREFIX get_AH(void) { return(AH); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u BX_CPU_C_PREFIX get_BL(void) { return(BL); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u BX_CPU_C_PREFIX get_BH(void) { return(BH); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u BX_CPU_C_PREFIX get_CL(void) { return(CL); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u BX_CPU_C_PREFIX get_CH(void) { return(CH); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u BX_CPU_C_PREFIX get_DL(void) { return(DL); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit8u BX_CPU_C_PREFIX get_DH(void) { return(DH); };
|
|
|
|
|
|
|
|
BX_SMF BX_CPP_INLINE Bit16u BX_CPU_C_PREFIX get_AX(void) { return(AX); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit16u BX_CPU_C_PREFIX get_BX(void) { return(BX); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit16u BX_CPU_C_PREFIX get_CX(void) { return(CX); };
|
|
|
|
BX_SMF BX_CPP_INLINE Bit16u BX_CPU_C_PREFIX get_DX(void) { return(DX); };
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2001-05-24 22:46:34 +04:00
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE Boolean BX_CPU_C::real_mode(void) { return( !BX_CPU_THIS_PTR cr0.pe ); };
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if BX_CPU_LEVEL == 2
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE Boolean BX_CPU_C::protected_mode(void) { return( BX_CPU_THIS_PTR cr0.pe ); };
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 3
|
|
|
|
# if BX_SUPPORT_V8086_MODE
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE Boolean
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::v8086_mode(void) {
|
|
|
|
return(BX_CPU_THIS_PTR eflags.vm);
|
|
|
|
}
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE Boolean
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::protected_mode(void) {
|
|
|
|
return(BX_CPU_THIS_PTR cr0.pe && !BX_CPU_THIS_PTR eflags.vm);
|
|
|
|
}
|
|
|
|
# else
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE Boolean
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::v8086_mode(void) {
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE Boolean
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::protected_mode(void) {
|
|
|
|
return(BX_CPU_THIS_PTR cr0.pe);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE void
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::set_CF(Boolean val) {
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status &= 0xfffff0;
|
|
|
|
BX_CPU_THIS_PTR eflags.cf = val;
|
|
|
|
}
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE void
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::set_AF(Boolean val) {
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status &= 0xfff0ff;
|
|
|
|
BX_CPU_THIS_PTR eflags.af = val;
|
|
|
|
}
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE void
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::set_ZF(Boolean val) {
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status &= 0xff0fff;
|
|
|
|
BX_CPU_THIS_PTR eflags.zf = val;
|
|
|
|
}
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE void
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::set_SF(Boolean val) {
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status &= 0xf0ffff;
|
|
|
|
BX_CPU_THIS_PTR eflags.sf = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE void
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::set_OF(Boolean val) {
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status &= 0x0fffff;
|
|
|
|
BX_CPU_THIS_PTR eflags.of = val;
|
|
|
|
}
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE void
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::set_PF(Boolean val) {
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status &= 0xffff0f;
|
|
|
|
BX_CPU_THIS_PTR lf_pf = val;
|
|
|
|
}
|
|
|
|
|
2001-04-10 06:10:09 +04:00
|
|
|
BX_CPP_INLINE void
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_CPU_C::set_PF_base(Bit8u val) {
|
|
|
|
BX_CPU_THIS_PTR eflags.pf_byte = val;
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = (BX_CPU_THIS_PTR lf_flags_status & 0xffff0f) | BX_LF_MASK_P;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define SET_FLAGS_OSZAPC_8(op1, op2, result, ins) { \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op1_8 = op1; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op2_8 = op2; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.result_8 = result; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.instr = ins; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = BX_LF_MASK_OSZAPC; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SET_FLAGS_OSZAPC_8_CF(op1, op2, result, ins, last_CF) { \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op1_8 = op1; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op2_8 = op2; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.result_8 = result; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.instr = ins; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.prev_CF = last_CF; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = BX_LF_MASK_OSZAPC; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SET_FLAGS_OSZAPC_16(op1, op2, result, ins) { \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op1_16 = op1; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op2_16 = op2; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.result_16 = result; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.instr = ins; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = BX_LF_MASK_OSZAPC; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SET_FLAGS_OSZAPC_16_CF(op1, op2, result, ins, last_CF) { \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op1_16 = op1; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op2_16 = op2; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.result_16 = result; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.instr = ins; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.prev_CF = last_CF; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = BX_LF_MASK_OSZAPC; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SET_FLAGS_OSZAPC_32(op1, op2, result, ins) { \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op1_32 = op1; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op2_32 = op2; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.result_32 = result; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.instr = ins; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = BX_LF_MASK_OSZAPC; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SET_FLAGS_OSZAPC_32_CF(op1, op2, result, ins, last_CF) { \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op1_32 = op1; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.op2_32 = op2; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.result_32 = result; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.instr = ins; \
|
|
|
|
BX_CPU_THIS_PTR oszapc.prev_CF = last_CF; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = BX_LF_MASK_OSZAPC; \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define SET_FLAGS_OSZAP_8(op1, op2, result, ins) { \
|
|
|
|
BX_CPU_THIS_PTR oszap.op1_8 = op1; \
|
|
|
|
BX_CPU_THIS_PTR oszap.op2_8 = op2; \
|
|
|
|
BX_CPU_THIS_PTR oszap.result_8 = result; \
|
|
|
|
BX_CPU_THIS_PTR oszap.instr = ins; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = (BX_CPU_THIS_PTR lf_flags_status & 0x00000f) | BX_LF_MASK_OSZAP; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SET_FLAGS_OSZAP_16(op1, op2, result, ins) { \
|
|
|
|
BX_CPU_THIS_PTR oszap.op1_16 = op1; \
|
|
|
|
BX_CPU_THIS_PTR oszap.op2_16 = op2; \
|
|
|
|
BX_CPU_THIS_PTR oszap.result_16 = result; \
|
|
|
|
BX_CPU_THIS_PTR oszap.instr = ins; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = (BX_CPU_THIS_PTR lf_flags_status & 0x00000f) | BX_LF_MASK_OSZAP; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SET_FLAGS_OSZAP_32(op1, op2, result, ins) { \
|
|
|
|
BX_CPU_THIS_PTR oszap.op1_32 = op1; \
|
|
|
|
BX_CPU_THIS_PTR oszap.op2_32 = op2; \
|
|
|
|
BX_CPU_THIS_PTR oszap.result_32 = result; \
|
|
|
|
BX_CPU_THIS_PTR oszap.instr = ins; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status = (BX_CPU_THIS_PTR lf_flags_status & 0x00000f) | BX_LF_MASK_OSZAP; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SET_FLAGS_OxxxxC(new_of, new_cf) { \
|
|
|
|
BX_CPU_THIS_PTR eflags.of = (Boolean) new_of; \
|
|
|
|
BX_CPU_THIS_PTR eflags.cf = (Boolean) new_cf; \
|
|
|
|
BX_CPU_THIS_PTR lf_flags_status &= 0x0ffff0; \
|
|
|
|
/* ??? could also mark other bits undefined here */ \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern const Boolean bx_parity_lookup[256];
|
|
|
|
|
|
|
|
#define BX_REPE_PREFIX 10
|
|
|
|
#define BX_REPNE_PREFIX 11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define BX_TASK_FROM_JUMP 10
|
|
|
|
#define BX_TASK_FROM_CALL_OR_INT 11
|
|
|
|
#define BX_TASK_FROM_IRET 12
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// For decoding...
|
|
|
|
//
|
|
|
|
|
|
|
|
// If the Immediate bit is set, the lowest 3 bits of the attribute
|
|
|
|
// specify which kinds of immediate data a required by instruction.
|
|
|
|
|
|
|
|
#define BxImmediate 0x000f // bits 3..0: any immediate
|
|
|
|
#define BxImmediate_Ib 0x0001 // 8 bits regardless
|
|
|
|
#define BxImmediate_Ib_SE 0x0002 // sign extend to OS size
|
|
|
|
#define BxImmediate_Iv 0x0003 // 16 or 32 depending on OS size
|
|
|
|
#define BxImmediate_Iw 0x0004 // 16 bits regardless
|
|
|
|
#define BxImmediate_IvIw 0x0005 // call_Ap
|
|
|
|
#define BxImmediate_IwIb 0x0006 // enter_IwIb
|
|
|
|
#define BxImmediate_O 0x0007 // mov_ALOb, mov_ObAL, mov_eAXOv, mov_OveAX
|
|
|
|
#define BxImmediate_BrOff8 0x0008 // Relative branch offset byte
|
|
|
|
#define BxImmediate_BrOff16 0x0009 // Relative branch offset word
|
|
|
|
#define BxImmediate_BrOff32 BxImmediate_Iv
|
|
|
|
|
|
|
|
#define BxPrefix 0x0010 // bit 4
|
|
|
|
#define BxAnother 0x0020 // bit 5
|
|
|
|
#define BxRepeatable 0x0040 // bit 6
|
|
|
|
#define BxRepeatableZF 0x0080 // bit 7
|
|
|
|
#define BxGroupN 0x0100 // bits 8
|
|
|
|
#define BxGroup1 BxGroupN
|
|
|
|
#define BxGroup2 BxGroupN
|
|
|
|
#define BxGroup3 BxGroupN
|
|
|
|
#define BxGroup4 BxGroupN
|
|
|
|
#define BxGroup5 BxGroupN
|
|
|
|
#define BxGroup6 BxGroupN
|
|
|
|
#define BxGroup7 BxGroupN
|
|
|
|
#define BxGroup8 BxGroupN
|
|
|
|
#define BxGroup9 BxGroupN
|
|
|
|
#define BxGroupa BxGroupN
|
|
|
|
|
|
|
|
#if BX_DEBUGGER
|
|
|
|
typedef enum _show_flags {
|
|
|
|
Flag_call = 0x1,
|
|
|
|
Flag_ret = 0x2,
|
|
|
|
Flag_int = 0x4,
|
|
|
|
Flag_iret = 0x8,
|
|
|
|
Flag_intsig = 0x10
|
|
|
|
} show_flags_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // #ifndef BX_CPU_H
|