tlbs
play

TLBs 1 memory HW random memory image page tables with 1-byte page - PowerPoint PPT Presentation

TLBs 1 memory HW random memory image page tables with 1-byte page entries answer: 2-byte values read (or replaced) or fault 3 attempts per set of problems submitting only right and blank answers doesnt count as attempt keep


  1. TLBs 1

  2. memory HW random memory image page tables with 1-byte page entries answer: 2-byte values read (or replaced) or “fault” 3 attempts per set of problems submitting only right and blank answers — doesn’t count as attempt keep getting new sets of problems until you get it right 2

  3. cache accesses and multi-level PTs four-level page tables — four cache accesses per memory access L1 cache hits — typically a couple cycles each? so add 8 cycles to each memory access? not acceptable 3

  4. program memory active sets 0xFFFF FFFF FFFF FFFF 0xFFFF 8000 0000 0000 0x7F… 0x0000 0000 0040 0000 Used by OS Stack Heap / other dynamic Writable data Code + Constants small areas of memory active at a time one or two pages in each area? 4

  5. needed page table entries are very small page table entries and locality page table entries have excellent temporal locality typically one or two pages of the stack active typically one or two pages of code active typically one or two pages of heap/globals active 5 each page contains whole functions, arrays, stack frames, etc.

  6. page table entries and locality page table entries have excellent temporal locality typically one or two pages of the stack active typically one or two pages of code active typically one or two pages of heap/globals active needed page table entries are very small 5 each page contains whole functions, arrays, stack frames, etc.

  7. page table entry cache one page table entry per block enables highly associative cache designs few active page table entries at a time (they’re used for kilobytes of data already) not much spatial locality between page table entries (generally) just entries from the last-level page table only caches the page table lookup itself usually thousands of blocks usually tens of entries tens of bytes per block caled a TLB (translation lookaside bufger) page table entries bytes from memory virtual page numbers physical addresses TLB L1 cache very small cache of page table entries 6

  8. page table entry cache one page table entry per block enables highly associative cache designs few active page table entries at a time (they’re used for kilobytes of data already) not much spatial locality between page table entries (generally) just entries from the last-level page table only caches the page table lookup itself usually thousands of blocks usually tens of entries tens of bytes per block caled a TLB (translation lookaside bufger) page table entries bytes from memory virtual page numbers physical addresses TLB L1 cache very small cache of page table entries 6

  9. page table entry cache one page table entry per block enables highly associative cache designs few active page table entries at a time (they’re used for kilobytes of data already) not much spatial locality between page table entries (generally) just entries from the last-level page table only caches the page table lookup itself usually thousands of blocks usually tens of entries tens of bytes per block caled a TLB (translation lookaside bufger) page table entries bytes from memory virtual page numbers physical addresses TLB L1 cache very small cache of page table entries 6

  10. page table entry cache one page table entry per block enables highly associative cache designs few active page table entries at a time (they’re used for kilobytes of data already) not much spatial locality between page table entries (generally) just entries from the last-level page table only caches the page table lookup itself usually thousands of blocks usually tens of entries tens of bytes per block caled a TLB (translation lookaside bufger) page table entries bytes from memory virtual page numbers physical addresses TLB L1 cache very small cache of page table entries 6

  11. TLB and the MMU (1) MMU (‘page table walk’ logic) L1 Cache/Memory TLB address from program 7

  12. TLB and the MMU (2) split PTE parts but no need to store invalid PTEs in TLB need to check permissions (read/kernel/etc.) TLB miss: TLB gets a copy of the page table entry TLB miss: page table access happens TLB hit: TLB accesses replaces page table access virtual address physical address 00 1101 1111 cause fault? and kernel bit 11 0101 01 00 1101 1111 check valid 1101 0011 11 data or instruction cache + TLB base register page table 0x10000 8 × PTE size

  13. TLB and the MMU (2) split PTE parts but no need to store invalid PTEs in TLB need to check permissions (read/kernel/etc.) TLB miss: TLB gets a copy of the page table entry TLB miss: page table access happens TLB hit: TLB accesses replaces page table access virtual address physical address 00 1101 1111 cause fault? and kernel bit 11 0101 01 00 1101 1111 check valid 1101 0011 11 data or instruction cache + TLB base register page table 0x10000 8 × PTE size

  14. TLB and the MMU (2) split PTE parts but no need to store invalid PTEs in TLB need to check permissions (read/kernel/etc.) TLB miss: TLB gets a copy of the page table entry TLB miss: page table access happens TLB hit: TLB accesses replaces page table access virtual address physical address 00 1101 1111 cause fault? and kernel bit 11 0101 01 00 1101 1111 check valid 1101 0011 11 data or instruction cache + TLB base register page table 0x10000 8 × PTE size

  15. TLB and the MMU (2) split PTE parts but no need to store invalid PTEs in TLB need to check permissions (read/kernel/etc.) TLB miss: TLB gets a copy of the page table entry TLB miss: page table access happens TLB hit: TLB accesses replaces page table access virtual address physical address 00 1101 1111 cause fault? and kernel bit 11 0101 01 00 1101 1111 check valid 1101 0011 11 data or instruction cache + TLB base register page table 0x10000 8 × PTE size

  16. TLB and the MMU (2) split PTE parts but no need to store invalid PTEs in TLB need to check permissions (read/kernel/etc.) TLB miss: TLB gets a copy of the page table entry TLB miss: page table access happens TLB hit: TLB accesses replaces page table access virtual address physical address 00 1101 1111 cause fault? and kernel bit 11 0101 01 00 1101 1111 check valid 1101 0011 11 data or instruction cache + TLB base register page table 0x10000 8 × PTE size

  17. TLB and the MMU (2) split PTE parts but no need to store invalid PTEs in TLB need to check permissions (read/kernel/etc.) TLB miss: TLB gets a copy of the page table entry TLB miss: page table access happens TLB hit: TLB accesses replaces page table access virtual address physical address 00 1101 1111 cause fault? and kernel bit 11 0101 01 00 1101 1111 check valid 1101 0011 11 data or instruction cache + TLB base register page table 0x10000 8 × PTE size

  18. TLB and multi-level page tables TLB caches valid last-level page table entries doesn’t matter which last-level page table means TLB output can be used directly to form address 9

  19. TLB organization (2-way set associative) = 0x12F 1 100 11 010110 index (program address) = tag 1 AND AND page table entry OR is hit? page table entry 11 1 valid tag … physical page # write … valid tag physical page # write … … … … 0x123 … … … … … … 1 10 10 VPN page ofgset

  20. TLB organization (2-way set associative) = 0x12F 1 100 11 010110 index (program address) = tag 1 AND AND page table entry OR is hit? page table entry 11 1 valid tag … physical page # write … valid tag physical page # write … … … … 0x123 … … … … … … 1 10 10 VPN page ofgset

  21. TLB organization (2-way set associative) = 0x12F 1 100 11 010110 index (program address) = tag 1 AND AND page table entry OR is hit? page table entry 11 1 valid tag … physical page # write … valid tag physical page # write … … … … 0x123 … … … … … … 1 10 10 VPN page ofgset

  22. TLB organization (2-way set associative) = 0x12F 1 100 11 010110 index (program address) = tag 1 AND AND page table entry OR is hit? page table entry 11 1 valid tag … physical page # write … valid tag physical page # write … … … … 0x123 … … … … … … 1 10 10 VPN page ofgset

  23. TLB organization (2-way set associative) = 0x12F 1 100 11 010110 index (program address) = tag 1 AND AND page table entry OR is hit? page table entry 11 1 valid tag … physical page # write … valid tag physical page # write … … … … 0x123 … … … … … … 1 10 10 VPN page ofgset

  24. address splitting for TLBs (1) my desktop: 64-entry, 4-way L1 data TLB TLB index bits? sets — 4 bits TLB tag bits? bit virtual address — bit TLB tag 11 4KB ( 2 12 byte) pages; 48-bit virtual address

  25. address splitting for TLBs (1) my desktop: 64-entry, 4-way L1 data TLB TLB index bits? TLB tag bits? 11 4KB ( 2 12 byte) pages; 48-bit virtual address 64 / 4 = 16 sets — 4 bits 48 − 12 = 36 bit virtual address — 36 − 4 = 32 bit TLB tag

  26. address splitting for TLBs (2) my desktop: TLB index bits? sets — 7 bits TLB tag bits? bit virtual address — bit TLB tag 12 4KB ( 2 12 byte) pages; 48-bit virtual address 1536-entry ( 3 · 2 9 ), 12-way L2 TLB

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