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
|
|
|
|
#include <PowerPCDisasm.h> // Bochs
|
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-02-22 22:36:30 +00:00
|
|
|
#include "Common/Common.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
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
IDM_REFRESH_LIST = 23350,
|
|
|
|
IDM_PPC_BOX,
|
|
|
|
IDM_X86_BOX,
|
|
|
|
IDM_NEXT,
|
|
|
|
IDM_PREV,
|
|
|
|
IDM_BLOCKLIST,
|
|
|
|
};
|
|
|
|
|
2009-09-07 20:51:02 +00:00
|
|
|
BEGIN_EVENT_TABLE(CJitWindow, wxPanel)
|
2010-07-26 03:46:14 +00:00
|
|
|
//EVT_TEXT(IDM_ADDRBOX, CJitWindow::OnAddrBoxChange)
|
|
|
|
//EVT_LISTBOX(IDM_SYMBOLLIST, CJitWindow::OnSymbolListChange)
|
|
|
|
//EVT_HOST_COMMAND(wxID_ANY, CJitWindow::OnHostMessage)
|
2008-12-08 05:30:24 +00:00
|
|
|
EVT_BUTTON(IDM_REFRESH_LIST, CJitWindow::OnRefresh)
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
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);
|
2010-07-26 03:46:14 +00:00
|
|
|
sizerSplit->Add(ppc_box = new wxTextCtrl(this, IDM_PPC_BOX, _T("(ppc)"),
|
2013-04-08 05:16:50 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE), 1, wxEXPAND);
|
2010-07-26 03:46:14 +00:00
|
|
|
sizerSplit->Add(x86_box = new wxTextCtrl(this, IDM_X86_BOX, _T("(x86)"),
|
2013-04-08 05:16:50 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE), 1, wxEXPAND);
|
2008-12-08 05:30:24 +00:00
|
|
|
sizerBig->Add(block_list = new JitBlockList(this, IDM_BLOCKLIST,
|
|
|
|
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-02-17 04:51:41 +00:00
|
|
|
// sizerBig->Add(memview, 5, wxEXPAND);
|
|
|
|
// sizerBig->Add(sizerRight, 0, wxEXPAND | wxALL, 3);
|
2011-01-05 04:35:46 +00:00
|
|
|
sizerBig->Add(button_refresh = new wxButton(this, IDM_REFRESH_LIST, _("&Refresh")));
|
2014-02-17 04:51:41 +00:00
|
|
|
// sizerRight->Add(addrbox = new wxTextCtrl(this, IDM_ADDRBOX, _T("")));
|
|
|
|
// sizerRight->Add(new wxButton(this, IDM_SETPC, _("S&et PC")));
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
SetSizer(sizerBig);
|
|
|
|
|
|
|
|
sizerSplit->Fit(this);
|
|
|
|
sizerBig->Fit(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CJitWindow::OnRefresh(wxCommandEvent& /*event*/) {
|
|
|
|
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)
|
|
|
|
{
|
2008-12-29 02:02:35 +00:00
|
|
|
u8 *xDis = new u8[1<<18];
|
|
|
|
memset(xDis, 0, 1<<18);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
disassembler x64disasm;
|
|
|
|
x64disasm.set_syntax_intel();
|
|
|
|
|
2010-01-19 19:28:27 +00:00
|
|
|
int block_num = jit->GetBlockCache()->GetBlockNumberFromStartAddress(em_address);
|
2008-12-08 05:30:24 +00:00
|
|
|
if (block_num < 0)
|
|
|
|
{
|
2013-04-08 05:16:50 +00:00
|
|
|
for (int i = 0; i < 500; i++)
|
|
|
|
{
|
2010-01-19 19:28:27 +00:00
|
|
|
block_num = jit->GetBlockCache()->GetBlockNumberFromStartAddress(em_address - 4 * i);
|
2008-12-19 22:21:29 +00:00
|
|
|
if (block_num >= 0)
|
|
|
|
break;
|
|
|
|
}
|
2013-04-08 05:16:50 +00:00
|
|
|
|
|
|
|
if (block_num >= 0)
|
|
|
|
{
|
2010-01-19 19:28:27 +00:00
|
|
|
JitBlock *block = jit->GetBlockCache()->GetBlock(block_num);
|
2010-07-26 03:46:14 +00:00
|
|
|
if (!(block->originalAddress <= em_address &&
|
2013-04-08 05:16:50 +00:00
|
|
|
block->originalSize + block->originalAddress >= em_address))
|
2008-12-19 22:21:29 +00:00
|
|
|
block_num = -1;
|
|
|
|
}
|
2013-04-08 05:16:50 +00:00
|
|
|
|
2008-12-19 22:21:29 +00:00
|
|
|
// Do not merge this "if" with the above - block_num changes inside it.
|
2013-04-08 05:16:50 +00:00
|
|
|
if (block_num < 0)
|
|
|
|
{
|
2013-02-28 08:39:06 +00:00
|
|
|
ppc_box->SetValue(StrToWxStr(StringFromFormat("(non-code address: %08x)",
|
2013-04-08 05:16:50 +00:00
|
|
|
em_address)));
|
2013-02-28 08:39:06 +00:00
|
|
|
x86_box->SetValue(StrToWxStr(StringFromFormat("(no translation)")));
|
2010-02-12 19:28:51 +00:00
|
|
|
delete[] xDis;
|
2008-12-19 22:21:29 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2010-01-19 19:28:27 +00:00
|
|
|
JitBlock *block = jit->GetBlockCache()->GetBlock(block_num);
|
2010-07-26 03:46:14 +00:00
|
|
|
|
2008-12-19 22:21:29 +00:00
|
|
|
// 800031f0
|
2008-12-19 21:35:57 +00:00
|
|
|
// == Fill in x86 box
|
|
|
|
|
2010-01-19 19:28:27 +00:00
|
|
|
const u8 *code = (const u8 *)jit->GetBlockCache()->GetCompiledCodeFromBlock(block_num);
|
2008-12-19 21:35:57 +00:00
|
|
|
u64 disasmPtr = (u64)code;
|
|
|
|
int size = block->codeSize;
|
|
|
|
const u8 *end = code + size;
|
|
|
|
char *sptr = (char*)xDis;
|
|
|
|
|
|
|
|
int num_x86_instructions = 0;
|
|
|
|
while ((u8*)disasmPtr < end)
|
|
|
|
{
|
2014-03-02 11:21:50 +00:00
|
|
|
#if _M_X86_64
|
2008-12-19 21:35:57 +00:00
|
|
|
disasmPtr += x64disasm.disasm64(disasmPtr, disasmPtr, (u8*)disasmPtr, sptr);
|
2009-06-12 23:56:31 +00:00
|
|
|
#else
|
|
|
|
disasmPtr += x64disasm.disasm32(disasmPtr, disasmPtr, (u8*)disasmPtr, sptr);
|
|
|
|
#endif
|
2008-12-19 21:35:57 +00:00
|
|
|
sptr += strlen(sptr);
|
|
|
|
*sptr++ = 13;
|
|
|
|
*sptr++ = 10;
|
|
|
|
num_x86_instructions++;
|
|
|
|
}
|
2013-02-28 08:39:06 +00:00
|
|
|
x86_box->SetValue(StrToWxStr((char*)xDis));
|
2008-12-19 21:35:57 +00:00
|
|
|
|
2008-12-18 11:09:03 +00:00
|
|
|
// == Fill in ppc box
|
|
|
|
u32 ppc_addr = block->originalAddress;
|
|
|
|
PPCAnalyst::CodeBuffer code_buffer(32000);
|
|
|
|
PPCAnalyst::BlockStats st;
|
|
|
|
PPCAnalyst::BlockRegStats gpa;
|
|
|
|
PPCAnalyst::BlockRegStats fpa;
|
2010-07-29 12:17:47 +00:00
|
|
|
bool broken_block = false;
|
2010-09-22 02:42:17 +00:00
|
|
|
u32 merged_addresses[32];
|
|
|
|
const int capacity_of_merged_addresses = sizeof(merged_addresses) / sizeof(merged_addresses[0]);
|
|
|
|
int size_of_merged_addresses;
|
|
|
|
if (PPCAnalyst::Flatten(ppc_addr, &size, &st, &gpa, &fpa, broken_block, &code_buffer, size, merged_addresses, capacity_of_merged_addresses, size_of_merged_addresses) != 0xffffffff)
|
2008-12-18 13:21:02 +00:00
|
|
|
{
|
2010-02-21 18:55:00 +00:00
|
|
|
sptr = (char*)xDis;
|
2008-12-18 11:09:03 +00:00
|
|
|
for (int i = 0; i < size; i++)
|
|
|
|
{
|
|
|
|
const PPCAnalyst::CodeOp &op = code_buffer.codebuffer[i];
|
|
|
|
char temp[256];
|
|
|
|
DisassembleGekko(op.inst.hex, op.address, temp, 256);
|
|
|
|
sptr += sprintf(sptr, "%08x %s\n", op.address, temp);
|
|
|
|
}
|
2008-12-19 21:35:57 +00:00
|
|
|
|
|
|
|
// Add stats to the end of the ppc box since it's generally the shortest.
|
|
|
|
sptr += sprintf(sptr, "\n");
|
|
|
|
|
|
|
|
// Add some generic analysis
|
|
|
|
if (st.isFirstBlockOfFunction)
|
|
|
|
sptr += sprintf(sptr, "(first block of function)\n");
|
|
|
|
if (st.isLastBlockOfFunction)
|
|
|
|
sptr += sprintf(sptr, "(first block of function)\n");
|
|
|
|
|
|
|
|
sptr += sprintf(sptr, "%i estimated cycles\n", st.numCycles);
|
|
|
|
|
2010-07-26 03:46:14 +00:00
|
|
|
sptr += sprintf(sptr, "Num instr: PPC: %i x86: %i (blowup: %i%%)\n",
|
2013-04-08 05:16:50 +00:00
|
|
|
size, num_x86_instructions, 100 * (num_x86_instructions / size - 1));
|
2010-07-26 03:46:14 +00:00
|
|
|
sptr += sprintf(sptr, "Num bytes: PPC: %i x86: %i (blowup: %i%%)\n",
|
2013-04-08 05:16:50 +00:00
|
|
|
size * 4, block->codeSize, 100 * (block->codeSize / (4 * size) - 1));
|
2008-12-19 21:35:57 +00:00
|
|
|
|
2013-02-28 08:39:06 +00:00
|
|
|
ppc_box->SetValue(StrToWxStr((char*)xDis));
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-02-28 08:39:06 +00:00
|
|
|
ppc_box->SetValue(StrToWxStr(StringFromFormat(
|
|
|
|
"(non-code address: %08x)", em_address)));
|
|
|
|
x86_box->SetValue("---");
|
2008-12-18 11:09:03 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-02-12 19:28:51 +00:00
|
|
|
delete[] xDis;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CJitWindow::Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void CJitWindow::OnHostMessage(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
switch (event.GetId())
|
|
|
|
{
|
2013-04-08 05:16:50 +00:00
|
|
|
case IDM_NOTIFYMAPLOADED:
|
|
|
|
//NotifyMapLoaded();
|
|
|
|
break;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// JitBlockList
|
|
|
|
//================
|
|
|
|
|
|
|
|
enum {
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
}
|