MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / CacheLine

Class CacheLine

crates/virtual-machine/src/memory/cache.rs:16–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16struct CacheLine {
17 valid: bool,
18 dirty: bool,
19 tag: u64,
20 data: Vec<u8>,
21 lru_age: u64,
22}
23
24struct CacheSet {
25 ways: Vec<CacheLine>,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected