Presentation is loading. Please wait.

Presentation is loading. Please wait.

Memory Management Page replacement algorithms, segmentation Tanenbaum, ch. 3 p. 201 - 247 Silberschatz, ch. 8, 9 p. 302 - 340.

Similar presentations


Presentation on theme: "Memory Management Page replacement algorithms, segmentation Tanenbaum, ch. 3 p. 201 - 247 Silberschatz, ch. 8, 9 p. 302 - 340."— Presentation transcript:

1 Memory Management Page replacement algorithms, segmentation Tanenbaum, ch. 3 p. 201 - 247 Silberschatz, ch. 8, 9 p. 302 - 340

2 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Virtual Memory & Paging  The relation between virtual addresses and physical memory addresses given by page table  One page table per process is needed (per thread?)  Page table needs to be reloaded at context switch

3 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Page Replacement  So we know how to find a page table entry  If it is not in the page table  Get it from disk  What if the physical memory is full?  Throw some page out!  Remember cache replacement policies?

4 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Page Replacement Algorithms  Page fault forces choice  Which page must be removed  Make room for incoming page(s)  Modified page must first be saved  Unmodified just overwritten  Better not to choose an often used page  Will probably need to be brought back in soon

5 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Optimal Page Replacement Algorithm  Replace page needed at the farthest point in future  Optimal but unrealizable  Estimate by …  Logging page use on previous runs of process  Although this is impractical

6 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Page Replacement Algorithms 1.Not Recently Used (NRU) 2.FIFO 3.Second Chance FIFO / Clock 4.Least Recently Used (LRU) 5.Not Frequently Used (NFU) / Aging

7 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) 1. Not Recently Used (NRU)  Each page has Reference bit, Modified bit  Bits are set by HW when page is referenced, modified  Reference bit is periodically unset (at clock ticks)  Pages are classified  Class 0: not referenced, not modified  Class 1: not referenced, modified  Class 2: referenced, not modified  Class 3: referenced, modified  NRU removes page at random  From lowest numbered non empty class  NRU is simple and gives decent performance

8 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) 2. FIFO Page Replacement  Maintain a linked list of all pages  In the order they came into memory  Page at beginning of list replaced  Disadvantage  Page in memory the longest may be used often

9 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) 3. Second Chance FIFO  Operation of a second chance  Pages sorted in FIFO order  Inspect the R bit, give the page a second chance if R=1  Put the page at the end of the list (like a new page)  Eventually the page might be selected anyway (how?) Example: Page fault @ 20, A has R bit set  2 nd Chance moves pages around in the list …

10 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) The Clock Page Replacement Algorithm How does this compare with second chance? Hand points to oldest page

11 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) 4. Least Recently Used (LRU)  Locality: pages used recently will be used soon  Throw out the page that has been unused longest  Must keep a linked list of pages  Most recently used at front, least at rear  Update this list every memory reference !!  Alternative: counter (64 bit) in the page table entry  Increment counter on every instruction  Update in page table only on memory reference  Choose page with lowest value counter

12 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Least Recently Used LRU using a matrix – pages referenced in order 0,1,2,3,2,1,0,3,2,3 1.Set row k to 1 2.Set column k to 0

13 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Simulating LRU in Software: NFU  Both solutions (counter, matrix) require extra hardware  And they don’t scale very well with large page tables …  Approximations of LRU can be done in SW NFU (Not Frequently Used)  A counter is associated with each page  At each clock interrupt add R to the counter  Problems?

14 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) 5. NFU  NFU tends to have a long memory!  Pages frequently used in some phase may still be hot in later phases, even though they are not used!  Solution: instead of adding R, shift R from the left (R=1, c=010  c’=101)  This algorithm is called aging

15 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Aging  The aging algorithm simulates LRU in software  Note 6 pages for 5 clock ticks, (a) – (e)

16 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Aging  This algorithm works fine, but consider  Granularity Page accesses between ticks?  Memory How long is the memory?  Tanenbaum: 8 bits @ 20ms ticks works ok

17 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2)  The working set is the set of pages used by the k most recent memory references  w(k,t) is the size of the working set at time t  Note: after initial fast increase we see asymptotic behavior (many values of k give roughly the same working set size) k w(k,t) The Working Set Model

18 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Operation of the WSClock algorithm All pages form a ring (circular list) Each entry holds (time, R, M) R & M are updated by the HW Start where the hand points if R==1 Set R = 0 (& update virt. time) Move to next page if R==0 if age > τ && M==0: reclaim if age > τ && M==1: schedule write When you get back to the start, either: Some writes are scheduled Search until one write finished No writes are scheduled Take first clean page Take the page you’re at The WSClock Page Replacement Algorithm

19 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Review of Page Replacement Algorithms

20 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Implementation Issues Operating System Involvement with Paging Four times when OS involved with paging 1. Process creation  Determine program size  Create page table  Create swap space? 2. Process execution  MMU reset for new process  TLB (Translation Lookaside Buffer) flushed 3. Page fault time  Determine virtual address causing fault  Swap target page out, needed page in 4. Process termination time  Release page table, pages

21 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Locking Pages in Memory  Virtual memory and I/O occasionally interact  Process issues call for read from device into buffer  While waiting for I/O, another process starts up  Has a page fault  Buffer for the first process may be chosen to be paged out  Need to specify some pages locked  Exempted from being target pages

22 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2)  One-dimensional address space with growing tables  One table may bump into another Segmentation (1)

23 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Allows each table to grow or shrink, independently Segmentation (2)

24 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) Segmentation (3) Comparison of paging and segmentation

25 © DEEDS – OS Course WS11/12 Lecture 5 – Memory Management (2) (a)-(d) Development of checkerboarding (e) Removal of the checkerboarding by compaction Implementation of Pure Segmentation


Download ppt "Memory Management Page replacement algorithms, segmentation Tanenbaum, ch. 3 p. 201 - 247 Silberschatz, ch. 8, 9 p. 302 - 340."

Similar presentations


Ads by Google