1 / 16

Virtual Memory

Virtual Memory. 1. Virtual Memory. All memory addresses within a process are logical addresses and they are translated into physical addresses at run-time Process image is divided in several small pieces (pages) that don’t need to be continuously allocated

tasya
Download Presentation

Virtual Memory

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Virtual Memory 1

  2. Virtual Memory • All memory addresses within a process are logical addresses and they are translated into physical addresses at run-time • Process image is divided in several small pieces (pages) that don’t need to be continuously allocated • A process image can be swapped in and out of memory occupying different regions of main memory during its lifetime • When OS supports virtual memory, it is not required for a process to have all its pages loaded in main memory at the time it executes

  3. Virtual Memory At any time, the portion of process image that is loaded in main memory is called the resident set of the process If the CPU try to access an address belonging to a page that currently is not loaded in main memory, it generates a page fault interrupt and: The interrupted process changes to blocked state The OS issues a disk I/O read request The OS tries to dispatch another process while the I/O request is served Once the disk completes the page transfer, an I/O interrupt is issued The OS handles the I/O interrupt and moves the process with page fault back to ready state

  4. Virtual Memory Since the OS only loads some pages of each process, more processes can be resident in main memory and be ready for execution Virtual memory gives the programmer the impression that he/she is dealing with a huge main memory (relying on available disk space). The OS loads automatically and on-demand pages of the running process. A process image may be larger than the entire main memory

  5. Virtual Memory Each page table entry (PTE) has some control bits including P-bit and M-bit P-bit indicates whether the page table entry is valid (corresponding page is present in main memory) M-bit indicates if the content of the page has been modified since the page was loaded in memory. If the page has not been modified, it is not necessary to write its content back to disk when it needs to be replaced. Page table is too big to be stored in registers so 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 Virtual address Page number Offset How can we reduce memory overhead due to paging mechanism? Page table entry (PTE) P M other control bits Frame number

  6. Virtual Memory How can we reduce memory overhead due to paging mechanism? Most virtual memory schemes use a two-level (or more) scheme to store large page tables and second level is stored in virtual memory rather than physical memory First level is a root page table (always in main memory) and each of its entries points to a second level page table (stored in virtual memory) If root page table has X entries and each 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 Virtual address Page number Offset Page table entry (PTE) P M other control bits Frame number

  7. Two level hierarchical page table Example of a two-level scheme with 32-bit virtual address Assume byte-level addressing and 4-Kb pages (212) The 4-Gb (232) 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) kept in virtual memory and mapped by a root table with 210 PTEs and requiring 4-Kb Root page table always remains in main memory 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 Virtual address (32 bits  4 Gbyte virtual address space) 10 bits root table index 10 bits page table index Offset

  8. Two level hierarchical page table Virtual address (32 bits  4 Gbyte virtual address space) 10 bits root table index 10 bits page table index Offset 4-Kb root page table … 4-Mb user page table 4-Gb user address space …

  9. Two level hierarchical page table virtual address space (32 bits)

  10. Virtual-to-Physical Lookups Programs only know virtual addresses The page table can be extremely large Each virtual address must be translated May involve walking hierarchical page table Page table stored in memory So, each program memory access requires several actual memory accesses Solution: cache “active” part of page table Use a translation lookaside buffer (TLB) TLB is an “associative mapping”; hence, the processor can query in parallel the TLB entries to determine if there is a match TLB works like a memory cache and it exploits “principle of locality”

  11. VPage # offset ... VPage# PPage# ... VPage# PPage# ... Page table VPage# PPage# PPage # offset Translation Lookaside Buffer (TLB) Virtual address Miss . . . TLB Hit Note that each TLB entry must include the virtual page # as well as the corresponding PTE Physical address

  12. TLB Function • If a virtual address is presented to MMU, the hardware checks TLB by comparing all entries simultaneously (in parallel). • If match is valid, the frame # is taken from TLB without going through page table. • If a match is not found • MMU detects miss and does a regular page table lookup. • It then evicts one old entry out of TLB and replaces it with the new one, so that next time that page is found in TLB.

  13. Effective Access Time with TLB • TLB lookup time = s time unit • Memory access time = m time unit • Assume: Page table needs single access • TLB Hit ratio = h • Effective access time: • EAT = (m + s) h + (2m + s)(1 – h) = 2m + s – m h

  14. As the size of virtual memory address space grows, additional levels must be added to multilevel page tables to avoid that the root page table becomes too large Assuming 64-bits address space, 4-Kb page size, and a PTE of 4 bytes, each page table can store 1024 entries, or 10 bits of address space. Thus 52/10= 6 levels are required or 6 memory accesses for each address translation However, size of physical memory is much smaller; hence, the idea of inverted page table can be exploited The number of entries in the inverted page table is equal to the number of physical memory frames Inverted Page Tables

  15. Consider a simple inverted page table There is one entry per physical memory frame The table is now shared among the processes, so each PTE must contain the pair <process ID, virtual page #> Physical frame # is not stored, since the index in the table corresponds to it In order to translate a virtual address, the virtual page # and current process ID are compared against each entry, scanning the array sequentially. If a match is found, its index (in the inverted page table) is used to obtain a physical address. If no match is found, a page fault occurs. The search can be very inefficient since finding a match may require searching the entire table. To speed-up the searching, hashed inverted page tables are used Inverted Page Tables

  16. 21 001 offset k offset k - 11 21 005 001 Hashed Inverted Page Tables • Main idea • One PTE for each physical frame • Hash (pid, vpage) to frame # • Pros • Small page table for large address space • Cons • Lookup is difficult • Overhead of managing hash chains, etc [pag. 794 of classbook] Physical address Virtual address PID vpage # PID Page # next 0 Hash function i k n-1 Inverted page table

More Related