Continued from Computer Organization and Architecture Lecture 12
Computer Organization & Architecture Lecture 13
In direct-mapped cache, each block of main memory is mapped to exactly one cache line. This means that the main memory is divided into blocks, and each block can only be placed in a specific cache line. Here’s a breakdown of how the main memory address is distributed in a direct-mapped cache:
-
Address Structure:
- The memory address is divided into three fields: tag, index, and offset (or block offset).
-
Tag:
- The tag is the highest-order portion of the address. It is used to identify which memory block is currently stored in a cache line.
-
Index:
- The index field determines the cache line where a memory block can be placed. In direct-mapped cache, each memory block maps to a unique cache line based on this index.
-
Offset (Block Offset):
- The offset specifies the particular word or byte within a block. It is used to access data within the block once it is loaded into the cache.
-
Mapping Process:
- When a memory address is accessed, the index field is used to determine the cache line.
- The tag of the memory address is compared with the tag stored in the cache line. If they match, it’s a cache hit; otherwise, it’s a cache miss.
- In case of a cache miss, the block from main memory is loaded into the cache line specified by the index, potentially replacing the existing block.
-
Example:
- Suppose you have a cache with 1024 lines and a block size of 64 bytes. If the main memory address is 32 bits:
- The offset would be 6 bits (since () bytes per block).
- The index would be 10 bits (since cache lines).
- The remaining bits bits would be the tag.
- Suppose you have a cache with 1024 lines and a block size of 64 bytes. If the main memory address is 32 bits:
This structure ensures that each memory block has a fixed location in the cache, simplifying the cache management but potentially leading to more conflicts (collisions) compared to more complex cache mapping schemes like fully associative or set-associative caches.
Problems and solutions
Question 1: Fully Associative Mapping
Given:
- Cache Size:
- Block Size:
- Tag Bits: 17 bits
Find:
-
Size of MM (Memory):
-
Line Size:
-
Tag Directory Size:
graph TD A[Given: Cache Size, Block Size, Tag Bits] --> B[Calculate Number of Lines] B --> C[Number of Lines = Cache Size / Block Size] C --> D[Number of Lines = 512] A --> E[Calculate Memory Size] E --> F[MM = Tag Size + Block Size] F --> G[MM = 128 MB] A --> H[Calculate Tag Directory Size] H --> I[Tag Directory Size = Number of Lines * Tag Bits] I --> J[Tag Directory Size = 8704 bits]
Question 2: Two-Way Set Associative Mapping
Given:
- Main Memory Size:
- Cache Size:
- Block Size:
Find:
-
P.A (Physical Address) Split:
-
Line Number:
- The number of lines in the cache is calculated by dividing the cache size by the block size.
-
Tag Directory Size:
graph TD A[Given: Main Memory Size, Cache Size, Block Size] --> B[Split Physical Address] B --> C[Tag = 9 bits, Set = 12 bits, Block Offset = 7 bits] A --> D[Calculate Number of Lines] D --> E[Number of Lines = Cache Size / Block Size] E --> F[Number of Lines = 2^13] A --> G[Calculate Tag Directory Size] G --> H[Tag Directory Size = Line Number * Tag Bits] H --> I[Tag Directory Size = 9 KB]
Question 3: 4-Way Set Associative Mapping
Given:
- Main Memory Size:
- Block Size:
- Tag Bits: 10
- Cache Size:
Find:
-
Physical Address Split:
-
Cache Size:
Question 4: Set-Associative Mapping (Main Memory and Cache Size Calculation)
Given:
- Main Memory Size:
- Cache Size:
- Block Size:
Find the Cache Size for Different Set Associative Mappings:
-
For 2-Way Set Associative Mapping:
-
For 4-Way Set Associative Mapping:
-
For 8-Way Set Associative Mapping:
Table Diagram for Set Associative Mapping:
Two-Way Set Associative Mapping Table:
Set 0 | Set 1 |
---|---|
L0 | L1 |
L2 | L3 |
Physical Address Split for Set Associative Mapping:
Tag | Set | Block Offset |
---|---|---|
9 bits | 12 bits | 7 bits |
References
Continued to Computer Organization and Architecture Lecture 14
Information
- date: 2025.02.27
- time: 11:12