mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
69b837f18b
New features : Breakpoint display, thread status, display list status Update translation and start french translation
111 lines
2.4 KiB
C++
111 lines
2.4 KiB
C++
#include "debugger_memory.h"
|
|
#include "ui_debugger_memory.h"
|
|
#include "EmuThread.h"
|
|
#include "Core/Debugger/SymbolMap.h"
|
|
#include <QTimer>
|
|
|
|
Debugger_Memory::Debugger_Memory(DebugInterface *_cpu, MainWindow* mainWindow_, QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::Debugger_Memory),
|
|
cpu(_cpu),
|
|
mainWindow(mainWindow_)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
setWindowTitle(QString("Memory Viewer - ")+cpu->GetName());
|
|
|
|
ui->memView->setDebugger(_cpu);
|
|
}
|
|
|
|
Debugger_Memory::~Debugger_Memory()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
|
|
void Debugger_Memory::showEvent(QShowEvent *)
|
|
{
|
|
|
|
#ifdef Q_WS_X11
|
|
// Hack to remove the X11 crash with threaded opengl when opening the first dialog
|
|
EmuThread_LockDraw(true);
|
|
QTimer::singleShot(100, this, SLOT(releaseLock()));
|
|
#endif
|
|
}
|
|
|
|
void Debugger_Memory::releaseLock()
|
|
{
|
|
EmuThread_LockDraw(false);
|
|
}
|
|
|
|
void Debugger_Memory::Update()
|
|
{
|
|
ui->memView->redraw();
|
|
}
|
|
|
|
void Debugger_Memory::Goto(u32 addr)
|
|
{
|
|
show();
|
|
ui->memView->gotoAddr(addr & ~3);
|
|
}
|
|
|
|
void Debugger_Memory::on_editAddress_textChanged(const QString &arg1)
|
|
{
|
|
u32 addr;
|
|
sscanf(arg1.toStdString().c_str(),"%08x",&addr);
|
|
ui->memView->gotoAddr(addr & ~3);
|
|
}
|
|
|
|
void Debugger_Memory::on_normalBtn_clicked()
|
|
{
|
|
ui->memView->setMode(MV_NORMAL);
|
|
}
|
|
|
|
void Debugger_Memory::on_symbolsBtn_clicked()
|
|
{
|
|
ui->memView->setMode(MV_SYMBOLS);
|
|
}
|
|
|
|
void Debugger_Memory::on_memView_customContextMenuRequested(const QPoint &pos)
|
|
{
|
|
ui->memView->contextMenu(pos);
|
|
}
|
|
|
|
void Debugger_Memory::NotifyMapLoaded()
|
|
{
|
|
QListWidgetItem* item = new QListWidgetItem();
|
|
item->setText("(0x80000000)");
|
|
item->setData(Qt::UserRole, 0x80000000);
|
|
ui->symbols->addItem(item);
|
|
|
|
for(int i = 0; i < symbolMap.GetNumSymbols(); i++)
|
|
{
|
|
if(symbolMap.GetSymbolType(i) & ST_DATA)
|
|
{
|
|
QListWidgetItem* item = new QListWidgetItem();
|
|
item->setText(QString(symbolMap.GetSymbolName(i)) + " ("+ QVariant(symbolMap.GetSymbolSize(i)).toString() +")");
|
|
item->setData(Qt::UserRole, symbolMap.GetAddress(i));
|
|
ui->symbols->addItem(item);
|
|
}
|
|
}
|
|
|
|
ui->regions->clear();
|
|
/*
|
|
for (int i = 0; i < cpu->getMemMap()->numRegions; i++)
|
|
{
|
|
int n = ComboBox_AddString(lb,cpu->getMemMap()->regions[i].name);
|
|
ComboBox_SetItemData(lb,n,cpu->getMemMap()->regions[i].start);
|
|
}
|
|
*/
|
|
}
|
|
|
|
void Debugger_Memory::on_regions_currentIndexChanged(int index)
|
|
{
|
|
ui->memView->gotoAddr(ui->regions->itemData(index,Qt::UserRole).toInt());
|
|
}
|
|
|
|
void Debugger_Memory::on_symbols_itemClicked(QListWidgetItem *item)
|
|
{
|
|
ui->memView->gotoAddr(item->data(Qt::UserRole).toInt());
|
|
}
|