COS 318: Operating Systems Virtual Memory Paging: Andy Bavier Computer Science Department Princeton University
COS 318: Operating Systems Virtual Memory Paging: Andy Bavier Computer Science Department Princeton University
Todays Topics
Paging mechanism !! Page replacement algorithms
!!
Simple world
"!
Load entire process into memory. Run it. Exit. Slow (especially with big processes) Wasteful of space (doesnt use all of its memory all the time) Demand paging: only bring in pages actually used Paging: only keep frequently used pages in memory Virtual memory maps some to physical pages, some to disk
!!
Problems
"! "!
!!
Solution
"! "!
!!
Mechanism:
"!
VM Paging Steps
. . . subl $20 %esp movl 8(%esp), %eax . . .
VM system
fault
v v v i v vp# vp# vp# vp# pp# pp# dp# pp# pp#
Steps
!! !! !! !! !! !!
Memory reference (may cause a TLB miss) TLB entry invalid triggers a page fault and VM handler takes over Move page from disk to memory Update TLB entry w/ pp#, valid bit Restart the instruction Memory reference again
. . .
v vp# pp#
TLB
Need to save state and resume Is it the same as an interrupt? Just the faulting page or more? Want to know the future Cache always too small, which page to replace? Want to know the future...
!!
!!
What to replace?
"! "!
User program should not be aware of the page fault !! Fault may have happened in the middle of the instruction! !! Can we skip the faulting instruction? !! Is a faulting instruction always restartable?
!!
6
Simplest, but each page in has substantial overhead May reduce page faults if the additional pages are used Waste space and time if they are not used Real systems do some kind of prefetching Some systems support for user-controlled prefetching But, many applications do not always know
!!
!!
VM Page Replacement
!!
It is possible that no unused page frame is available VM needs to do page replacement If there is an unused frame, get it If no unused page frame available,
!!
On a page fault
"! "!
! Find a used page frame ! If it has been modified, write it to disk ! Invalidate its current PTE and TLB entry
"! "! "!
Page Replacement
Load the new page from disk Update the faulting PTE and remove its TLB entry Restart the faulting instruction A list of unused page frames A table to map page frames to PID and virtual pages, why?
8
!!
Optimal or MIN
!! Algorithm:
"!
Replace the page that wont be used for the longest time (Know all references in the future) Reference string: 4 page frames 6 faults
!! Example
"! "! "!
!!
1 2 3 4 1 2 5 1 2 3 4 5
Pros
"!
Optimal solution and can be used as an off-line analysis method No on-line implementation
10
!!
Cons
"!
... ...
Miss
Page Table
TLB Hit
PPage #
!!
offset
Reference: Set when referencing a location in the page Modify: Set when writing to a location in the page
11
Algorithm
"!
"!
Randomly pick a page from the following (in this order) ! Not referenced and not modified ! Not referenced and modified ! Referenced and not modified ! Referenced and modified Clear reference bits 4 page frames Reference string 8 page faults Implementable Require scanning through reference bits and modified bits
!!
Example
"! "! "!
1 2 3 4 1 2 5 1 2 3 4 5
!! !!
Pros
"!
Cons
"!
12
First-In-First-Out (FIFO)
Page out
!! !!
5 3 4 7 9 11 2 1 15
Recently loaded
Algorithm
"!
Throw out the oldest page 4 page frames Reference string 10 page faults
Example
"! "! "!
1 2 3 4 1 2 5 1 2 3 4 5
!! !!
Pros
"!
Cons
"!
!!
!!
Page out
!!
5 3 4 7 9 11 2 1 15
Recently loaded
Algorithm
"! "! "!
Check the reference-bit of the oldest page If it is 0, then replace it If it is 1, clear the referent-bit, put it to the end of the list, and continue searching 4 page frames Reference string: 8 page faults Simple to implement The worst case may take a long time
15
!!
Example
"! "! "!
1 2 3 4 1 2 5 1 2 3 4 5
!! !!
Pros
"! "!
Cons
Clock
!!
Hand points to the oldest page On a page fault, follow the hand to inspect pages If the reference bit is 1, set it to 0 and advance the hand If the reference bit is 0, use it for replacement
!!
Second chance
"! "!
Oldest page
!!
!!
5 3 4 7 9 11 2 1 15
Recently loaded
Algorithm
"!
Replace page that hasnt been used for the longest time
!!
! Order the pages by time of reference ! Timestamp for each referenced page Example
"! "! "!
1 2 3 4 1 2 5 1 2 3 4 5
!!
Pros
"!
!!
Cons
"!
Approximation of LRU
!!
For each memory reference, store the ticks in its PTE Find the page with minimal ticks value to replace
!!
2 categories Pages referenced since the last page fault Pages not referenced since the last page fault
254 255
8-bit count
256 categories
18
Algorithm
"! "!
Shift reference bits into counters Pick the page with the smallest counter to replace
Old example
"! "! "!
1 2 3 4 1 2 5 1 2 3 4 5
!!
NFU has a short history (counter length) In practice 8 bits are quite good
19
!!
80/20 rule
"! "!
!!
Spatial locality
"!
Neighbors are likely to be accessed The same page is likely to be accessed again in the near future
# Pages in memory
!!
Temporal locality
"!
# Page faults
> 80% memory references are within <20% of memory space > 80% memory references are made by < 20% of code
20
Working Set
!!
Define a working set as the set of pages in the most recent K page references Keep the working set in memory will reduce page faults significantly The set of pages of a process used in the last T seconds On a page fault, scan through all pages of the process If the reference bit is 1, record the current time for the page If the reference bit is 0, check the time of last use,
! If the page has not been used within T, replace the page ! Otherwise, go to the next
!! !!
An algorithm
"! "! "!
"!
WSClock
!! Follow
!! If
"! "!
"!
22
Replacement Algorithms
!!
The algorithms
"! "! "! "! "! "! "! "! "! "!
Optimal or MIN algorithm NRU (Not Recently Used) FIFO (First-In-First-Out) FIFO with second chance Clock LRU (Least Recently Used) NFU (Not Frequently Used) Aging (approximate LRU) Working Set WSClock
!!
23
Summary
!!
VM paging
"! "! "!
LRU is good but difficult to implement !! Clock (FIFO with 2nd hand) is considered a good practical solution !! Working set concept is important
!!
24