summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-03-11 15:24:57 -0400
committerSiddarth-Suresh <65844402+Siddarth-Suresh@users.noreply.github.com>2025-03-11 15:24:57 -0400
commit21187ae663a8450553881851e8450315c8d9ca1c (patch)
tree2a1a7b5b7847d979052ea4aae2f04d7915332c79 /tests
parentb87fa0973b7a3ec08b08e86a2505e68879455b0e (diff)
Tests for write line in Dram, memory address wrapping implementation and tests
Diffstat (limited to 'tests')
-rw-r--r--tests/dram.cc336
-rw-r--r--tests/utils.cc42
2 files changed, 377 insertions, 1 deletions
diff --git a/tests/dram.cc b/tests/dram.cc
index 7b19ac4..8425d3b 100644
--- a/tests/dram.cc
+++ b/tests/dram.cc
@@ -186,7 +186,187 @@ TEST_CASE(
delete d;
}
-TEST_CASE("Construct singleton dram, write a line to an address", "[dram]")
+TEST_CASE(
+ "Construct singleton dram, store line in zero cycles", "[dram]")
+{
+ Dram *d = new Dram(1, 0);
+ std::array<signed int, LINE_SIZE> expected = {0, 0, 0, 0};
+ std::array<signed int, LINE_SIZE> actual = d->view(0, 1)[0];
+ CHECK(expected == actual);
+
+ signed int w = 0x11223344;
+ expected = {w, w+1, w+2, w+3};
+
+ Response r = d->write_line(MEM, expected, 0x00000000);
+ CHECK(r == OK);
+
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+
+ delete d;
+}
+
+TEST_CASE(
+ "Construct singleton dram, store line in three cycles", "[dram]")
+{
+ int delay = 3;
+ Dram *d = new Dram(1, delay);
+ std::array<signed int, LINE_SIZE> expected = {0, 0, 0, 0};
+ std::array<signed int, LINE_SIZE> actual = d->view(0, 1)[0];
+ CHECK(expected == actual);
+
+ signed int w = 0x11223344;
+ std::array<signed int, LINE_SIZE> written_line = {w, w+1, w+2, w+3};
+
+ int i;
+ Response r;
+ for (i = 0; i < delay; ++i) {
+ r = d->write_line(MEM, written_line, 0x00000000);
+ CHECK(r == WAIT);
+
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+ d->resolve();
+ }
+
+ r = d->write_line(MEM, written_line, 0x00000000);
+ CHECK(r == OK);
+ d->resolve();
+
+ expected = written_line;
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+
+ delete d;
+}
+
+TEST_CASE(
+ "Construct singleton dram, store line in three cycles no "
+ "conflict",
+ "[dram]")
+{
+ int delay = 3;
+ Dram *d = new Dram(1, delay);
+ std::array<signed int, LINE_SIZE> expected = {0, 0, 0, 0};
+ std::array<signed int, LINE_SIZE> actual = d->view(0, 1)[0];
+ CHECK(expected == actual);
+
+ signed int w = 0x11223344;
+ std::array<signed int, LINE_SIZE> written_line = {w, w+1, w+2, w+3};
+
+ int i;
+ Response r;
+ for (i = 0; i < delay; ++i) {
+ r = d->write_line(MEM, written_line, 0x00000000);
+ CHECK(r == WAIT);
+
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+ d->resolve();
+ }
+
+ r = d->write_line(MEM, written_line, 0x00000000);
+ REQUIRE(r == OK);
+ // clock cycle did NOT resolve yet!
+ // this fetch should not make progress
+ r = d->write_line(FETCH, written_line, 0x00000001);
+ CHECK(r == WAIT);
+
+ actual = d->view(0, 1)[0];
+ CHECK(r == WAIT);
+ d->resolve();
+
+ expected = written_line;
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+
+ written_line = {w+4, w+5, w+6, w+7};
+
+ for (i = 0; i < delay; ++i) {
+ r = d->write_line(FETCH, written_line, 0x00000001);
+ CHECK(r == WAIT);
+
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+ d->resolve();
+ }
+
+ r = d->write_line(FETCH, written_line, 0x00000001);
+ actual = d->view(0, 1)[0];
+ CHECK(r == OK);
+
+ expected = written_line;
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+
+ delete d;
+}
+
+TEST_CASE(
+ "Construct singleton dram, store line in three cycles much "
+ "conflict",
+ "[dram]")
+{
+ int delay = 2;
+ Dram *d = new Dram(1, 2);
+ std::array<signed int, LINE_SIZE> expected = {0, 0, 0, 0};
+ std::array<signed int, LINE_SIZE> actual = d->view(0, 1)[0];
+ CHECK(expected == actual);
+
+ signed int w = 0x11223344;
+ std::array<signed int, LINE_SIZE> written_line = {w, w+1, w+2, w+3};
+
+ int i;
+ Response r;
+ for (i = 0; i < delay; ++i) {
+ r = d->write_line(MEM, written_line, 0x00000000);
+ CHECK(r == WAIT);
+
+ r = d->write_line(FETCH, written_line, 0x00000001);
+ CHECK(r == WAIT);
+
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+ d->resolve();
+ }
+
+ r = d->write_line(MEM, written_line, 0x00000000);
+ CHECK(r == OK);
+ r = d->write_line(FETCH, written_line, 0x00000001);
+ CHECK(r == WAIT);
+ d->resolve();
+
+ actual = d->view(0, 1)[0];
+ expected = written_line;
+ REQUIRE(expected == actual);
+
+ written_line = {w+4, w+5, w+6, w+7};
+ for (i = 0; i < delay; ++i) {
+ r = d->write_line(FETCH, written_line, 0x00000001);
+ CHECK(r == WAIT);
+
+ r = d->write_line(MEM, written_line, 0x00000003);
+ CHECK(r == WAIT);
+
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+ d->resolve();
+ }
+
+ r = d->write_line(FETCH, written_line, 0x00000001);
+ actual = d->view(0, 1)[0];
+ CHECK(r == OK);
+ r = d->write_line(MEM, written_line, 0x00000003);
+ CHECK(r == WAIT);
+
+ expected = written_line;
+ actual = d->view(0, 1)[0];
+ REQUIRE(expected == actual);
+
+ delete d;
+}
+
+TEST_CASE("Construct singleton dram, write a line to an address in 0 cycles, read in 0 cycles", "[dram]")
{
Dram *d = new Dram(1, 0);
std::array<signed int, LINE_SIZE> expected = {0, 0, 0, 0};
@@ -217,6 +397,160 @@ TEST_CASE("Construct singleton dram, write a line to an address", "[dram]")
delete d;
}
+TEST_CASE("Construct singleton dram, write a line to an address in three cycles, read it in three cycles", "[dram]")
+{
+ int delay = 3;
+ Dram *d = new Dram(1, delay);
+ std::array<signed int, LINE_SIZE> expected = {0, 0, 0, 0};
+ std::array<signed int, LINE_SIZE> actual = d->view(0, 1)[0];
+ CHECK(expected == actual);
+
+ signed int w = 0x11223311;
+ expected = {w, w+1, w+2, w+3};
+ int addr = 0x00000000;
+
+ int i;
+ Response r;
+
+ for(i=0; i<delay; ++i) {
+ r = d->write_line(MEM, expected, addr);
+ d->resolve();
+ }
+ r = d->write_line(MEM, expected, addr);
+ d->resolve();
+
+ for (i = 0; i < delay; ++i) {
+ r = d->read(MEM, 0x00000000, actual);
+ CHECK(r == WAIT);
+ REQUIRE(expected != actual);
+ d->resolve();
+ }
+
+ r = d->read(MEM, 0x00000000, actual);
+ CHECK(r == OK);
+ d->resolve();
+ REQUIRE(expected == actual);
+ delete d;
+}
+
+TEST_CASE(
+ "Construct singleton dram, store line in 3 cycles, read line in 3 cycles with no conflict","[dram]")
+{
+ int delay = 3;
+ Dram *d = new Dram(1, delay);
+ std::array<signed int, LINE_SIZE> expected = {0, 0, 0, 0};
+ std::array<signed int, LINE_SIZE> actual = d->view(0, 1)[0];
+ CHECK(expected == actual);
+
+ signed int w = 0x11223311;
+ expected = {w, w+1, w+2, w+3};
+ int addr = 0x00000000;
+
+ int i;
+ Response r;
+ for(int j=0; j<delay; ++j) {
+ r = d->write_line(MEM, expected, addr);
+ d->resolve();
+ }
+ r = d->write_line(MEM, expected, addr++);
+ d->resolve();
+
+ for (i = 0; i < delay; ++i) {
+ r = d->read(MEM, 0x00000000, actual);
+ CHECK(r == WAIT);
+ REQUIRE(expected != actual);
+ d->resolve();
+ }
+
+ r = d->read(MEM, 0x00000000, actual);
+ REQUIRE(r == OK);
+ r = d->read(FETCH, 0x00000003, actual);
+ CHECK(r == WAIT);
+ d->resolve();
+ REQUIRE(expected == actual);
+
+ actual = {0,0,0,0};
+ for (i = 0; i < delay; ++i) {
+ r = d->read(FETCH, 0x00000000, actual);
+ CHECK(r == WAIT);
+ REQUIRE(expected != actual);
+ d->resolve();
+ }
+
+ r = d->read(FETCH, 0x00000000, actual);
+ REQUIRE(r == OK);
+ r = d->read(MEM, 0x00000002, actual);
+ CHECK(r == WAIT);
+ d->resolve();
+ REQUIRE(expected == actual);
+
+ delete d;
+
+}
+
+TEST_CASE(
+ "Construct singleton dram, store line in 3 cycles, read line in 3 cycles with much conflict","[dram]")
+{
+ int delay = 3;
+ Dram *d = new Dram(1, delay);
+ std::array<signed int, LINE_SIZE> expected = {0, 0, 0, 0};
+ std::array<signed int, LINE_SIZE> actual = d->view(0, 1)[0];
+ CHECK(expected == actual);
+
+ signed int w = 0x11223311;
+ expected = {w, w+1, w+2, w+3};
+ int addr = 0x00000000;
+
+ int i;
+ Response r;
+ for(int j=0; j<delay; ++j) {
+ r = d->write_line(MEM, expected, addr);
+ d->resolve();
+ }
+ r = d->write_line(MEM, expected, addr++);
+ d->resolve();
+
+
+ for (i = 0; i < delay; ++i) {
+ r = d->read(MEM, 0x00000000, actual);
+ CHECK(r == WAIT);
+ REQUIRE(expected != actual);
+ r = d->read(FETCH, 0x00000002, actual);
+ CHECK(r == WAIT);
+ REQUIRE(expected != actual);
+ d->resolve();
+ }
+
+ r = d->read(MEM, 0x00000000, actual);
+ REQUIRE(r == OK);
+ r = d->read(FETCH, 0x00000003, actual);
+ CHECK(r == WAIT);
+ d->resolve();
+ REQUIRE(expected == actual);
+
+ actual = {0,0,0,0};
+ for (i = 0; i < delay; ++i) {
+ r = d->read(FETCH, 0x00000000, actual);
+ CHECK(r == WAIT);
+ REQUIRE(expected != actual);
+ r = d->read(MEM, 0x00000002, actual);
+ CHECK(r == WAIT);
+ REQUIRE(expected != actual);
+ d->resolve();
+ }
+
+ r = d->read(FETCH, 0x00000000, actual);
+ REQUIRE(r == OK);
+ r = d->read(MEM, 0x00000002, actual);
+ CHECK(r == WAIT);
+ d->resolve();
+ REQUIRE(expected == actual);
+
+ delete d;
+
+}
+
+
TEST_CASE("Construct singleton dram, write a line to an address one element at a time, read it in zero cycles", "[dram]")
{
Dram *d = new Dram(1, 0);
diff --git a/tests/utils.cc b/tests/utils.cc
index 5368204..f0e4c24 100644
--- a/tests/utils.cc
+++ b/tests/utils.cc
@@ -21,3 +21,45 @@ TEST_CASE("Parse arbitrary fields # two", "[cache]")
CHECK(index == 0b01110);
CHECK(offset == 0b11);
}
+
+TEST_CASE("wrap address outside upper bound", "[utils]")
+{
+ int address = MEM_SIZE + 25;
+ int wrapped = wrap_address(address);
+ REQUIRE(wrapped == 25);
+}
+
+TEST_CASE("wrap address inside upper bound", "[utils]")
+{
+ int address = MEM_SIZE - 25;
+ int wrapped = wrap_address(address);
+ REQUIRE(wrapped == MEM_SIZE - 25);
+}
+
+TEST_CASE("wrap address at upper bound", "[utils]")
+{
+ int address = MEM_SIZE;
+ int wrapped = wrap_address(address);
+ REQUIRE(wrapped == 0);
+}
+
+TEST_CASE("wrap address lower than 0 with magnitude lesser than mem size", "[utils]")
+{
+ int address = -10;
+ int wrapped = wrap_address(address);
+ REQUIRE(wrapped == MEM_SIZE - 10);
+}
+
+TEST_CASE("wrap address lower than 0 but with magnitude greater than mem size", "[utils]")
+{
+ int address = -(MEM_SIZE + 10);
+ int wrapped = wrap_address(address);
+ REQUIRE(wrapped == MEM_SIZE - 10);
+}
+
+TEST_CASE("wrap address at 0", "[utils]")
+{
+ int address = 0;
+ int wrapped = wrap_address(address);
+ REQUIRE(wrapped == 0);
+} \ No newline at end of file