Computer Architecture: Cache Transfer Analysis

271 Views Asked by At

This is a question on my exam study guide and we have not yet covered how to calculate data transfer. Any help would be greatly appreciated.

Given is an 8 way set associative level 2 data cache with a capacity of 2 MByte (1MByte = 2^20 Byte) and a block size 128 Bytes. The cache is connected to the main memory by a shared 32 bit address and data bus. The cache and the RISC-CPU are connected by a separated address and data bus, each with a width of 32 bit. The CPU is executing a load word instruction

a) How much user data is transferred from the main memory to the cache in case of a cache miss?

b) How much user data is transferred from the cache to the CPU in case of a cache miss?

1

There are 1 best solutions below

0
On

You need to compute first your cache line size:

  1. Number of cache blocks: 2MB / 128B = 16384 blocks (14 bits)
  2. Number of sets: 16384 / 8 way = 2048 sets (11 bits)
  3. Address width: 32 bits
  4. Line offset bits: 32 - 14 - 11 = 7 bits

So the cache line size is 128B - actually a line is a block but it's good to know the above computation.

a) How much user data is transferred from the main memory to the cache in case of a cache miss?

In your problem, the L2 cache is the last level cache before main memory. So if you miss in the L2 cache (you don't find the line you are looking for), you need to fetch the line from main memory. So 128B of user data will be transferred from the main memory. The fact that the address bus and data bus are shared does not influence.

b) How much user data is transferred from the cache to the CPU in case of a cache miss?

If you reached the L2 cache that means you missed the L1 cache. So from L2 the CPU has to transfer to L1 a full L1 cache line. So the L1 line size is 128B, then 128B of data will go from L2 to L1. The CPU will use then only a fraction of that line to feed the instruction that generated the miss into the L1 cache. Whether that line is evicted or not from L2, this should have been stated in the problem sentence (inclusive / exclusive cache)