| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- #ifndef VDOS_CPU_H
- #define VDOS_CPU_H
- #ifndef VDOS_H
- #include "vDos.h"
- #endif
- #ifndef VDOS_REGS_H
- #include "regs.h"
- #endif
- #include "mem.h"
- // CPU Cycle Timing
- extern Bit32s CPU_Cycles;
- void clearFetchCache(void);
- void testclearFetchCache(void);
- // Some common Defines
- // A CPU Handler
- typedef Bits (CPU_Decoder)(void);
- extern CPU_Decoder * cpudecoder;
- Bits CPU_Core_Normal_Run(void);
- Bits CPU_Core_Normal_Trap_Run(void);
- // CPU Stuff
- extern Bit16u parity_lookup[256];
- bool CPU_LLDT(Bitu selector);
- bool CPU_LTR(Bitu selector);
- void CPU_LIDT(Bitu limit,Bitu base);
- void CPU_LGDT(Bitu limit,Bitu base);
- Bitu CPU_STR(void);
- Bitu CPU_SLDT(void);
- Bitu CPU_SIDT_base(void);
- Bitu CPU_SIDT_limit(void);
- Bitu CPU_SGDT_base(void);
- Bitu CPU_SGDT_limit(void);
- void CPU_ARPL(Bitu & dest_sel,Bitu src_sel);
- void CPU_LAR(Bitu selector, Bitu & ar);
- void CPU_LSL(Bitu selector, Bitu & limit);
- void CPU_SET_CRX(Bitu cr,Bitu value);
- bool CPU_WRITE_CRX(Bitu cr,Bitu value);
- Bitu CPU_GET_CRX(Bitu cr);
- bool CPU_READ_CRX(Bitu cr,Bit32u & retvalue);
- bool CPU_WRITE_DRX(Bitu dr,Bitu value);
- bool CPU_READ_DRX(Bitu dr,Bit32u & retvalue);
- bool CPU_WRITE_TRX(Bitu dr,Bitu value);
- bool CPU_READ_TRX(Bitu dr,Bit32u & retvalue);
- Bitu CPU_SMSW(void);
- bool CPU_LMSW(Bitu word);
- void CPU_VERR(Bitu selector);
- void CPU_VERW(Bitu selector);
- void CPU_JMP(bool use32, Bitu selector, Bitu offset);
- void CPU_CALL(bool use32, Bitu selector, Bitu offset, Bitu oldeip);
- void CPU_RET(bool use32, Bitu bytes);
- void CPU_IRET(bool use32);
- void CPU_HLT(Bitu oldeip);
- void CPU_POPF(Bitu use32);
- bool CPU_pCLI(void);
- bool CPU_pSTI(void);
- bool CPU_IO_Exception(Bitu port,Bitu size);
- void CPU_RunException(void);
- void CPU_ENTER(bool use32,Bitu bytes,Bitu level);
- #define CPU_INT_SOFTWARE 0x1
- #define CPU_INT_EXCEPTION 0x2
- #define CPU_INT_HAS_ERROR 0x4
- #define CPU_INT_NOIOPLCHECK 0x8
- void CPU_Interrupt(Bitu num,Bitu type, Bitu oldeip);
- static void CPU_HW_Interrupt(Bitu num)
- {
- CPU_Interrupt(num, 0, reg_eip);
- }
- static void CPU_SW_Interrupt(Bitu num, Bitu oldeip)
- {
- CPU_Interrupt(num, CPU_INT_SOFTWARE, oldeip);
- }
- static void CPU_SW_Interrupt_NoIOPLCheck(Bitu num, Bitu oldeip)
- {
- CPU_Interrupt(num,CPU_INT_SOFTWARE|CPU_INT_NOIOPLCHECK, oldeip);
- }
- bool CPU_PrepareException(Bitu which, Bitu error);
- void CPU_Exception(Bitu which, Bitu error=0);
- bool CPU_SetSegGeneral(SegNames seg, Bitu value);
- bool CPU_Pop16Seg(SegNames seg);
- bool CPU_Pop32Seg(SegNames seg);
- Bitu CPU_Pop16(void);
- Bitu CPU_Pop32(void);
- void CPU_Push16(Bitu value);
- void CPU_Push32(Bitu value);
- void CPU_SetFlags(Bitu word,Bitu mask);
- #define EXCEPTION_UD 6
- #define EXCEPTION_TS 10
- #define EXCEPTION_NP 11
- #define EXCEPTION_SS 12
- #define EXCEPTION_GP 13
- #define EXCEPTION_PF 14
- #define CR0_PROTECTION 0x00000001
- #define CR0_MONITORPROCESSOR 0x00000002
- #define CR0_FPUEMULATION 0x00000004
- #define CR0_TASKSWITCH 0x00000008
- #define CR0_FPUPRESENT 0x00000010
- #define CR0_WRITEPROTECT 0x00010000
- #define CR0_PAGING 0x80000000
- // *********************************************************************
- // Descriptor
- // *********************************************************************
- #define DESC_INVALID 0x00
- #define DESC_286_TSS_A 0x01
- #define DESC_LDT 0x02
- #define DESC_286_TSS_B 0x03
- #define DESC_286_CALL_GATE 0x04
- #define DESC_TASK_GATE 0x05
- #define DESC_286_INT_GATE 0x06
- #define DESC_286_TRAP_GATE 0x07
- #define DESC_386_TSS_A 0x09
- #define DESC_386_TSS_B 0x0b
- #define DESC_386_CALL_GATE 0x0c
- #define DESC_386_INT_GATE 0x0e
- #define DESC_386_TRAP_GATE 0x0f
- // EU/ED Expand UP/DOWN RO/RW Read Only/Read Write NA/A Accessed
- #define DESC_DATA_EU_RO_NA 0x10
- #define DESC_DATA_EU_RO_A 0x11
- #define DESC_DATA_EU_RW_NA 0x12
- #define DESC_DATA_EU_RW_A 0x13
- #define DESC_DATA_ED_RO_NA 0x14
- #define DESC_DATA_ED_RO_A 0x15
- #define DESC_DATA_ED_RW_NA 0x16
- #define DESC_DATA_ED_RW_A 0x17
- // N/R Readable NC/C Confirming A/NA Accessed
- #define DESC_CODE_N_NC_A 0x18
- #define DESC_CODE_N_NC_NA 0x19
- #define DESC_CODE_R_NC_A 0x1a
- #define DESC_CODE_R_NC_NA 0x1b
- #define DESC_CODE_N_C_A 0x1c
- #define DESC_CODE_N_C_NA 0x1d
- #define DESC_CODE_R_C_A 0x1e
- #define DESC_CODE_R_C_NA 0x1f
- #ifdef _MSC_VER
- #pragma pack (1)
- #endif
- struct S_Descriptor {
- Bit32u limit_0_15 :16;
- Bit32u base_0_15 :16;
- Bit32u base_16_23 :8;
- Bit32u type :5;
- Bit32u dpl :2;
- Bit32u p :1;
- Bit32u limit_16_19 :4;
- Bit32u avl :1;
- Bit32u r :1;
- Bit32u big :1;
- Bit32u g :1;
- Bit32u base_24_31 :8;
- };
- struct G_Descriptor {
- Bit32u offset_0_15 :16;
- Bit32u selector :16;
- Bit32u paramcount :5;
- Bit32u reserved :3;
- Bit32u type :5;
- Bit32u dpl :2;
- Bit32u p :1;
- Bit32u offset_16_31 :16;
- };
- struct TSS_16 {
- Bit16u back; /* Back link to other task */
- Bit16u sp0; /* The CK stack pointer */
- Bit16u ss0; /* The CK stack selector */
- Bit16u sp1; /* The parent KL stack pointer */
- Bit16u ss1; /* The parent KL stack selector */
- Bit16u sp2; /* Unused */
- Bit16u ss2; /* Unused */
- Bit16u ip; /* The instruction pointer */
- Bit16u flags; /* The flags */
- Bit16u ax, cx, dx, bx; /* The general purpose registers */
- Bit16u sp, bp, si, di; /* The special purpose registers */
- Bit16u es; /* The extra selector */
- Bit16u cs; /* The code selector */
- Bit16u ss; /* The application stack selector */
- Bit16u ds; /* The data selector */
- Bit16u ldt; /* The local descriptor table */
- };
- struct TSS_32 {
- Bit32u back; /* Back link to other task */
- Bit32u esp0; /* The CK stack pointer */
- Bit32u ss0; /* The CK stack selector */
- Bit32u esp1; /* The parent KL stack pointer */
- Bit32u ss1; /* The parent KL stack selector */
- Bit32u esp2; /* Unused */
- Bit32u ss2; /* Unused */
- Bit32u cr3; /* The page directory pointer */
- Bit32u eip; /* The instruction pointer */
- Bit32u eflags; /* The flags */
- Bit32u eax, ecx, edx, ebx; /* The general purpose registers */
- Bit32u esp, ebp, esi, edi; /* The special purpose registers */
- Bit32u es; /* The extra selector */
- Bit32u cs; /* The code selector */
- Bit32u ss; /* The application stack selector */
- Bit32u ds; /* The data selector */
- Bit32u fs; /* And another extra selector */
- Bit32u gs; /* ... and another one */
- Bit32u ldt; /* The local descriptor table */
- };
- #ifdef _MSC_VER
- #pragma pack()
- #endif
- class Descriptor
- {
- public:
- Descriptor()
- {
- saved.fill[0] = saved.fill[1] = 0;
- }
- void Load(PhysPt address);
- void Save(PhysPt address);
- PhysPt GetBase(void)
- {
- return (saved.seg.base_24_31<<24) | (saved.seg.base_16_23<<16) | saved.seg.base_0_15;
- }
- Bitu GetLimit(void)
- {
- Bitu limit = (saved.seg.limit_16_19<<16) | saved.seg.limit_0_15;
- if (saved.seg.g)
- return (limit<<12) | 0xFFF;
- return limit;
- }
- Bitu GetOffset(void)
- {
- return (saved.gate.offset_16_31 << 16) | saved.gate.offset_0_15;
- }
- Bitu GetSelector(void)
- {
- return saved.gate.selector;
- }
- Bitu Type(void)
- {
- return saved.seg.type;
- }
- Bitu DPL(void)
- {
- return saved.seg.dpl;
- }
- Bitu Big(void)
- {
- return saved.seg.big;
- }
- public:
- union {
- S_Descriptor seg;
- G_Descriptor gate;
- Bit32u fill[2];
- } saved;
- };
- class DescriptorTable
- {
- public:
- PhysPt GetBase(void)
- {
- return table_base;
- }
- Bitu GetLimit(void)
- {
- return table_limit;
- }
- void SetBase(PhysPt _base)
- {
- table_base = _base;
- }
- void SetLimit(Bitu _limit)
- {
- table_limit = _limit;
- }
- bool GetDescriptor(Bitu selector, Descriptor& desc)
- {
- selector&=~7;
- if (selector >= table_limit)
- return false;
- desc.Load(table_base+(selector));
- return true;
- }
- protected:
- PhysPt table_base;
- Bitu table_limit;
- };
- class GDTDescriptorTable : public DescriptorTable
- {
- public:
- bool GetDescriptor(Bitu selector, Descriptor& desc)
- {
- Bitu address = selector & ~7;
- if (selector & 4)
- {
- if (address >= ldt_limit)
- return false;
- desc.Load(ldt_base+address);
- return true;
- }
- else
- {
- if (address >= table_limit)
- return false;
- desc.Load(table_base+address);
- return true;
- }
- }
- bool SetDescriptor(Bitu selector, Descriptor& desc)
- {
- Bitu address = selector & ~7;
- if (selector & 4)
- {
- if (address >= ldt_limit)
- return false;
- desc.Save(ldt_base+address);
- return true;
- }
- else
- {
- if (address >= table_limit)
- return false;
- desc.Save(table_base+address);
- return true;
- }
- }
- Bitu SLDT(void)
- {
- return ldt_value;
- }
- bool LLDT(Bitu value)
- {
- if ((value&0xfffc) == 0)
- {
- ldt_value = 0;
- ldt_base = 0;
- ldt_limit = 0;
- return true;
- }
- Descriptor desc;
- if (!GetDescriptor(value, desc))
- return !CPU_PrepareException(EXCEPTION_GP, value);
- if (desc.Type() != DESC_LDT)
- return !CPU_PrepareException(EXCEPTION_GP, value);
- if (!desc.saved.seg.p)
- return !CPU_PrepareException(EXCEPTION_NP, value);
- ldt_base = desc.GetBase();
- ldt_limit = desc.GetLimit();
- ldt_value = value;
- return true;
- }
- private:
- PhysPt ldt_base;
- Bitu ldt_limit;
- Bitu ldt_value;
- };
- class TSS_Descriptor : public Descriptor
- {
- public:
- Bitu IsBusy(void)
- {
- return saved.seg.type & 2;
- }
- Bitu Is386(void)
- {
- return saved.seg.type & 8;
- }
- void SetBusy(bool busy)
- {
- if (busy)
- saved.seg.type |= 2;
- else
- saved.seg.type &= ~2;
- }
- };
- struct CPUBlock {
- Bitu cpl; // Current Privilege
- Bitu cr0;
- bool pmode; // Is Protected mode enabled
- GDTDescriptorTable gdt;
- DescriptorTable idt;
- struct {
- Bitu mask, notmask;
- bool big;
- } stack;
- struct {
- bool big;
- } code;
- struct {
- Bitu cs, eip;
- CPU_Decoder * old_decoder;
- } hlt;
- struct {
- Bitu which, error;
- } exception;
- Bits direction;
- bool trap_skip;
- Bit32u drx[8];
- Bit32u trx[8];
- };
- extern CPUBlock cpu;
- #endif
|