| 26 | } |
| 27 | |
| 28 | pub struct Cache<Next: MemoryAccess> { |
| 29 | params: CacheParams, |
| 30 | sets: Vec<CacheSet>, |
| 31 | next: Next, |
| 32 | stats: CacheStats, |
| 33 | block_bits: u32, |
| 34 | set_bits: u32, |
| 35 | access_tick: u64, |
| 36 | } |
| 37 | |
| 38 | #[derive(Default, Debug, Clone)] |
| 39 | pub struct CacheStats { |
nothing calls this directly
no outgoing calls
no test coverage detected