Presentation is loading. Please wait.

Presentation is loading. Please wait.

Chapter 9: Virtual Memory

Similar presentations


Presentation on theme: "Chapter 9: Virtual Memory"— Presentation transcript:

1 Chapter 9: Virtual Memory

2 Chapter 9: Virtual Memory
Background Demand Paging Page Replacement Allocation of Frames Thrashing

3 Objectives To describe the benefits of a virtual memory system
To explain the concepts of demand paging, page-replacement algorithms, and allocation of page frames Virtual memory is a technique that allows the execution of processes that are not completely in memory. It frees programmers from the concerns of memory storage limitation.

4 9.1 Background Virtual memory – separation of user logical memory from physical memory. This allows large virtual memory to be provided for programmer when only a smaller physical memory is available. Only part of the program needs to be in memory for execution Logical address space can therefore be much larger than physical address space Allows address spaces to be shared by several processes Allows for more efficient process creation Virtual memory can be implemented via: Demand paging Demand segmentation

5 Virtual Memory That is Larger Than Physical Memory

6 Virtual-address Space
Virtual address space of a process refers to the logical (or virtual) view of how a process is stored in memory

7 Shared Library Using Virtual Memory
Although each process considered the shared library to be part of its virtual address space, the actual pages reside in physical memory are shared by all the processes

8 9.2 Demand Paging Implementation
Similar to paging system with swapping Bring a page into memory only when it is needed Less I/O needed Less memory needed Faster response More users Page is needed  reference to it invalid reference  abort – invalid page does not need to effect the process not-in-memory  bring to memory Lazy swapper – never swaps a page into memory unless page will be needed Swapper that deals with pages is a pager- a swapper manipulates entire processes, whereas a pager is concerned with individual pages of a process Implementation

9 Transfer of a Paged Memory to Contiguous Disk Space

10 Valid-Invalid Bit Basic concept
With each page table entry a valid–invalid bit is associated (v  in-memory, i  not-in-memory) Initially valid–invalid bit is set to i on all entries Example of a page table snapshot: During address translation, if valid–invalid bit in page table entry is I  page fault v i Frame # valid-invalid bit page table ….

11 Page Table When Some Pages Are Not in Main Memory

12 Page Fault If there is a reference to a page, first reference to that page will trap to operating system ( trap: OS fails to bring the desired page in to memory page fault Operating system looks at another table to decide: - Invalid reference  abort - Just not in memory Get empty frame Swap page into frame Reset tables Set validation bit = v Restart the instruction that caused the page fault

13 Steps in Handling a Page Fault
i – page is not in LAS of processes or valid but not loaded

14 9.4 Page replacement What happens if there is no free frame?
The solution : Page replacement – find some page in memory, but not really in use, swap it out algorithm performance – want an algorithm which will result in minimum number of page faults Same page may be brought into memory several times

15 Need For Page Replacement

16 Basic Page Replacement
Find the location of the desired page on disk Find a free frame: If there is a free frame, use it If there is no free frame, use a page replacement algorithm to select a victim frame Bring the desired page into the (newly) free frame; update the page and frame tables Restart the process

17 Page Replacement

18 Thrashing If a process does not have “enough” pages, the page-fault rate is very high. This leads to: low CPU utilization operating system thinks that it needs to increase the degree of multiprogramming another process added to the system Thrashing  a process is busy swapping pages in and out A process is trashing if it is spending more time paging than executing

19 End of Chapter 9


Download ppt "Chapter 9: Virtual Memory"

Similar presentations


Ads by Google