aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/programdock.cpp
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-01-25 15:40:50 +0100
committerKarel Kočí <cynerd@email.cz>2018-01-25 15:40:50 +0100
commit92c7fd220506df5f7997d27dbbcdb513e66932a7 (patch)
tree387da2cffe29d48cb6894070c8dcdd9900bce2a9 /qtmips_gui/programdock.cpp
parenteb75bba956fb13e156a89406f5928a55e7b66fc4 (diff)
downloadqtmips-92c7fd220506df5f7997d27dbbcdb513e66932a7.tar.gz
qtmips-92c7fd220506df5f7997d27dbbcdb513e66932a7.tar.bz2
qtmips-92c7fd220506df5f7997d27dbbcdb513e66932a7.zip
Implement memoryview
Diffstat (limited to 'qtmips_gui/programdock.cpp')
-rw-r--r--qtmips_gui/programdock.cpp106
1 files changed, 59 insertions, 47 deletions
diff --git a/qtmips_gui/programdock.cpp b/qtmips_gui/programdock.cpp
index c885083..9178dce 100644
--- a/qtmips_gui/programdock.cpp
+++ b/qtmips_gui/programdock.cpp
@@ -1,26 +1,21 @@
#include "programdock.h"
#include "qtmipsexception.h"
-ProgramDock::ProgramDock(QWidget *parent) : QDockWidget(parent) {
- widg = new QWidget(this);
- widg_layout = new QBoxLayout(QBoxLayout::TopToBottom, widg);
- widg_layout->setSizeConstraint(QLayout::SetMinAndMaxSize);
-
- memory_view = new MemoryView(widg);
- widg_layout->addWidget(memory_view);
+ProgramView::ProgramView(QWidget *parent) : MemoryView(parent) {
+ set_center(0x80020000); // Initialize center address to program start
- ctlbox_single = new QComboBox(widg);
- ctlbox_single->addItems({
+ cb_single = new QComboBox(this);
+ cb_single->addItems({
"Don't follow",
"Follow executing instruction"
});
- ctlbox_single->setCurrentIndex(1);
- ctlbox_single->hide();
- widg_layout->addWidget(ctlbox_single);
- connect(ctlbox_single, SIGNAL(currentIndexChanged(int)), this, SLOT(ctlbox_single_changed(int)));
+ cb_single->setCurrentIndex(1);
+ cb_single->hide();
+ layout->addWidget(cb_single);
+ connect(cb_single, SIGNAL(currentIndexChanged(int)), this, SLOT(cb_single_changed(int)));
- ctlbox_pipelined = new QComboBox(widg);
- ctlbox_pipelined->addItems({
+ cb_pipelined = new QComboBox(this);
+ cb_pipelined->addItems({
"Don't follow",
"Follow Instruction fetch stage",
"Follow Instruction decode stage",
@@ -28,51 +23,68 @@ ProgramDock::ProgramDock(QWidget *parent) : QDockWidget(parent) {
"Follow Memory access stage",
"Follow Registers write back stage",
});
- ctlbox_pipelined->hide();
- ctlbox_pipelined->setCurrentIndex(1);
- widg_layout->addWidget(ctlbox_pipelined);
- connect(ctlbox_pipelined, SIGNAL(currentIndexChanged(int)), this, SLOT(ctlbox_pipelined_changed(int)));
-
- setWidget(widg);
- setObjectName("Program");
- setWindowTitle("Program");
-}
-
-ProgramDock::~ProgramDock() {
- delete memory_view;
- delete ctlbox_single;
- delete ctlbox_pipelined;
- delete widg_layout;
- delete widg;
+ cb_pipelined->hide();
+ cb_pipelined->setCurrentIndex(1);
+ layout->addWidget(cb_pipelined);
+ connect(cb_pipelined, SIGNAL(currentIndexChanged(int)), this, SLOT(cb_pipelined_changed(int)));
}
-void ProgramDock::setup(machine::QtMipsMachine *machine) {
- if (machine == nullptr) {
- // TODO zero memory viewer
+void ProgramView::setup(machine::QtMipsMachine *machine) {
+ MemoryView::setup(machine);
+ if (machine == nullptr)
return;
- }
-
- // TODO pass to viewer
bool pipelined = machine->config().pipelined();
- ctlbox_single->setVisible(!pipelined);
- ctlbox_pipelined->setVisible(pipelined);
+ cb_single->setVisible(!pipelined);
+ cb_pipelined->setVisible(pipelined);
// Sync selection somewhat
if (pipelined) {
- if (ctlbox_single->currentIndex() == 0)
- ctlbox_pipelined->setCurrentIndex(0);
- else if (ctlbox_pipelined->currentIndex() == 0)
- ctlbox_pipelined->setCurrentIndex(1);
+ if (cb_single->currentIndex() == 0)
+ cb_pipelined->setCurrentIndex(0);
+ else if (cb_pipelined->currentIndex() == 0)
+ cb_pipelined->setCurrentIndex(1);
} else
- ctlbox_single->setCurrentIndex(ctlbox_pipelined->currentIndex() == 0 ? 0 : 1);
+ cb_single->setCurrentIndex(cb_pipelined->currentIndex() == 0 ? 0 : 1);
+}
+
+QList<QWidget*> ProgramView::row_widget(std::uint32_t address, QWidget *parent) {
+ QList<QWidget*> widgs;
+ QLabel *l;
+
+ l = new QLabel(" ", parent);
+ widgs.append(l);
- // TODO also update current setting of memory viewer
+ l = new QLabel(QString("0x%1").arg(address, 8, 16, QChar('0')), parent);
+ l->setTextInteractionFlags(Qt::TextSelectableByMouse);
+ widgs.append(l);
+
+ l = new QLabel(parent);
+ l->setTextInteractionFlags(Qt::TextSelectableByMouse);
+ if (memory != nullptr)
+ l->setText(machine::Instruction(memory->read_word(address)).to_str());
+ else
+ l->setText(" "); // Just fill it in with some plain text so we don't have just addresses there
+ widgs.append(l);
+
+ return widgs;
}
-void ProgramDock::ctlbox_single_changed(int index) {
+void ProgramView::cb_single_changed(int index) {
// TODO set memory view
}
-void ProgramDock::ctlbox_pipelined_changed(int index) {
+void ProgramView::cb_pipelined_changed(int index) {
// TODO set memory view
}
+
+ProgramDock::ProgramDock(QWidget *parent) : QDockWidget(parent) {
+ view = new ProgramView(this);
+ setWidget(view);
+
+ setObjectName("Program");
+ setWindowTitle("Program");
+}
+
+void ProgramDock::setup(machine::QtMipsMachine *machine) {
+ view->setup(machine);
+}