Cache Memory
Cache Memory
Characteristics
Location Capacity Unit of transfer Access method Performance Physical type Physical characteristics Organisation
Location
CPU Internal External
Capacity
Word size
The natural unit of organisation
Number of words
or Bytes
Unit of Transfer
Internal
Usually governed by data bus width
External
Usually a block which is much larger than a word
Addressable unit
Smallest location which can be uniquely addressed Word internally Cluster on M$ disks
Direct
Individual blocks have unique address Access is by jumping to vicinity plus sequential search Access time depends on location and previous location e.g. disk
Associative
Data is located by a comparison with contents of a portion of the store Access time is independent of location or previous access e.g. cache
Memory Hierarchy
Registers
In CPU
External memory
Backing store
Memory Hierarchy
Performance
Access time
Time between presenting the address and getting the valid data
Transfer Rate
Rate at which data can be moved
Physical Types
Semiconductor
RAM
Magnetic
Disk & Tape
Optical
CD & DVD
Others
Bubble Hologram
Physical Characteristics
Decay Volatility Erasable Power consumption
Organisation
Physical arrangement of bits into words Not always obvious e.g. interleaved
How fast?
Time is money
How expensive?
Hierarchy List
Registers L1 Cache L2 Cache Main memory Disk cache Disk Optical Tape
Locality of Reference
During the course of the execution of a program, memory references tend to cluster e.g. loops
Cache
Small amount of fast memory Sits between normal main memory and CPU May be located on CPU chip or module
Cache Design
Addressing Size Mapping Function Replacement Algorithm Write Policy Block Size Number of Caches
Cache Addressing
Where does cache sit?
Between processor and virtual memory management unit Between MMU and main memory
Speed
More cache is faster (up to a point) Checking cache for data takes time
Mapping Function
Cache of 64kByte Cache block of 4 bytes
i.e. cache is 16k (214) lines of 4 bytes
Direct Mapping
Each block of main memory maps to only one cache line
i.e. if a block is in cache, it must be in one specific place
Address is in two parts Least Significant w bits identify unique word Most Significant s bits specify one memory block The MSBs are split into a cache line field r and a tag of s-r (most significant)
24 bit address 2 bit word identifier (4 byte block) 22 bit block identifier
8 bit tag (=22-14) 14 bit slot or line
No two blocks in the same line have the same Tag field Check contents of cache by finding line and checking Tag
Direct Mapping Cache Line Table Cache line Main Memory blocks held
0
1 m-1
0, m, 2m, 3m2s-m
1,m+1, 2m+12s-m+1
m-1, 2m-1,3m-12s-1
Victim Cache
Lower miss penalty Remember what was discarded
Already fetched Use again with little penalty
Fully associative 4 to 16 cache lines Between direct mapped L1 cache and next memory level
Associative Mapping
A main memory block can load into any line of cache Memory address is interpreted as tag and word Tag uniquely identifies block of memory Every lines tag is examined for a match Cache searching gets expensive
Tag 22 bit
Word 2 bit
22 bit tag stored with each 32 bit block of data Compare tag field with tag entry in cache to check for hit Least significant 2 bits of address identify which 16 bit word is required from 32 bit data block e.g.
Address FFFFFC Tag Data FFFFFC24682468 Cache line 3FFF
Set Associative Mapping Example 13 bit set number Block number in main memory is modulo 213 000000, 00A000, 00B000, 00C000 map to same set
Use set field to determine cache set to look in Compare tag field to see if we have a hit e.g
Address number 1FF 7FFC 001 7FFC Tag Data Set
1FF 001
Significant up to at least 64kB for 2-way Difference between 2-way and 4-way at 4kB much less than 4kB to 8kB Cache complexity increases with associativity Not justified against increasing cache to 8kB or 16kB Above 32kB gives no improvement (simulation results)
0.9
0.8 0.7
Hit ratio
0.6
0.5 0.4
0.3
0.2 0.1
Replacement Algorithms (1) Direct mapping No choice Each block only maps to one line Replace that line
Replacement Algorithms (2) Associative & Set Associative Hardware implemented algorithm (speed) Least Recently used (LRU) e.g. in 2 way set associative
Which of the 2 block is lru?
Random
Write Policy
Must not overwrite a cache block unless main memory is up to date Multiple CPUs may have individual caches I/O may address main memory directly
Write through
All writes go to main memory as well as cache Multiple CPUs can monitor main memory traffic to keep local (to CPU) cache up to date Lots of traffic Slows down writes
Write back
Updates initially made in cache only Update bit for cache slot is set when update occurs If block is to be replaced, write to main memory only if update bit is set Other caches get out of sync I/O must access main memory through cache N.B. 15% of memory references are writes
Line Size
Retrieve not only desired word but a number of adjacent words as well Increased block size will increase hit ratio at first Hit ratio will decreases as block becomes even bigger
the principle of locality
Larger blocks
Probability of using newly fetched information becomes less than probability of reusing replaced Reduce number of blocks that fit in cache Data overwritten shortly after being fetched Each additional word is less local so less likely to be needed
No definitive optimum value has been found 8 to 64 bytes seems reasonable For HPC systems, 64- and 128-byte most common
Multilevel Caches
High logic density enables caches on chip
Faster than bus access Frees bus for other transfers
Pentium 4 Cache
80386 no on chip cache 80486 8k using 16 byte lines and four way set associative organization Pentium (all versions) two on chip L1 caches
Data & instructions
L2 cache
Feeding both L1 caches 256k 128 byte lines 8 way set associative
L3 cache on chip
Increased processor speed results in external bus becoming a bottleneck for cache access.
486
Internal cache is rather small, due to limited space on chip Contention occurs when both the Instruction Prefetcher and the Execution Unit simultaneously require access to the cache. In that case, the Prefetcher is stalled while the Execution Units data access takes place.
486
Pentium
Increased processor speed results in external bus becoming a bottleneck for L2 cache access.
Create separate back-side bus that runs at higher speed than the main (front-side) external bus. The BSB is dedicated to the L2 cache. Move L2 cache on to the processor chip.
Pentium Pro
Some applications deal with massive databases and must have rapid access to large amounts of data. The on-chip caches are too small.
Execution units
Execute micro-ops Data from L1 cache Results in registers
Memory subsystem
L2 cache and systems bus
Pentium instructions long & complex Performance improved by separating decoding from scheduling & pipelining
(More later ch14)
ARM720T
Unified
4-way
Logical
ARM920T ARM926EJ-S
Split Split
8 8
64-way 4-way
Logical Logical
16 16
ARM1022E ARM1026EJ-S
Split Split
8 8
64-way 4-way
Logical Logical
16 8
Intel StrongARM
Split
16/16 D/I
32-way
Logical
32
Split Split
8 8
32-way 4-way
Logical Physical
32 32
Internet Sources
Manufacturer sites
Intel ARM
Search on cache