aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-12-21 14:59:09 +0100
committerKarel Kočí <cynerd@email.cz>2017-12-21 14:59:09 +0100
commitf1c0203237b976c366bedd950a2e6ffbcb8f7bcd (patch)
tree263a80f63f3b5056e5997edaf8ac694a73927e5c
parent5715b6b916a5049b2f5542c022a41f895b9572a4 (diff)
downloadqtmips-f1c0203237b976c366bedd950a2e6ffbcb8f7bcd.tar.gz
qtmips-f1c0203237b976c366bedd950a2e6ffbcb8f7bcd.tar.bz2
qtmips-f1c0203237b976c366bedd950a2e6ffbcb8f7bcd.zip
Some pleanups and small fixes
These are just code fixes. Shouldn't change anything but makes code cleaner.
-rw-r--r--qtmips_gui/newdialog.cpp1
-rw-r--r--qtmips_gui/newdialog.h1
-rw-r--r--qtmips_machine/memory.cpp42
-rw-r--r--qtmips_machine/memory.h1
-rw-r--r--qtmips_machine/programloader.cpp4
-rw-r--r--qtmips_machine/qtmipsexception.cpp36
-rw-r--r--qtmips_machine/registers.cpp22
7 files changed, 43 insertions, 64 deletions
diff --git a/qtmips_gui/newdialog.cpp b/qtmips_gui/newdialog.cpp
index bbaa73a..9d0e1ad 100644
--- a/qtmips_gui/newdialog.cpp
+++ b/qtmips_gui/newdialog.cpp
@@ -36,7 +36,6 @@ NewDialog::NewDialog(QWidget *parent, QSettings *settings) : QDialog(parent) {
NewDialog::~NewDialog() {
delete ui;
// Settings is freed by parent
- delete elf_dialog;
}
void NewDialog::cancel() {
diff --git a/qtmips_gui/newdialog.h b/qtmips_gui/newdialog.h
index d9e850e..1e266a1 100644
--- a/qtmips_gui/newdialog.h
+++ b/qtmips_gui/newdialog.h
@@ -27,7 +27,6 @@ protected:
private:
Ui::NewDialog *ui;
QSettings *settings;
- QFileDialog *elf_dialog;
void load_settings();
void store_settings();
diff --git a/qtmips_machine/memory.cpp b/qtmips_machine/memory.cpp
index 23743d5..142c750 100644
--- a/qtmips_machine/memory.cpp
+++ b/qtmips_machine/memory.cpp
@@ -44,15 +44,15 @@ std::uint16_t MemoryAccess::read_hword(std::uint32_t offset) {
std::uint32_t MemoryAccess::read_word(std::uint32_t offset) {
std::uint32_t dt = 0;
#if __BYTE_ORDER == __LITTLE_ENDIAN
- dt |= (this->read_byte(offset++) << 24);
- dt |= (this->read_byte(offset++) << 16);
- dt |= (this->read_byte(offset++) << 8);
- dt |= this->read_byte(offset);
+ dt |= ((std::uint32_t)this->read_byte(offset++) << 24);
+ dt |= ((std::uint32_t)this->read_byte(offset++) << 16);
+ dt |= ((std::uint32_t)this->read_byte(offset++) << 8);
+ dt |= (std::uint32_t)this->read_byte(offset);
#else
- dt |= this->read_byte(offset++);
- dt |= (this->read_byte(offset++) << 8);
- dt |= (this->read_byte(offset++) << 16);
- dt |= (this->read_byte(offset) << 24);
+ dt |= (std::uint32_t)this->read_byte(offset++);
+ dt |= ((std::uint32_t)this->read_byte(offset++) << 8);
+ dt |= ((std::uint32_t)this->read_byte(offset++) << 16);
+ dt |= ((std::uint32_t)this->read_byte(offset) << 24);
#endif
return dt;
}
@@ -63,11 +63,11 @@ void MemoryAccess::write_ctl(enum MemoryAccess::AccessControl ctl, std::uint32_t
break;
case AC_BYTE:
case AC_BYTE_UNSIGNED:
- this->write_byte(offset, value);
+ this->write_byte(offset, (std::uint8_t) value);
break;
case AC_HALFWORD:
case AC_HALFWORD_UNSIGNED:
- this->write_hword(offset, value);
+ this->write_hword(offset, (std::uint16_t) value);
break;
case AC_WORD:
this->write_word(offset, value);
@@ -84,12 +84,12 @@ std::uint32_t MemoryAccess::read_ctl(enum MemoryAccess::AccessControl ctl, std::
case AC_BYTE:
{
std::uint8_t b = this->read_byte(offset);
- return ((b & 0x80) << 24) | (b & 0x7F); // Sign extend
+ return (((std::uint32_t)b & 0x80) << 24) | ((std::uint32_t)b & 0x7F); // Sign extend
}
case AC_HALFWORD:
{
std::uint16_t h = this->read_hword(offset);
- return ((h & 0x8000) << 16) | (h & 0x7FFF); // Sign extend
+ return (((std::uint32_t)h & 0x8000) << 16) | ((std::uint32_t)h & 0x7FFF); // Sign extend
}
case AC_WORD:
return this->read_word(offset);
@@ -164,7 +164,7 @@ union MemoryTree {
union MemoryTree *mt;
MemorySection *sec;
};
-}
+} // namespace machine
Memory::Memory() {
this->mt_root = allocate_section_tree();
@@ -179,11 +179,11 @@ Memory::~Memory() {
}
// Create address mask with section length
-#define ADDRESS_MASK(LEN) ((1 << LEN) - 1)
+#define ADDRESS_MASK(LEN) ((1 << (LEN)) - 1)
// Get index in tree node from address, length of row and tree depth
// ADDR is expected to be and address with lowest bites removed (MEMORY_SECTION_BITS)
-#define ADDRESS_TREE_INDEX(DEPTH, ADDR) ((ADDR >> (DEPTH * MEMORY_TREE_ROW)) & ADDRESS_MASK(MEMORY_TREE_ROW))
+#define ADDRESS_TREE_INDEX(DEPTH, ADDR) (((ADDR) >> ((DEPTH) * (MEMORY_TREE_ROW))) & ADDRESS_MASK(MEMORY_TREE_ROW))
MemorySection *Memory::get_section(std::uint32_t address, bool create) const {
@@ -211,7 +211,7 @@ MemorySection *Memory::get_section(std::uint32_t address, bool create) const {
// Note about this address magic: we want to mask upper bits in address as those were used
// for section lookup. We do it using (2^BITS - 1).
-#define SECTION_ADDRESS(ADDR) (ADDR & ADDRESS_MASK(MEMORY_SECTION_BITS))
+#define SECTION_ADDRESS(ADDR) ((ADDR) & ADDRESS_MASK(MEMORY_SECTION_BITS))
void Memory::write_byte(std::uint32_t address, std::uint8_t value) {
MemorySection *section = this->get_section(address, true);
@@ -234,11 +234,11 @@ bool Memory::operator!=(const Memory&m) const {
return ! this->operator ==(m);
}
-const union MemoryTree *Memory::get_memorytree_root() const {
+const union machine::MemoryTree *Memory::get_memorytree_root() const {
return this->mt_root;
}
-union MemoryTree *Memory::allocate_section_tree() {
+union machine::MemoryTree *Memory::allocate_section_tree() {
union MemoryTree *mt = new union MemoryTree[MEMORY_TREE_LEN];
for (size_t i = 0; i < MEMORY_TREE_LEN; i++)
// Note that this also nulls sec pointer as those are both pointers and so they have same size
@@ -246,7 +246,7 @@ union MemoryTree *Memory::allocate_section_tree() {
return mt;
}
-void Memory::free_section_tree(union MemoryTree *mt, size_t depth) {
+void Memory::free_section_tree(union machine::MemoryTree *mt, size_t depth) {
if (depth < (MEMORY_TREE_H - 1)) { // Following level is memory tree
for (int i = 0; i < MEMORY_TREE_LEN; i++) {
if (mt[i].mt != nullptr)
@@ -260,7 +260,7 @@ void Memory::free_section_tree(union MemoryTree *mt, size_t depth) {
}
}
-bool Memory::compare_section_tree(const union MemoryTree *mt1, const union MemoryTree *mt2, size_t depth) {
+bool Memory::compare_section_tree(const union machine::MemoryTree *mt1, const union machine::MemoryTree *mt2, size_t depth) {
if (depth < (MEMORY_TREE_H - 1)) { // Following level is memory tree
for (int i = 0; i < MEMORY_TREE_LEN; i++) {
if (
@@ -285,7 +285,7 @@ bool Memory::compare_section_tree(const union MemoryTree *mt1, const union Memor
return true;
}
-union MemoryTree *Memory::copy_section_tree(const union MemoryTree *mt, size_t depth) {
+union machine::MemoryTree *Memory::copy_section_tree(const union machine::MemoryTree *mt, size_t depth) {
union MemoryTree *nmt = allocate_section_tree();
if (depth < (MEMORY_TREE_H - 1)) { // Following level is memory tree
for (int i = 0; i < MEMORY_TREE_LEN; i++) {
diff --git a/qtmips_machine/memory.h b/qtmips_machine/memory.h
index 9ff8c2b..ab33e4a 100644
--- a/qtmips_machine/memory.h
+++ b/qtmips_machine/memory.h
@@ -2,7 +2,6 @@
#define MEMORY_H
#include <QObject>
-#include <vector>
#include <cstdint>
#include <qtmipsexception.h>
diff --git a/qtmips_machine/programloader.cpp b/qtmips_machine/programloader.cpp
index 4a10540..fd0679d 100644
--- a/qtmips_machine/programloader.cpp
+++ b/qtmips_machine/programloader.cpp
@@ -2,7 +2,7 @@
#include <exception>
#include <unistd.h>
#include <fcntl.h>
-#include <errno.h>
+#include <cerrno>
#include <cstring>
#include "qtmipsexception.h"
@@ -47,7 +47,7 @@ ProgramLoader::ProgramLoader(const char *file) {
// We want only LOAD sections so we create map of those sections
for (unsigned i = 1; i < this->n_secs; i++) {
// TODO handle endianity
- if (this->phdrs[i].p_type != PT_LOAD)
+ if (phdrs[i].p_type != PT_LOAD)
continue;
this->map.push_back(i);
}
diff --git a/qtmips_machine/qtmipsexception.cpp b/qtmips_machine/qtmipsexception.cpp
index 76d0cc6..d2b0622 100644
--- a/qtmips_machine/qtmipsexception.cpp
+++ b/qtmips_machine/qtmipsexception.cpp
@@ -32,46 +32,28 @@ QString QtMipsException::msg(bool pos) const {
QtMipsExceptionInput::QtMipsExceptionInput(QTMIPS_ARGS_COMMON)
- : QtMipsException(reason, ext, file, line) {
- return;
-}
+ : QtMipsException(reason, ext, file, line) { }
QtMipsExceptionRuntime::QtMipsExceptionRuntime(QTMIPS_ARGS_COMMON)
- : QtMipsException(reason, ext, file, line) {
- return;
-}
+ : QtMipsException(reason, ext, file, line) { }
QtMipsExceptionUnsupportedInstruction::QtMipsExceptionUnsupportedInstruction(QTMIPS_ARGS_COMMON)
- : QtMipsExceptionRuntime(reason, ext, file, line) {
- return;
-}
+ : QtMipsExceptionRuntime(reason, ext, file, line) { }
QtMipsExceptionUnsupportedAluOperation::QtMipsExceptionUnsupportedAluOperation(QTMIPS_ARGS_COMMON)
- : QtMipsExceptionRuntime(reason, ext, file, line) {
- return;
-}
+ : QtMipsExceptionRuntime(reason, ext, file, line) { }
QtMipsExceptionOverflow::QtMipsExceptionOverflow(QTMIPS_ARGS_COMMON)
- : QtMipsExceptionRuntime(reason, ext, file, line) {
- return;
-}
+ : QtMipsExceptionRuntime(reason, ext, file, line) { }
QtMipsExceptionUnalignedJump::QtMipsExceptionUnalignedJump(QTMIPS_ARGS_COMMON)
- : QtMipsExceptionRuntime(reason, ext, file, line) {
- return;
-}
+ : QtMipsExceptionRuntime(reason, ext, file, line) { }
QtMipsExceptionUnknownMemoryControl::QtMipsExceptionUnknownMemoryControl(QTMIPS_ARGS_COMMON)
- : QtMipsExceptionRuntime(reason, ext, file, line) {
- return;
-}
+ : QtMipsExceptionRuntime(reason, ext, file, line) { }
QtMipsExceptionOutOfMemoryAccess::QtMipsExceptionOutOfMemoryAccess(QTMIPS_ARGS_COMMON)
- : QtMipsExceptionRuntime(reason, ext, file, line) {
- return;
-}
+ : QtMipsExceptionRuntime(reason, ext, file, line) { }
QtMipsExceptionSanity::QtMipsExceptionSanity(QTMIPS_ARGS_COMMON)
- : QtMipsException(reason, ext, file, line) {
- return;
-}
+ : QtMipsException(reason, ext, file, line) { }
diff --git a/qtmips_machine/registers.cpp b/qtmips_machine/registers.cpp
index f8961e1..447fdfc 100644
--- a/qtmips_machine/registers.cpp
+++ b/qtmips_machine/registers.cpp
@@ -18,7 +18,7 @@ Registers::Registers() : QObject() {
Registers::Registers(const Registers &orig) : QObject() {
this->pc = orig.read_pc();
- for (int i = 0; i < 31; i++)
+ for (std::uint8_t i = 0; i < 31; i++)
this->gp[i] = orig.read_gp(i + 1);
this->lo = orig.read_hi_lo(false);
this->hi = orig.read_hi_lo(true);
@@ -68,25 +68,25 @@ void Registers::write_gp(std::uint8_t i, std::uint32_t value) {
this->gp[i - 1] = value;
}
-std::uint32_t Registers::read_hi_lo(bool hi) const {
- if (hi)
- return this->hi;
+std::uint32_t Registers::read_hi_lo(bool is_hi) const {
+ if (is_hi)
+ return hi;
else
- return this->lo;
+ return lo;
}
-void Registers::write_hi_lo(bool hi, std::uint32_t value) {
- if (hi)
- this->hi = value;
+void Registers::write_hi_lo(bool is_hi, std::uint32_t value) {
+ if (is_hi)
+ hi = value;
else
- this->lo = value;
- emit hi_lo_update(hi, value);
+ lo = value;
+ emit hi_lo_update(is_hi, value);
}
bool Registers::operator==(const Registers &c) const {
if (read_pc() != c.read_pc())
return false;
- for (int i = 0; i < 31; i++)
+ for (std::uint8_t i = 0; i < 31; i++)
if (read_gp(i) != c.read_gp(i))
return false;
if (read_hi_lo(false) != c.read_hi_lo(false))