index
:
RAM.git
master
'RAM Acts Magically' a memory simulator supporting configurable cache levels and ways
bd
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
storage
/
cache.cc
Age
Commit message (
Collapse
)
Author
2025-04-11
Move source files to top-level src directory
bd
2025-03-28
add get_instr_fields func to parse instruction fields from raw bits
bd
2025-03-23
Merge pull request #30 from bdunahu/bdunahu
bd
Add controller.h, implementation and tests.
2025-03-22
Remove manual clock advancing / resolution from storage devices
bd
2025-03-22
Add controller.h, implementation and tests.
bd
2025-03-21
add 'process' function to handle boilerplate on every request
bd
2025-03-21
Small cleanups to up a lot of inplementation details
bd
2025-03-21
Rewrite current cache.cc tests, add test-helper function to dram
bd
2025-03-11
Fix small issue in fetch_resource wih off by one cycle count
bd
2025-03-11
Fix issue where fetch_resource did not update cache data
bd
2025-03-11
fix lots of bugs
bd
2025-03-11
clarify macro names, implement load in CLI, fix many display issues
bd
2025-03-11
Merge remote-tracking branch 'origin/master' into bdunahu
bd
2025-03-11
Rename read/write to read_line and write_word
bd
2025-03-11
remove operation.h and branch determined by read/write in cache load
bd
2025-03-11
read has to wait until cache has the right line from memory after eviction, ↵
Siddarth-Suresh
write only has to wait until eviction and does not care about line replacement in cache from memory
2025-03-11
Clarify size of mem and cache in definitions, CLI print invalid tags
bd
2025-03-11
support for reading word, writing line to storage, dirty cache eviction, ↵
Siddarth-Suresh
cache load
2025-03-11
Write line, dirty cache eviction, cache load word/line (for future ↵
Siddarth-Suresh
multilevel cache implementation)
2025-03-11
fix namespace issues with match function
bd
2025-03-11
cli display clock cycle, parse ';' delimited commands
bd
2025-03-10
overload << operator for dram
bd
2025-03-10
CLI view, clock, store, program banner
bd
2025-03-10
Add starter overloaded << operator for cache
bd
2025-03-10
Update cli method signatures, add some getters to cache and storage
bd
2025-03-09
Properly set cache metadata when a value is loaded
bd
2025-03-09
Cache object issues with uninitialized fields, another cache test
bd
2025-03-09
cache store single test
bd
2025-03-09
Untested implementation for loading absent data into cache
bd
2025-03-09
Move do_write to dram.h, is_blocked flag
bd
2025-03-09
Merge remote-tracking branch 'origin/master' into bdunahu
bd
2025-03-09
Add bitset field to cache.h for keeping track of write/validity
bd
2025-03-09
Implement dram load
Siddarth-Suresh
2025-03-08
Refactor function return scheme
bd
2025-03-06
dram write (no delay, no accessor tracking
bd
2025-03-06
Storage.view method, some initial tests
bd
2025-03-05
whitespace
bd
2025-03-05
constructors + method declarations for cache, dram, reponse, storage
bd