FifoAnalyzer: Convert FifoPlaybackAnalyzer to namespace

This commit is contained in:
Scott Mansell 2015-11-08 03:22:29 +13:00
parent da7fb568de
commit 1656b2788d
3 changed files with 51 additions and 64 deletions

View File

@ -22,26 +22,37 @@ struct CmdData
u8* ptr; u8* ptr;
}; };
FifoPlaybackAnalyzer::FifoPlaybackAnalyzer() struct MemoryRange
{ {
FifoAnalyzer::Init(); u32 begin;
} u32 end;
};
static std::vector<MemoryRange> s_WrittenMemory;
static BPMemory s_BpMem;
static FifoAnalyzer::CPMemory s_CpMem;
static bool s_DrawingObject;
static void AddMemoryUpdate(MemoryUpdate memUpdate, AnalyzedFrameInfo& frameInfo);
static u32 DecodeCommand(u8* data);
static void StoreEfbCopyRegion();
static void StoreWrittenRegion(u32 address, u32 size);
void FifoPlaybackAnalyzer::AnalyzeFrames(FifoDataFile* file, std::vector<AnalyzedFrameInfo>& frameInfo) void FifoPlaybackAnalyzer::AnalyzeFrames(FifoDataFile* file, std::vector<AnalyzedFrameInfo>& frameInfo)
{ {
// Load BP memory // Load BP memory
u32* bpMem = file->GetBPMem(); u32* bpMem = file->GetBPMem();
memcpy(&m_BpMem, bpMem, sizeof(BPMemory)); memcpy(&s_BpMem, bpMem, sizeof(BPMemory));
u32* cpMem = file->GetCPMem(); u32* cpMem = file->GetCPMem();
FifoAnalyzer::LoadCPReg(0x50, cpMem[0x50], m_CpMem); FifoAnalyzer::LoadCPReg(0x50, cpMem[0x50], s_CpMem);
FifoAnalyzer::LoadCPReg(0x60, cpMem[0x60], m_CpMem); FifoAnalyzer::LoadCPReg(0x60, cpMem[0x60], s_CpMem);
for (int i = 0; i < 8; ++i) for (int i = 0; i < 8; ++i)
{ {
FifoAnalyzer::LoadCPReg(0x70 + i, cpMem[0x70 + i], m_CpMem); FifoAnalyzer::LoadCPReg(0x70 + i, cpMem[0x70 + i], s_CpMem);
FifoAnalyzer::LoadCPReg(0x80 + i, cpMem[0x80 + i], m_CpMem); FifoAnalyzer::LoadCPReg(0x80 + i, cpMem[0x80 + i], s_CpMem);
FifoAnalyzer::LoadCPReg(0x90 + i, cpMem[0x90 + i], m_CpMem); FifoAnalyzer::LoadCPReg(0x90 + i, cpMem[0x90 + i], s_CpMem);
} }
frameInfo.clear(); frameInfo.clear();
@ -52,7 +63,7 @@ void FifoPlaybackAnalyzer::AnalyzeFrames(FifoDataFile* file, std::vector<Analyze
const FifoFrameInfo& frame = file->GetFrame(frameIdx); const FifoFrameInfo& frame = file->GetFrame(frameIdx);
AnalyzedFrameInfo& analyzed = frameInfo[frameIdx]; AnalyzedFrameInfo& analyzed = frameInfo[frameIdx];
m_DrawingObject = false; s_DrawingObject = false;
u32 cmdStart = 0; u32 cmdStart = 0;
u32 nextMemUpdate = 0; u32 nextMemUpdate = 0;
@ -71,7 +82,7 @@ void FifoPlaybackAnalyzer::AnalyzeFrames(FifoDataFile* file, std::vector<Analyze
++nextMemUpdate; ++nextMemUpdate;
} }
bool wasDrawing = m_DrawingObject; bool wasDrawing = s_DrawingObject;
u32 cmdSize = DecodeCommand(&frame.fifoData[cmdStart]); u32 cmdSize = DecodeCommand(&frame.fifoData[cmdStart]);
@ -93,9 +104,9 @@ void FifoPlaybackAnalyzer::AnalyzeFrames(FifoDataFile* file, std::vector<Analyze
return; return;
} }
if (wasDrawing != m_DrawingObject) if (wasDrawing != s_DrawingObject)
{ {
if (m_DrawingObject) if (s_DrawingObject)
analyzed.objectStarts.push_back(cmdStart); analyzed.objectStarts.push_back(cmdStart);
else else
analyzed.objectEnds.push_back(cmdStart); analyzed.objectEnds.push_back(cmdStart);
@ -109,13 +120,13 @@ void FifoPlaybackAnalyzer::AnalyzeFrames(FifoDataFile* file, std::vector<Analyze
} }
} }
void FifoPlaybackAnalyzer::AddMemoryUpdate(MemoryUpdate memUpdate, AnalyzedFrameInfo& frameInfo) static void AddMemoryUpdate(MemoryUpdate memUpdate, AnalyzedFrameInfo& frameInfo)
{ {
u32 begin = memUpdate.address; u32 begin = memUpdate.address;
u32 end = memUpdate.address + memUpdate.size; u32 end = memUpdate.address + memUpdate.size;
// Remove portions of memUpdate that overlap with memory ranges that have been written by the GP // Remove portions of memUpdate that overlap with memory ranges that have been written by the GP
for (const auto& range : m_WrittenMemory) for (const auto& range : s_WrittenMemory)
{ {
if (range.begin < end && if (range.begin < end &&
range.end > begin) range.end > begin)
@ -151,7 +162,7 @@ void FifoPlaybackAnalyzer::AddMemoryUpdate(MemoryUpdate memUpdate, AnalyzedFrame
frameInfo.memoryUpdates.push_back(memUpdate); frameInfo.memoryUpdates.push_back(memUpdate);
} }
u32 FifoPlaybackAnalyzer::DecodeCommand(u8* data) static u32 DecodeCommand(u8* data)
{ {
u8* dataStart = data; u8* dataStart = data;
@ -166,17 +177,17 @@ u32 FifoPlaybackAnalyzer::DecodeCommand(u8* data)
case GX_LOAD_CP_REG: case GX_LOAD_CP_REG:
{ {
m_DrawingObject = false; s_DrawingObject = false;
u32 cmd2 = ReadFifo8(data); u32 cmd2 = ReadFifo8(data);
u32 value = ReadFifo32(data); u32 value = ReadFifo32(data);
FifoAnalyzer::LoadCPReg(cmd2, value, m_CpMem); FifoAnalyzer::LoadCPReg(cmd2, value, s_CpMem);
} }
break; break;
case GX_LOAD_XF_REG: case GX_LOAD_XF_REG:
{ {
m_DrawingObject = false; s_DrawingObject = false;
u32 cmd2 = ReadFifo32(data); u32 cmd2 = ReadFifo32(data);
u8 streamSize = ((cmd2 >> 16) & 15) + 1; u8 streamSize = ((cmd2 >> 16) & 15) + 1;
@ -189,7 +200,7 @@ u32 FifoPlaybackAnalyzer::DecodeCommand(u8* data)
case GX_LOAD_INDX_B: case GX_LOAD_INDX_B:
case GX_LOAD_INDX_C: case GX_LOAD_INDX_C:
case GX_LOAD_INDX_D: case GX_LOAD_INDX_D:
m_DrawingObject = false; s_DrawingObject = false;
data += 4; data += 4;
break; break;
@ -202,12 +213,12 @@ u32 FifoPlaybackAnalyzer::DecodeCommand(u8* data)
case GX_LOAD_BP_REG: case GX_LOAD_BP_REG:
{ {
m_DrawingObject = false; s_DrawingObject = false;
u32 cmd2 = ReadFifo32(data); u32 cmd2 = ReadFifo32(data);
BPCmd bp = FifoAnalyzer::DecodeBPCmd(cmd2, m_BpMem); BPCmd bp = FifoAnalyzer::DecodeBPCmd(cmd2, s_BpMem);
FifoAnalyzer::LoadBPReg(bp, m_BpMem); FifoAnalyzer::LoadBPReg(bp, s_BpMem);
if (bp.address == BPMEM_TRIGGER_EFB_COPY) if (bp.address == BPMEM_TRIGGER_EFB_COPY)
{ {
@ -219,10 +230,10 @@ u32 FifoPlaybackAnalyzer::DecodeCommand(u8* data)
default: default:
if (cmd & 0x80) if (cmd & 0x80)
{ {
m_DrawingObject = true; s_DrawingObject = true;
u32 vtxAttrGroup = cmd & GX_VAT_MASK; u32 vtxAttrGroup = cmd & GX_VAT_MASK;
int vertexSize = FifoAnalyzer::CalculateVertexSize(vtxAttrGroup, m_CpMem); int vertexSize = FifoAnalyzer::CalculateVertexSize(vtxAttrGroup, s_CpMem);
u16 streamSize = ReadFifo16(data); u16 streamSize = ReadFifo16(data);
@ -239,12 +250,12 @@ u32 FifoPlaybackAnalyzer::DecodeCommand(u8* data)
return (u32)(data - dataStart); return (u32)(data - dataStart);
} }
void FifoPlaybackAnalyzer::StoreEfbCopyRegion() static void StoreEfbCopyRegion()
{ {
UPE_Copy peCopy = m_BpMem.triggerEFBCopy; UPE_Copy peCopy = s_BpMem.triggerEFBCopy;
u32 copyfmt = peCopy.tp_realFormat(); u32 copyfmt = peCopy.tp_realFormat();
bool bFromZBuffer = m_BpMem.zcontrol.pixel_format == PEControl::Z24; bool bFromZBuffer = s_BpMem.zcontrol.pixel_format == PEControl::Z24;
u32 address = bpmem.copyTexDest << 5; u32 address = bpmem.copyTexDest << 5;
u32 format = copyfmt; u32 format = copyfmt;
@ -272,8 +283,8 @@ void FifoPlaybackAnalyzer::StoreEfbCopyRegion()
format |= _GX_TF_CTF; format |= _GX_TF_CTF;
} }
int width = (m_BpMem.copyTexSrcWH.x + 1) >> peCopy.half_scale; int width = (s_BpMem.copyTexSrcWH.x + 1) >> peCopy.half_scale;
int height = (m_BpMem.copyTexSrcWH.y + 1) >> peCopy.half_scale; int height = (s_BpMem.copyTexSrcWH.y + 1) >> peCopy.half_scale;
u16 blkW = TexDecoder_GetBlockWidthInTexels(format) - 1; u16 blkW = TexDecoder_GetBlockWidthInTexels(format) - 1;
u16 blkH = TexDecoder_GetBlockHeightInTexels(format) - 1; u16 blkH = TexDecoder_GetBlockHeightInTexels(format) - 1;
@ -286,13 +297,13 @@ void FifoPlaybackAnalyzer::StoreEfbCopyRegion()
StoreWrittenRegion(address, sizeInBytes); StoreWrittenRegion(address, sizeInBytes);
} }
void FifoPlaybackAnalyzer::StoreWrittenRegion(u32 address, u32 size) static void StoreWrittenRegion(u32 address, u32 size)
{ {
u32 end = address + size; u32 end = address + size;
auto newRangeIter = m_WrittenMemory.end(); auto newRangeIter = s_WrittenMemory.end();
// Search for overlapping memory regions and expand them to include the new region // Search for overlapping memory regions and expand them to include the new region
for (auto iter = m_WrittenMemory.begin(); iter != m_WrittenMemory.end();) for (auto iter = s_WrittenMemory.begin(); iter != s_WrittenMemory.end();)
{ {
MemoryRange &range = *iter; MemoryRange &range = *iter;
@ -300,7 +311,7 @@ void FifoPlaybackAnalyzer::StoreWrittenRegion(u32 address, u32 size)
{ {
// range at iterator and new range overlap // range at iterator and new range overlap
if (newRangeIter == m_WrittenMemory.end()) if (newRangeIter == s_WrittenMemory.end())
{ {
// Expand range to include the written region // Expand range to include the written region
range.begin = std::min(address, range.begin); range.begin = std::min(address, range.begin);
@ -317,7 +328,7 @@ void FifoPlaybackAnalyzer::StoreWrittenRegion(u32 address, u32 size)
used.end = std::max(used.end, range.end); used.end = std::max(used.end, range.end);
// Remove this entry // Remove this entry
iter = m_WrittenMemory.erase(iter); iter = s_WrittenMemory.erase(iter);
} }
} }
else else
@ -326,12 +337,12 @@ void FifoPlaybackAnalyzer::StoreWrittenRegion(u32 address, u32 size)
} }
} }
if (newRangeIter == m_WrittenMemory.end()) if (newRangeIter == s_WrittenMemory.end())
{ {
MemoryRange range; MemoryRange range;
range.begin = address; range.begin = address;
range.end = end; range.end = end;
m_WrittenMemory.push_back(range); s_WrittenMemory.push_back(range);
} }
} }

View File

@ -17,31 +17,7 @@ struct AnalyzedFrameInfo
std::vector<MemoryUpdate> memoryUpdates; std::vector<MemoryUpdate> memoryUpdates;
}; };
class FifoPlaybackAnalyzer namespace FifoPlaybackAnalyzer
{ {
public:
FifoPlaybackAnalyzer();
void AnalyzeFrames(FifoDataFile* file, std::vector<AnalyzedFrameInfo>& frameInfo); void AnalyzeFrames(FifoDataFile* file, std::vector<AnalyzedFrameInfo>& frameInfo);
private:
struct MemoryRange
{
u32 begin;
u32 end;
};
void AddMemoryUpdate(MemoryUpdate memUpdate, AnalyzedFrameInfo& frameInfo);
u32 DecodeCommand(u8* data);
void StoreEfbCopyRegion();
void StoreWrittenRegion(u32 address, u32 size);
bool m_DrawingObject;
std::vector<MemoryRange> m_WrittenMemory;
BPMemory m_BpMem;
FifoAnalyzer::CPMemory m_CpMem;
}; };

View File

@ -35,8 +35,8 @@ bool FifoPlayer::Open(const std::string& filename)
if (m_File) if (m_File)
{ {
FifoPlaybackAnalyzer analyzer; FifoAnalyzer::Init();
analyzer.AnalyzeFrames(m_File, m_FrameInfo); FifoPlaybackAnalyzer::AnalyzeFrames(m_File, m_FrameInfo);
m_FrameRangeEnd = m_File->GetFrameCount(); m_FrameRangeEnd = m_File->GetFrameCount();
} }