Cls7 VirtualMemory
Cls7 VirtualMemory
[email protected]
Virtual memory
●
Virtual memory – separation of user logical memory from
physical memory
●
Virtual memory is a technique that allows the execution of
processes that are not completely in memory.
●
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
●
More programs running concurrently
●
Less I/O needed to load or swap processes
2
Virtual memory (Cntd..)
●
Virtual address space – logical view of how process
is stored in memory
- Usually start at address 0, contiguous addresses until end of space
- Meanwhile, physical memory organized in page frames
- MMU must map logical to physical
- Demand paging
- Demand segmentation
3
Virtual memory (Cntd..)
4
Virtual memory (Cntd..)
5
Virtual memory (Cntd..)
●
Virtual address space – logical view of how process
is stored in memory
- Usually start at address 0, contiguous addresses until end of space
- Meanwhile, physical memory organized in page frames
- MMU must map logical to physical
- Demand paging
- Demand segmentation
6
Demand Paging
●
Could bring entire process into memory at load time
●
Or bring a page into memory only when it is needed
- Less I/O needed, no unnecessary I/O
- Less memory needed
- Faster response
- More users
●
Similar to paging system with swapping (diagram on right)
●
Page is needed reference to it
- invalid reference abort
- not-in-memory bring to memory
●
Lazy swapper – never swaps a page into memory unless page will be needed
●
A swapper manipulates entire processes, whereas a pager is concerned with the
individual pages of a process.
●
use “pager,” rather than “swapper,” in connection with demand paging
7
Demand Paging (Cntd..)
8
Demand Paging (Cntd..)
●
With swapping, pager guesses which pages will be used before swapping out
again
●
Instead, pager brings in only those pages into memory
●
How to determine that set of pages?
- Need new MMU functionality to implement demand paging
●
If pages needed are already memory resident
- No difference from non demand-paging
●
If page needed and not memory resident
Need to detect and load the page into memory from storage
- Without changing program behavior
- Without programmer needing to change code
9
Demand Paging (Cntd..)
●
With each page table entry a valid–invalid bit is associated
(v in-memory – memory resident, i not-in-memory)
●
Initially valid–invalid bit is set to i on all entries
●
Example of a page table snapshot:
●
During MMU address translation, if valid–invalid bit in page table entry is i
page fault
10
Demand Paging (Cntd..)
11
Page Fault
●
If there is a reference to a page, first reference to that page will trap to
operating system:
page fault
1. Operating system looks at the internal table to decide:
Invalid reference abort
Just not in memory
12
Page Fault (Cntd..)
13
Aspects of Demand Paging
●
Extreme case – start process with no pages in memory
- OS sets instruction pointer to first instruction of process, non-memory-
resident -> page fault
- And for every other process pages on first access
- Pure demand paging
●
Actually, a given instruction could access multiple pages -> multiple page
faults
- Consider fetch and decode of instruction which adds 2 numbers from
memory and stores result back to memory
- Pain decreased because of locality of reference
●
Hardware support needed for demand paging
- Page table with valid / invalid bit
- Secondary memory (swap device with swap space)
- Instruction restart
14
Performance of Demand Paging
●
Stages in Demand Paging (worse case)
1. Trap to the operating system
2. Save the user registers and process state
3. Determine that the interrupt was a page fault
4. Check that the page reference was legal and determine the location of the page on the disk
5. Issue a read from the disk to a free frame:
1. Wait in a queue for this device until the read request is serviced
2. Wait for the device seek and/or latency time
3. Begin the transfer of the page to a free frame
6. While waiting, allocate the CPU to some other user
7. Receive an interrupt from the disk I/O subsystem (I/O completed)
8. Save the registers and process state for the other user
9. Determine that the interrupt was from the disk
10. Correct the page table and other tables to show page is now in memory
11. Wait for the CPU to be allocated to this process again
12. Restore the user registers, process state, and new page table, and then resume the interrupted
instruction
15
Performance of Demand Paging (Cont.)
●
Three major activities
- Service the interrupt – careful coding means just several hundred
instructions needed
- Read the page – lots of time
- Restart the process – again just a small amount of time
●
Page Fault Rate 0 p 1
- if p = 0 no page faults
- if p = 1, every reference is a fault
●
Effective Access Time (EAT)
EAT = (1 – p) x memory access +
p (page fault overhead + swap page out + swap page in )
16
Demand Paging Example
●
Memory access time = 200 nanoseconds
●
Average page-fault service time = 8 milliseconds
●
EAT = (1 – p) x 200 + p (8 milliseconds)
= (1 – p x 200 + p x 8,000,000
= 200 + p x 7,999,800
17
Page Replacement
●
Prevent over-allocation of memory by modifying page-fault service routine
to include page replacement
●
Use modify (dirty) bit to reduce overhead of page transfers – only modified
pages are written to disk
●
Page replacement completes separation between logical memory and
physical memory – large virtual memory can be provided on a smaller
physical memory
18
Need For Page Replacement
19
Basic Page Replacement
1. Find the location of the desired page on disk
3. Bring the desired page into the (newly) free frame; update the page
and frame tables
4. Continue the process by restarting the instruction that caused the trap
Note now potentially 2 page transfers for page fault – increasing EAT
20
Page Replacement
21
Page and Frame Replacement Algorithms
●
Frame-allocation algorithm determines
- How many frames to give each process
●
Page-replacement algorithm
- Which frames to replace
- Want lowest page-fault rate on both first access and re-access
●
Evaluate algorithm by running it on a particular string of memory
references (reference string) and computing the number of page faults on
that string
- String is just page numbers, not full addresses
- Repeated access to the same page does not cause a page fault
- Results depend on number of frames available
22
First-In-First-Out (FIFO) Algorithm
●
A FIFO replacement algorithm associates with each page the time when
that page was brought into memory. When a page must be replaced, the
oldest page is chosen.
●
Reference string:
- 7,0,1,2,0,3,0,4,2,3,0,3,0,3,2,1,2,0,1,7,0,1
●
3 frames (3 pages can be in memory at a time per process)
23
FIFO Algorithm (Cntd..)
●
Can vary by reference string: consider 1,2,3,4,1,2,5,1,2,3,4,5
●
Adding more frames can cause more page faults!
- Belady’s Anomaly
24
Optimal Page Replacement Algorithm
●
Replace page that will not be used for longest period of time
●
It has the lowest page-fault rate of all algorithms and will never suffer from
Belady’s anomaly
●
Reference string:
- 7,0,1,2,0,3,0,4,2,3,0,3,0,3,2,1,2,0,1,7,0,1
●
3 frames (3 pages can be in memory at a time per process)
●
The optimal page-replacement algorithm is difficult to implement, because it
requires future knowledge of the reference string.
25
Optimal Page Replacement Algorithm
●
Reference string:
- 7,0,1,2,0,3,0,4,2,3,0,3,0,3,2,1,2,0,1,7,0,1
●
3 frames (3 pages can be in memory at a time per process)
26
Least Recently Used (LRU) Algorithm
●
Use past knowledge rather than future
●
Replace page that has not been used in the most amount of time
●
Associate time of last use with each page
●
Reference string:
- 7,0,1,2,0,3,0,4,2,3,0,3,0,3,2,1,2,0,1,7,0,1
●
3 frames (3 pages can be in memory at a time per process)
27
Least Recently Used (LRU) Algorithm
●
Reference string:
- 7,0,1,2,0,3,0,4,2,3,0,3,0,3,2,1,2,0,1,7,0,1
●
3 frames (3 pages can be in memory at a time per process)
28
Thrashing
●
If a process does not have “enough” pages, the page-fault rate is very
high
- Page fault to get page
- Replace existing frame
- But quickly need replaced frame back
- This leads to:
* Low CPU utilization
●
Thrashing a process is busy swapping pages in and out
●
A process is thrashing if it is spending more time paging than
executing.
29
●
Impliment any one of page replacment
algorithm.
●
Upload as pdf.
●
Pdf contain program and output.
●
5 cases of output should be there in pdf
●
Submission on 04/11/2024
30