mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Merge pull request #9387 from lioncash/priv
DSPCore: Make several SDSP members private
This commit is contained in:
commit
351fb71653
@ -119,8 +119,8 @@ SDSP::~SDSP() = default;
|
|||||||
|
|
||||||
bool SDSP::Initialize(const DSPInitOptions& opts)
|
bool SDSP::Initialize(const DSPInitOptions& opts)
|
||||||
{
|
{
|
||||||
step_counter = 0;
|
m_step_counter = 0;
|
||||||
accelerator = std::make_unique<LLEAccelerator>(*this);
|
m_accelerator = std::make_unique<LLEAccelerator>(*this);
|
||||||
|
|
||||||
irom = static_cast<u16*>(Common::AllocateMemoryPages(DSP_IROM_BYTE_SIZE));
|
irom = static_cast<u16*>(Common::AllocateMemoryPages(DSP_IROM_BYTE_SIZE));
|
||||||
iram = static_cast<u16*>(Common::AllocateMemoryPages(DSP_IRAM_BYTE_SIZE));
|
iram = static_cast<u16*>(Common::AllocateMemoryPages(DSP_IRAM_BYTE_SIZE));
|
||||||
@ -384,9 +384,9 @@ void SDSP::DoState(PointerWrap& p)
|
|||||||
p.Do(stack);
|
p.Do(stack);
|
||||||
}
|
}
|
||||||
|
|
||||||
p.Do(step_counter);
|
p.Do(m_step_counter);
|
||||||
p.DoArray(ifx_regs);
|
p.DoArray(m_ifx_regs);
|
||||||
accelerator->DoState(p);
|
m_accelerator->DoState(p);
|
||||||
p.Do(m_mailbox[0]);
|
p.Do(m_mailbox[0]);
|
||||||
p.Do(m_mailbox[1]);
|
p.Do(m_mailbox[1]);
|
||||||
Common::UnWriteProtectMemory(iram, DSP_IRAM_BYTE_SIZE, false);
|
Common::UnWriteProtectMemory(iram, DSP_IRAM_BYTE_SIZE, false);
|
||||||
|
@ -396,6 +396,12 @@ struct SDSP
|
|||||||
// Writes a value to a given register.
|
// Writes a value to a given register.
|
||||||
void WriteRegister(size_t reg, u16 val);
|
void WriteRegister(size_t reg, u16 val);
|
||||||
|
|
||||||
|
// Advances the step counter used for debugging purposes.
|
||||||
|
void AdvanceStepCounter() { ++m_step_counter; }
|
||||||
|
|
||||||
|
// Sets the calculated IRAM CRC for debugging purposes.
|
||||||
|
void SetIRAMCRC(u32 crc) { m_iram_crc = crc; }
|
||||||
|
|
||||||
// Saves and loads any necessary state.
|
// Saves and loads any necessary state.
|
||||||
void DoState(PointerWrap& p);
|
void DoState(PointerWrap& p);
|
||||||
|
|
||||||
@ -425,15 +431,6 @@ struct SDSP
|
|||||||
// the stack overflows, you're screwed.
|
// the stack overflows, you're screwed.
|
||||||
u16 reg_stacks[4][DSP_STACK_DEPTH]{};
|
u16 reg_stacks[4][DSP_STACK_DEPTH]{};
|
||||||
|
|
||||||
// For debugging.
|
|
||||||
u32 iram_crc = 0;
|
|
||||||
u64 step_counter = 0;
|
|
||||||
|
|
||||||
// Accelerator / DMA / other hardware registers. Not GPRs.
|
|
||||||
std::array<u16, 256> ifx_regs{};
|
|
||||||
|
|
||||||
std::unique_ptr<Accelerator> accelerator;
|
|
||||||
|
|
||||||
// When state saving, all of the above can just be memcpy'd into the save state.
|
// When state saving, all of the above can just be memcpy'd into the save state.
|
||||||
// The below needs special handling.
|
// The below needs special handling.
|
||||||
u16* iram = nullptr;
|
u16* iram = nullptr;
|
||||||
@ -455,6 +452,14 @@ private:
|
|||||||
|
|
||||||
u16 ReadIFXImpl(u16 address);
|
u16 ReadIFXImpl(u16 address);
|
||||||
|
|
||||||
|
// For debugging.
|
||||||
|
u32 m_iram_crc = 0;
|
||||||
|
u64 m_step_counter = 0;
|
||||||
|
|
||||||
|
// Accelerator / DMA / other hardware registers. Not GPRs.
|
||||||
|
std::array<u16, 256> m_ifx_regs{};
|
||||||
|
|
||||||
|
std::unique_ptr<Accelerator> m_accelerator;
|
||||||
std::array<std::atomic<u32>, 2> m_mailbox;
|
std::array<std::atomic<u32>, 2> m_mailbox;
|
||||||
DSPCore& m_dsp_core;
|
DSPCore& m_dsp_core;
|
||||||
Analyzer m_analyzer;
|
Analyzer m_analyzer;
|
||||||
|
@ -23,7 +23,7 @@ namespace DSP
|
|||||||
{
|
{
|
||||||
void SDSP::InitializeIFX()
|
void SDSP::InitializeIFX()
|
||||||
{
|
{
|
||||||
ifx_regs.fill(0);
|
m_ifx_regs.fill(0);
|
||||||
|
|
||||||
GetMailbox(Mailbox::CPU).store(0);
|
GetMailbox(Mailbox::CPU).store(0);
|
||||||
GetMailbox(Mailbox::DSP).store(0);
|
GetMailbox(Mailbox::DSP).store(0);
|
||||||
@ -118,14 +118,14 @@ void SDSP::WriteIFX(u32 address, u16 value)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case DSP_DSBL:
|
case DSP_DSBL:
|
||||||
ifx_regs[DSP_DSBL] = value;
|
m_ifx_regs[DSP_DSBL] = value;
|
||||||
ifx_regs[DSP_DSCR] |= 4; // Doesn't really matter since we do DMA instantly
|
m_ifx_regs[DSP_DSCR] |= 4; // Doesn't really matter since we do DMA instantly
|
||||||
if (!ifx_regs[DSP_AMDM])
|
if (!m_ifx_regs[DSP_AMDM])
|
||||||
DoDMA();
|
DoDMA();
|
||||||
else
|
else
|
||||||
NOTICE_LOG_FMT(DSPLLE, "Masked DMA skipped");
|
NOTICE_LOG_FMT(DSPLLE, "Masked DMA skipped");
|
||||||
ifx_regs[DSP_DSCR] &= ~4;
|
m_ifx_regs[DSP_DSCR] &= ~4;
|
||||||
ifx_regs[DSP_DSBL] = 0;
|
m_ifx_regs[DSP_DSBL] = 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DSP_GAIN:
|
case DSP_GAIN:
|
||||||
@ -138,44 +138,46 @@ void SDSP::WriteIFX(u32 address, u16 value)
|
|||||||
case DSP_DSMAH:
|
case DSP_DSMAH:
|
||||||
case DSP_DSMAL:
|
case DSP_DSMAL:
|
||||||
case DSP_DSCR:
|
case DSP_DSCR:
|
||||||
ifx_regs[address & 0xFF] = value;
|
m_ifx_regs[address & 0xFF] = value;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DSP_ACSAH:
|
case DSP_ACSAH:
|
||||||
accelerator->SetStartAddress(value << 16 | static_cast<u16>(accelerator->GetStartAddress()));
|
m_accelerator->SetStartAddress(value << 16 |
|
||||||
|
static_cast<u16>(m_accelerator->GetStartAddress()));
|
||||||
break;
|
break;
|
||||||
case DSP_ACSAL:
|
case DSP_ACSAL:
|
||||||
accelerator->SetStartAddress(static_cast<u16>(accelerator->GetStartAddress() >> 16) << 16 |
|
m_accelerator->SetStartAddress(static_cast<u16>(m_accelerator->GetStartAddress() >> 16) << 16 |
|
||||||
value);
|
value);
|
||||||
break;
|
break;
|
||||||
case DSP_ACEAH:
|
case DSP_ACEAH:
|
||||||
accelerator->SetEndAddress(value << 16 | static_cast<u16>(accelerator->GetEndAddress()));
|
m_accelerator->SetEndAddress(value << 16 | static_cast<u16>(m_accelerator->GetEndAddress()));
|
||||||
break;
|
break;
|
||||||
case DSP_ACEAL:
|
case DSP_ACEAL:
|
||||||
accelerator->SetEndAddress(static_cast<u16>(accelerator->GetEndAddress() >> 16) << 16 | value);
|
m_accelerator->SetEndAddress(static_cast<u16>(m_accelerator->GetEndAddress() >> 16) << 16 |
|
||||||
break;
|
|
||||||
case DSP_ACCAH:
|
|
||||||
accelerator->SetCurrentAddress(value << 16 |
|
|
||||||
static_cast<u16>(accelerator->GetCurrentAddress()));
|
|
||||||
break;
|
|
||||||
case DSP_ACCAL:
|
|
||||||
accelerator->SetCurrentAddress(static_cast<u16>(accelerator->GetCurrentAddress() >> 16) << 16 |
|
|
||||||
value);
|
value);
|
||||||
break;
|
break;
|
||||||
|
case DSP_ACCAH:
|
||||||
|
m_accelerator->SetCurrentAddress(value << 16 |
|
||||||
|
static_cast<u16>(m_accelerator->GetCurrentAddress()));
|
||||||
|
break;
|
||||||
|
case DSP_ACCAL:
|
||||||
|
m_accelerator->SetCurrentAddress(
|
||||||
|
static_cast<u16>(m_accelerator->GetCurrentAddress() >> 16) << 16 | value);
|
||||||
|
break;
|
||||||
case DSP_FORMAT:
|
case DSP_FORMAT:
|
||||||
accelerator->SetSampleFormat(value);
|
m_accelerator->SetSampleFormat(value);
|
||||||
break;
|
break;
|
||||||
case DSP_YN1:
|
case DSP_YN1:
|
||||||
accelerator->SetYn1(value);
|
m_accelerator->SetYn1(value);
|
||||||
break;
|
break;
|
||||||
case DSP_YN2:
|
case DSP_YN2:
|
||||||
accelerator->SetYn2(value);
|
m_accelerator->SetYn2(value);
|
||||||
break;
|
break;
|
||||||
case DSP_PRED_SCALE:
|
case DSP_PRED_SCALE:
|
||||||
accelerator->SetPredScale(value);
|
m_accelerator->SetPredScale(value);
|
||||||
break;
|
break;
|
||||||
case DSP_ACDATA1: // Accelerator write (Zelda type) - "UnkZelda"
|
case DSP_ACDATA1: // Accelerator write (Zelda type) - "UnkZelda"
|
||||||
accelerator->WriteD3(value);
|
m_accelerator->WriteD3(value);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@ -197,7 +199,7 @@ void SDSP::WriteIFX(u32 address, u16 value)
|
|||||||
{
|
{
|
||||||
ERROR_LOG_FMT(DSPLLE, "{:04x} MW {:04x} ({:04x})", pc, address, value);
|
ERROR_LOG_FMT(DSPLLE, "{:04x} MW {:04x} ({:04x})", pc, address, value);
|
||||||
}
|
}
|
||||||
ifx_regs[address & 0xFF] = value;
|
m_ifx_regs[address & 0xFF] = value;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -219,36 +221,36 @@ u16 SDSP::ReadIFXImpl(u16 address)
|
|||||||
return ReadMailboxLow(Mailbox::CPU);
|
return ReadMailboxLow(Mailbox::CPU);
|
||||||
|
|
||||||
case DSP_DSCR:
|
case DSP_DSCR:
|
||||||
return ifx_regs[address & 0xFF];
|
return m_ifx_regs[address & 0xFF];
|
||||||
|
|
||||||
case DSP_ACSAH:
|
case DSP_ACSAH:
|
||||||
return static_cast<u16>(accelerator->GetStartAddress() >> 16);
|
return static_cast<u16>(m_accelerator->GetStartAddress() >> 16);
|
||||||
case DSP_ACSAL:
|
case DSP_ACSAL:
|
||||||
return static_cast<u16>(accelerator->GetStartAddress());
|
return static_cast<u16>(m_accelerator->GetStartAddress());
|
||||||
case DSP_ACEAH:
|
case DSP_ACEAH:
|
||||||
return static_cast<u16>(accelerator->GetEndAddress() >> 16);
|
return static_cast<u16>(m_accelerator->GetEndAddress() >> 16);
|
||||||
case DSP_ACEAL:
|
case DSP_ACEAL:
|
||||||
return static_cast<u16>(accelerator->GetEndAddress());
|
return static_cast<u16>(m_accelerator->GetEndAddress());
|
||||||
case DSP_ACCAH:
|
case DSP_ACCAH:
|
||||||
return static_cast<u16>(accelerator->GetCurrentAddress() >> 16);
|
return static_cast<u16>(m_accelerator->GetCurrentAddress() >> 16);
|
||||||
case DSP_ACCAL:
|
case DSP_ACCAL:
|
||||||
return static_cast<u16>(accelerator->GetCurrentAddress());
|
return static_cast<u16>(m_accelerator->GetCurrentAddress());
|
||||||
case DSP_FORMAT:
|
case DSP_FORMAT:
|
||||||
return accelerator->GetSampleFormat();
|
return m_accelerator->GetSampleFormat();
|
||||||
case DSP_YN1:
|
case DSP_YN1:
|
||||||
return accelerator->GetYn1();
|
return m_accelerator->GetYn1();
|
||||||
case DSP_YN2:
|
case DSP_YN2:
|
||||||
return accelerator->GetYn2();
|
return m_accelerator->GetYn2();
|
||||||
case DSP_PRED_SCALE:
|
case DSP_PRED_SCALE:
|
||||||
return accelerator->GetPredScale();
|
return m_accelerator->GetPredScale();
|
||||||
case DSP_ACCELERATOR: // ADPCM Accelerator reads
|
case DSP_ACCELERATOR: // ADPCM Accelerator reads
|
||||||
return accelerator->Read(reinterpret_cast<s16*>(&ifx_regs[DSP_COEF_A1_0]));
|
return m_accelerator->Read(reinterpret_cast<s16*>(&m_ifx_regs[DSP_COEF_A1_0]));
|
||||||
case DSP_ACDATA1: // Accelerator reads (Zelda type) - "UnkZelda"
|
case DSP_ACDATA1: // Accelerator reads (Zelda type) - "UnkZelda"
|
||||||
return accelerator->ReadD3();
|
return m_accelerator->ReadD3();
|
||||||
|
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
const u16 ifx_reg = ifx_regs[address & 0xFF];
|
const u16 ifx_reg = m_ifx_regs[address & 0xFF];
|
||||||
|
|
||||||
if ((address & 0xff) >= 0xa0)
|
if ((address & 0xff) >= 0xa0)
|
||||||
{
|
{
|
||||||
@ -288,7 +290,7 @@ const u8* SDSP::IDMAIn(u16 dsp_addr, u32 addr, u32 size)
|
|||||||
|
|
||||||
Host::CodeLoaded(m_dsp_core, addr, size);
|
Host::CodeLoaded(m_dsp_core, addr, size);
|
||||||
NOTICE_LOG_FMT(DSPLLE, "*** Copy new UCode from {:#010x} to {:#06x} (crc: {:#08x})", addr,
|
NOTICE_LOG_FMT(DSPLLE, "*** Copy new UCode from {:#010x} to {:#06x} (crc: {:#08x})", addr,
|
||||||
dsp_addr, iram_crc);
|
dsp_addr, m_iram_crc);
|
||||||
|
|
||||||
return reinterpret_cast<const u8*>(iram) + dsp_addr;
|
return reinterpret_cast<const u8*>(iram) + dsp_addr;
|
||||||
}
|
}
|
||||||
@ -321,10 +323,10 @@ const u8* SDSP::DDMAOut(u16 dsp_addr, u32 addr, u32 size)
|
|||||||
|
|
||||||
void SDSP::DoDMA()
|
void SDSP::DoDMA()
|
||||||
{
|
{
|
||||||
const u32 addr = (ifx_regs[DSP_DSMAH] << 16) | ifx_regs[DSP_DSMAL];
|
const u32 addr = (m_ifx_regs[DSP_DSMAH] << 16) | m_ifx_regs[DSP_DSMAL];
|
||||||
const u16 ctl = ifx_regs[DSP_DSCR];
|
const u16 ctl = m_ifx_regs[DSP_DSCR];
|
||||||
const u16 dsp_addr = ifx_regs[DSP_DSPA] * 2;
|
const u16 dsp_addr = m_ifx_regs[DSP_DSPA] * 2;
|
||||||
const u16 len = ifx_regs[DSP_DSBL];
|
const u16 len = m_ifx_regs[DSP_DSBL];
|
||||||
|
|
||||||
if (len > 0x4000)
|
if (len > 0x4000)
|
||||||
{
|
{
|
||||||
|
@ -49,7 +49,7 @@ void Interpreter::Step()
|
|||||||
auto& state = m_dsp_core.DSPState();
|
auto& state = m_dsp_core.DSPState();
|
||||||
|
|
||||||
m_dsp_core.CheckExceptions();
|
m_dsp_core.CheckExceptions();
|
||||||
state.step_counter++;
|
state.AdvanceStepCounter();
|
||||||
|
|
||||||
const u16 opc = state.FetchInstruction();
|
const u16 opc = state.FetchInstruction();
|
||||||
ExecuteInstruction(UDSPInstruction{opc});
|
ExecuteInstruction(UDSPInstruction{opc});
|
||||||
|
@ -77,7 +77,7 @@ void CodeLoaded(DSPCore& dsp, const u8* ptr, size_t size)
|
|||||||
{
|
{
|
||||||
auto& state = dsp.DSPState();
|
auto& state = dsp.DSPState();
|
||||||
const u32 iram_crc = Common::HashEctor(ptr, size);
|
const u32 iram_crc = Common::HashEctor(ptr, size);
|
||||||
state.iram_crc = iram_crc;
|
state.SetIRAMCRC(iram_crc);
|
||||||
|
|
||||||
if (SConfig::GetInstance().m_DumpUCode)
|
if (SConfig::GetInstance().m_DumpUCode)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user