Expand description
Various kinds of associativity and Indices implementations.
Structs§
- Hash
Direct Mapped - Direct-mapped (i.e. one-way associative) caching based on the key’s
Hashimplementation. - Hash
Eight Way - Eight-way set associative caching based on the key’s
Hashimplementation. - Hash
Four Way - Four-way set associative caching based on the key’s
Hashimplementation. - Hash
Sixteen Way - Sixteen-way set associative caching based on the key’s
Hashimplementation. - Hash
Thirty TwoWay - 32-way set associative caching based on the key’s
Hashimplementation. - Hash
TwoWay - Two-way set associative caching based on the key’s
Hashimplementation. - Pointer
Direct Mapped - Direct-mapped (i.e. one-way associative) caching based on the key’s pointer value.
- Pointer
Eight Way - Eight-way set associative caching based on the key’s pointer value.
- Pointer
Four Way - Four-way set associative caching based on the key’s pointer value.
- Pointer
Sixteen Way - Sixteen-way set associative caching based on the key’s pointer value.
- Pointer
Thirty TwoWay - 32-way set associative caching based on the key’s pointer value.
- Pointer
TwoWay - Two-way set associative caching based on the key’s pointer value.