mirror of https://github.com/PCSX2/pcsx2.git
72 lines
1.6 KiB
C++
72 lines
1.6 KiB
C++
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#include "BiosDebugData.h"
|
|
#include "IopMem.h"
|
|
#include "Memory.h"
|
|
|
|
|
|
std::vector<std::unique_ptr<BiosThread>> getEEThreads()
|
|
{
|
|
std::vector<std::unique_ptr<BiosThread>> threads;
|
|
|
|
if (CurrentBiosInformation.eeThreadListAddr <= 0)
|
|
return threads;
|
|
|
|
const u32 start = CurrentBiosInformation.eeThreadListAddr & 0x3fffff;
|
|
|
|
for (int tid = 0; tid < 256; tid++)
|
|
{
|
|
|
|
EEInternalThread* internal = static_cast<EEInternalThread*>(PSM(start + tid * sizeof(EEInternalThread)));
|
|
if (internal->status != (int)ThreadStatus::THS_BAD)
|
|
{
|
|
auto thread = std::make_unique<EEThread>(tid, *internal);
|
|
threads.push_back(std::move(thread));
|
|
}
|
|
}
|
|
|
|
return threads;
|
|
}
|
|
|
|
std::vector<std::unique_ptr<BiosThread>> getIOPThreads()
|
|
{
|
|
std::vector<std::unique_ptr<BiosThread>> threads;
|
|
|
|
if (CurrentBiosInformation.iopThreadListAddr <= 0)
|
|
return threads;
|
|
|
|
u32 item = iopMemRead32(CurrentBiosInformation.iopThreadListAddr);
|
|
|
|
while (item != 0)
|
|
{
|
|
IOPInternalThread data{};
|
|
|
|
u16 tag = iopMemRead16(item + 0x8);
|
|
if (tag != 0x7f01)
|
|
{
|
|
// something went wrong
|
|
return {};
|
|
}
|
|
|
|
data.stackTop = iopMemRead32(item + 0x3c);
|
|
data.status = iopMemRead8(item + 0xc);
|
|
data.tid = iopMemRead16(item + 0xa);
|
|
data.entrypoint = iopMemRead32(item + 0x38);
|
|
data.waitstate = iopMemRead16(item + 0xe);
|
|
data.initPriority = iopMemRead16(item + 0x2e);
|
|
|
|
data.SavedSP = iopMemRead32(item + 0x10);
|
|
|
|
data.PC = iopMemRead32(data.SavedSP + 0x8c);
|
|
|
|
auto thread = std::make_unique<IOPThread>(data);
|
|
threads.push_back(std::move(thread));
|
|
|
|
item = iopMemRead32(item + 0x24);
|
|
}
|
|
|
|
|
|
return threads;
|
|
}
|