diff options
author | bd <bdunaisky@umass.edu> | 2025-03-11 21:16:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-11 21:16:25 +0000 |
commit | 92e8c2583695a3bf652e0e8dedb79e7a99922f5f (patch) | |
tree | 0574ee516499001244d33785a5fc380801c557c9 /src/storage/cache.cc | |
parent | 33c7c78b1c65c375d0291fd435e02ddc9d35681b (diff) | |
parent | 5f13f583e373bb02b7bf20cbcc9298dc1480a697 (diff) |
Merge pull request #25 from bdunahu/dev-sid
support for read word, write line in all levels of storage, cache load, dirty cache eviction, memory address wrapping
Diffstat (limited to 'src/storage/cache.cc')
-rw-r--r-- | src/storage/cache.cc | 84 |
1 files changed, 75 insertions, 9 deletions
diff --git a/src/storage/cache.cc b/src/storage/cache.cc index 1a8a10b..533d0ec 100644 --- a/src/storage/cache.cc +++ b/src/storage/cache.cc @@ -25,7 +25,7 @@ Cache::~Cache() delete this->data; } -Response Cache::write(Accessor accessor, signed int data, int address) +Response Cache::write_word(Accessor accessor, signed int data, int address) { Response r = WAIT; @@ -49,10 +49,71 @@ Response Cache::write(Accessor accessor, signed int data, int address) return r; } -Response Cache::read( - Accessor accessor, int address, std::array<signed int, LINE_SIZE> &data) +Response Cache::write_line( + Accessor accessor, std::array<signed int, LINE_SIZE> data_line, int address) { - return WAIT; + Response r = WAIT; + + /* Do this first--then process the first cycle immediately. */ + if (this->requester == IDLE) + this->requester = accessor; + + if (this->requester == accessor) { + fetch_resource(address); + if (this->is_waiting) + r = BLOCKED; + else if (this->wait_time == 0) { + int tag, index, offset; + get_bit_fields(address, &tag, &index, &offset); + this->data->at(index) = data_line; + this->meta[index].at(1) = 1; + r = OK; + } + } + + return r; +} + +// TODO: tests for multi level cache +Response Cache::read_line( + Accessor accessor, + int address, + std::array<signed int, LINE_SIZE> &data_line) +{ + Response r = WAIT; + if (this->requester == IDLE) + this->requester = accessor; + if (this->requester == accessor) { + fetch_resource(address); + if (this->is_waiting) + r = BLOCKED; + else if (this->wait_time == 0) { + int tag, index, offset; + get_bit_fields(address, &tag, &index, &offset); + data_line = this->data->at(index); + r = OK; + } + } + return r; +} + +Response Cache::read_word(Accessor accessor, int address, signed int &data) +{ + Response r = WAIT; + if (this->requester == IDLE) + this->requester = accessor; + if (this->requester == accessor) { + fetch_resource(address); + if (this->is_waiting) + r = BLOCKED; + else if (this->wait_time == 0) { + int tag, index, offset; + get_bit_fields(address, &tag, &index, &offset); + data = this->data->at(index).at(offset); + r = OK; + } + } + return r; } void Cache::fetch_resource(int expected) @@ -64,19 +125,24 @@ void Cache::fetch_resource(int expected) get_bit_fields(expected, &tag, &index, &offset); meta = &this->meta.at(index); + actual = this->data->at(index); if (meta->at(0) != tag) { // address not in cache if (meta->at(1) >= 0) { // occupant is dirty - // TODO - r = WAIT; + // writing line to DRam in case of dirty cache eviction + r = this->lower->write_line( + L1CACHE, actual, + ((index << LINE_SPEC) + + (meta->at(0) << (L1_CACHE_SPEC + LINE_SPEC)))); + if (r == OK) { + meta->at(1) = -1; + } } else { - actual = this->data->at(index); - r = this->lower->read(L1CACHE, expected, actual); + r = this->lower->read_line(L1CACHE, expected, actual); if (r == OK) { meta->at(0) = tag; - meta->at(1) = -1; } } } |