mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 23:11:25 +12:00
How to use the register editor: 1. Load an .ELF file 2. Select any instruction from a thread. (This is a workaround to activate the appropriate event listener. This will be changed in the future). 3. Press 'R' key and modify any register you want. Note: The register editor only works with PPU and SPU threads. Additional changes: * Fixed the filesize problem caused by the instruction editor dialog. * Instruction Editor: Fixed small issue in SPU threads
184 lines
No EOL
3.8 KiB
C++
184 lines
No EOL
3.8 KiB
C++
#pragma once
|
|
#include "Emu/Memory/MemoryBlock.h"
|
|
#include "Emu/Cell/PPCDecoder.h"
|
|
|
|
enum PPCThreadType
|
|
{
|
|
PPC_THREAD_PPU,
|
|
PPC_THREAD_SPU,
|
|
PPC_THREAD_RAW_SPU,
|
|
};
|
|
|
|
enum PPCThreadStatus
|
|
{
|
|
PPCThread_Ready,
|
|
PPCThread_Running,
|
|
PPCThread_Paused,
|
|
PPCThread_Stopped,
|
|
PPCThread_Sleeping,
|
|
PPCThread_Break,
|
|
};
|
|
|
|
class PPCThread : public ThreadBase
|
|
{
|
|
protected:
|
|
u32 m_status;
|
|
u32 m_error;
|
|
PPC_Decoder* m_dec;
|
|
wxWindow* DisAsmFrame;
|
|
u32 m_id;
|
|
PPCThreadType m_type;
|
|
u64 m_args[4];
|
|
u64 m_prio;
|
|
bool m_joinable;
|
|
bool m_joining;
|
|
Array<u64> argv_addr;
|
|
u64 m_offset;
|
|
u32 m_exit_status;
|
|
bool m_free_data;
|
|
|
|
public:
|
|
u64 stack_size;
|
|
u64 stack_addr;
|
|
u64 stack_point;
|
|
|
|
virtual void InitRegs()=0;
|
|
|
|
virtual void InitStack();
|
|
virtual void CloseStack();
|
|
|
|
virtual u64 GetStackAddr() const { return stack_addr; }
|
|
virtual u64 GetStackSize() const { return stack_size; }
|
|
virtual u64 GetFreeStackSize() const=0;
|
|
void SetArg(const uint pos, const u64 arg) { assert(pos < 4); m_args[pos] = arg; }
|
|
|
|
|
|
void SetId(const u32 id);
|
|
void SetName(const wxString& name);
|
|
void SetPrio(const u64 prio) { m_prio = prio; }
|
|
void SetOffset(const u64 offset) { m_offset = offset; }
|
|
void SetExitStatus(const u32 status) { m_exit_status = status; }
|
|
|
|
u64 GetOffset() const { return m_offset; }
|
|
u32 GetExitStatus() const { return m_exit_status; }
|
|
u64 GetPrio() const { return m_prio; }
|
|
wxString GetName() const { return m_name; }
|
|
wxString GetFName() const
|
|
{
|
|
return
|
|
wxString::Format("%s[%d] Thread%s",
|
|
GetTypeString(),
|
|
m_id,
|
|
(GetName().IsEmpty() ? "" : " (" + GetName() + ")")
|
|
);
|
|
}
|
|
|
|
static wxString PPCThreadTypeToString(PPCThreadType type)
|
|
{
|
|
switch(type)
|
|
{
|
|
case PPC_THREAD_PPU: return "PPU";
|
|
case PPC_THREAD_SPU: return "SPU";
|
|
case PPC_THREAD_RAW_SPU: return "RawSPU";
|
|
}
|
|
|
|
return "Unknown";
|
|
}
|
|
|
|
wxString GetTypeString() const { return PPCThreadTypeToString(m_type); }
|
|
|
|
virtual wxString GetThreadName() const
|
|
{
|
|
return GetFName() + wxString::Format("[0x%08llx]", PC);
|
|
}
|
|
|
|
public:
|
|
bool isBranch;
|
|
|
|
u64 entry;
|
|
u64 PC;
|
|
u64 nPC;
|
|
u64 cycle;
|
|
|
|
protected:
|
|
PPCThread(PPCThreadType type);
|
|
|
|
public:
|
|
~PPCThread();
|
|
|
|
u32 m_wait_thread_id;
|
|
|
|
wxCriticalSection m_cs_sync;
|
|
bool m_sync_wait;
|
|
void Wait(bool wait);
|
|
void Wait(const PPCThread& thr);
|
|
bool Sync();
|
|
|
|
template<typename T>
|
|
void WaitFor(T func)
|
|
{
|
|
while(func(ThreadStatus()))
|
|
{
|
|
Sleep(1);
|
|
}
|
|
}
|
|
|
|
int ThreadStatus();
|
|
|
|
void NextPc();
|
|
void NextBranchPc();
|
|
void PrevPc();
|
|
void SetBranch(const u64 pc);
|
|
void SetPc(const u64 pc);
|
|
void SetEntry(const u64 entry);
|
|
|
|
void SetError(const u32 error);
|
|
|
|
static wxArrayString ErrorToString(const u32 error);
|
|
wxArrayString ErrorToString() { return ErrorToString(m_error); }
|
|
|
|
bool IsOk() const { return m_error == 0; }
|
|
bool IsRunning() const { return m_status == Running; }
|
|
bool IsPaused() const { return m_status == Paused; }
|
|
bool IsStopped() const { return m_status == Stopped; }
|
|
|
|
bool IsJoinable() const { return m_joinable; }
|
|
bool IsJoining() const { return m_joining; }
|
|
void SetJoinable(bool joinable) { m_joinable = joinable; }
|
|
void SetJoining(bool joining) { m_joining = joining; }
|
|
|
|
u32 GetError() const { return m_error; }
|
|
u32 GetId() const { return m_id; }
|
|
PPCThreadType GetType() const { return m_type; }
|
|
|
|
void Reset();
|
|
void Close();
|
|
void Run();
|
|
void Pause();
|
|
void Resume();
|
|
void Stop();
|
|
|
|
virtual wxString RegsToString() { return wxEmptyString; }
|
|
virtual wxString ReadRegString(wxString reg) { return wxEmptyString; }
|
|
virtual bool WriteRegString(wxString reg, wxString value) { return false; }
|
|
|
|
virtual void Exec();
|
|
void ExecOnce();
|
|
|
|
virtual void AddArgv(const wxString& arg) {}
|
|
|
|
protected:
|
|
virtual void DoReset()=0;
|
|
virtual void DoRun()=0;
|
|
virtual void DoPause()=0;
|
|
virtual void DoResume()=0;
|
|
virtual void DoStop()=0;
|
|
|
|
public:
|
|
virtual void Task();
|
|
|
|
private:
|
|
virtual void DoCode(const s32 code)=0;
|
|
};
|
|
|
|
PPCThread* GetCurrentPPCThread(); |