2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2014-02-19 01:56:29 +00:00
|
|
|
#include <disasm.h> // Bochs
|
2014-10-21 06:53:01 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
2014-10-21 10:56:01 +00:00
|
|
|
#if defined(HAS_LLVM)
|
|
|
|
// PowerPC.h defines PC.
|
|
|
|
// This conflicts with a function that has an argument named PC
|
|
|
|
#undef PC
|
|
|
|
#include <llvm-c/Disassembler.h>
|
|
|
|
#include <llvm-c/Target.h>
|
|
|
|
#endif
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
#include <wx/button.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/chartype.h>
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/event.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#include <wx/listbase.h>
|
2008-12-08 05:30:24 +00:00
|
|
|
#include <wx/listctrl.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/sizer.h>
|
|
|
|
#include <wx/string.h>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <wx/textctrl.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/translation.h>
|
|
|
|
#include <wx/window.h>
|
|
|
|
#include <wx/windowid.h>
|
2009-02-23 20:29:55 +00:00
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-07-18 01:33:51 +00:00
|
|
|
#include "Common/GekkoDisassembler.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Core/PowerPC/Gekko.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/PowerPC/PPCAnalyst.h"
|
|
|
|
#include "Core/PowerPC/JitCommon/JitBase.h"
|
|
|
|
#include "Core/PowerPC/JitCommon/JitCache.h"
|
|
|
|
#include "DolphinWX/Globals.h"
|
|
|
|
#include "DolphinWX/WxUtils.h"
|
|
|
|
#include "DolphinWX/Debugger/JitWindow.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-10-21 10:56:01 +00:00
|
|
|
#if defined(HAS_LLVM)
|
|
|
|
// This class declaration should be in the header
|
|
|
|
// Due to the conflict with the PC define and the function with PC as an argument
|
|
|
|
// it has to be in this file instead.
|
|
|
|
// Once that conflict is resolved this can be moved to the header
|
|
|
|
class HostDisassemblerLLVM : public HostDisassembler
|
|
|
|
{
|
|
|
|
public:
|
2015-01-18 21:26:25 +00:00
|
|
|
HostDisassemblerLLVM(const std::string host_disasm, int inst_size = -1, const std::string cpu = "");
|
2014-10-21 10:56:01 +00:00
|
|
|
~HostDisassemblerLLVM()
|
|
|
|
{
|
|
|
|
if (m_can_disasm)
|
|
|
|
LLVMDisasmDispose(m_llvm_context);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_can_disasm;
|
|
|
|
LLVMDisasmContextRef m_llvm_context;
|
2015-01-18 21:26:25 +00:00
|
|
|
int m_instruction_size;
|
2014-10-21 10:56:01 +00:00
|
|
|
|
|
|
|
std::string DisassembleHostBlock(const u8* code_start, const u32 code_size, u32* host_instructions_count) override;
|
|
|
|
};
|
|
|
|
|
2015-01-18 21:26:25 +00:00
|
|
|
HostDisassemblerLLVM::HostDisassemblerLLVM(const std::string host_disasm, int inst_size, const std::string cpu)
|
|
|
|
: m_can_disasm(false), m_instruction_size(inst_size)
|
2014-10-21 10:56:01 +00:00
|
|
|
{
|
|
|
|
LLVMInitializeAllTargetInfos();
|
|
|
|
LLVMInitializeAllTargetMCs();
|
|
|
|
LLVMInitializeAllDisassemblers();
|
|
|
|
|
2015-01-18 21:26:25 +00:00
|
|
|
m_llvm_context = LLVMCreateDisasmCPU(host_disasm.c_str(), cpu.c_str(), nullptr, 0, 0, nullptr);
|
2014-10-21 10:56:01 +00:00
|
|
|
|
|
|
|
// Couldn't create llvm context
|
|
|
|
if (!m_llvm_context)
|
|
|
|
return;
|
2015-01-18 21:26:25 +00:00
|
|
|
|
2014-10-21 10:56:01 +00:00
|
|
|
LLVMSetDisasmOptions(m_llvm_context,
|
|
|
|
LLVMDisassembler_Option_AsmPrinterVariant |
|
|
|
|
LLVMDisassembler_Option_PrintLatency);
|
|
|
|
|
|
|
|
m_can_disasm = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string HostDisassemblerLLVM::DisassembleHostBlock(const u8* code_start, const u32 code_size, u32 *host_instructions_count)
|
|
|
|
{
|
|
|
|
if (!m_can_disasm)
|
|
|
|
return "(No LLVM context)";
|
|
|
|
|
2015-01-18 21:26:25 +00:00
|
|
|
u8* disasmPtr = (u8*)code_start;
|
2014-10-21 10:56:01 +00:00
|
|
|
const u8 *end = code_start + code_size;
|
|
|
|
|
|
|
|
std::ostringstream x86_disasm;
|
|
|
|
while ((u8*)disasmPtr < end)
|
|
|
|
{
|
|
|
|
char inst_disasm[256];
|
2015-01-18 21:26:25 +00:00
|
|
|
size_t inst_size = LLVMDisasmInstruction(m_llvm_context, disasmPtr, (u64)(end - disasmPtr), (u64)disasmPtr, inst_disasm, 256);
|
|
|
|
if (!inst_size)
|
|
|
|
{
|
|
|
|
x86_disasm << "Invalid inst:";
|
|
|
|
|
|
|
|
if (m_instruction_size != -1)
|
|
|
|
{
|
|
|
|
// If we are on an architecture that has a fixed instruction size
|
|
|
|
// We can continue onward past this bad instruction.
|
|
|
|
std::string inst_str = "";
|
|
|
|
for (int i = 0; i < m_instruction_size; ++i)
|
|
|
|
inst_str += StringFromFormat("%02x", disasmPtr[i]);
|
|
|
|
|
|
|
|
x86_disasm << inst_str << std::endl;
|
|
|
|
disasmPtr += m_instruction_size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We can't continue if we are on an architecture that has flexible instruction sizes
|
|
|
|
// Dump the rest of the block instead
|
|
|
|
std::string code_block = "";
|
|
|
|
for (int i = 0; (disasmPtr + i) < end; ++i)
|
|
|
|
code_block += StringFromFormat("%02x", disasmPtr[i]);
|
|
|
|
|
|
|
|
x86_disasm << code_block << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x86_disasm << inst_disasm << std::endl;
|
|
|
|
disasmPtr += inst_size;
|
|
|
|
}
|
|
|
|
|
2014-10-21 10:56:01 +00:00
|
|
|
(*host_instructions_count)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return x86_disasm.str();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-10-21 06:53:01 +00:00
|
|
|
std::string HostDisassembler::DisassembleBlock(u32* address, u32* host_instructions_count, u32* code_size)
|
|
|
|
{
|
|
|
|
if (!jit)
|
|
|
|
{
|
|
|
|
*host_instructions_count = 0;
|
|
|
|
*code_size = 0;
|
|
|
|
return "(No JIT active)";
|
|
|
|
}
|
|
|
|
|
|
|
|
int block_num = jit->GetBlockCache()->GetBlockNumberFromStartAddress(*address);
|
|
|
|
if (block_num < 0)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < 500; i++)
|
|
|
|
{
|
|
|
|
block_num = jit->GetBlockCache()->GetBlockNumberFromStartAddress(*address - 4 * i);
|
|
|
|
if (block_num >= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (block_num >= 0)
|
|
|
|
{
|
|
|
|
JitBlock* block = jit->GetBlockCache()->GetBlock(block_num);
|
|
|
|
if (!(block->originalAddress <= *address &&
|
|
|
|
block->originalSize + block->originalAddress >= *address))
|
|
|
|
block_num = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not merge this "if" with the above - block_num changes inside it.
|
|
|
|
if (block_num < 0)
|
|
|
|
{
|
|
|
|
host_instructions_count = 0;
|
|
|
|
code_size = 0;
|
|
|
|
return "(No translation)";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JitBlock* block = jit->GetBlockCache()->GetBlock(block_num);
|
|
|
|
|
|
|
|
const u8* code = (const u8*)jit->GetBlockCache()->GetCompiledCodeFromBlock(block_num);
|
|
|
|
|
|
|
|
*code_size = block->codeSize;
|
|
|
|
*address = block->originalAddress;
|
|
|
|
return DisassembleHostBlock(code, block->codeSize, host_instructions_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
HostDisassemblerX86::HostDisassemblerX86()
|
|
|
|
{
|
|
|
|
m_disasm.set_syntax_intel();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string HostDisassemblerX86::DisassembleHostBlock(const u8* code_start, const u32 code_size, u32* host_instructions_count)
|
|
|
|
{
|
|
|
|
u64 disasmPtr = (u64)code_start;
|
|
|
|
const u8* end = code_start + code_size;
|
|
|
|
|
|
|
|
std::ostringstream x86_disasm;
|
|
|
|
while ((u8*)disasmPtr < end)
|
|
|
|
{
|
|
|
|
char inst_disasm[256];
|
|
|
|
disasmPtr += m_disasm.disasm64(disasmPtr, disasmPtr, (u8*)disasmPtr, inst_disasm);
|
|
|
|
x86_disasm << inst_disasm << std::endl;
|
|
|
|
(*host_instructions_count)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return x86_disasm.str();
|
|
|
|
}
|
|
|
|
|
2010-07-22 02:05:28 +00:00
|
|
|
CJitWindow::CJitWindow(wxWindow* parent, wxWindowID id, const wxPoint& pos,
|
2013-04-08 05:16:50 +00:00
|
|
|
const wxSize& size, long style, const wxString& name)
|
2010-07-22 02:05:28 +00:00
|
|
|
: wxPanel(parent, id, pos, size, style, name)
|
2010-07-26 03:46:14 +00:00
|
|
|
{
|
2008-12-08 05:30:24 +00:00
|
|
|
wxBoxSizer* sizerBig = new wxBoxSizer(wxVERTICAL);
|
|
|
|
wxBoxSizer* sizerSplit = new wxBoxSizer(wxHORIZONTAL);
|
2014-11-06 03:19:52 +00:00
|
|
|
sizerSplit->Add(ppc_box = new wxTextCtrl(this, wxID_ANY, "(ppc)",
|
2013-04-08 05:16:50 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE), 1, wxEXPAND);
|
2014-11-06 03:19:52 +00:00
|
|
|
sizerSplit->Add(x86_box = new wxTextCtrl(this, wxID_ANY, "(x86)",
|
2013-04-08 05:16:50 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE), 1, wxEXPAND);
|
2014-11-06 03:19:52 +00:00
|
|
|
sizerBig->Add(block_list = new JitBlockList(this, wxID_ANY,
|
2008-12-08 05:30:24 +00:00
|
|
|
wxDefaultPosition, wxSize(100, 140),
|
2010-07-26 03:46:14 +00:00
|
|
|
wxLC_REPORT | wxSUNKEN_BORDER | wxLC_ALIGN_LEFT | wxLC_SINGLE_SEL | wxLC_SORT_ASCENDING),
|
|
|
|
0, wxEXPAND);
|
2008-12-08 05:30:24 +00:00
|
|
|
sizerBig->Add(sizerSplit, 2, wxEXPAND);
|
2014-11-06 03:19:52 +00:00
|
|
|
|
|
|
|
sizerBig->Add(button_refresh = new wxButton(this, wxID_ANY, _("&Refresh")));
|
|
|
|
button_refresh->Bind(wxEVT_BUTTON, &CJitWindow::OnRefresh, this);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
SetSizer(sizerBig);
|
|
|
|
|
|
|
|
sizerSplit->Fit(this);
|
|
|
|
sizerBig->Fit(this);
|
2014-10-21 06:53:01 +00:00
|
|
|
|
2014-10-21 10:56:01 +00:00
|
|
|
#if defined(_M_X86) && defined(HAS_LLVM)
|
|
|
|
m_disassembler.reset(new HostDisassemblerLLVM("x86_64-none-unknown"));
|
|
|
|
#elif defined(_M_X86)
|
2014-10-21 06:53:01 +00:00
|
|
|
m_disassembler.reset(new HostDisassemblerX86());
|
2014-10-21 10:56:01 +00:00
|
|
|
#elif defined(_M_ARM_64) && defined(HAS_LLVM)
|
2015-01-18 21:26:25 +00:00
|
|
|
m_disassembler.reset(new HostDisassemblerLLVM("aarch64-none-unknown", 4, "cortex-a57"));
|
2014-10-21 10:56:01 +00:00
|
|
|
#elif defined(_M_ARM_32) && defined(HAS_LLVM)
|
2015-01-18 21:26:25 +00:00
|
|
|
m_disassembler.reset(new HostDisassemblerLLVM("armv7-none-unknown", 4, "cortex-a15"));
|
2014-10-21 06:53:01 +00:00
|
|
|
#else
|
|
|
|
m_disassembler.reset(new HostDisassembler());
|
|
|
|
#endif
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2014-08-30 21:01:19 +00:00
|
|
|
void CJitWindow::OnRefresh(wxCommandEvent& /*event*/)
|
|
|
|
{
|
2008-12-08 05:30:24 +00:00
|
|
|
block_list->Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CJitWindow::ViewAddr(u32 em_address)
|
|
|
|
{
|
2011-02-25 03:56:14 +00:00
|
|
|
Show(true);
|
|
|
|
Compare(em_address);
|
|
|
|
SetFocus();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CJitWindow::Compare(u32 em_address)
|
|
|
|
{
|
2014-10-21 06:53:01 +00:00
|
|
|
// Get host side code disassembly
|
|
|
|
u32 host_instructions_count = 0;
|
|
|
|
u32 host_code_size = 0;
|
|
|
|
std::string host_instructions_disasm;
|
|
|
|
host_instructions_disasm = m_disassembler->DisassembleBlock(&em_address, &host_instructions_count, &host_code_size);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-10-21 06:53:01 +00:00
|
|
|
x86_box->SetValue(host_instructions_disasm);
|
2008-12-19 21:35:57 +00:00
|
|
|
|
2008-12-18 11:09:03 +00:00
|
|
|
// == Fill in ppc box
|
2014-10-21 06:53:01 +00:00
|
|
|
u32 ppc_addr = em_address;
|
2008-12-18 11:09:03 +00:00
|
|
|
PPCAnalyst::CodeBuffer code_buffer(32000);
|
|
|
|
PPCAnalyst::BlockStats st;
|
|
|
|
PPCAnalyst::BlockRegStats gpa;
|
|
|
|
PPCAnalyst::BlockRegStats fpa;
|
2014-04-30 13:19:28 +00:00
|
|
|
PPCAnalyst::CodeBlock code_block;
|
|
|
|
PPCAnalyst::PPCAnalyzer analyzer;
|
2014-08-17 05:25:49 +00:00
|
|
|
analyzer.SetOption(PPCAnalyst::PPCAnalyzer::OPTION_CONDITIONAL_CONTINUE);
|
2014-04-30 13:19:28 +00:00
|
|
|
|
|
|
|
code_block.m_stats = &st;
|
|
|
|
code_block.m_gpa = &gpa;
|
|
|
|
code_block.m_fpa = &fpa;
|
|
|
|
|
2014-10-21 06:53:01 +00:00
|
|
|
if (analyzer.Analyze(ppc_addr, &code_block, &code_buffer, 32000) != 0xFFFFFFFF)
|
2008-12-18 13:21:02 +00:00
|
|
|
{
|
2014-10-21 06:53:01 +00:00
|
|
|
std::ostringstream ppc_disasm;
|
2014-04-30 13:19:28 +00:00
|
|
|
for (u32 i = 0; i < code_block.m_num_instructions; i++)
|
2008-12-18 11:09:03 +00:00
|
|
|
{
|
|
|
|
const PPCAnalyst::CodeOp &op = code_buffer.codebuffer[i];
|
2014-10-21 06:53:01 +00:00
|
|
|
std::string opcode = GekkoDisassembler::Disassemble(op.inst.hex, op.address);
|
|
|
|
ppc_disasm << std::setfill('0') << std::setw(8) << std::hex << op.address;
|
|
|
|
ppc_disasm << " " << opcode << std::endl;
|
2008-12-18 11:09:03 +00:00
|
|
|
}
|
2008-12-19 21:35:57 +00:00
|
|
|
|
|
|
|
// Add stats to the end of the ppc box since it's generally the shortest.
|
2014-10-21 06:53:01 +00:00
|
|
|
ppc_disasm << std::dec << std::endl;
|
2008-12-19 21:35:57 +00:00
|
|
|
|
|
|
|
// Add some generic analysis
|
|
|
|
if (st.isFirstBlockOfFunction)
|
2014-10-21 06:53:01 +00:00
|
|
|
ppc_disasm << "(first block of function)" << std::endl;
|
2008-12-19 21:35:57 +00:00
|
|
|
if (st.isLastBlockOfFunction)
|
2014-10-21 06:53:01 +00:00
|
|
|
ppc_disasm << "(last block of function)" << std::endl;
|
2008-12-19 21:35:57 +00:00
|
|
|
|
2014-10-21 06:53:01 +00:00
|
|
|
ppc_disasm << st.numCycles << " estimated cycles" << std::endl;
|
2008-12-19 21:35:57 +00:00
|
|
|
|
2014-10-21 06:53:01 +00:00
|
|
|
ppc_disasm << "Num instr: PPC: " << code_block.m_num_instructions
|
|
|
|
<< " x86: " << host_instructions_count
|
|
|
|
<< " (blowup: " << 100 * host_instructions_count / code_block.m_num_instructions - 100
|
|
|
|
<< "%)" << std::endl;
|
2008-12-19 21:35:57 +00:00
|
|
|
|
2014-10-21 06:53:01 +00:00
|
|
|
ppc_disasm << "Num bytes: PPC: " << code_block.m_num_instructions * 4
|
|
|
|
<< " x86: " << host_code_size
|
|
|
|
<< " (blowup: " << 100 * host_code_size / (4 * code_block.m_num_instructions) - 100
|
|
|
|
<< "%)" << std::endl;
|
|
|
|
|
|
|
|
ppc_box->SetValue(ppc_disasm.str());
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-21 06:53:01 +00:00
|
|
|
ppc_box->SetValue(StringFromFormat("(non-code address: %08x)", em_address));
|
2013-02-28 08:39:06 +00:00
|
|
|
x86_box->SetValue("---");
|
2008-12-18 11:09:03 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CJitWindow::Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void CJitWindow::OnHostMessage(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
switch (event.GetId())
|
|
|
|
{
|
2014-12-21 01:36:26 +00:00
|
|
|
case IDM_NOTIFY_MAP_LOADED:
|
2013-04-08 05:16:50 +00:00
|
|
|
//NotifyMapLoaded();
|
|
|
|
break;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// JitBlockList
|
|
|
|
//================
|
|
|
|
|
2014-08-30 21:01:19 +00:00
|
|
|
enum
|
|
|
|
{
|
2008-12-08 05:30:24 +00:00
|
|
|
COLUMN_ADDRESS,
|
|
|
|
COLUMN_PPCSIZE,
|
|
|
|
COLUMN_X86SIZE,
|
|
|
|
COLUMN_NAME,
|
|
|
|
COLUMN_FLAGS,
|
|
|
|
COLUMN_NUMEXEC,
|
|
|
|
COLUMN_COST, // (estimated as x86size * numexec)
|
|
|
|
};
|
|
|
|
|
2010-07-26 03:46:14 +00:00
|
|
|
JitBlockList::JitBlockList(wxWindow* parent, const wxWindowID id,
|
2013-04-08 05:16:50 +00:00
|
|
|
const wxPoint& pos, const wxSize& size, long style)
|
2010-07-26 03:46:14 +00:00
|
|
|
: wxListCtrl(parent, id, pos, size, style) // | wxLC_VIRTUAL)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2010-07-26 03:46:14 +00:00
|
|
|
Init();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void JitBlockList::Init()
|
|
|
|
{
|
2011-01-05 04:35:46 +00:00
|
|
|
InsertColumn(COLUMN_ADDRESS, _("Address"));
|
|
|
|
InsertColumn(COLUMN_PPCSIZE, _("PPC Size"));
|
|
|
|
InsertColumn(COLUMN_X86SIZE, _("x86 Size"));
|
|
|
|
InsertColumn(COLUMN_NAME, _("Symbol"));
|
|
|
|
InsertColumn(COLUMN_FLAGS, _("Flags"));
|
|
|
|
InsertColumn(COLUMN_NUMEXEC, _("NumExec"));
|
|
|
|
InsertColumn(COLUMN_COST, _("Cost"));
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void JitBlockList::Update()
|
|
|
|
{
|
|
|
|
}
|