mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
PPCTables: Fix OPLOG system
Since OPLOG is defined in PPCTables.cpp only, it isn't visible elsewhere. This broke in 3ede866c37ff52db906dc307500ca5305de0a61a.
This commit is contained in:
parent
34f39ee22e
commit
cd627d1232
@ -491,16 +491,5 @@ void Jit64::CompileInstruction(PPCAnalyst::CodeOp& op)
|
||||
{
|
||||
(this->*s_dyna_op_table[op.inst.OPCD])(op.inst);
|
||||
|
||||
GekkoOPInfo* info = op.opinfo;
|
||||
if (info)
|
||||
{
|
||||
#ifdef OPLOG
|
||||
if (!strcmp(info->opname, OP_TO_LOG)) // "mcrfs"
|
||||
{
|
||||
rsplocations.push_back(js.compilerPC);
|
||||
}
|
||||
#endif
|
||||
info->compileCount++;
|
||||
info->lastUse = js.compilerPC;
|
||||
}
|
||||
PPCTables::CountInstructionCompile(op.opinfo, js.compilerPC);
|
||||
}
|
||||
|
@ -491,16 +491,5 @@ void JitArm64::CompileInstruction(PPCAnalyst::CodeOp& op)
|
||||
{
|
||||
(this->*s_dyna_op_table[op.inst.OPCD])(op.inst);
|
||||
|
||||
GekkoOPInfo* info = op.opinfo;
|
||||
if (info)
|
||||
{
|
||||
#ifdef OPLOG
|
||||
if (!strcmp(info->opname, OP_TO_LOG))
|
||||
{ ///"mcrfs"
|
||||
rsplocations.push_back(js.compilerPC);
|
||||
}
|
||||
#endif
|
||||
info->compileCount++;
|
||||
info->lastUse = js.compilerPC;
|
||||
}
|
||||
PPCTables::CountInstructionCompile(op.opinfo, js.compilerPC);
|
||||
}
|
||||
|
@ -110,8 +110,8 @@ bool UsesFPU(UGeckoInstruction inst)
|
||||
return (info->flags & FL_USE_FPU) != 0;
|
||||
}
|
||||
|
||||
#define OPLOG
|
||||
#define OP_TO_LOG "mtfsb0x"
|
||||
// #define OPLOG
|
||||
// #define OP_TO_LOG "mtfsb0x"
|
||||
|
||||
#ifdef OPLOG
|
||||
namespace
|
||||
@ -141,6 +141,19 @@ void CountInstruction(UGeckoInstruction inst)
|
||||
}
|
||||
}
|
||||
|
||||
void CountInstructionCompile(GekkoOPInfo* info, u32 pc)
|
||||
{
|
||||
info->compileCount++;
|
||||
info->lastUse = pc;
|
||||
|
||||
#ifdef OPLOG
|
||||
if (!strcmp(info->opname, OP_TO_LOG))
|
||||
{
|
||||
rsplocations.push_back(pc);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void PrintInstructionRunCounts()
|
||||
{
|
||||
typedef std::pair<const char*, u64> OpInfo;
|
||||
|
@ -127,6 +127,7 @@ bool IsValidInstruction(UGeckoInstruction inst);
|
||||
bool UsesFPU(UGeckoInstruction inst);
|
||||
|
||||
void CountInstruction(UGeckoInstruction inst);
|
||||
void CountInstructionCompile(GekkoOPInfo* info, u32 pc);
|
||||
void PrintInstructionRunCounts();
|
||||
void LogCompiledInstructions();
|
||||
const char* GetInstructionName(UGeckoInstruction inst);
|
||||
|
Loading…
x
Reference in New Issue
Block a user