#include "debuggerwindow.h" #include "core/cpu_core_private.h" #include "debuggermodels.h" #include "qthostinterface.h" #include #include #include #include #include DebuggerWindow::DebuggerWindow(QWidget* parent /* = nullptr */) : QMainWindow(parent), m_active_memory_region(Bus::MemoryRegion::Count) { m_ui.setupUi(this); setupAdditionalUi(); connectSignals(); createModels(); setMemoryViewRegion(Bus::MemoryRegion::RAM); setUIEnabled(false); } DebuggerWindow::~DebuggerWindow() {} void DebuggerWindow::onEmulationPaused(bool paused) { if (paused) { setUIEnabled(true); refreshAll(); refreshBreakpointList(); } else { setUIEnabled(false); } { QSignalBlocker sb(m_ui.actionPause); m_ui.actionPause->setChecked(paused); } } void DebuggerWindow::onDebuggerMessageReported(const QString& message) { m_ui.statusbar->showMessage(message, 0); } void DebuggerWindow::refreshAll() { m_registers_model->invalidateView(); m_stack_model->invalidateView(); m_ui.memoryView->repaint(); m_code_model->setPC(CPU::g_state.regs.pc); scrollToPC(); } void DebuggerWindow::scrollToPC() { return scrollToCodeAddress(CPU::g_state.regs.pc); } void DebuggerWindow::scrollToCodeAddress(VirtualMemoryAddress address) { m_code_model->ensureAddressVisible(address); int row = m_code_model->getRowForAddress(address); if (row >= 0) { qApp->processEvents(QEventLoop::ExcludeUserInputEvents); m_ui.codeView->scrollTo(m_code_model->index(row, 0)); } } void DebuggerWindow::onPauseActionToggled(bool paused) { if (!paused) { m_registers_model->saveCurrentValues(); setUIEnabled(false); } QtHostInterface::GetInstance()->pauseSystem(paused); } void DebuggerWindow::onRunToCursorTriggered() { std::optional addr = getSelectedCodeAddress(); if (!addr.has_value()) { QMessageBox::critical(this, windowTitle(), tr("No address selected.")); return; } CPU::AddBreakpoint(addr.value(), true, true); QtHostInterface::GetInstance()->pauseSystem(false); } void DebuggerWindow::onGoToPCTriggered() { scrollToPC(); } void DebuggerWindow::onGoToAddressTriggered() { std::optional address = promptForAddress(tr("Enter code address:")); if (!address.has_value()) return; scrollToCodeAddress(address.value()); } void DebuggerWindow::onDumpAddressTriggered() { std::optional address = promptForAddress(tr("Enter memory address:")); if (!address.has_value()) return; scrollToMemoryAddress(address.value()); } void DebuggerWindow::onFollowAddressTriggered() { // } void DebuggerWindow::onAddBreakpointTriggered() { std::optional address = promptForAddress(tr("Enter code address:")); if (!address.has_value()) return; if (CPU::HasBreakpointAtAddress(address.value())) { QMessageBox::critical(this, windowTitle(), tr("A breakpoint already exists at this address.")); return; } toggleBreakpoint(address.value()); } void DebuggerWindow::onToggleBreakpointTriggered() { std::optional address = getSelectedCodeAddress(); if (!address.has_value()) return; toggleBreakpoint(address.value()); } void DebuggerWindow::onClearBreakpointsTriggered() { clearBreakpoints(); } void DebuggerWindow::onStepIntoActionTriggered() { Assert(System::IsPaused()); m_registers_model->saveCurrentValues(); QtHostInterface::GetInstance()->singleStepCPU(); refreshAll(); } void DebuggerWindow::onStepOverActionTriggered() { Assert(System::IsPaused()); if (!CPU::AddStepOverBreakpoint()) { onStepIntoActionTriggered(); return; } // unpause to let it run to the breakpoint m_registers_model->saveCurrentValues(); QtHostInterface::GetInstance()->pauseSystem(false); } void DebuggerWindow::onStepOutActionTriggered() { Assert(System::IsPaused()); if (!CPU::AddStepOutBreakpoint()) { QMessageBox::critical(this, tr("Debugger"), tr("Failed to add step-out breakpoint, are you in a valid function?")); return; } // unpause to let it run to the breakpoint m_registers_model->saveCurrentValues(); QtHostInterface::GetInstance()->pauseSystem(false); } void DebuggerWindow::onCodeViewItemActivated(QModelIndex index) { if (!index.isValid()) return; const VirtualMemoryAddress address = m_code_model->getAddressForIndex(index); switch (index.column()) { case 0: // breakpoint case 3: // disassembly toggleBreakpoint(address); break; case 1: // address case 2: // bytes scrollToMemoryAddress(address); break; case 4: // comment tryFollowLoadStore(address); break; } } void DebuggerWindow::onMemorySearchTriggered() { m_ui.memoryView->clearHighlightRange(); const QString pattern_str = m_ui.memorySearchString->text(); if (pattern_str.isEmpty()) return; std::vector pattern; std::vector mask; u8 spattern = 0; u8 smask = 0; bool msb = false; pattern.reserve(static_cast(pattern_str.length()) / 2); mask.reserve(static_cast(pattern_str.length()) / 2); for (int i = 0; i < pattern_str.length(); i++) { const QChar ch = pattern_str[i]; if (ch == ' ') continue; if (ch == '?') { spattern = (spattern << 4); smask = (smask << 4); } else if (ch.isDigit()) { spattern = (spattern << 4) | static_cast(ch.digitValue()); smask = (smask << 4) | 0xF; } else if (ch.unicode() >= 'a' && ch.unicode() <= 'f') { spattern = (spattern << 4) | (0xA + static_cast(ch.unicode() - 'a')); smask = (smask << 4) | 0xF; } else if (ch.unicode() >= 'A' && ch.unicode() <= 'F') { spattern = (spattern << 4) | (0xA + static_cast(ch.unicode() - 'A')); smask = (smask << 4) | 0xF; } else { QMessageBox::critical(this, windowTitle(), tr("Invalid search pattern. It should contain hex digits or question marks.")); return; } if (msb) { pattern.push_back(spattern); mask.push_back(smask); spattern = 0; smask = 0; } msb = !msb; } if (msb) { // partial byte on the end spattern = (spattern << 4); smask = (smask << 4); pattern.push_back(spattern); mask.push_back(smask); } if (pattern.empty()) { QMessageBox::critical(this, windowTitle(), tr("Invalid search pattern. It should contain hex digits or question marks.")); return; } std::optional found_address = Bus::SearchMemory(m_next_memory_search_address, pattern.data(), mask.data(), static_cast(pattern.size())); bool wrapped_around = false; if (!found_address.has_value()) { found_address = Bus::SearchMemory(0, pattern.data(), mask.data(), static_cast(pattern.size())); if (!found_address.has_value()) { m_ui.statusbar->showMessage(tr("Pattern not found.")); return; } wrapped_around = true; } m_next_memory_search_address = found_address.value() + 1; if (scrollToMemoryAddress(found_address.value())) { const size_t highlight_offset = found_address.value() - m_ui.memoryView->addressOffset(); m_ui.memoryView->setHighlightRange(highlight_offset, highlight_offset + pattern.size()); } if (wrapped_around) { m_ui.statusbar->showMessage(tr("Pattern found at 0x%1 (passed the end of memory).") .arg(static_cast(found_address.value()), 8, 10, static_cast('0'))); } else { m_ui.statusbar->showMessage( tr("Pattern found at 0x%1.").arg(static_cast(found_address.value()), 8, 10, static_cast('0'))); } } void DebuggerWindow::onMemorySearchStringChanged(const QString&) { m_next_memory_search_address = 0; } void DebuggerWindow::closeEvent(QCloseEvent* event) { QMainWindow::closeEvent(event); QtHostInterface::GetInstance()->pauseSystem(true, true); CPU::ClearBreakpoints(); QtHostInterface::GetInstance()->pauseSystem(false); emit closed(); } void DebuggerWindow::setupAdditionalUi() { #ifdef WIN32 QFont fixedFont; fixedFont.setFamily(QStringLiteral("Consolas")); fixedFont.setFixedPitch(true); fixedFont.setStyleHint(QFont::TypeWriter); fixedFont.setPointSize(10); #else const QFont fixedFont = QFontDatabase::systemFont(QFontDatabase::FixedFont); #endif m_ui.codeView->setFont(fixedFont); m_ui.registerView->setFont(fixedFont); m_ui.memoryView->setFont(fixedFont); m_ui.stackView->setFont(fixedFont); setCentralWidget(nullptr); delete m_ui.centralwidget; } void DebuggerWindow::connectSignals() { QtHostInterface* hi = QtHostInterface::GetInstance(); connect(hi, &QtHostInterface::emulationPaused, this, &DebuggerWindow::onEmulationPaused); connect(hi, &QtHostInterface::debuggerMessageReported, this, &DebuggerWindow::onDebuggerMessageReported); connect(m_ui.actionPause, &QAction::toggled, this, &DebuggerWindow::onPauseActionToggled); connect(m_ui.actionRunToCursor, &QAction::triggered, this, &DebuggerWindow::onRunToCursorTriggered); connect(m_ui.actionGoToPC, &QAction::triggered, this, &DebuggerWindow::onGoToPCTriggered); connect(m_ui.actionGoToAddress, &QAction::triggered, this, &DebuggerWindow::onGoToAddressTriggered); connect(m_ui.actionDumpAddress, &QAction::triggered, this, &DebuggerWindow::onDumpAddressTriggered); connect(m_ui.actionStepInto, &QAction::triggered, this, &DebuggerWindow::onStepIntoActionTriggered); connect(m_ui.actionStepOver, &QAction::triggered, this, &DebuggerWindow::onStepOverActionTriggered); connect(m_ui.actionStepOut, &QAction::triggered, this, &DebuggerWindow::onStepOutActionTriggered); connect(m_ui.actionAddBreakpoint, &QAction::triggered, this, &DebuggerWindow::onAddBreakpointTriggered); connect(m_ui.actionToggleBreakpoint, &QAction::triggered, this, &DebuggerWindow::onToggleBreakpointTriggered); connect(m_ui.actionClearBreakpoints, &QAction::triggered, this, &DebuggerWindow::onClearBreakpointsTriggered); connect(m_ui.actionClose, &QAction::triggered, this, &DebuggerWindow::close); connect(m_ui.codeView, &QTreeView::activated, this, &DebuggerWindow::onCodeViewItemActivated); connect(m_ui.memoryRegionRAM, &QRadioButton::clicked, [this]() { setMemoryViewRegion(Bus::MemoryRegion::RAM); }); connect(m_ui.memoryRegionEXP1, &QRadioButton::clicked, [this]() { setMemoryViewRegion(Bus::MemoryRegion::EXP1); }); connect(m_ui.memoryRegionScratchpad, &QRadioButton::clicked, [this]() { setMemoryViewRegion(Bus::MemoryRegion::Scratchpad); }); connect(m_ui.memoryRegionBIOS, &QRadioButton::clicked, [this]() { setMemoryViewRegion(Bus::MemoryRegion::BIOS); }); connect(m_ui.memorySearch, &QPushButton::clicked, this, &DebuggerWindow::onMemorySearchTriggered); connect(m_ui.memorySearchString, &QLineEdit::textChanged, this, &DebuggerWindow::onMemorySearchStringChanged); } void DebuggerWindow::disconnectSignals() { QtHostInterface* hi = QtHostInterface::GetInstance(); hi->disconnect(this); } void DebuggerWindow::createModels() { m_code_model = std::make_unique(); m_ui.codeView->setModel(m_code_model.get()); // set default column width in code view m_ui.codeView->setColumnWidth(0, 40); m_ui.codeView->setColumnWidth(1, 80); m_ui.codeView->setColumnWidth(2, 80); m_ui.codeView->setColumnWidth(3, 250); m_ui.codeView->setColumnWidth(4, m_ui.codeView->width() - (40 + 80 + 80 + 250)); m_registers_model = std::make_unique(); m_ui.registerView->setModel(m_registers_model.get()); // m_ui->registerView->resizeRowsToContents(); m_stack_model = std::make_unique(); m_ui.stackView->setModel(m_stack_model.get()); m_ui.breakpointsWidget->setColumnWidth(0, 50); m_ui.breakpointsWidget->setColumnWidth(1, 80); m_ui.breakpointsWidget->setColumnWidth(2, 40); m_ui.breakpointsWidget->setRootIsDecorated(false); } void DebuggerWindow::setUIEnabled(bool enabled) { // Disable all UI elements that depend on execution state m_ui.codeView->setEnabled(enabled); m_ui.registerView->setEnabled(enabled); m_ui.stackView->setEnabled(enabled); m_ui.memoryView->setEnabled(enabled); m_ui.actionRunToCursor->setEnabled(enabled); m_ui.actionAddBreakpoint->setEnabled(enabled); m_ui.actionToggleBreakpoint->setEnabled(enabled); m_ui.actionClearBreakpoints->setEnabled(enabled); m_ui.actionDumpAddress->setEnabled(enabled); m_ui.actionStepInto->setEnabled(enabled); m_ui.actionStepOver->setEnabled(enabled); m_ui.actionStepOut->setEnabled(enabled); m_ui.actionGoToAddress->setEnabled(enabled); m_ui.actionGoToPC->setEnabled(enabled); m_ui.memoryRegionRAM->setEnabled(enabled); m_ui.memoryRegionEXP1->setEnabled(enabled); m_ui.memoryRegionScratchpad->setEnabled(enabled); m_ui.memoryRegionBIOS->setEnabled(enabled); } void DebuggerWindow::setMemoryViewRegion(Bus::MemoryRegion region) { if (m_active_memory_region == region) return; m_active_memory_region = region; switch (region) { case Bus::MemoryRegion::RAM: case Bus::MemoryRegion::RAMMirror1: case Bus::MemoryRegion::RAMMirror2: case Bus::MemoryRegion::RAMMirror3: m_ui.memoryView->setData(Bus::GetMemoryRegionStart(region), Bus::g_ram, Bus::RAM_SIZE); break; case Bus::MemoryRegion::Scratchpad: m_ui.memoryView->setData(CPU::DCACHE_LOCATION, CPU::g_state.dcache.data(), CPU::DCACHE_SIZE); break; case Bus::MemoryRegion::BIOS: m_ui.memoryView->setData(Bus::BIOS_BASE, Bus::g_bios, Bus::BIOS_SIZE); break; case Bus::MemoryRegion::EXP1: default: // TODO m_ui.memoryView->setData(Bus::EXP1_BASE, nullptr, 0); break; } #define SET_REGION_RADIO_BUTTON(name, rb_region) \ do \ { \ QSignalBlocker sb(name); \ name->setChecked(region == rb_region); \ } while (0) SET_REGION_RADIO_BUTTON(m_ui.memoryRegionRAM, Bus::MemoryRegion::RAM); SET_REGION_RADIO_BUTTON(m_ui.memoryRegionEXP1, Bus::MemoryRegion::EXP1); SET_REGION_RADIO_BUTTON(m_ui.memoryRegionScratchpad, Bus::MemoryRegion::Scratchpad); SET_REGION_RADIO_BUTTON(m_ui.memoryRegionBIOS, Bus::MemoryRegion::BIOS); #undef SET_REGION_REGION_BUTTON m_ui.memoryView->repaint(); } void DebuggerWindow::toggleBreakpoint(VirtualMemoryAddress address) { const bool new_bp_state = !CPU::HasBreakpointAtAddress(address); if (new_bp_state) { if (!CPU::AddBreakpoint(address, false)) return; } else { if (!CPU::RemoveBreakpoint(address)) return; } m_code_model->setBreakpointState(address, new_bp_state); refreshBreakpointList(); } void DebuggerWindow::clearBreakpoints() { m_code_model->clearBreakpoints(); CPU::ClearBreakpoints(); } std::optional DebuggerWindow::promptForAddress(const QString& label) { const QString address_str(QInputDialog::getText(this, windowTitle(), tr("Enter memory address:"))); if (address_str.isEmpty()) return std::nullopt; bool ok; uint address; if (address_str.startsWith("0x")) address = address_str.midRef(2).toUInt(&ok, 16); else if (address_str[0] == '0') address = address_str.midRef(2).toUInt(&ok, 8); else address = address_str.midRef(2).toUInt(&ok, 8); if (!ok) { QMessageBox::critical(this, windowTitle(), tr("Invalid address. It should be in hex (0x12345678) or decimal (12345678)")); return std::nullopt; } return address; } std::optional DebuggerWindow::getSelectedCodeAddress() { QItemSelectionModel* sel_model = m_ui.codeView->selectionModel(); const QModelIndexList indices(sel_model->selectedIndexes()); if (indices.empty()) return std::nullopt; return m_code_model->getAddressForIndex(indices[0]); } bool DebuggerWindow::tryFollowLoadStore(VirtualMemoryAddress address) { CPU::Instruction inst; if (!CPU::SafeReadInstruction(address, &inst.bits)) return false; const std::optional ea = GetLoadStoreEffectiveAddress(inst, &CPU::g_state.regs); if (!ea.has_value()) return false; scrollToMemoryAddress(ea.value()); return true; } bool DebuggerWindow::scrollToMemoryAddress(VirtualMemoryAddress address) { const PhysicalMemoryAddress phys_address = CPU::VirtualAddressToPhysical(address); std::optional region = Bus::GetMemoryRegionForAddress(phys_address); if (!region.has_value()) return false; setMemoryViewRegion(region.value()); const PhysicalMemoryAddress offset = phys_address - Bus::GetMemoryRegionStart(region.value()); m_ui.memoryView->scrolltoOffset(offset); return true; } void DebuggerWindow::refreshBreakpointList() { while (m_ui.breakpointsWidget->topLevelItemCount() > 0) delete m_ui.breakpointsWidget->takeTopLevelItem(0); const CPU::BreakpointList bps(CPU::GetBreakpointList()); for (const CPU::Breakpoint& bp : bps) { QTreeWidgetItem* item = new QTreeWidgetItem(); item->setFlags(item->flags() | Qt::ItemIsUserCheckable); item->setCheckState(0, bp.enabled ? Qt::Checked : Qt::Unchecked); item->setText(0, QString::asprintf("%u", bp.number)); item->setText(1, QString::asprintf("0x%08X", bp.address)); item->setText(2, QString::asprintf("%u", bp.hit_count)); m_ui.breakpointsWidget->addTopLevelItem(item); } }