Files
dolphin/Source/Core/VideoCommon/OpcodeDecoding.cpp
T

323 lines
8.3 KiB
C++
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2008-12-08 05:25:12 +00:00
//DL facts:
2014-02-16 23:51:41 -05:00
// Ikaruga uses (nearly) NO display lists!
2008-12-08 05:25:12 +00:00
// Zelda WW uses TONS of display lists
// Zelda TP uses almost 100% display lists except menus (we like this!)
// Super Mario Galaxy has nearly all geometry and more than half of the state in DLs (great!)
2008-12-08 05:25:12 +00:00
// Note that it IS NOT GENERALLY POSSIBLE to precompile display lists! You can compile them as they are
// while interpreting them, and hope that the vertex format doesn't change, though, if you do it right
// when they are called. The reason is that the vertex format affects the sizes of the vertices.
2008-12-08 05:25:12 +00:00
2014-09-07 20:06:58 -05:00
#include "Common/CommonTypes.h"
2016-01-17 16:54:31 -05:00
#include "Common/MsgHandler.h"
#include "Common/Logging/Log.h"
2014-02-17 05:18:15 -05:00
#include "Core/FifoPlayer/FifoRecorder.h"
#include "Core/HW/Memmap.h"
#include "VideoCommon/BPMemory.h"
#include "VideoCommon/CommandProcessor.h"
#include "VideoCommon/CPMemory.h"
2014-02-17 05:18:15 -05:00
#include "VideoCommon/DataReader.h"
#include "VideoCommon/Fifo.h"
#include "VideoCommon/OpcodeDecoding.h"
#include "VideoCommon/Statistics.h"
#include "VideoCommon/VertexLoaderManager.h"
#include "VideoCommon/VideoCommon.h"
#include "VideoCommon/XFMemory.h"
bool g_bRecordFifoData = false;
2016-01-24 01:29:44 -05:00
namespace OpcodeDecoder
{
2015-03-16 10:56:16 +01:00
static bool s_bFifoErrorSeen = false;
static u32 InterpretDisplayList(u32 address, u32 size)
2008-12-08 05:25:12 +00:00
{
2014-08-27 22:56:19 -04:00
u8* startAddress;
if (Fifo::UseDeterministicGPUThread())
2016-01-12 22:44:58 +01:00
startAddress = (u8*)Fifo::PopFifoAuxBuffer(size);
2014-08-27 22:56:19 -04:00
else
startAddress = Memory::GetPointer(address);
2008-12-08 05:25:12 +00:00
u32 cycles = 0;
// Avoid the crash if Memory::GetPointer failed ..
2014-03-09 21:14:26 +01:00
if (startAddress != nullptr)
2008-12-08 05:25:12 +00:00
{
// temporarily swap dl and non-dl (small "hack" for the stats)
Statistics::SwapDL();
2016-01-24 01:29:44 -05:00
Run(DataReader(startAddress, startAddress + size), &cycles, true);
2008-12-08 05:25:12 +00:00
INCSTAT(stats.thisFrame.numDListsCalled);
// un-swap
Statistics::SwapDL();
}
return cycles;
2008-12-08 05:25:12 +00:00
}
2014-08-27 22:56:19 -04:00
static void InterpretDisplayListPreprocess(u32 address, u32 size)
{
u8* startAddress = Memory::GetPointer(address);
2016-01-12 22:44:58 +01:00
Fifo::PushFifoAuxBuffer(startAddress, size);
2014-08-27 22:56:19 -04:00
if (startAddress != nullptr)
{
2016-01-24 01:29:44 -05:00
Run<true>(DataReader(startAddress, startAddress + size), nullptr, true);
2014-08-27 22:56:19 -04:00
}
}
static void UnknownOpcode(u8 cmd_byte, void *buffer, bool preprocess)
2008-12-08 05:25:12 +00:00
{
// TODO(Omega): Maybe dump FIFO to file on this error
2015-11-20 11:33:47 +01:00
PanicAlertT(
"GFX FIFO: Unknown Opcode (0x%02x @ %p, %s).\n"
2014-11-05 02:22:33 -05:00
"This means one of the following:\n"
"* The emulated GPU got desynced, disabling dual core can help\n"
"* Command stream corrupted by some spurious memory bug\n"
"* This really is an unknown opcode (unlikely)\n"
"* Some other sort of bug\n\n"
"Further errors will be sent to the Video Backend log and\n"
2014-11-05 02:22:33 -05:00
"Dolphin will now likely crash or hang. Enjoy." ,
cmd_byte,
buffer,
2015-11-20 11:33:47 +01:00
preprocess ? "preprocess=true" : "preprocess=false");
2014-11-05 02:22:33 -05:00
{
SCPFifoStruct &fifo = CommandProcessor::fifo;
2014-11-05 02:22:33 -05:00
PanicAlert(
"Illegal command %02x\n"
"CPBase: 0x%08x\n"
"CPEnd: 0x%08x\n"
"CPHiWatermark: 0x%08x\n"
"CPLoWatermark: 0x%08x\n"
"CPReadWriteDistance: 0x%08x\n"
"CPWritePointer: 0x%08x\n"
"CPReadPointer: 0x%08x\n"
"CPBreakpoint: 0x%08x\n"
"bFF_GPReadEnable: %s\n"
"bFF_BPEnable: %s\n"
"bFF_BPInt: %s\n"
"bFF_Breakpoint: %s\n"
"bFF_GPLinkEnable: %s\n"
"bFF_HiWatermarkInt: %s\n"
"bFF_LoWatermarkInt: %s\n"
2014-11-05 02:22:33 -05:00
,cmd_byte, fifo.CPBase, fifo.CPEnd, fifo.CPHiWatermark, fifo.CPLoWatermark, fifo.CPReadWriteDistance
,fifo.CPWritePointer, fifo.CPReadPointer, fifo.CPBreakpoint
,fifo.bFF_GPReadEnable ? "true" : "false"
,fifo.bFF_BPEnable ? "true" : "false"
,fifo.bFF_BPInt ? "true" : "false"
,fifo.bFF_Breakpoint ? "true" : "false"
,fifo.bFF_GPLinkEnable ? "true" : "false"
,fifo.bFF_HiWatermarkInt ? "true" : "false"
,fifo.bFF_LoWatermarkInt ? "true" : "false"
);
}
}
2016-01-24 01:29:44 -05:00
void Init()
{
2015-03-16 10:56:16 +01:00
s_bFifoErrorSeen = false;
2008-12-08 05:25:12 +00:00
}
2016-01-24 01:29:44 -05:00
void Shutdown()
2008-12-08 05:25:12 +00:00
{
}
2014-11-27 23:53:11 +01:00
template <bool is_preprocess>
2016-01-24 01:29:44 -05:00
u8* Run(DataReader src, u32* cycles, bool in_display_list)
2008-12-08 05:25:12 +00:00
{
u32 totalCycles = 0;
2014-11-27 23:53:11 +01:00
u8* opcodeStart;
while (true)
{
opcodeStart = src.GetPointer();
2014-11-27 23:53:11 +01:00
if (!src.size())
goto end;
u8 cmd_byte = src.Read<u8>();
int refarray;
switch (cmd_byte)
{
2014-11-27 23:53:11 +01:00
case GX_NOP:
totalCycles += 6; // Hm, this means that we scan over nop streams pretty slowly...
break;
case GX_UNKNOWN_RESET:
totalCycles += 6; // Datel software uses this command
DEBUG_LOG(VIDEO, "GX Reset?: %08x", cmd_byte);
break;
case GX_LOAD_CP_REG:
2014-11-27 23:53:11 +01:00
{
if (src.size() < 1 + 4)
goto end;
totalCycles += 12;
u8 sub_cmd = src.Read<u8>();
u32 value = src.Read<u32>();
LoadCPReg(sub_cmd, value, is_preprocess);
if (!is_preprocess)
INCSTAT(stats.thisFrame.numCPLoads);
}
break;
case GX_LOAD_XF_REG:
{
if (src.size() < 4)
goto end;
u32 Cmd2 = src.Read<u32>();
int transfer_size = ((Cmd2 >> 16) & 15) + 1;
if (src.size() < transfer_size * sizeof(u32))
goto end;
totalCycles += 18 + 6 * transfer_size;
if (!is_preprocess)
{
u32 xf_address = Cmd2 & 0xFFFF;
LoadXFReg(transfer_size, xf_address, src);
INCSTAT(stats.thisFrame.numXFLoads);
}
src.Skip<u32>(transfer_size);
}
break;
case GX_LOAD_INDX_A: //used for position matrices
refarray = 0xC;
goto load_indx;
case GX_LOAD_INDX_B: //used for normal matrices
refarray = 0xD;
goto load_indx;
case GX_LOAD_INDX_C: //used for postmatrices
refarray = 0xE;
goto load_indx;
case GX_LOAD_INDX_D: //used for lights
refarray = 0xF;
goto load_indx;
load_indx:
if (src.size() < 4)
goto end;
totalCycles += 6;
if (is_preprocess)
PreprocessIndexedXF(src.Read<u32>(), refarray);
else
LoadIndexedXF(src.Read<u32>(), refarray);
break;
case GX_CMD_CALL_DL:
{
if (src.size() < 8)
goto end;
u32 address = src.Read<u32>();
u32 count = src.Read<u32>();
if (in_display_list)
{
totalCycles += 6;
WARN_LOG(VIDEO,"recursive display list detected");
}
else
{
if (is_preprocess)
InterpretDisplayListPreprocess(address, count);
else
totalCycles += 6 + InterpretDisplayList(address, count);
}
}
break;
case GX_CMD_UNKNOWN_METRICS: // zelda 4 swords calls it and checks the metrics registers after that
totalCycles += 6;
DEBUG_LOG(VIDEO, "GX 0x44: %08x", cmd_byte);
break;
case GX_CMD_INVL_VC: // Invalidate Vertex Cache
totalCycles += 6;
DEBUG_LOG(VIDEO, "Invalidate (vertex cache?)");
break;
case GX_LOAD_BP_REG:
2014-11-27 23:53:11 +01:00
// In skipped_frame case: We have to let BP writes through because they set
// tokens and stuff. TODO: Call a much simplified LoadBPReg instead.
{
if (src.size() < 4)
goto end;
totalCycles += 12;
u32 bp_cmd = src.Read<u32>();
if (is_preprocess)
{
LoadBPRegPreprocess(bp_cmd);
}
else
{
LoadBPReg(bp_cmd);
INCSTAT(stats.thisFrame.numBPLoads);
}
}
break;
// draw primitives
default:
if ((cmd_byte & 0xC0) == 0x80)
{
// load vertices
if (src.size() < 2)
goto end;
u16 num_vertices = src.Read<u16>();
int bytes = VertexLoaderManager::RunVertices(
cmd_byte & GX_VAT_MASK, // Vertex loader index (0 - 7)
(cmd_byte & GX_PRIMITIVE_MASK) >> GX_PRIMITIVE_SHIFT,
num_vertices,
src,
Fifo::WillSkipCurrentFrame(),
is_preprocess);
2014-11-27 23:53:11 +01:00
if (bytes < 0)
goto end;
2014-12-09 08:35:04 +01:00
src.Skip(bytes);
// 4 GPU ticks per vertex, 3 CPU ticks per GPU tick
totalCycles += num_vertices * 4 * 3 + 6;
2014-11-27 23:53:11 +01:00
}
else
{
2015-03-16 10:56:16 +01:00
if (!s_bFifoErrorSeen)
UnknownOpcode(cmd_byte, opcodeStart, is_preprocess);
ERROR_LOG(VIDEO, "FIFO: Unknown Opcode(0x%02x @ %p, preprocessing = %s)", cmd_byte, opcodeStart, is_preprocess ? "yes" : "no");
2015-03-16 10:56:16 +01:00
s_bFifoErrorSeen = true;
2014-11-27 23:53:11 +01:00
totalCycles += 1;
}
break;
}
2014-11-27 23:53:11 +01:00
// Display lists get added directly into the FIFO stream
if (!is_preprocess && g_bRecordFifoData && cmd_byte != GX_CMD_CALL_DL)
{
u8* opcodeEnd;
opcodeEnd = src.GetPointer();
2014-11-27 23:53:11 +01:00
FifoRecorder::GetInstance().WriteGPCommand(opcodeStart, u32(opcodeEnd - opcodeStart));
}
}
2014-11-27 23:53:11 +01:00
end:
2014-11-26 22:12:54 +01:00
if (cycles)
{
*cycles = totalCycles;
}
2014-11-27 23:53:11 +01:00
return opcodeStart;
2009-11-15 22:26:39 +00:00
}
2014-08-27 22:56:19 -04:00
2016-01-24 01:29:44 -05:00
template u8* Run<true>(DataReader src, u32* cycles, bool in_display_list);
template u8* Run<false>(DataReader src, u32* cycles, bool in_display_list);
} // namespace OpcodeDecoder