2015-01-04 09:36:57 -08:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-02-03 11:45:33 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
2014-03-31 19:26:50 -07:00
|
|
|
#include <QDockWidget>
|
2014-04-10 17:50:10 -07:00
|
|
|
#include "common/break_points.h"
|
2015-05-06 00:06:12 -07:00
|
|
|
#include "common/common_types.h"
|
2016-09-20 08:21:23 -07:00
|
|
|
#include "ui_disassembler.h"
|
2014-03-31 19:26:50 -07:00
|
|
|
|
|
|
|
class QAction;
|
2015-04-28 21:01:41 -07:00
|
|
|
class EmuThread;
|
2014-03-31 19:26:50 -07:00
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
class DisassemblerModel : public QAbstractListModel {
|
2014-07-02 12:16:36 -07:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-12-11 04:22:10 -08:00
|
|
|
explicit DisassemblerModel(QObject* parent);
|
2014-07-02 12:16:36 -07:00
|
|
|
|
|
|
|
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
|
|
|
|
|
|
|
QModelIndex IndexFromAbsoluteAddress(unsigned int address) const;
|
|
|
|
const BreakPoints& GetBreakPoints() const;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void ParseFromAddress(unsigned int address);
|
|
|
|
void OnSelectionChanged(const QModelIndex&);
|
|
|
|
void OnSetOrUnsetBreakpoint();
|
|
|
|
void SetNextInstruction(unsigned int address);
|
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned int base_address;
|
|
|
|
unsigned int code_size;
|
|
|
|
unsigned int program_counter;
|
|
|
|
|
|
|
|
QModelIndex selection;
|
|
|
|
|
|
|
|
// TODO: Make BreakPoints less crappy (i.e. const-correct) so that this needn't be mutable.
|
|
|
|
mutable BreakPoints breakpoints;
|
|
|
|
};
|
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
class DisassemblerWidget : public QDockWidget {
|
2014-03-31 19:26:50 -07:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-04-28 21:01:41 -07:00
|
|
|
DisassemblerWidget(QWidget* parent, EmuThread* emu_thread);
|
2014-03-31 19:26:50 -07:00
|
|
|
|
2014-04-03 18:24:07 -07:00
|
|
|
void Init();
|
|
|
|
|
2014-03-31 19:26:50 -07:00
|
|
|
public slots:
|
2014-04-03 18:24:07 -07:00
|
|
|
void OnContinue();
|
2014-03-31 19:26:50 -07:00
|
|
|
void OnStep();
|
2014-04-03 18:24:07 -07:00
|
|
|
void OnStepInto();
|
2014-03-31 19:26:50 -07:00
|
|
|
void OnPause();
|
2014-04-03 18:24:07 -07:00
|
|
|
void OnToggleStartStop();
|
2014-03-31 19:26:50 -07:00
|
|
|
|
2015-01-07 03:14:23 -08:00
|
|
|
void OnDebugModeEntered();
|
|
|
|
void OnDebugModeLeft();
|
2014-03-31 19:26:50 -07:00
|
|
|
|
2015-04-30 16:46:50 -07:00
|
|
|
void OnEmulationStarting(EmuThread* emu_thread);
|
|
|
|
void OnEmulationStopping();
|
2015-04-28 21:01:41 -07:00
|
|
|
|
2014-03-31 19:26:50 -07:00
|
|
|
private:
|
|
|
|
// returns -1 if no row is selected
|
|
|
|
int SelectedRow();
|
|
|
|
|
|
|
|
Ui::DockWidget disasm_ui;
|
|
|
|
|
2014-07-02 12:16:36 -07:00
|
|
|
DisassemblerModel* model;
|
2014-03-31 19:26:50 -07:00
|
|
|
|
2014-07-02 12:16:36 -07:00
|
|
|
u32 base_addr;
|
2014-03-31 19:26:50 -07:00
|
|
|
|
2015-04-28 21:01:41 -07:00
|
|
|
EmuThread* emu_thread;
|
2014-03-31 19:26:50 -07:00
|
|
|
};
|