1 / 20

EEE 435 Principles of Operating Systems

EEE 435 Principles of Operating Systems. Page Replacement Algorithms Pt I (Modern Operating Systems 4.4). Quick Review. What is the problem that multi-level page tables solve? In a TLB, what kind of memory is required to look up the page frame of a physical address quickly?

xuxa
Télécharger la présentation

EEE 435 Principles of Operating Systems

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. EEE 435Principles of Operating Systems Page Replacement Algorithms Pt I (Modern Operating Systems 4.4)

  2. Quick Review • What is the problem that multi-level page tables solve? • In a TLB, what kind of memory is required to look up the page frame of a physical address quickly? • For systems with very, very large virtual address spaces, what is our solution to the overwhelming size of the page table? Dr Alain Beaulieu

  3. Page Replacement Algorithms • Recall: paging schemes follow a set of rules: • They allow a program to be loaded into memory one page at a time • They have some sort of table that denotes which virtual pages are in memory and the specific page frame in which they reside • When pages are requested that are not in physical memory, a page fault is generated • The OS must now load the requested page into memory. If there are no free page frames, a page frame must be evicted. Which one is removed? Dr Alain Beaulieu

  4. Page Replacement Algorithms • A set of algorithms exist which can be used to choose which page is the best candidate for eviction • Considerations: • Pages that have been modified will have to be written to the disk before eviction • Use of state information such as the modified and used bits will be helpful in making this decision • These algorithms are applicable to other areas of research: cache, web servers, etc... Dr Alain Beaulieu

  5. Page Replacement Algorithms • The Optimal Page Replacement Algorithm • Theoretical algorithm which represents the absolute, without-a-doubt, best choice we could make for page eviction • Label each page frame with the number of instructions until it will next be required • Evict the page with the highest label. • Essentially, kick out the page that won’t be needed for the longest time based on the pages in memory at the moment of decision Dr Alain Beaulieu

  6. Page Replacement Algorithms • The Optimal Page Replacement Algorithm • Can this algorithm be implemented? • Absolutely not. If we could determine when every page would be needed in the future based on the current state, we could solve the halting problem! • Moreover, user input means that the future is unpredictable! • However, if a program is run once for a particular set of input, it is possible to keep track of what pages were required and in what order • This record can be used as a benchmark to compare how close realizable algorithms come to the optimal Dr Alain Beaulieu

  7. Page Replacement Algorithms • The Not Recently Used (NRU) Page Replacement Algorithm (PRA) • This algorithm uses the dirty bit and used bit to determine the best candidate for removal • The hardware must update these bits (if required) on every memory reference. They will be cleared only by the operating system • The used bit will be cleared periodically, say, every clock interrupt. The dirty bit cannot be cleared until the page is written back to the disk Dr Alain Beaulieu

  8. Page Replacement Algorithms • The Not Recently Used PRA • When a page fault occurs, the OS inspects all page frames and divides them into four categories: • Class 0: not used, not dirty • Class 1: not used, dirty • Class 2: used, not dirty • Class 3: used and dirty • A random page in the lowest class is then chosen and evicted Dr Alain Beaulieu

  9. Page Replacement Algorithms • The Not Recently Used PRA • Implicit is the idea that it is better to evict a dirty page that has not been used in the last tick (roughly 20ms) than a clean page in heavy use • Is this true? • Advantages: easy to understand and implement • Disadvantages: performance clearly not optimal, but may be adequate for many systems Dr Alain Beaulieu

  10. Page Replacement Algorithms • The First-In, First-Out (FIFO) PRA • Easy to implement. Keep a list of all pages in memory in the order in which they arrived • On a page fault, the oldest page is removed and the new page is added to the end of the list • Advantage: incredibly easy to implement • Disadvantage: no way of telling if the page being removed is in heavy use. Age may be, but is not necessarily, a good indication of whether a page is in use Dr Alain Beaulieu

  11. Page Replacement Algorithms • The Second Chance PRA • This algorithm is a modification of FIFO to make it a reasonable possibility • Before evicting the oldest page, a check is made of the used bit • If the page is in use, even if it is old, it is given a second chance and its entry moved back to the end of the list, effectively making it a young page again. Its used bit is cleared at this time • The search continues in this manner until an old page that has not been used is found Dr Alain Beaulieu

  12. Page Replacement Algorithms • The Second Chance PRA Dr Alain Beaulieu

  13. Page Replacement Algorithms • The Clock Page Replacement Algorithm • The Second Chance PRA can be slow because page entries are constantly being linked/unlinked to keep them in the correct order • A better approach is to keep all the page entries in a circular list (can be thought of as the form of a clock). A ‘hand’ points to the oldest page • This hand is really just a pointer to a particular page entry Dr Alain Beaulieu

  14. Page Replacement Algorithms • The Clock Page Replacement Algorithm • When a page fault occurs, the page being pointed to by the hand is inspected. If not used, it is evicted and the hand advances to the next position • If in use, the bit is cleared and the hand advances to the next position to perform another check • This continues until a page is found for eviction Dr Alain Beaulieu

  15. Page Replacement Algorithms • The Clock Page Replacement Algorithm Dr Alain Beaulieu

  16. Page Replacement Algorithms • The Least Recently Used (LRU) PRA • A good approximation to the optimal algorithm is that pages that have been heavily used in the last few instructions will probably be heavily used in the next few (and the opposite is true as well) • Therefore, when a page fault occurs, throw out the page that has been unused for the longest time • How is this different from FIFO? Dr Alain Beaulieu

  17. Page Replacement Algorithms • The Least Recently Used (LRU) PRA • Method 1: implement in its pure form. Every entry must be kept in a linked list. Every time a page is used, it is moved to the front of the list • This is a very expensive operation, even in hardware! • Method 2: Have a very large (64 bit) counter that is incremented after every instruction. Store this number in each page table entry after every memory reference. When replacing a page, evict the page with the smallest counter value • That’s a lot of page table space to use! Dr Alain Beaulieu

  18. Page Replacement Algorithms • The Least Recently Used (LRU) PRA • Method 3: For a system with n page frames, maintain a hardware matrix of size n x n bits, initially set to 0. Use a neat trick (amaze your friends!): • Whenever a page, k, is referenced the hardware sets all the bits of rowk to 1, then sets all the bits of columnk to 0 • The row with the lowest binary value is the least recently used page frame and is the candidate for eviction...try it! Dr Alain Beaulieu

  19. Page Replacement Algorithms • The Least Recently Used (LRU) PRA • Accessed in order: 0,1,2,3,2,1,0,3,2,3 Dr Alain Beaulieu

  20. Quiz Time! Questions? Dr Alain Beaulieu

More Related