Transcription of Virtual Memory and Paging - courses.engr.illinois.edu
1 Copyright : University of Illinois CS 241 Staff 1 Virtual Memory and Paging Application Perspective Copyright : University of Illinois CS 241 Staff 2 Stack Heap Initialized vars (data segment) Code (text segment) Uninitialized vars (BSS segment) (Reserved for OS) Physical RAM MMU Stack Heap Initialized vars (data segment) Code (text segment) Uninitialized vars (BSS segment) (Reserved for OS) Stack Heap Initialized vars (data segment) Code (text segment) Uninitialized vars (BSS segment) (Reserved for OS) Lots of separate processes Data Structure.
2 Page Table n A page table is an array of page table entries (PTEs) that maps Virtual pages to physical pages Per-process kernel data structure in RAM Memory Copyright : University of Illinois CS 241 Staff 3 null null Memory resident page table (RAM) Physical Memory (RAM) VP 7 VP 4 Disk P 0 1 0 1 0 1 0 1 Physical page number or disk address PTE 0 PTE 7 PP 0 VP 2 VP 1 PP 3 VP 1 VP 2 VP 4 VP 6 VP 7 VP 3 Page Hit n Reference to VM address that is in physical Memory (RAM hit) Copyright : University of Illinois CS 241 Staff 4 null null Memory resident page table (RAM) Physical Memory (RAM) VP 7 VP 4 Disk 0 1 0 1 0 1 0 1 Physical page number or disk address PTE 0 PTE 7 PP 0 VP 2 VP 1 PP 3 VP 1 VP 2 VP 4 VP 6 VP 7 VP 3 Virtual address P Page Fault n Reference to VM address that is not in physical Memory (RAM miss) Copyright.
3 University of Illinois CS 241 Staff 5 null null Memory resident page table (RAM) Physical Memory (RAM) VP 7 VP 4 Disk 0 1 0 1 0 1 0 1 Physical page number or disk address PTE 0 PTE 7 PP 0 VP 2 VP 1 PP 3 VP 1 VP 2 VP 4 VP 6 VP 7 VP 3 Virtual address P Handling Page Faults n Page miss causes page fault (an exception) Copyright : University of Illinois CS 241 Staff 6 null null Memory resident page table (RAM) Physical Memory (RAM) VP 7 VP 4 Disk 0 1 0 1 0 1 0 1 Physical page number or disk address PTE 0 PTE 7 PP 0 VP 2 VP 1 PP 3 VP 1 VP 2 VP 4 VP 6 VP 7 VP 3 Virtual address P Handling Page Faults n Page fault handler selects a victim to be evicted (here VP 4) Copyright.
4 University of Illinois CS 241 Staff 7 null null Memory resident page table (RAM) Physical Memory (RAM) VP 7 VP 4 Disk 0 1 0 1 0 1 0 1 Physical page number or disk address PTE 0 PTE 7 PP 0 VP 2 VP 1 PP 3 VP 1 VP 2 VP 4 VP 6 VP 7 VP 3 Virtual address P Handling Page Faults n Loads new page into freed frame Copyright : University of Illinois CS 241 Staff 8 null null Memory resident page table (RAM) Physical Memory (RAM) VP 7 Disk 0 1 1 0 0 1 0 1 Physical page number or disk address PTE 0 PTE 7 PP 0 VP 2 VP 1 PP 3 VP 1 VP 2 VP 4 VP 6 VP 7 VP 3 Virtual address VP 3 P Handling Page Faults n Offending instruction is restarted: page hit!
5 Copyright : University of Illinois CS 241 Staff 9 null null Memory resident page table (RAM) Physical Memory (RAM) VP 7 Disk 0 1 1 0 0 1 0 1 Physical page number or disk address PTE 0 PTE 7 PP 0 VP 2 VP 1 PP 3 VP 1 VP 2 VP 4 VP 6 VP 7 VP 3 Virtual address VP 3 P Virtual Memory n Page table has to be in main Memory . If each process has a 4Mb page table, the amount of Memory required to store page tables would be unacceptably high 32bits address space 232 =4GB PTE size = 4bytes page size 4KB=212 (232-12)x 4bytes =4MB size of page table TOO BIG!
6 Page number Offset Virtual address Page table entry (PTE) How can we reduce Memory overhead due to Paging mechanism? P A other control bits Frame number Page Table Size n Suppose 4KB (212) page size, 64-bit address space, 8-byte PTE n How big does the page table need to be? Copyright : University of Illinois CS 241 Staff 11 Page Table Size n Suppose 4KB (212) page size, 64-bit address space, 8-byte PTE n How big does the page table need to be? 32,000 TB! 264 * 2-12 * 23 = 255 bytes Copyright : University of Illinois CS 241 Staff 12 Virtual Memory n How can we reduce Memory overhead due to Paging mechanism?
7 N Most Virtual Memory schemes use a two-level (or more) scheme to store large page tables in kernel Memory and second level can be swapped out to disk rather than always being in physical Memory First level is a root page table (always in kernel Memory ) and each of its entries points to a second level page table stored in kernel Memory (if allocated) or swapped out to disk If root page table has X entries and each 2nd level page table has Y entries, then each process can have up to X*Y pages Size of each second level page table is equal to the page size Page number Offset Virtual address P A other control bits Frame number Page table entry (PTE) Two level hierarchical page table n Example of a two-level scheme with 32-bit Virtual address Assume byte-level addressing and 4-Kb pages (212) The 4-Gb (232)
8 Virtual address space is composed of 220 pages Assume each page table entry (PTE) is 4 bytes Total user page table would require 4-Mb (222 bytes); it can be divided into 210 pages (second level page tables) mapped by a root table with 210 PTEs and requiring 4-Kb 10 most significant bits of a Virtual address are used as index in the root page table to identify a second level page table If required page table is not in main Memory , a page fault occurs Next 10 bits of Virtual address are used as index in the page table to map Virtual address to physical address 10 bits root table index 10 bits page table index Offset Virtual address (32 bits 4 Gbyte Virtual address space) Virtual address (32 bits)!
9 Addresses a byte in VM Two level page table hierarchy addresses a byte in Physical Mem. Two level page table hierarchy Copyright : University of Illinois CS 241 Staff 16 Level 1 page table .. Level 2 page tables VP 0 .. VP 1023 VP 1024 .. VP 2047 Gap 0 PTE 0 .. PTE 1023 PTE 0 .. PTE 1023 1023 null PTEs PTE 1023 1023 unallocated pages VP 9215 Physical Memory (9 - 1K) null PTEs PTE 0 PTE 1 PTE 2 (null) PTE 3 (null) PTE 4 (null) PTE 5 (null) PTE 6 (null) PTE 7 (null) PTE 8 2048 allocated VM pages for code and data 6K unallocated VM pages 1023 unallocated pages 1 allocated VM page for the stack 32 bit addresses 4KB pages, 4-byte PTEs Multilevel Page Tables n What happens on a page fault?
10 MMU looks up index in root page table to get 2nd level page table MMU tries to access 2nd level page table n May result in another page fault to load the 2nd level page table! MMU looks up index in 2nd level page table to retrieve physical page address and loads the page in physical Memory from disk CPU re-executes the faulty instruction and accesses the physical Memory address Copyright : University of Illinois CS 241 Staff 17 Multilevel Page Tables n Issue Page translation has very high overhead Up to three Memory accesses plus two disk I/Os Copyright : University of Illinois CS 241 Staff 18 Speeding up Translation.