Merge pull request #621 from lioncash/unimpl
Remove unimplemented function declarations
This commit is contained in:
commit
8f7d89794e
|
@ -25,7 +25,6 @@ public:
|
|||
void LogF ( LPCTSTR Message, ... );
|
||||
void LogArgs ( LPCTSTR Message, va_list & args );
|
||||
bool Empty ( void );
|
||||
void Reset ( void );
|
||||
void Close ( void );
|
||||
|
||||
inline void SetMaxFileSize ( ULONG Size )
|
||||
|
|
|
@ -67,7 +67,6 @@ public:
|
|||
|
||||
//Compilation Functions
|
||||
void ResetMemoryStack();
|
||||
void ResetTLB();
|
||||
|
||||
void Compile_LB();
|
||||
void Compile_LBU();
|
||||
|
|
|
@ -1390,7 +1390,6 @@ void CN64System::DumpSyncErrors (CN64System * SecondCPU)
|
|||
|
||||
g_Notify->DisplayError(L"Sync Error");
|
||||
g_Notify->BreakPoint(__FILEW__,__LINE__);
|
||||
// AddEvent(CloseCPU);
|
||||
}
|
||||
|
||||
bool CN64System::SaveState()
|
||||
|
|
|
@ -100,7 +100,6 @@ private:
|
|||
|
||||
void ExecuteCPU ();
|
||||
void RefreshScreen ();
|
||||
bool InternalEvent ();
|
||||
void DumpSyncErrors ( CN64System * SecondCPU );
|
||||
void StartEmulation2 ( bool NewThread );
|
||||
bool SetActiveSystem ( bool bActive = true );
|
||||
|
@ -111,12 +110,6 @@ private:
|
|||
void ExecuteInterpret();
|
||||
void ExecuteSyncCPU();
|
||||
|
||||
void AddEvent(SystemEvent Event);
|
||||
|
||||
//Notification of changing conditions
|
||||
void FunctionStarted(DWORD NewFuncAddress, DWORD OldFuncAddress, DWORD ReturnAddress);
|
||||
void FunctionEnded(DWORD ReturnAddress, DWORD StackPos);
|
||||
|
||||
//Mark information saying that the CPU has stopped
|
||||
void CpuStopped();
|
||||
|
||||
|
|
|
@ -52,7 +52,6 @@ private:
|
|||
void DetermineLoops ();
|
||||
void LogSectionInfo ();
|
||||
bool SetSection ( CCodeSection * & Section, CCodeSection * CurrentSection, DWORD TargetPC, bool LinkAllowed, DWORD CurrentPC );
|
||||
bool SetJumpInfo ( CCodeSection * & Section, DWORD TargetPC, DWORD CurrentPC );
|
||||
bool AnalyzeInstruction ( DWORD PC, DWORD & TargetPC, DWORD & ContinuePC, bool & LikelyBranch, bool & IncludeDelaySlot,
|
||||
bool & EndBlock, bool & PermLoop );
|
||||
|
||||
|
|
|
@ -25,7 +25,6 @@ public:
|
|||
void SetJumpAddress ( DWORD JumpPC, DWORD TargetPC, bool PermLoop );
|
||||
void SetContinueAddress ( DWORD JumpPC, DWORD TargetPC );
|
||||
void CompileCop1Test ();
|
||||
bool CreateSectionLinkage ();
|
||||
bool GenerateX86Code ( DWORD Test );
|
||||
void GenerateSectionLinkage ();
|
||||
void CompileExit ( DWORD JumpPC, DWORD TargetPC, CRegInfo &ExitRegSet, CExitInfo::EXIT_REASON reason, bool CompileNow, void (*x86Jmp)(const char * Label, DWORD Value));
|
||||
|
|
|
@ -39,8 +39,6 @@ public:
|
|||
void Reset();
|
||||
void ResetRecompCode(bool bAllocate);
|
||||
|
||||
bool GenerateX86Code (CCodeBlock & BlockInfo, CCodeSection * Section, DWORD Test );
|
||||
|
||||
//Self modifying code methods
|
||||
void ClearRecompCode_Virt ( DWORD VirtualAddress, int length, REMOVE_REASON Reason );
|
||||
void ClearRecompCode_Phys ( DWORD PhysicalAddress, int length, REMOVE_REASON Reason );
|
||||
|
@ -55,11 +53,6 @@ private:
|
|||
CRecompiler& operator=(const CRecompiler&); // Disable assignment
|
||||
|
||||
CCompiledFunc * CompilerCode();
|
||||
bool Compiler4300iBlock ( CCompiledFunc * info );
|
||||
|
||||
// Compiling code
|
||||
bool CreateSectionLinkage ( CCodeSection * Section );
|
||||
bool DisplaySectionInformation (CCodeSection * Section, DWORD ID, DWORD Test);
|
||||
|
||||
// Main loops for the different look up methods
|
||||
void RecompilerMain_VirtualTable();
|
||||
|
@ -70,8 +63,6 @@ private:
|
|||
void RecompilerMain_Lookup_validate();
|
||||
void RecompilerMain_Lookup_validate_TLB();
|
||||
|
||||
void RemoveFunction (CCompiledFunc * FunInfo, bool DelaySlot, REMOVE_REASON Reason );
|
||||
|
||||
CCompiledFuncList m_Functions;
|
||||
CRegisters & m_Registers;
|
||||
CProfiling & m_Profile;
|
||||
|
|
|
@ -203,7 +203,6 @@ protected:
|
|||
static void ExitCodeBlock();
|
||||
static void CompileReadTLBMiss(DWORD VirtualAddress, x86Reg LookUpReg);
|
||||
static void CompileReadTLBMiss(x86Reg AddressReg, x86Reg LookUpReg);
|
||||
static void CompileWriteTLBMiss(DWORD VirtualAddress, x86Reg LookUpReg);
|
||||
static void CompileWriteTLBMiss(x86Reg AddressReg, x86Reg LookUpReg);
|
||||
static void UpdateSyncCPU(CRegInfo & RegSet, DWORD Cycles);
|
||||
static void UpdateCounters(CRegInfo & RegSet, bool CheckTimer, bool ClearValues = false);
|
||||
|
|
|
@ -66,7 +66,6 @@ private:
|
|||
virtual int GetSettingStartRange() const { return FirstRSPSettings; }
|
||||
|
||||
bool LoadFunctions ( void );
|
||||
bool Initiate_1_0 ( CPlugins * Plugins, CN64System * System );
|
||||
void UnloadPluginDetails ( void );
|
||||
|
||||
RSPDEBUG_INFO m_RSPDebug;
|
||||
|
|
|
@ -208,7 +208,6 @@ public:
|
|||
void ShowRomList ( void );
|
||||
bool ShowingRomBrowser ( void ) { return m_ShowingRomBrowser; }
|
||||
LPCSTR CurrentedSelectedRom ( void ) { return m_SelectedRom.c_str(); }
|
||||
void Store7ZipInfo ( C7zip & ZipFile, int FileNo );
|
||||
|
||||
static void GetFieldInfo ( ROMBROWSER_FIELDS_LIST & Fields, bool UseDefault = false );
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue