2015-01-04 17:36:57 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-02-03 19:45:33 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
2014-04-01 02:26:50 +00:00
|
|
|
#include <QDockWidget>
|
2015-02-03 19:45:33 +00:00
|
|
|
|
2014-06-22 20:37:07 +00:00
|
|
|
#include "ui_disassembler.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-04-11 00:50:10 +00:00
|
|
|
#include "common/break_points.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/common_types.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
class QAction;
|
2015-04-29 04:01:41 +00:00
|
|
|
class EmuThread;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2015-02-03 19:45:33 +00:00
|
|
|
class DisassemblerModel : public QAbstractListModel
|
2014-07-02 19:16:36 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
DisassemblerModel(QObject* parent);
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2014-04-18 22:30:53 +00:00
|
|
|
class DisassemblerWidget : public QDockWidget
|
2014-04-01 02:26:50 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-04-29 04:01:41 +00:00
|
|
|
DisassemblerWidget(QWidget* parent, EmuThread* emu_thread);
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-04-04 01:24:07 +00:00
|
|
|
void Init();
|
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
public slots:
|
2014-04-04 01:24:07 +00:00
|
|
|
void OnContinue();
|
2014-04-01 02:26:50 +00:00
|
|
|
void OnStep();
|
2014-04-04 01:24:07 +00:00
|
|
|
void OnStepInto();
|
2014-04-01 02:26:50 +00:00
|
|
|
void OnPause();
|
2014-04-04 01:24:07 +00:00
|
|
|
void OnToggleStartStop();
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2015-01-07 11:14:23 +00:00
|
|
|
void OnDebugModeEntered();
|
|
|
|
void OnDebugModeLeft();
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2015-04-30 23:46:50 +00:00
|
|
|
void OnEmulationStarting(EmuThread* emu_thread);
|
|
|
|
void OnEmulationStopping();
|
2015-04-29 04:01:41 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
private:
|
|
|
|
// returns -1 if no row is selected
|
|
|
|
int SelectedRow();
|
|
|
|
|
|
|
|
Ui::DockWidget disasm_ui;
|
|
|
|
|
2014-07-02 19:16:36 +00:00
|
|
|
DisassemblerModel* model;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-07-02 19:16:36 +00:00
|
|
|
u32 base_addr;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2015-04-29 04:01:41 +00:00
|
|
|
EmuThread* emu_thread;
|
2014-04-01 02:26:50 +00:00
|
|
|
};
|