mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12:00
153 lines
2.9 KiB
C++
153 lines
2.9 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/DbgCommand.h"
|
|
|
|
#include "Emu/IdManager.h"
|
|
#include "CPUThreadManager.h"
|
|
#include "Emu/Cell/PPUThread.h"
|
|
#include "Emu/Cell/SPUThread.h"
|
|
#include "Emu/Cell/RawSPUThread.h"
|
|
#include "Emu/ARMv7/ARMv7Thread.h"
|
|
|
|
CPUThreadManager::CPUThreadManager()
|
|
{
|
|
}
|
|
|
|
CPUThreadManager::~CPUThreadManager()
|
|
{
|
|
Close();
|
|
}
|
|
|
|
void CPUThreadManager::Close()
|
|
{
|
|
while(m_threads.size()) RemoveThread(m_threads[0]->GetId());
|
|
}
|
|
|
|
CPUThread& CPUThreadManager::AddThread(CPUThreadType type)
|
|
{
|
|
std::lock_guard<std::mutex> lock(m_mtx_thread);
|
|
|
|
std::shared_ptr<CPUThread> new_thread;
|
|
|
|
switch(type)
|
|
{
|
|
case CPU_THREAD_PPU:
|
|
{
|
|
new_thread.reset(new PPUThread());
|
|
break;
|
|
}
|
|
case CPU_THREAD_SPU:
|
|
{
|
|
new_thread.reset(new SPUThread());
|
|
break;
|
|
}
|
|
case CPU_THREAD_RAW_SPU:
|
|
{
|
|
new_thread.reset(new RawSPUThread());
|
|
break;
|
|
}
|
|
case CPU_THREAD_ARMv7:
|
|
{
|
|
new_thread.reset(new ARMv7Thread());
|
|
break;
|
|
}
|
|
default: assert(0);
|
|
}
|
|
|
|
new_thread->SetId(Emu.GetIdManager().GetNewID(new_thread->GetTypeString() + " Thread", new_thread));
|
|
|
|
m_threads.push_back(new_thread);
|
|
SendDbgCommand(DID_CREATE_THREAD, new_thread.get());
|
|
|
|
return *new_thread;
|
|
}
|
|
|
|
void CPUThreadManager::RemoveThread(const u32 id)
|
|
{
|
|
std::lock_guard<std::mutex> lock(m_mtx_thread);
|
|
|
|
std::shared_ptr<CPUThread> thr;
|
|
u32 thread_index = 0;
|
|
|
|
for (u32 i = 0; i < m_threads.size(); ++i)
|
|
{
|
|
if (m_threads[i]->GetId() != id) continue;
|
|
|
|
thr = m_threads[i];
|
|
thread_index = i;
|
|
}
|
|
|
|
if (thr)
|
|
{
|
|
SendDbgCommand(DID_REMOVE_THREAD, thr.get());
|
|
thr->Close();
|
|
|
|
m_threads.erase(m_threads.begin() + thread_index);
|
|
}
|
|
|
|
// Removing the ID should trigger the actual deletion of the thread
|
|
Emu.GetIdManager().RemoveID(id);
|
|
Emu.CheckStatus();
|
|
}
|
|
|
|
s32 CPUThreadManager::GetThreadNumById(CPUThreadType type, u32 id)
|
|
{
|
|
std::lock_guard<std::mutex> lock(m_mtx_thread);
|
|
|
|
s32 num = 0;
|
|
|
|
for(u32 i=0; i<m_threads.size(); ++i)
|
|
{
|
|
if(m_threads[i]->GetId() == id) return num;
|
|
if(m_threads[i]->GetType() == type) num++;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
std::shared_ptr<CPUThread> CPUThreadManager::GetThread(u32 id)
|
|
{
|
|
std::shared_ptr<CPUThread> res;
|
|
|
|
if (!id) return nullptr;
|
|
|
|
if (!Emu.GetIdManager().GetIDData(id, res)) return nullptr;
|
|
|
|
return res;
|
|
}
|
|
|
|
std::shared_ptr<CPUThread> CPUThreadManager::GetThread(u32 id, CPUThreadType type)
|
|
{
|
|
std::shared_ptr<CPUThread> res;
|
|
|
|
if (!id) return nullptr;
|
|
|
|
if (!Emu.GetIdManager().GetIDData(id, res)) return nullptr;
|
|
|
|
if (res->GetType() != type) return nullptr;
|
|
|
|
return res;
|
|
}
|
|
|
|
std::shared_ptr<CPUThread> CPUThreadManager::GetRawSPUThread(u32 num)
|
|
{
|
|
if (num < sizeof(Memory.RawSPUMem) / sizeof(Memory.RawSPUMem[0]))
|
|
{
|
|
return GetThread(((RawSPUThread*)Memory.RawSPUMem[num])->GetId());
|
|
}
|
|
else
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
void CPUThreadManager::Exec()
|
|
{
|
|
std::lock_guard<std::mutex> lock(m_mtx_thread);
|
|
|
|
for(u32 i = 0; i < m_threads.size(); ++i)
|
|
{
|
|
m_threads[i]->Exec();
|
|
}
|
|
}
|