2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
#include "StringUtil.h"
|
2009-06-21 08:39:21 +00:00
|
|
|
#include "DebuggerUIUtil.h"
|
|
|
|
#include "DebugInterface.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-27 21:28:09 +00:00
|
|
|
#include "Host.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
#include "CodeView.h"
|
2009-06-21 08:39:21 +00:00
|
|
|
#include "SymbolDB.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
#include <wx/event.h>
|
|
|
|
#include <wx/clipbrd.h>
|
|
|
|
#include <wx/textdlg.h>
|
|
|
|
|
|
|
|
DEFINE_EVENT_TYPE(wxEVT_CODEVIEW_CHANGE);
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
IDM_GOTOINMEMVIEW = 12000,
|
|
|
|
IDM_COPYADDRESS,
|
|
|
|
IDM_COPYHEX,
|
|
|
|
IDM_COPYCODE,
|
2009-06-09 05:26:39 +00:00
|
|
|
IDM_INSERTBLR, IDM_INSERTNOP,
|
2008-12-08 05:30:24 +00:00
|
|
|
IDM_RUNTOHERE,
|
|
|
|
IDM_JITRESULTS,
|
|
|
|
IDM_FOLLOWBRANCH,
|
|
|
|
IDM_RENAMESYMBOL,
|
|
|
|
IDM_PATCHALERT,
|
|
|
|
IDM_COPYFUNCTION,
|
2009-01-20 13:13:03 +00:00
|
|
|
IDM_ADDFUNCTION,
|
2008-12-08 05:30:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(CCodeView, wxControl)
|
|
|
|
EVT_ERASE_BACKGROUND(CCodeView::OnErase)
|
|
|
|
EVT_PAINT(CCodeView::OnPaint)
|
|
|
|
EVT_LEFT_DOWN(CCodeView::OnMouseDown)
|
|
|
|
EVT_LEFT_UP(CCodeView::OnMouseUpL)
|
|
|
|
EVT_MOTION(CCodeView::OnMouseMove)
|
|
|
|
EVT_RIGHT_DOWN(CCodeView::OnMouseDown)
|
|
|
|
EVT_RIGHT_UP(CCodeView::OnMouseUpR)
|
|
|
|
EVT_MENU(-1, CCodeView::OnPopupMenu)
|
2011-02-24 05:05:25 +00:00
|
|
|
EVT_SIZE(CCodeView::OnResize)
|
2008-12-08 05:30:24 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
2011-02-24 05:05:25 +00:00
|
|
|
CCodeView::CCodeView(DebugInterface* debuginterface, SymbolDB *symboldb,
|
|
|
|
wxWindow* parent, wxWindowID Id)
|
|
|
|
: wxControl(parent, Id),
|
2008-12-08 05:30:24 +00:00
|
|
|
debugger(debuginterface),
|
2009-06-21 08:39:21 +00:00
|
|
|
symbol_db(symboldb),
|
|
|
|
plain(false),
|
2011-02-24 05:05:25 +00:00
|
|
|
curAddress(debuginterface->getPC()),
|
|
|
|
align(debuginterface->getInstructionSize(0)),
|
2008-12-08 05:30:24 +00:00
|
|
|
rowHeight(13),
|
|
|
|
selection(0),
|
|
|
|
oldSelection(0),
|
|
|
|
selectionChanged(false),
|
|
|
|
selecting(false),
|
|
|
|
hasFocus(false),
|
|
|
|
showHex(false),
|
|
|
|
lx(-1),
|
|
|
|
ly(-1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int CCodeView::YToAddress(int y)
|
|
|
|
{
|
|
|
|
wxRect rc = GetClientRect();
|
|
|
|
int ydiff = y - rc.height / 2 - rowHeight / 2;
|
|
|
|
ydiff = (int)(floorf((float)ydiff / (float)rowHeight)) + 1;
|
2011-02-24 05:05:25 +00:00
|
|
|
return curAddress + ydiff * align;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCodeView::OnMouseDown(wxMouseEvent& event)
|
|
|
|
{
|
|
|
|
int x = event.m_x;
|
|
|
|
int y = event.m_y;
|
|
|
|
|
|
|
|
if (x > 16)
|
|
|
|
{
|
|
|
|
oldSelection = selection;
|
|
|
|
selection = YToAddress(y);
|
|
|
|
// SetCapture(wnd);
|
|
|
|
bool oldselecting = selecting;
|
|
|
|
selecting = true;
|
|
|
|
|
|
|
|
if (!oldselecting || (selection != oldSelection))
|
2011-02-24 05:05:25 +00:00
|
|
|
Refresh();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
else
|
2010-08-08 06:00:22 +00:00
|
|
|
ToggleBreakpoint(YToAddress(y));
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
event.Skip(true);
|
|
|
|
}
|
|
|
|
|
2010-08-08 06:00:22 +00:00
|
|
|
void CCodeView::ToggleBreakpoint(u32 address)
|
|
|
|
{
|
|
|
|
debugger->toggleBreakpoint(address);
|
2011-02-24 05:05:25 +00:00
|
|
|
Refresh();
|
2010-08-08 06:00:22 +00:00
|
|
|
Host_UpdateBreakPointView();
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
void CCodeView::OnMouseMove(wxMouseEvent& event)
|
|
|
|
{
|
|
|
|
wxRect rc = GetClientRect();
|
|
|
|
|
2011-02-24 05:05:25 +00:00
|
|
|
if (event.m_leftDown && event.m_x > 16)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-02-24 05:05:25 +00:00
|
|
|
if (event.m_y < 0)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-02-24 05:05:25 +00:00
|
|
|
curAddress -= align;
|
|
|
|
Refresh();
|
|
|
|
}
|
|
|
|
else if (event.m_y > rc.height)
|
|
|
|
{
|
|
|
|
curAddress += align;
|
|
|
|
Refresh();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2011-02-24 05:05:25 +00:00
|
|
|
else
|
|
|
|
OnMouseDown(event);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
event.Skip(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCodeView::RaiseEvent()
|
|
|
|
{
|
|
|
|
wxCommandEvent ev(wxEVT_CODEVIEW_CHANGE, GetId());
|
|
|
|
ev.SetEventObject(this);
|
|
|
|
ev.SetInt(selection);
|
|
|
|
GetEventHandler()->ProcessEvent(ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCodeView::OnMouseUpL(wxMouseEvent& event)
|
|
|
|
{
|
|
|
|
if (event.m_x > 16)
|
|
|
|
{
|
|
|
|
curAddress = YToAddress(event.m_y);
|
|
|
|
selecting = false;
|
2011-02-24 05:05:25 +00:00
|
|
|
Refresh();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
RaiseEvent();
|
|
|
|
event.Skip(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 CCodeView::AddrToBranch(u32 addr)
|
|
|
|
{
|
2008-12-09 21:24:12 +00:00
|
|
|
char disasm[256];
|
|
|
|
debugger->disasm(addr, disasm, 256);
|
|
|
|
const char *mojs = strstr(disasm, "->0x");
|
2008-12-08 05:30:24 +00:00
|
|
|
if (mojs)
|
|
|
|
{
|
|
|
|
u32 dest;
|
|
|
|
sscanf(mojs+4,"%08x", &dest);
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-06-09 05:26:39 +00:00
|
|
|
void CCodeView::InsertBlrNop(int Blr)
|
|
|
|
{
|
|
|
|
// Check if this address has been modified
|
|
|
|
int find = -1;
|
|
|
|
for(u32 i = 0; i < BlrList.size(); i++)
|
|
|
|
{
|
|
|
|
if(BlrList.at(i).Address == selection)
|
|
|
|
{ find = i; break; }
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save the old value
|
2009-06-21 08:39:21 +00:00
|
|
|
if (find >= 0)
|
2009-06-09 05:26:39 +00:00
|
|
|
{
|
2009-06-21 08:39:21 +00:00
|
|
|
debugger->writeExtraMemory(0, BlrList.at(find).OldValue, selection);
|
2009-06-09 05:26:39 +00:00
|
|
|
BlrList.erase(BlrList.begin() + find);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BlrStruct Temp;
|
|
|
|
Temp.Address = selection;
|
|
|
|
Temp.OldValue = debugger->readMemory(selection);
|
|
|
|
BlrList.push_back(Temp);
|
|
|
|
if (Blr == 0)
|
|
|
|
debugger->insertBLR(selection, 0x4e800020);
|
|
|
|
else
|
|
|
|
debugger->insertBLR(selection, 0x60000000);
|
|
|
|
}
|
2011-02-24 05:05:25 +00:00
|
|
|
Refresh();
|
2009-06-09 05:26:39 +00:00
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
void CCodeView::OnPopupMenu(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
#if wxUSE_CLIPBOARD
|
|
|
|
wxTheClipboard->Open();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (event.GetId())
|
|
|
|
{
|
|
|
|
case IDM_GOTOINMEMVIEW:
|
|
|
|
// CMemoryDlg::Goto(selection);
|
|
|
|
break;
|
|
|
|
|
|
|
|
#if wxUSE_CLIPBOARD
|
|
|
|
case IDM_COPYADDRESS:
|
|
|
|
wxTheClipboard->SetData(new wxTextDataObject(wxString::Format(_T("%08x"), selection)));
|
|
|
|
break;
|
|
|
|
|
2008-12-09 21:24:12 +00:00
|
|
|
case IDM_COPYCODE:
|
2011-02-24 05:05:25 +00:00
|
|
|
{
|
2008-12-09 21:24:12 +00:00
|
|
|
char disasm[256];
|
|
|
|
debugger->disasm(selection, disasm, 256);
|
2011-02-24 05:05:25 +00:00
|
|
|
wxTheClipboard->SetData(new wxTextDataObject(wxString::FromAscii(disasm)));
|
|
|
|
}
|
|
|
|
break;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
case IDM_COPYHEX:
|
|
|
|
{
|
|
|
|
char temp[24];
|
|
|
|
sprintf(temp, "%08x", debugger->readInstruction(selection));
|
|
|
|
wxTheClipboard->SetData(new wxTextDataObject(wxString::FromAscii(temp)));
|
|
|
|
}
|
|
|
|
break;
|
2009-01-20 13:13:03 +00:00
|
|
|
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
case IDM_COPYFUNCTION:
|
|
|
|
{
|
2009-06-21 08:39:21 +00:00
|
|
|
Symbol *symbol = symbol_db->GetSymbolFromAddr(selection);
|
2011-02-24 05:05:25 +00:00
|
|
|
if (symbol)
|
|
|
|
{
|
2008-12-08 05:30:24 +00:00
|
|
|
std::string text;
|
|
|
|
text = text + symbol->name + "\r\n";
|
|
|
|
// we got a function
|
|
|
|
u32 start = symbol->address;
|
|
|
|
u32 end = start + symbol->size;
|
2011-02-24 05:05:25 +00:00
|
|
|
for (u32 addr = start; addr != end; addr += 4)
|
|
|
|
{
|
2008-12-09 21:24:12 +00:00
|
|
|
char disasm[256];
|
|
|
|
debugger->disasm(addr, disasm, 256);
|
|
|
|
text = text + StringFromFormat("%08x: ", addr) + disasm + "\r\n";
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
wxTheClipboard->SetData(new wxTextDataObject(wxString::FromAscii(text.c_str())));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case IDM_RUNTOHERE:
|
|
|
|
debugger->setBreakpoint(selection);
|
|
|
|
debugger->runToBreakpoint();
|
2011-02-24 05:05:25 +00:00
|
|
|
Refresh();
|
2008-12-08 05:30:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
// Insert blr or restore old value
|
|
|
|
case IDM_INSERTBLR:
|
2009-06-09 05:26:39 +00:00
|
|
|
InsertBlrNop(0);
|
2011-02-24 05:05:25 +00:00
|
|
|
Refresh();
|
2009-06-09 05:26:39 +00:00
|
|
|
break;
|
|
|
|
case IDM_INSERTNOP:
|
|
|
|
InsertBlrNop(1);
|
2011-02-24 05:05:25 +00:00
|
|
|
Refresh();
|
2008-12-08 05:30:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IDM_JITRESULTS:
|
2009-07-11 20:37:55 +00:00
|
|
|
debugger->showJitResults(selection);
|
2008-12-08 05:30:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IDM_FOLLOWBRANCH:
|
|
|
|
{
|
|
|
|
u32 dest = AddrToBranch(selection);
|
|
|
|
if (dest)
|
|
|
|
Center(dest);
|
|
|
|
RaiseEvent();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2009-01-20 13:13:03 +00:00
|
|
|
case IDM_ADDFUNCTION:
|
2009-06-21 08:39:21 +00:00
|
|
|
symbol_db->AddFunction(selection);
|
2009-09-27 21:28:09 +00:00
|
|
|
Host_NotifyMapLoaded();
|
2009-01-20 13:13:03 +00:00
|
|
|
break;
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
case IDM_RENAMESYMBOL:
|
|
|
|
{
|
2009-06-21 08:39:21 +00:00
|
|
|
Symbol *symbol = symbol_db->GetSymbolFromAddr(selection);
|
2011-02-24 05:05:25 +00:00
|
|
|
if (symbol)
|
|
|
|
{
|
|
|
|
wxTextEntryDialog input_symbol(this, wxString::FromAscii("Rename symbol:"),
|
|
|
|
wxGetTextFromUserPromptStr,
|
|
|
|
wxString::FromAscii(symbol->name.c_str()));
|
|
|
|
if (input_symbol.ShowModal() == wxID_OK)
|
|
|
|
{
|
2008-12-08 05:30:24 +00:00
|
|
|
symbol->name = input_symbol.GetValue().mb_str();
|
2011-02-24 05:05:25 +00:00
|
|
|
Refresh(); // Redraw to show the renamed symbol
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-09-27 21:28:09 +00:00
|
|
|
Host_NotifyMapLoaded();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IDM_PATCHALERT:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if wxUSE_CLIPBOARD
|
|
|
|
wxTheClipboard->Close();
|
|
|
|
#endif
|
|
|
|
event.Skip(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCodeView::OnMouseUpR(wxMouseEvent& event)
|
|
|
|
{
|
2009-06-21 08:39:21 +00:00
|
|
|
bool isSymbol = symbol_db->GetSymbolFromAddr(selection) != 0;
|
2008-12-08 05:30:24 +00:00
|
|
|
// popup menu
|
2009-11-23 08:05:54 +00:00
|
|
|
wxMenu* menu = new wxMenu;
|
|
|
|
//menu->Append(IDM_GOTOINMEMVIEW, "&Goto in mem view");
|
2011-02-24 05:05:25 +00:00
|
|
|
menu->Append(IDM_FOLLOWBRANCH,
|
|
|
|
wxString::FromAscii("&Follow branch"))->Enable(AddrToBranch(selection) ? true : false);
|
2009-11-23 08:05:54 +00:00
|
|
|
menu->AppendSeparator();
|
2008-12-08 05:30:24 +00:00
|
|
|
#if wxUSE_CLIPBOARD
|
2009-11-23 08:05:54 +00:00
|
|
|
menu->Append(IDM_COPYADDRESS, wxString::FromAscii("Copy &address"));
|
|
|
|
menu->Append(IDM_COPYFUNCTION, wxString::FromAscii("Copy &function"))->Enable(isSymbol);
|
|
|
|
menu->Append(IDM_COPYCODE, wxString::FromAscii("Copy &code line"));
|
|
|
|
menu->Append(IDM_COPYHEX, wxString::FromAscii("Copy &hex"));
|
|
|
|
menu->AppendSeparator();
|
2008-12-08 05:30:24 +00:00
|
|
|
#endif
|
2009-11-23 08:05:54 +00:00
|
|
|
menu->Append(IDM_RENAMESYMBOL, wxString::FromAscii("Rename &symbol"))->Enable(isSymbol);
|
|
|
|
menu->AppendSeparator();
|
2011-01-05 04:35:46 +00:00
|
|
|
menu->Append(IDM_RUNTOHERE, _("&Run To Here"));
|
|
|
|
menu->Append(IDM_ADDFUNCTION, _("&Add function"));
|
2009-11-23 08:05:54 +00:00
|
|
|
menu->Append(IDM_JITRESULTS, wxString::FromAscii("PPC vs X86"));
|
|
|
|
menu->Append(IDM_INSERTBLR, wxString::FromAscii("Insert &blr"));
|
|
|
|
menu->Append(IDM_INSERTNOP, wxString::FromAscii("Insert &nop"));
|
|
|
|
menu->Append(IDM_PATCHALERT, wxString::FromAscii("Patch alert"));
|
|
|
|
PopupMenu(menu);
|
2008-12-08 05:30:24 +00:00
|
|
|
event.Skip(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCodeView::OnErase(wxEraseEvent& event)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void CCodeView::OnPaint(wxPaintEvent& event)
|
|
|
|
{
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// General settings
|
|
|
|
// -------------------------
|
|
|
|
wxPaintDC dc(this);
|
|
|
|
wxRect rc = GetClientRect();
|
2009-06-21 08:39:21 +00:00
|
|
|
|
2009-02-06 18:18:20 +00:00
|
|
|
dc.SetFont(DebuggerFont);
|
2009-06-21 08:39:21 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
struct branch
|
|
|
|
{
|
|
|
|
int src, dst, srcAddr;
|
|
|
|
};
|
|
|
|
|
|
|
|
branch branches[256];
|
|
|
|
int numBranches = 0;
|
|
|
|
// TODO: Add any drawing code here...
|
|
|
|
int width = rc.width;
|
|
|
|
int numRows = (rc.height / rowHeight) / 2 + 2;
|
|
|
|
// ------------
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// Colors and brushes
|
|
|
|
// -------------------------
|
|
|
|
dc.SetBackgroundMode(wxTRANSPARENT); // the text background
|
|
|
|
const wxChar* bgColor = _T("#ffffff");
|
|
|
|
wxPen nullPen(bgColor);
|
|
|
|
wxPen currentPen(_T("#000000"));
|
|
|
|
wxPen selPen(_T("#808080")); // gray
|
|
|
|
nullPen.SetStyle(wxTRANSPARENT);
|
|
|
|
currentPen.SetStyle(wxSOLID);
|
2011-01-05 04:35:46 +00:00
|
|
|
wxBrush currentBrush(_T("#FFEfE8")); // light gray
|
|
|
|
wxBrush pcBrush(_T("#70FF70")); // green
|
2008-12-08 05:30:24 +00:00
|
|
|
wxBrush bpBrush(_T("#FF3311")); // red
|
|
|
|
|
|
|
|
wxBrush bgBrush(bgColor);
|
|
|
|
wxBrush nullBrush(bgColor);
|
|
|
|
nullBrush.SetStyle(wxTRANSPARENT);
|
|
|
|
|
|
|
|
dc.SetPen(nullPen);
|
|
|
|
dc.SetBrush(bgBrush);
|
|
|
|
dc.DrawRectangle(0, 0, 16, rc.height);
|
|
|
|
dc.DrawRectangle(0, 0, rc.width, 5);
|
|
|
|
// ------------
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// Walk through all visible rows
|
|
|
|
// -------------------------
|
|
|
|
for (int i = -numRows; i <= numRows; i++)
|
|
|
|
{
|
|
|
|
unsigned int address = curAddress + i * align;
|
|
|
|
|
|
|
|
int rowY1 = rc.height / 2 + rowHeight * i - rowHeight / 2;
|
|
|
|
int rowY2 = rc.height / 2 + rowHeight * i + rowHeight / 2;
|
|
|
|
|
|
|
|
wxString temp = wxString::Format(_T("%08x"), address);
|
|
|
|
u32 col = debugger->getColor(address);
|
|
|
|
wxBrush rowBrush(wxColor(col >> 16, col >> 8, col));
|
|
|
|
dc.SetBrush(nullBrush);
|
|
|
|
dc.SetPen(nullPen);
|
|
|
|
dc.DrawRectangle(0, rowY1, 16, rowY2 - rowY1 + 2);
|
|
|
|
|
|
|
|
if (selecting && (address == selection))
|
|
|
|
dc.SetPen(selPen);
|
|
|
|
else
|
|
|
|
dc.SetPen(i == 0 ? currentPen : nullPen);
|
|
|
|
|
|
|
|
if (address == debugger->getPC())
|
|
|
|
dc.SetBrush(pcBrush);
|
|
|
|
else
|
|
|
|
dc.SetBrush(rowBrush);
|
|
|
|
|
|
|
|
dc.DrawRectangle(16, rowY1, width, rowY2 - rowY1 + 1);
|
|
|
|
dc.SetBrush(currentBrush);
|
2011-02-24 05:05:25 +00:00
|
|
|
if (!plain)
|
|
|
|
{
|
2009-06-21 08:39:21 +00:00
|
|
|
dc.SetTextForeground(_T("#600000")); // the address text is dark red
|
|
|
|
dc.DrawText(temp, 17, rowY1);
|
|
|
|
dc.SetTextForeground(_T("#000000"));
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-07 12:40:43 +00:00
|
|
|
// If running
|
2008-12-08 05:30:24 +00:00
|
|
|
if (debugger->isAlive())
|
|
|
|
{
|
2008-12-09 21:24:12 +00:00
|
|
|
char dis[256];
|
|
|
|
debugger->disasm(address, dis, 256);
|
2008-12-08 05:30:24 +00:00
|
|
|
char* dis2 = strchr(dis, '\t');
|
|
|
|
char desc[256] = "";
|
|
|
|
|
|
|
|
// If we have a code
|
|
|
|
if (dis2)
|
|
|
|
{
|
|
|
|
*dis2 = 0;
|
|
|
|
dis2++;
|
2009-06-21 08:39:21 +00:00
|
|
|
// look for hex strings to decode branches
|
2008-12-08 05:30:24 +00:00
|
|
|
const char* mojs = strstr(dis2, "0x8");
|
|
|
|
if (mojs)
|
|
|
|
{
|
|
|
|
for (int k = 0; k < 8; k++)
|
|
|
|
{
|
|
|
|
bool found = false;
|
|
|
|
for (int j = 0; j < 22; j++)
|
|
|
|
{
|
|
|
|
if (mojs[k + 2] == "0123456789ABCDEFabcdef"[j])
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
{
|
|
|
|
mojs = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mojs)
|
|
|
|
{
|
|
|
|
int offs;
|
|
|
|
sscanf(mojs + 2, "%08x", &offs);
|
|
|
|
branches[numBranches].src = rowY1 + rowHeight / 2;
|
|
|
|
branches[numBranches].srcAddr = address / align;
|
|
|
|
branches[numBranches++].dst = (int)(rowY1 + ((s64)(u32)offs - (s64)(u32)address) * rowHeight / align + rowHeight / 2);
|
|
|
|
sprintf(desc, "-->%s", debugger->getDescription(offs).c_str());
|
|
|
|
dc.SetTextForeground(_T("#600060")); // the -> arrow illustrations are purple
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dc.SetTextForeground(_T("#000000"));
|
|
|
|
}
|
|
|
|
|
2009-01-05 03:09:13 +00:00
|
|
|
dc.DrawText(wxString::FromAscii(dis2), 140, rowY1);
|
2008-12-08 05:30:24 +00:00
|
|
|
// ------------
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show blr as its' own color
|
|
|
|
if (strcmp(dis, "blr"))
|
|
|
|
dc.SetTextForeground(_T("#007000")); // dark green
|
|
|
|
else
|
|
|
|
dc.SetTextForeground(_T("#8000FF")); // purple
|
|
|
|
|
2009-06-21 08:39:21 +00:00
|
|
|
dc.DrawText(wxString::FromAscii(dis), plain ? 25 : 80, rowY1);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (desc[0] == 0)
|
|
|
|
{
|
|
|
|
strcpy(desc, debugger->getDescription(address).c_str());
|
|
|
|
}
|
|
|
|
|
2009-06-21 08:39:21 +00:00
|
|
|
if (!plain) {
|
|
|
|
dc.SetTextForeground(_T("#0000FF")); // blue
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-06-21 08:39:21 +00:00
|
|
|
//char temp[256];
|
|
|
|
//UnDecorateSymbolName(desc,temp,255,UNDNAME_COMPLETE);
|
|
|
|
if (strlen(desc))
|
|
|
|
{
|
|
|
|
dc.DrawText(wxString::FromAscii(desc), 270, rowY1);
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Show red breakpoint dot
|
|
|
|
if (debugger->isBreakpoint(address))
|
|
|
|
{
|
|
|
|
dc.SetBrush(bpBrush);
|
2009-01-05 03:09:13 +00:00
|
|
|
dc.DrawRectangle(2, rowY1 + 1, 11, 11);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end of for
|
|
|
|
// ------------
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// Colors and brushes
|
|
|
|
// -------------------------
|
|
|
|
dc.SetPen(currentPen);
|
|
|
|
|
|
|
|
for (int i = 0; i < numBranches; i++)
|
|
|
|
{
|
2009-01-05 03:09:13 +00:00
|
|
|
int x = 370 + (branches[i].srcAddr % 9) * 8;
|
2008-12-08 05:30:24 +00:00
|
|
|
_MoveTo(x-2, branches[i].src);
|
|
|
|
|
|
|
|
if (branches[i].dst < rc.height + 400 && branches[i].dst > -400)
|
|
|
|
{
|
|
|
|
_LineTo(dc, x+2, branches[i].src);
|
|
|
|
_LineTo(dc, x+2, branches[i].dst);
|
|
|
|
_LineTo(dc, x-4, branches[i].dst);
|
|
|
|
|
|
|
|
_MoveTo(x, branches[i].dst - 4);
|
|
|
|
_LineTo(dc, x-4, branches[i].dst);
|
|
|
|
_LineTo(dc, x+1, branches[i].dst+5);
|
|
|
|
}
|
2009-01-05 03:09:13 +00:00
|
|
|
//else
|
|
|
|
//{
|
|
|
|
// This can be re-enabled when there is a scrollbar or
|
|
|
|
// something on the codeview (the lines are too long)
|
|
|
|
|
|
|
|
//_LineTo(dc, x+4, branches[i].src);
|
|
|
|
//_MoveTo(x+2, branches[i].dst-4);
|
|
|
|
//_LineTo(dc, x+6, branches[i].dst);
|
|
|
|
//_LineTo(dc, x+1, branches[i].dst+5);
|
|
|
|
//}
|
|
|
|
|
|
|
|
//_LineTo(dc, x, branches[i].dst+4);
|
|
|
|
//_LineTo(dc, x-2, branches[i].dst);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
// ------------
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCodeView::_LineTo(wxPaintDC &dc, int x, int y)
|
|
|
|
{
|
|
|
|
dc.DrawLine(lx, ly, x, y);
|
|
|
|
lx = x;
|
|
|
|
ly = y;
|
|
|
|
}
|
|
|
|
|
2011-02-24 05:05:25 +00:00
|
|
|
void CCodeView::OnResize(wxSizeEvent& event)
|
|
|
|
{
|
|
|
|
Refresh();
|
|
|
|
event.Skip();
|
|
|
|
}
|