cache control
play

Cache Control Philipp Koehn 16 October 2019 Philipp Koehn - PowerPoint PPT Presentation

Cache Control Philipp Koehn 16 October 2019 Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019 Memory Tradeoff 1 Fastest memory is on same chip as CPU ... but it is not very big (say, 32 KB in L1 cache)


  1. Cache Control Philipp Koehn 16 October 2019 Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  2. Memory Tradeoff 1 • Fastest memory is on same chip as CPU ... but it is not very big (say, 32 KB in L1 cache) • Slowest memory is DRAM on different chips ... but can be very large (say, 256GB in compute server) • Goal: illusion that large memory is fast • Idea: use small memory as cache for large memory Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  3. Simplified View 2 Processor Smaller memory mirrors some of the large memory content Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  4. Direct Mapping 3 • Idea: keep mapping from cache to main memory simple ⇒ Use part of the address as index to cache • Address broken up into 3 parts – memory position in block (offset) – index – tag to identify position in main memory • If blocks with same index are used, older one is overwritten Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  5. Direct Mapping: Example 4 • Main memory address (32 bit) 0010 0011 1101 1100 0001 0011 1010 1111 • Block size: 256 bytes (8 bits) • Cache size: 1MB (20 bits) 0010 0011 1101 1100 0001 0011 1010 1111 Tag Index Offset Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  6. Cache Organization 5 • Mapping of the address 0010 0011 1101 1100 0001 0011 1010 1111 Tag Index Offset • Cache data structure Index Tag Valid Data (12 bits) (1 bit) 256 bytes 4096 slots 000 001 xx xx xx xx xx xx xx xx 002 ... ... ... ... fff Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  7. 6 cache read Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  8. Cache Hit 7 Main CPU Cache Memory • Memory request from CPU • Data found in cache • Send data to CPU Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  9. Cache Circuit 8 Tag Index O ff set Decoder Tag Valid 256 byte Memory Tag Valid 256 byte Memory Tag Valid 256 byte Memory Tag Valid 256 byte Memory Main Tag Valid 256 byte Memory Memory Tag Valid 256 byte Memory • Address split up into tag, index, and offset CPU • Index contains address of block in cache • Decoded to select correct row Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  10. Cache Circuit 9 Tag Index O ff set Decoder Tag Valid 256 byte Memory Tag Valid 256 byte Memory = Main Memory AND CPU • Check tag for equality • Check if valid bit is set Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  11. Cache Circuit 10 Tag Index O ff set Decoder Tag Valid 256 byte Memory Tag Valid 256 byte Memory = Main Memory AND Select CPU • Retrieve correct byte from block (identified by offset) • Use cache only if valid and correct tag Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  12. 11 cache miss Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  13. Cache Miss 12 Main CPU Cache Memory • Memory request from CPU • Data not found in cache • Memory request from cache to main memory • Send data from memory to cache • Store data in cache • Send data to CPU Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  14. Cache Miss 13 • Requires load of block from main memory • Blocks execution of instructions • Recall discussion of memory access speeds – CPU clock cycle: 3 GHz → 0.33ns per instruction – DRAM speeds: 50ns ⇒ Significant delay (150 instruction cycles stalled) Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  15. Block Loading 14 Tag Index O ff set Decoder Tag Valid 256 byte Memory Main Tag Valid 256 byte Memory Memory = AND Select • Example CPU – block size 256 bytes – request to read memory address $00d3ff53 • Cache miss triggers read of block $00d3ff00-$00d3ffff Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  16. Read $00d3ff53 15 00 10 20 Transfer 30 40 Block 50 53 60 from 70 Main 80 90 Memory a0 b0 c0 d0 e0 f0 • But: this requires 53 read cycles before relevant byte is loaded Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  17. Better 16 00 10 20 30 Transfer 40 Block 50 53 60 from 70 Main 80 90 Memory a0 b0 c0 d0 e0 f0 • Read requested byte first Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  18. 17 cache write Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  19. Write Through 18 Main CPU Cache Memory • Writes change value in cache • Write through: immediately store changed value in memory slows down every write • Drawback: Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  20. Write Back 19 Main CPU Cache Memory • Only change value in cache • Record that cache block is changed with "dirty bit" • Write back to RAM only when block is pre-empted Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  21. Write Buffer 20 • CPU does not need to wait for write to finish • Write buffer – store value in write buffer – transfer values from write buffer to main memory in background – free write buffer • This works fine, unless process overloads write buffer Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  22. Write Miss 21 • Problem: CPU writes to address X, but X is not cached • Need to load block into cache first • Write allocate – allocate cache slot – write in value for X – load remaining values from main memory – set dirty bit Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  23. 22 split cache Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  24. MIPS Pipeline 23 IF ID EX MEM WB • 2 stages access memory – IF: instruction fetch loads current instruction – MEM: memory stage reads and writes data ⇒ 2 memory caches in processor – instruction memory – data memory Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  25. Architecture 24 CPU Instruction Data cache cache Main Memory Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

  26. Comments 25 • IF and MEM operations can be executed simultanously • Possible drawback: same memory block in both caches ... but very unlikely: code and data usually separated • Cache misses possible in both caches → contention for memory lookup, blocking • Instruction cache simpler: no writes Philipp Koehn Computer Systems Fundamentals: Cache Control 16 October 2019

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend