2009-03-23 09:10:32 +00:00
|
|
|
/*====================================================================
|
|
|
|
|
|
|
|
filename: gdsp_interpreter.cpp
|
|
|
|
project: GCemu
|
|
|
|
created: 2004-6-18
|
|
|
|
mail: duddie@walla.com
|
|
|
|
|
|
|
|
Copyright (c) 2005 Duddie & Tratax
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
====================================================================*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2009-04-01 20:22:43 +00:00
|
|
|
#include "DSPTables.h"
|
2009-04-12 10:21:40 +00:00
|
|
|
#include "DSPHost.h"
|
2009-05-01 20:06:24 +00:00
|
|
|
#include "DSPCore.h"
|
|
|
|
#include "DSPAnalyzer.h"
|
2009-04-01 20:22:43 +00:00
|
|
|
|
2009-03-23 09:10:32 +00:00
|
|
|
#include "gdsp_interface.h"
|
2009-06-28 10:00:25 +00:00
|
|
|
#include "DSPIntUtil.h"
|
2009-03-23 09:10:32 +00:00
|
|
|
|
2009-05-01 20:06:24 +00:00
|
|
|
namespace DSPInterpreter {
|
2009-03-23 09:10:32 +00:00
|
|
|
|
2009-04-08 20:26:33 +00:00
|
|
|
volatile u32 gdsp_running;
|
2009-04-05 09:23:43 +00:00
|
|
|
|
2009-06-28 10:00:25 +00:00
|
|
|
// NOTE: These have nothing to do with g_dsp.r[DSP_REG_CR].
|
|
|
|
|
2009-04-05 11:55:18 +00:00
|
|
|
// Hm, should instructions that change CR use this? Probably not (but they
|
|
|
|
// should call UpdateCachedCR())
|
2009-05-01 22:17:22 +00:00
|
|
|
void WriteCR(u16 val)
|
2009-03-23 09:10:32 +00:00
|
|
|
{
|
|
|
|
// reset
|
|
|
|
if (val & 0x0001)
|
|
|
|
{
|
2009-06-07 11:06:40 +00:00
|
|
|
DSPCore_Reset();
|
2009-03-23 09:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
val &= ~0x0001;
|
|
|
|
|
|
|
|
// update cr
|
|
|
|
g_dsp.cr = val;
|
|
|
|
}
|
|
|
|
|
2009-04-05 11:55:18 +00:00
|
|
|
// Hm, should instructions that read CR use this? (Probably not).
|
2009-05-01 22:17:22 +00:00
|
|
|
u16 ReadCR()
|
2009-03-23 09:10:32 +00:00
|
|
|
{
|
|
|
|
if (g_dsp.pc & 0x8000)
|
|
|
|
{
|
|
|
|
g_dsp.cr |= 0x800;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_dsp.cr &= ~0x800;
|
|
|
|
}
|
|
|
|
|
2009-04-05 11:55:18 +00:00
|
|
|
return g_dsp.cr;
|
2009-03-23 09:10:32 +00:00
|
|
|
}
|
|
|
|
|
2009-06-28 10:00:25 +00:00
|
|
|
|
|
|
|
|
2009-05-01 22:17:22 +00:00
|
|
|
void HandleLoop()
|
2009-04-09 13:03:41 +00:00
|
|
|
{
|
2009-04-08 20:26:33 +00:00
|
|
|
// Handle looping hardware.
|
|
|
|
u16& rLoopCounter = g_dsp.r[DSP_REG_ST3];
|
2009-03-23 09:10:32 +00:00
|
|
|
if (rLoopCounter > 0)
|
|
|
|
{
|
2009-04-08 20:26:33 +00:00
|
|
|
const u16 rCallAddress = g_dsp.r[DSP_REG_ST0];
|
|
|
|
const u16 rLoopAddress = g_dsp.r[DSP_REG_ST2];
|
2009-03-23 09:10:32 +00:00
|
|
|
|
2009-06-21 08:39:21 +00:00
|
|
|
// This does not always work correctly!
|
|
|
|
// The loop end tends to point to the second part of
|
|
|
|
// two-byte instructions!
|
2009-03-23 09:10:32 +00:00
|
|
|
if (g_dsp.pc == (rLoopAddress + 1))
|
|
|
|
{
|
|
|
|
rLoopCounter--;
|
|
|
|
if (rLoopCounter > 0)
|
|
|
|
{
|
|
|
|
g_dsp.pc = rCallAddress;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// end of loop
|
|
|
|
dsp_reg_load_stack(0);
|
|
|
|
dsp_reg_load_stack(2);
|
|
|
|
dsp_reg_load_stack(3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-09 13:03:41 +00:00
|
|
|
}
|
2009-03-23 09:10:32 +00:00
|
|
|
|
2009-05-01 22:17:22 +00:00
|
|
|
void Step()
|
2009-04-09 13:03:41 +00:00
|
|
|
{
|
2009-06-07 11:06:40 +00:00
|
|
|
DSPCore_CheckExceptions();
|
2009-04-09 13:03:41 +00:00
|
|
|
|
|
|
|
g_dsp.step_counter++;
|
|
|
|
|
|
|
|
#if PROFILE
|
|
|
|
g_dsp.err_pc = g_dsp.pc;
|
|
|
|
|
|
|
|
ProfilerAddDelta(g_dsp.err_pc, 1);
|
|
|
|
if (g_dsp.step_counter == 1)
|
2009-03-23 09:10:32 +00:00
|
|
|
{
|
2009-04-09 13:03:41 +00:00
|
|
|
ProfilerInit();
|
2009-03-23 09:10:32 +00:00
|
|
|
}
|
|
|
|
|
2009-04-09 13:03:41 +00:00
|
|
|
if ((g_dsp.step_counter & 0xFFFFF) == 0)
|
2009-03-23 09:10:32 +00:00
|
|
|
{
|
2009-04-09 13:03:41 +00:00
|
|
|
ProfilerDump(g_dsp.step_counter);
|
|
|
|
}
|
|
|
|
#endif
|
2009-03-23 09:10:32 +00:00
|
|
|
|
2009-04-09 13:03:41 +00:00
|
|
|
u16 opc = dsp_fetch_code();
|
|
|
|
ExecuteInstruction(UDSPInstruction(opc));
|
2009-05-01 22:17:22 +00:00
|
|
|
HandleLoop();
|
2009-03-23 09:10:32 +00:00
|
|
|
}
|
|
|
|
|
2009-04-08 20:26:33 +00:00
|
|
|
// Used by thread mode.
|
2009-05-01 22:17:22 +00:00
|
|
|
void Run()
|
2009-03-23 09:10:32 +00:00
|
|
|
{
|
|
|
|
gdsp_running = true;
|
2009-05-01 20:06:24 +00:00
|
|
|
while (!(g_dsp.cr & CR_HALT))
|
2009-03-23 09:10:32 +00:00
|
|
|
{
|
2009-04-08 12:37:15 +00:00
|
|
|
// Are we running?
|
2009-04-12 10:21:40 +00:00
|
|
|
if (DSPHost_Running())
|
2009-04-08 12:37:15 +00:00
|
|
|
break;
|
2009-04-09 13:03:41 +00:00
|
|
|
|
2009-06-07 11:06:40 +00:00
|
|
|
DSPCore_CheckExternalInterrupt();
|
2009-04-12 10:21:40 +00:00
|
|
|
// This number (500) is completely arbitrary. TODO: tweak.
|
2009-05-01 20:06:24 +00:00
|
|
|
for (int i = 0; i < 500 && !(g_dsp.cr & CR_HALT); i++)
|
2009-05-01 22:17:22 +00:00
|
|
|
Step();
|
2009-04-03 12:21:02 +00:00
|
|
|
|
2009-04-05 11:55:18 +00:00
|
|
|
if (!gdsp_running)
|
2009-04-03 12:21:02 +00:00
|
|
|
break;
|
2009-03-23 09:10:32 +00:00
|
|
|
}
|
|
|
|
gdsp_running = false;
|
2009-04-08 20:26:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Used by non-thread mode.
|
2009-05-01 22:17:22 +00:00
|
|
|
void RunCycles(int cycles)
|
2009-04-08 20:26:33 +00:00
|
|
|
{
|
2009-06-21 08:39:21 +00:00
|
|
|
if (cycles < 18)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < cycles; i++)
|
|
|
|
{
|
|
|
|
if (g_dsp.cr & CR_HALT)
|
|
|
|
return;
|
|
|
|
if (DSPAnalyzer::code_flags[g_dsp.pc] & DSPAnalyzer::CODE_IDLE_SKIP)
|
|
|
|
return;
|
|
|
|
Step();
|
|
|
|
cycles--;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-07 11:06:40 +00:00
|
|
|
DSPCore_CheckExternalInterrupt();
|
2009-04-09 13:03:41 +00:00
|
|
|
|
2009-04-08 20:26:33 +00:00
|
|
|
// First, let's run a few cycles with no idle skipping so that things can progress a bit.
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
{
|
2009-05-01 20:06:24 +00:00
|
|
|
if (g_dsp.cr & CR_HALT)
|
2009-04-08 20:26:33 +00:00
|
|
|
return;
|
2009-05-01 22:17:22 +00:00
|
|
|
Step();
|
2009-04-08 20:26:33 +00:00
|
|
|
cycles--;
|
|
|
|
}
|
2009-04-09 13:03:41 +00:00
|
|
|
|
2009-06-21 08:39:21 +00:00
|
|
|
// Next, let's run a few cycles with idle skipping, so that we can skip idle loops.
|
2009-04-08 20:26:33 +00:00
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
{
|
2009-05-01 20:06:24 +00:00
|
|
|
if (g_dsp.cr & CR_HALT)
|
2009-04-08 20:26:33 +00:00
|
|
|
return;
|
|
|
|
if (DSPAnalyzer::code_flags[g_dsp.pc] & DSPAnalyzer::CODE_IDLE_SKIP)
|
|
|
|
return;
|
2009-05-01 22:17:22 +00:00
|
|
|
Step();
|
2009-04-08 20:26:33 +00:00
|
|
|
cycles--;
|
|
|
|
}
|
2009-04-09 13:03:41 +00:00
|
|
|
|
2009-04-08 20:26:33 +00:00
|
|
|
// Now, run the rest of the block without idle skipping. It might trip into a
|
|
|
|
// idle loop and if so we waste some time here. Might be beneficial to slice even further.
|
|
|
|
while (cycles > 0)
|
|
|
|
{
|
2009-05-01 22:17:22 +00:00
|
|
|
Step();
|
2009-04-08 20:26:33 +00:00
|
|
|
cycles--;
|
|
|
|
// We don't bother directly supporting pause - if the main emu pauses,
|
|
|
|
// it just won't call this function anymore.
|
|
|
|
}
|
2009-03-23 09:10:32 +00:00
|
|
|
}
|
|
|
|
|
2009-05-01 22:17:22 +00:00
|
|
|
void Stop()
|
2009-03-23 09:10:32 +00:00
|
|
|
{
|
|
|
|
gdsp_running = false;
|
|
|
|
}
|
2009-05-01 20:06:24 +00:00
|
|
|
|
2009-05-03 11:15:17 +00:00
|
|
|
} // namespace
|