From a29cd5297d2d66f05ea91d05175fdc9fd4b2fef3 Mon Sep 17 00:00:00 2001 From: bd Date: Fri, 21 Mar 2025 16:42:16 -0400 Subject: add 'process' function to handle boilerplate on every request --- src/storage/dram.cc | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'src/storage/dram.cc') diff --git a/src/storage/dram.cc b/src/storage/dram.cc index 779e392..2c24b4b 100644 --- a/src/storage/dram.cc +++ b/src/storage/dram.cc @@ -24,24 +24,17 @@ Dram::~Dram() { delete this->data; } Response Dram::write_line( Accessor accessor, std::array data_line, int address) { - Response r = this->is_access_cleared(accessor); - if (r == OK) { - int line, word; - get_memory_index(address, line, word); + return process(accessor, address, [&](int line, int word) { + (void)word; this->data->at(line) = data_line; - } - return r; + }); } Response Dram::write_word(Accessor accessor, signed int data, int address) { - Response r = this->is_access_cleared(accessor); - if (r == OK) { - int line, word; - get_memory_index(address, line, word); + return process(accessor, address, [&](int line, int word) { this->data->at(line).at(word) = data; - } - return r; + }); } // TODO requires testing @@ -50,22 +43,29 @@ Response Dram::read_line( int address, std::array &data_line) { - Response r = this->is_access_cleared(accessor); - if (r == OK) { - int line, word; - get_memory_index(address, line, word); + return process(accessor, address, [&](int line, int word) { + (void)word; data_line = this->data->at(line); - } - return r; + }); } Response Dram::read_word(Accessor accessor, int address, signed int &data) +{ + return process(accessor, address, [&](int line, int word) { + data = this->data->at(line).at(word); + }); +} + +Response Dram::process( + Accessor accessor, + int address, + std::function request_handler) { Response r = this->is_access_cleared(accessor); if (r == OK) { int line, word; get_memory_index(address, line, word); - data = this->data->at(line).at(word); + request_handler(line, word); } return r; } -- cgit v1.2.3