322 lines
10 KiB
C++
322 lines
10 KiB
C++
#pragma once
|
|
#if defined(__i386__) || defined(_M_IX86)
|
|
|
|
#include <Project64-core/N64System/Interpreter/InterpreterOps.h>
|
|
#include <Project64-core/N64System/Mips/Register.h>
|
|
#include <Project64-core/N64System/Recompiler/ExitInfo.h>
|
|
#include <Project64-core/N64System/Recompiler/JumpInfo.h>
|
|
#include <Project64-core/N64System/Recompiler/RecompilerOps.h>
|
|
#include <Project64-core/N64System/Recompiler/RegInfo.h>
|
|
#include <Project64-core/N64System/Recompiler/asmjit.h>
|
|
#include <Project64-core/N64System/Recompiler/x86/x86ops.h>
|
|
#include <Project64-core/Settings/GameSettings.h>
|
|
#include <Project64-core/Settings/N64SystemSettings.h>
|
|
#include <Project64-core/Settings/RecompilerSettings.h>
|
|
|
|
class CCodeBlock;
|
|
class CCodeSection;
|
|
|
|
class CX86RecompilerOps :
|
|
public CRecompilerOpsBase,
|
|
protected CN64SystemSettings,
|
|
protected CRecompilerSettings,
|
|
protected CLogSettings,
|
|
private CGameSettings
|
|
{
|
|
friend CX86RegInfo;
|
|
|
|
public:
|
|
CX86RecompilerOps(CN64System & m_System, CCodeBlock & CodeBlock);
|
|
~CX86RecompilerOps();
|
|
|
|
// Trap functions
|
|
void Compile_TrapCompare(RecompilerTrapCompare CompareType);
|
|
|
|
// Branch functions
|
|
void Compile_BranchCompare(RecompilerBranchCompare CompareType);
|
|
void Compile_Branch(RecompilerBranchCompare CompareType, bool Link);
|
|
void Compile_BranchLikely(RecompilerBranchCompare CompareType, bool Link);
|
|
void BNE_Compare();
|
|
void BEQ_Compare();
|
|
void BGTZ_Compare();
|
|
void BLEZ_Compare();
|
|
void BLTZ_Compare();
|
|
void BGEZ_Compare();
|
|
void COP1_BCF_Compare();
|
|
void COP1_BCT_Compare();
|
|
|
|
// Opcode functions
|
|
void J();
|
|
void JAL();
|
|
void ADDI();
|
|
void ADDIU();
|
|
void SLTI();
|
|
void SLTIU();
|
|
void ANDI();
|
|
void ORI();
|
|
void XORI();
|
|
void LUI();
|
|
void DADDI();
|
|
void DADDIU();
|
|
void LDL();
|
|
void LDR();
|
|
void RESERVED31();
|
|
void LB();
|
|
void LH();
|
|
void LWL();
|
|
void LW();
|
|
void LBU();
|
|
void LHU();
|
|
void LWR();
|
|
void LWU();
|
|
void SB();
|
|
void SH();
|
|
void SWL();
|
|
void SW();
|
|
void SWR();
|
|
void SDL();
|
|
void SDR();
|
|
void CACHE();
|
|
void LL();
|
|
void LWC1();
|
|
void LDC1();
|
|
void LD();
|
|
void SC();
|
|
void SWC1();
|
|
void SDC1();
|
|
void SD();
|
|
|
|
// R4300i opcodes: Special
|
|
void SPECIAL_SLL();
|
|
void SPECIAL_SRL();
|
|
void SPECIAL_SRA();
|
|
void SPECIAL_SLLV();
|
|
void SPECIAL_SRLV();
|
|
void SPECIAL_SRAV();
|
|
void SPECIAL_JR();
|
|
void SPECIAL_JALR();
|
|
void SPECIAL_SYSCALL();
|
|
void SPECIAL_BREAK();
|
|
void SPECIAL_SYNC();
|
|
void SPECIAL_MFLO();
|
|
void SPECIAL_MTLO();
|
|
void SPECIAL_MFHI();
|
|
void SPECIAL_MTHI();
|
|
void SPECIAL_DSLLV();
|
|
void SPECIAL_DSRLV();
|
|
void SPECIAL_DSRAV();
|
|
void SPECIAL_MULT();
|
|
void SPECIAL_MULTU();
|
|
void SPECIAL_DIV();
|
|
void SPECIAL_DIVU();
|
|
void SPECIAL_DMULT();
|
|
void SPECIAL_DMULTU();
|
|
void SPECIAL_DDIV();
|
|
void SPECIAL_DDIVU();
|
|
void SPECIAL_ADD();
|
|
void SPECIAL_ADDU();
|
|
void SPECIAL_SUB();
|
|
void SPECIAL_SUBU();
|
|
void SPECIAL_AND();
|
|
void SPECIAL_OR();
|
|
void SPECIAL_XOR();
|
|
void SPECIAL_NOR();
|
|
void SPECIAL_SLT();
|
|
void SPECIAL_SLTU();
|
|
void SPECIAL_DADD();
|
|
void SPECIAL_DADDU();
|
|
void SPECIAL_DSUB();
|
|
void SPECIAL_DSUBU();
|
|
void SPECIAL_DSLL();
|
|
void SPECIAL_DSRL();
|
|
void SPECIAL_DSRA();
|
|
void SPECIAL_DSLL32();
|
|
void SPECIAL_DSRL32();
|
|
void SPECIAL_DSRA32();
|
|
|
|
// COP0 functions
|
|
void COP0_MF();
|
|
void COP0_DMF();
|
|
void COP0_MT();
|
|
void COP0_DMT();
|
|
|
|
// COP0 CO functions
|
|
void COP0_CO_TLBR();
|
|
void COP0_CO_TLBWI();
|
|
void COP0_CO_TLBWR();
|
|
void COP0_CO_TLBP();
|
|
void COP0_CO_ERET();
|
|
|
|
// COP1 functions
|
|
void COP1_MF();
|
|
void COP1_DMF();
|
|
void COP1_CF();
|
|
void COP1_MT();
|
|
void COP1_DMT();
|
|
void COP1_CT();
|
|
|
|
// COP1: S functions
|
|
void COP1_S_ADD();
|
|
void COP1_S_SUB();
|
|
void COP1_S_MUL();
|
|
void COP1_S_DIV();
|
|
void COP1_S_ABS();
|
|
void COP1_S_NEG();
|
|
void COP1_S_SQRT();
|
|
void COP1_S_MOV();
|
|
void COP1_S_ROUND_L();
|
|
void COP1_S_TRUNC_L();
|
|
void COP1_S_CEIL_L();
|
|
void COP1_S_FLOOR_L();
|
|
void COP1_S_ROUND_W();
|
|
void COP1_S_TRUNC_W();
|
|
void COP1_S_CEIL_W();
|
|
void COP1_S_FLOOR_W();
|
|
void COP1_S_CVT_D();
|
|
void COP1_S_CVT_W();
|
|
void COP1_S_CVT_L();
|
|
void COP1_S_CMP();
|
|
|
|
// COP1: D functions
|
|
void COP1_D_ADD();
|
|
void COP1_D_SUB();
|
|
void COP1_D_MUL();
|
|
void COP1_D_DIV();
|
|
void COP1_D_ABS();
|
|
void COP1_D_NEG();
|
|
void COP1_D_SQRT();
|
|
void COP1_D_MOV();
|
|
void COP1_D_ROUND_L();
|
|
void COP1_D_TRUNC_L();
|
|
void COP1_D_CEIL_L();
|
|
void COP1_D_FLOOR_L();
|
|
void COP1_D_ROUND_W();
|
|
void COP1_D_TRUNC_W();
|
|
void COP1_D_CEIL_W();
|
|
void COP1_D_FLOOR_W();
|
|
void COP1_D_CVT_S();
|
|
void COP1_D_CVT_W();
|
|
void COP1_D_CVT_L();
|
|
void COP1_D_CMP();
|
|
|
|
// COP1: W functions
|
|
void COP1_W_CVT_S();
|
|
void COP1_W_CVT_D();
|
|
|
|
// COP1: L functions
|
|
void COP1_L_CVT_S();
|
|
void COP1_L_CVT_D();
|
|
|
|
// Other functions
|
|
void UnknownOpcode();
|
|
|
|
void RecordLLAddress(const asmjit::x86::Gp & AddressReg);
|
|
void RecordLLAddress(uint64_t Address);
|
|
void ClearCachedInstructionInfo();
|
|
void FoundMemoryBreakpoint();
|
|
void PreReadInstruction();
|
|
void PreWriteInstruction();
|
|
void TestWriteBreakpoint(const asmjit::x86::Gp & AddressReg, uint32_t FunctAddress, const char * FunctName);
|
|
void TestReadBreakpoint(const asmjit::x86::Gp & AddressReg, uint32_t FunctAddress, const char * FunctName);
|
|
void TestBreakpoint(const asmjit::x86::Gp & AddressReg, uint32_t FunctAddress, const char * FunctName);
|
|
void EnterCodeBlock();
|
|
void ExitCodeBlock();
|
|
void CompileExitCode();
|
|
void CompileCheckFPUInput(asmjit::x86::Gp RegPointer, FpuOpSize OpSize, bool Conv = false);
|
|
void CompileCheckFPUResult32(int32_t DestReg);
|
|
void CompileCheckFPUResult64(asmjit::x86::Gp RegPointer);
|
|
void CompileCop1Test();
|
|
void CompileInitFpuOperation(CRegBase::FPU_ROUND RoundMethod);
|
|
void CompileInPermLoop(CRegInfo & RegSet, uint32_t ProgramCounter);
|
|
void SyncRegState(const CRegInfo & SyncTo);
|
|
bool SetupRegisterForLoop(CCodeBlock & BlockInfo, const CRegInfo & RegSet);
|
|
CRegInfo & GetRegWorkingSet(void);
|
|
void SetRegWorkingSet(const CRegInfo & RegInfo);
|
|
bool InheritParentInfo();
|
|
void LinkJump(CJumpInfo & JumpInfo);
|
|
void JumpToSection(CCodeSection * Section);
|
|
void JumpToUnknown(CJumpInfo * JumpInfo);
|
|
void SetCurrentPC(uint32_t ProgramCounter);
|
|
uint32_t GetCurrentPC(void);
|
|
void SetCurrentSection(CCodeSection * section);
|
|
void SetNextStepType(PIPELINE_STAGE StepType);
|
|
PIPELINE_STAGE GetNextStepType(void);
|
|
const R4300iOpcode & GetOpcode(void) const;
|
|
const R4300iInstruction & GetInstruction(void) const;
|
|
void PreCompileOpcode(void);
|
|
void PostCompileOpcode(void);
|
|
void CompileExit(uint64_t JumpPC, uint64_t TargetPC, CRegInfo & ExitRegSet, ExitReason Reason);
|
|
|
|
void CompileReadTLBMiss(uint32_t VirtualAddress, const asmjit::x86::Gp & LookUpReg);
|
|
void CompileReadTLBMiss(const asmjit::x86::Gp & AddressReg, const asmjit::x86::Gp & LookUpReg);
|
|
void CompileWriteTLBMiss(const asmjit::x86::Gp & AddressReg, const asmjit::x86::Gp & LookUpReg);
|
|
void UpdateSyncCPU(CRegInfo & RegSet, uint32_t Cycles);
|
|
void UpdateCounters(CRegInfo & RegSet, bool CheckTimer, bool ClearValues = false, bool UpdateTimer = true);
|
|
void CompileSystemCheck(uint32_t TargetPC, const CRegInfo & RegSet);
|
|
void CompileExecuteBP(void);
|
|
void CompileExecuteDelaySlotBP(void);
|
|
static void ChangeDefaultRoundingModel();
|
|
void OverflowDelaySlot(bool TestTimer);
|
|
|
|
CX86Ops & Assembler()
|
|
{
|
|
return m_Assembler;
|
|
}
|
|
|
|
private:
|
|
CX86RecompilerOps(const CX86RecompilerOps &);
|
|
CX86RecompilerOps & operator=(const CX86RecompilerOps &);
|
|
|
|
asmjit::x86::Gp BaseOffsetAddress(bool UseBaseRegister);
|
|
void CompileLoadMemoryValue(asmjit::x86::Gp & AddressReg, const asmjit::x86::Gp & ValueReg, const asmjit::x86::Gp & ValueRegHi, uint8_t ValueSize, bool SignExtend);
|
|
void CompileStoreMemoryValue(asmjit::x86::Gp AddressReg, const asmjit::x86::Gp & ValueReg, const asmjit::x86::Gp & ValueRegHi, uint64_t Value, uint8_t ValueSize);
|
|
void COP1_D_Opcode(void (CX86Ops::*Instruction)(void));
|
|
void COP1_D_Opcode(void (CX86Ops::*Instruction)(const asmjit::x86::Mem &));
|
|
void COP1_S_Opcode(void (CX86Ops::*Instruction)(void));
|
|
void COP1_S_Opcode(void (CX86Ops::*Instruction)(const asmjit::x86::Mem &));
|
|
|
|
void SB_Const(uint32_t Value, uint32_t Addr);
|
|
void SB_Register(const asmjit::x86::Gp & Reg, uint32_t Addr);
|
|
void SH_Const(uint32_t Value, uint32_t Addr);
|
|
void SH_Register(const asmjit::x86::Gp & Reg, uint32_t Addr);
|
|
void SW_Const(uint32_t Value, uint32_t Addr);
|
|
void SW_Register(const asmjit::x86::Gp & Reg, uint32_t Addr);
|
|
void LB_KnownAddress(const asmjit::x86::Gp & Reg, uint32_t VAddr, bool SignExtend);
|
|
void LH_KnownAddress(const asmjit::x86::Gp & Reg, uint32_t VAddr, bool SignExtend);
|
|
void LW_KnownAddress(const asmjit::x86::Gp & Reg, uint32_t VAddr);
|
|
void LW(bool ResultSigned, bool bRecordLLBit);
|
|
void SW(bool bCheckLLbit);
|
|
void CompileExit(uint64_t JumpPC, uint64_t TargetPC, CRegInfo & ExitRegSet, ExitReason Reason, bool CompileNow, void (CX86Ops::*x86Jmp)(const char * LabelName, asmjit::Label & JumpLabel));
|
|
void ResetMemoryStack();
|
|
void COP1_S_CVT(CRegBase::FPU_ROUND RoundMethod, CRegInfo::FPU_STATE OldFormat, CRegInfo::FPU_STATE NewFormat);
|
|
|
|
static void x86CompilerBreakPoint();
|
|
static void x86BreakPointDelaySlot();
|
|
static void x86MemoryBreakPoint();
|
|
static void x86TestReadBreakPoint8();
|
|
static void x86TestReadBreakPoint16();
|
|
static void x86TestReadBreakPoint32();
|
|
static void x86TestReadBreakPoint64();
|
|
static void x86TestWriteBreakPoint8();
|
|
static void x86TestWriteBreakPoint16();
|
|
static void x86TestWriteBreakPoint32();
|
|
static void x86TestWriteBreakPoint64();
|
|
|
|
EXIT_LIST m_ExitInfo;
|
|
CX86Ops m_Assembler;
|
|
PIPELINE_STAGE m_PipelineStage;
|
|
const uint64_t & m_CompilePC;
|
|
CX86RegInfo m_RegWorkingSet;
|
|
CRegInfo m_RegBeforeDelay;
|
|
bool m_EffectDelaySlot;
|
|
static uint32_t m_RoundingModeValue;
|
|
static bool m_TempMemoryUsed;
|
|
static uint32_t m_TempValue32;
|
|
static uint64_t m_TempValue64;
|
|
static uint32_t m_BranchCompare;
|
|
};
|
|
|
|
typedef CX86RecompilerOps CRecompilerOps;
|
|
|
|
#endif
|