2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <cstdio>
|
2010-02-18 12:06:13 +00:00
|
|
|
#include <wx/artprov.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/listbox.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/sizer.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/textctrl.h>
|
|
|
|
#include <wx/thread.h>
|
|
|
|
#include <wx/translation.h>
|
|
|
|
#include <wx/windowid.h>
|
|
|
|
#include <wx/aui/auibar.h>
|
|
|
|
#include <wx/aui/auibook.h>
|
|
|
|
#include <wx/aui/framemanager.h>
|
2010-02-18 12:06:13 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/Common.h"
|
|
|
|
#include "Common/StringUtil.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Common/SymbolDB.h"
|
|
|
|
#include "Core/DSP/DSPCore.h"
|
|
|
|
#include "Core/HW/DSPLLE/DSPDebugInterface.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/HW/DSPLLE/DSPSymbols.h"
|
|
|
|
#include "DolphinWX/WxUtils.h"
|
|
|
|
#include "DolphinWX/Debugger/CodeView.h"
|
|
|
|
#include "DolphinWX/Debugger/DSPDebugWindow.h"
|
|
|
|
#include "DolphinWX/Debugger/DSPRegisterView.h"
|
|
|
|
#include "DolphinWX/Debugger/MemoryView.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxWindow;
|
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
DSPDebuggerLLE* m_DebuggerFrame = nullptr;
|
2010-07-28 15:22:27 +00:00
|
|
|
|
2013-10-29 05:23:17 +00:00
|
|
|
BEGIN_EVENT_TABLE(DSPDebuggerLLE, wxPanel)
|
2009-07-06 02:10:26 +00:00
|
|
|
EVT_CLOSE(DSPDebuggerLLE::OnClose)
|
2010-08-02 05:30:38 +00:00
|
|
|
EVT_MENU_RANGE(ID_RUNTOOL, ID_SHOWPCTOOL, DSPDebuggerLLE::OnChangeState)
|
2010-02-18 12:06:13 +00:00
|
|
|
EVT_TEXT_ENTER(ID_ADDRBOX, DSPDebuggerLLE::OnAddrBoxChange)
|
2013-04-08 05:16:50 +00:00
|
|
|
EVT_LISTBOX(ID_SYMBOLLIST, DSPDebuggerLLE::OnSymbolListChange)
|
2009-07-06 02:10:26 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
|
2011-01-31 04:36:49 +00:00
|
|
|
DSPDebuggerLLE::DSPDebuggerLLE(wxWindow* parent, wxWindowID id)
|
|
|
|
: wxPanel(parent, id, wxDefaultPosition, wxDefaultSize,
|
2013-04-08 05:16:50 +00:00
|
|
|
wxTAB_TRAVERSAL, _("DSP LLE Debugger"))
|
2010-02-18 12:06:13 +00:00
|
|
|
, m_CachedStepCounter(-1)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2011-01-31 04:36:49 +00:00
|
|
|
m_DebuggerFrame = this;
|
|
|
|
|
2010-02-18 12:06:13 +00:00
|
|
|
// notify wxAUI which frame to use
|
|
|
|
m_mgr.SetManagedWindow(this);
|
2011-01-31 17:15:21 +00:00
|
|
|
m_mgr.SetFlags(wxAUI_MGR_DEFAULT | wxAUI_MGR_LIVE_RESIZE);
|
2010-02-18 12:06:13 +00:00
|
|
|
|
|
|
|
m_Toolbar = new wxAuiToolBar(this, ID_TOOLBAR,
|
|
|
|
wxDefaultPosition, wxDefaultSize, wxAUI_TB_HORZ_TEXT);
|
|
|
|
m_Toolbar->AddTool(ID_RUNTOOL, wxT("Pause"),
|
|
|
|
wxArtProvider::GetBitmap(wxART_TICK_MARK, wxART_OTHER, wxSize(10,10)));
|
|
|
|
m_Toolbar->AddTool(ID_STEPTOOL, wxT("Step"),
|
|
|
|
wxArtProvider::GetBitmap(wxART_GO_DOWN, wxART_OTHER, wxSize(10,10)));
|
|
|
|
m_Toolbar->AddTool(ID_SHOWPCTOOL, wxT("Show PC"),
|
|
|
|
wxArtProvider::GetBitmap(wxART_GO_TO_PARENT, wxART_OTHER, wxSize(10,10)));
|
2009-07-06 02:10:26 +00:00
|
|
|
m_Toolbar->AddSeparator();
|
2010-02-18 12:06:13 +00:00
|
|
|
m_Toolbar->AddControl(new wxTextCtrl(m_Toolbar, ID_ADDRBOX, wxEmptyString,
|
|
|
|
wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER));
|
2009-07-06 02:10:26 +00:00
|
|
|
m_Toolbar->Realize();
|
|
|
|
|
2010-02-18 12:06:13 +00:00
|
|
|
m_SymbolList = new wxListBox(this, ID_SYMBOLLIST, wxDefaultPosition,
|
2014-03-09 20:14:26 +00:00
|
|
|
wxSize(140, 100), 0, nullptr, wxLB_SORT);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-02-18 12:06:13 +00:00
|
|
|
m_MainNotebook = new wxAuiNotebook(this, wxID_ANY,
|
|
|
|
wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxAUI_NB_TOP | wxAUI_NB_TAB_SPLIT | wxAUI_NB_TAB_MOVE);
|
|
|
|
|
|
|
|
wxPanel *code_panel = new wxPanel(m_MainNotebook, wxID_ANY);
|
|
|
|
wxBoxSizer *code_sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
m_CodeView = new CCodeView(&debug_interface, &DSPSymbols::g_dsp_symbol_db, code_panel);
|
2009-07-06 02:10:26 +00:00
|
|
|
m_CodeView->SetPlain();
|
2010-02-18 12:06:13 +00:00
|
|
|
code_sizer->Add(m_CodeView, 1, wxALL | wxEXPAND);
|
|
|
|
code_panel->SetSizer(code_sizer);
|
|
|
|
m_MainNotebook->AddPage(code_panel, wxT("Disasm"), true);
|
|
|
|
|
|
|
|
wxPanel *mem_panel = new wxPanel(m_MainNotebook, wxID_ANY);
|
|
|
|
wxBoxSizer *mem_sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
// TODO insert memViewer class
|
|
|
|
m_MemView = new CMemoryView(&debug_interface, mem_panel);
|
|
|
|
mem_sizer->Add(m_MemView, 1, wxALL | wxEXPAND);
|
|
|
|
mem_panel->SetSizer(mem_sizer);
|
|
|
|
m_MainNotebook->AddPage(mem_panel, wxT("Mem"));
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-02-18 12:06:13 +00:00
|
|
|
m_Regs = new DSPRegisterView(this, ID_DSP_REGS);
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-02-18 12:06:13 +00:00
|
|
|
// add the panes to the manager
|
|
|
|
m_mgr.AddPane(m_Toolbar, wxAuiPaneInfo().
|
|
|
|
ToolbarPane().Top().
|
|
|
|
LeftDockable(false).RightDockable(false));
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-02-18 12:06:13 +00:00
|
|
|
m_mgr.AddPane(m_SymbolList, wxAuiPaneInfo().
|
|
|
|
Left().CloseButton(false).
|
|
|
|
Caption(wxT("Symbols")).Dockable(true));
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-02-18 12:06:13 +00:00
|
|
|
m_mgr.AddPane(m_MainNotebook, wxAuiPaneInfo().
|
|
|
|
Name(wxT("m_MainNotebook")).Center().
|
|
|
|
CloseButton(false).MaximizeButton(true));
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2010-02-18 12:06:13 +00:00
|
|
|
m_mgr.AddPane(m_Regs, wxAuiPaneInfo().Right().
|
|
|
|
CloseButton(false).Caption(wxT("Registers")).
|
|
|
|
Dockable(true));
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
UpdateState();
|
2010-02-18 12:06:13 +00:00
|
|
|
|
|
|
|
m_mgr.Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
DSPDebuggerLLE::~DSPDebuggerLLE()
|
|
|
|
{
|
|
|
|
m_mgr.UnInit();
|
2014-03-09 20:14:26 +00:00
|
|
|
m_DebuggerFrame = nullptr;
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DSPDebuggerLLE::OnClose(wxCloseEvent& event)
|
|
|
|
{
|
2010-07-28 15:22:27 +00:00
|
|
|
event.Skip();
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DSPDebuggerLLE::OnChangeState(wxCommandEvent& event)
|
|
|
|
{
|
2010-07-22 02:05:28 +00:00
|
|
|
if (DSPCore_GetState() == DSPCORE_STOP)
|
|
|
|
return;
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
switch (event.GetId())
|
|
|
|
{
|
2010-07-22 02:05:28 +00:00
|
|
|
case ID_RUNTOOL:
|
|
|
|
if (DSPCore_GetState() == DSPCORE_RUNNING)
|
|
|
|
DSPCore_SetState(DSPCORE_STEPPING);
|
|
|
|
else
|
|
|
|
DSPCore_SetState(DSPCORE_RUNNING);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_STEPTOOL:
|
|
|
|
if (DSPCore_GetState() == DSPCORE_STEPPING)
|
|
|
|
{
|
|
|
|
DSPCore_Step();
|
2012-12-23 11:00:45 +00:00
|
|
|
Update();
|
2010-07-22 02:05:28 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_SHOWPCTOOL:
|
|
|
|
FocusOnPC();
|
|
|
|
break;
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UpdateState();
|
2010-02-18 12:06:13 +00:00
|
|
|
m_mgr.Update();
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
2011-01-31 14:25:50 +00:00
|
|
|
void Host_RefreshDSPDebuggerWindow()
|
|
|
|
{
|
|
|
|
if (m_DebuggerFrame)
|
2012-12-23 11:00:45 +00:00
|
|
|
m_DebuggerFrame->Update();
|
2011-01-31 14:25:50 +00:00
|
|
|
}
|
|
|
|
|
2012-12-23 11:00:45 +00:00
|
|
|
void DSPDebuggerLLE::Update()
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2011-01-31 14:25:50 +00:00
|
|
|
#if defined __WXGTK__
|
2010-08-02 01:52:00 +00:00
|
|
|
if (!wxIsMainThread())
|
|
|
|
wxMutexGuiEnter();
|
|
|
|
#endif
|
2009-07-06 02:10:26 +00:00
|
|
|
UpdateSymbolMap();
|
|
|
|
UpdateDisAsmListView();
|
|
|
|
UpdateRegisterFlags();
|
|
|
|
UpdateState();
|
2010-02-18 12:06:13 +00:00
|
|
|
m_mgr.Update();
|
2011-01-31 14:25:50 +00:00
|
|
|
#if defined __WXGTK__
|
2010-08-02 01:52:00 +00:00
|
|
|
if (!wxIsMainThread())
|
|
|
|
wxMutexGuiLeave();
|
|
|
|
#endif
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DSPDebuggerLLE::FocusOnPC()
|
|
|
|
{
|
|
|
|
JumpToAddress(g_dsp.pc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSPDebuggerLLE::UpdateState()
|
|
|
|
{
|
2010-07-28 15:22:27 +00:00
|
|
|
if (DSPCore_GetState() == DSPCORE_RUNNING)
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2010-02-18 12:06:13 +00:00
|
|
|
m_Toolbar->SetToolLabel(ID_RUNTOOL, wxT("Pause"));
|
|
|
|
m_Toolbar->SetToolBitmap(ID_RUNTOOL,
|
|
|
|
wxArtProvider::GetBitmap(wxART_TICK_MARK, wxART_OTHER, wxSize(10,10)));
|
|
|
|
m_Toolbar->EnableTool(ID_STEPTOOL, false);
|
2010-07-28 15:22:27 +00:00
|
|
|
}
|
2013-04-08 05:16:50 +00:00
|
|
|
else
|
|
|
|
{
|
2010-02-18 12:06:13 +00:00
|
|
|
m_Toolbar->SetToolLabel(ID_RUNTOOL, wxT("Run"));
|
|
|
|
m_Toolbar->SetToolBitmap(ID_RUNTOOL,
|
|
|
|
wxArtProvider::GetBitmap(wxART_GO_FORWARD, wxART_OTHER, wxSize(10,10)));
|
|
|
|
m_Toolbar->EnableTool(ID_STEPTOOL, true);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
m_Toolbar->Realize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSPDebuggerLLE::UpdateDisAsmListView()
|
|
|
|
{
|
|
|
|
if (m_CachedStepCounter == g_dsp.step_counter)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// show PC
|
|
|
|
FocusOnPC();
|
|
|
|
m_CachedStepCounter = g_dsp.step_counter;
|
|
|
|
m_Regs->Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSPDebuggerLLE::UpdateSymbolMap()
|
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
if (g_dsp.dram == nullptr)
|
2009-07-06 02:10:26 +00:00
|
|
|
return;
|
|
|
|
|
2014-02-17 04:51:41 +00:00
|
|
|
m_SymbolList->Freeze(); // HyperIris: wx style fast filling
|
2009-07-06 02:10:26 +00:00
|
|
|
m_SymbolList->Clear();
|
2014-02-12 15:00:34 +00:00
|
|
|
for (const auto& symbol : DSPSymbols::g_dsp_symbol_db.Symbols())
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2014-02-12 15:00:34 +00:00
|
|
|
int idx = m_SymbolList->Append(StrToWxStr(symbol.second.name));
|
|
|
|
m_SymbolList->SetClientData(idx, (void*)&symbol.second);
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
m_SymbolList->Thaw();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSPDebuggerLLE::OnSymbolListChange(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
int index = m_SymbolList->GetSelection();
|
|
|
|
if (index >= 0) {
|
|
|
|
Symbol* pSymbol = static_cast<Symbol *>(m_SymbolList->GetClientData(index));
|
2014-03-09 20:14:26 +00:00
|
|
|
if (pSymbol != nullptr)
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
|
|
|
if (pSymbol->type == Symbol::SYMBOL_FUNCTION)
|
|
|
|
{
|
|
|
|
JumpToAddress(pSymbol->address);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSPDebuggerLLE::UpdateRegisterFlags()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSPDebuggerLLE::OnAddrBoxChange(wxCommandEvent& event)
|
|
|
|
{
|
2010-02-18 12:06:13 +00:00
|
|
|
wxTextCtrl* pAddrCtrl = (wxTextCtrl*)m_Toolbar->FindControl(ID_ADDRBOX);
|
2009-07-06 02:10:26 +00:00
|
|
|
wxString txt = pAddrCtrl->GetValue();
|
|
|
|
|
2013-02-28 04:37:38 +00:00
|
|
|
auto text = StripSpaces(WxStrToStr(txt));
|
2009-07-06 02:10:26 +00:00
|
|
|
if (text.size())
|
|
|
|
{
|
|
|
|
u32 addr;
|
|
|
|
sscanf(text.c_str(), "%04x", &addr);
|
|
|
|
if (JumpToAddress(addr))
|
|
|
|
pAddrCtrl->SetBackgroundColour(*wxWHITE);
|
|
|
|
else
|
|
|
|
pAddrCtrl->SetBackgroundColour(*wxRED);
|
|
|
|
}
|
2010-02-18 12:06:13 +00:00
|
|
|
event.Skip();
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DSPDebuggerLLE::JumpToAddress(u16 addr)
|
|
|
|
{
|
2010-02-18 12:06:13 +00:00
|
|
|
int page = m_MainNotebook->GetSelection();
|
|
|
|
if (page == 0)
|
|
|
|
{
|
|
|
|
// Center on valid instruction in IRAM/IROM
|
|
|
|
int new_line = DSPSymbols::Addr2Line(addr);
|
|
|
|
if (new_line >= 0) {
|
|
|
|
m_CodeView->Center(new_line);
|
|
|
|
return true;
|
|
|
|
}
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|
2010-02-18 12:06:13 +00:00
|
|
|
else if (page == 1)
|
|
|
|
{
|
|
|
|
// Center on any location in any valid ROM/RAM
|
|
|
|
int seg = addr >> 12;
|
|
|
|
if (seg == 0 || seg == 1 ||
|
|
|
|
seg == 8 || seg == 0xf)
|
|
|
|
{
|
|
|
|
m_MemView->Center(addr);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|