Chapter 9: Virtual Memory

Similar documents
Chapter 9: Virtual Memory

Chapter 9: Virtual Memory. Chapter 9: Virtual Memory. Objectives. Background. Virtual-address address Space

Chapter 9: Virtual Memory

Chapter 3: Virtual Memory ว ตถ ประสงค. Background สามารถอธ บายข อด ในการท ระบบใช ว ธ การจ ดการหน วยความจ าแบบเสม อนได

Chapter 10: Virtual Memory. Background

Chapter 10: Virtual Memory. Background. Demand Paging. Valid-Invalid Bit. Virtual Memory That is Larger Than Physical Memory

Chapter 8: Virtual Memory. Operating System Concepts

Chapter 9: Virtual Memory

Where are we in the course?

CS307: Operating Systems

Operating System Concepts

OPERATING SYSTEM. Chapter 9: Virtual Memory

Virtual Memory Outline

First-In-First-Out (FIFO) Algorithm

Chapter 9: Virtual-Memory Management. Operating System Concepts 8 th Edition,

Chapter 9: Virtual Memory. Operating System Concepts 9th Edition

Chapter 9: Virtual Memory. Operating System Concepts 9 th Edition

Chapter 9: Virtual-Memory

Chapter 10: Virtual Memory

Module 9: Virtual Memory

Module 9: Virtual Memory

Operating System Concepts 9 th Edition

Background. Virtual Memory (2/2) Demand Paging Example. First-In-First-Out (FIFO) Algorithm. Page Replacement Algorithms. Performance of Demand Paging

Demand Paging. Valid-Invalid Bit. Steps in Handling a Page Fault. Page Fault. Transfer of a Paged Memory to Contiguous Disk Space

Background. Demand Paging. valid-invalid bit. Tevfik Koşar. CSC Operating Systems Spring 2007

Optimal Algorithm. Replace page that will not be used for longest period of time Used for measuring how well your algorithm performs

CS370 Operating Systems

Chapter 9: Virtual Memory

Lecture 17. Edited from slides for Operating System Concepts by Silberschatz, Galvin, Gagne

Virtual Memory. CSCI 315 Operating Systems Design Department of Computer Science

Memory Management. Virtual Memory. By : Kaushik Vaghani. Prepared By : Kaushik Vaghani

Virtual Memory. Overview: Virtual Memory. Virtual address space of a process. Virtual Memory. Demand Paging

Virtual Memory. Virtual Memory. Demand Paging. valid-invalid bit. Virtual Memory Larger than Physical Memory

Page Replacement. 3/9/07 CSE 30341: Operating Systems Principles

Chapter 9: Virtual Memory. Operating System Concepts 9 th Edition

instruction is 6 bytes, might span 2 pages 2 pages to handle from 2 pages to handle to Two major allocation schemes

Chapter 8: Main Memory. Operating System Concepts 8th Edition

Virtual Memory COMPSCI 386

CS 3733 Operating Systems:

Virtual Memory. CSCI 315 Operating Systems Design Department of Computer Science

Chapter 8: Virtual Memory. Operating System Concepts Essentials 2 nd Edition

Topics: Virtual Memory (SGG, Chapter 09) CS 3733 Operating Systems

Memory Management and Protection

Virtual Memory. Overview: Virtual Memory. Virtual address space of a process. Virtual Memory

Principles of Operating Systems

Virtual Memory. Reading: Silberschatz chapter 10 Reading: Stallings. chapter 8 EEL 358

Memory Management Virtual Memory

Basic Page Replacement

CS6401- Operating System UNIT-III STORAGE MANAGEMENT

Chapters 9 & 10: Memory Management and Virtual Memory

CS420: Operating Systems

Chapter 6: Demand Paging

CS370 Operating Systems

Page Replacement Chap 21, 22. Dongkun Shin, SKKU

Page Replacement Algorithms

VII. Memory Management

ADRIAN PERRIG & TORSTEN HOEFLER Networks and Operating Systems ( ) Chapter 6: Demand Paging

Chapter 8: Main Memory Chapter 9: Virtual Memory. Operating System Concepts 9th Edition

1. Background. 2. Demand Paging

Roadmap. Tevfik Ko!ar. CSC Operating Systems Spring Lecture - XIV Virtual Memory - I. Louisiana State University.

Virtual Memory B: Objec5ves

CSC Operating Systems Spring Lecture - XIV Virtual Memory - II. Tevfik Ko!ar. Louisiana State University. March 27 th, 2008.

Operating Systems. Overview Virtual memory part 2. Page replacement algorithms. Lecture 7 Memory management 3: Virtual memory

Page Replacement Chap 21, 22. Dongkun Shin, SKKU

Virtual Memory - Overview. Programmers View. Virtual Physical. Virtual Physical. Program has its own virtual memory space.

Swapping. Operating Systems I. Swapping. Motivation. Paging Implementation. Demand Paging. Active processes use more physical memory than system has

UNIT - IV. What is virtual memory?

Basic Memory Management

Operating Systems. No. 9 ศร ณย อ นทโกส ม Sarun Intakosum

Virtual Memory Management

CS370 Operating Systems

Basic Memory Management. Basic Memory Management. Address Binding. Running a user program. Operating Systems 10/14/2018 CSC 256/456 1

ECE 7650 Scalable and Secure Internet Services and Architecture ---- A Systems Perspective. Part I: Operating system overview: Memory Management

Virtual Memory: Page Replacement. CSSE 332 Operating Systems Rose-Hulman Institute of Technology

Memory Management. To improve CPU utilization in a multiprogramming environment we need multiple programs in main memory at the same time.

CS370 Operating Systems

Memory management, part 2: outline. Operating Systems, 2017, Danny Hendler and Amnon Meisels

Chapter 9: Virtual-Memory Management Dr. Varin Chouvatut. Operating System Concepts 8 th Edition,

Practice Exercises 449

MEMORY MANAGEMENT/1 CS 409, FALL 2013

Memory management, part 2: outline

현재이이미지를표시할수없습니다. Chapter 9: Virtual Memory

!! What is virtual memory and when is it useful? !! What is demand paging? !! When should pages in memory be replaced?

Addresses in the source program are generally symbolic. A compiler will typically bind these symbolic addresses to re-locatable addresses.

Chapter 9: Virtual Memory

PAGE REPLACEMENT. Operating Systems 2015 Spring by Euiseong Seo

Memory Management. Disclaimer: some slides are adopted from book authors slides with permission 1

Memory Management. Disclaimer: some slides are adopted from book authors slides with permission 1

Operating System - Virtual Memory

Chapter 4 Memory Management

Memory Management Outline. Operating Systems. Motivation. Paging Implementation. Accessing Invalid Pages. Performance of Demand Paging

VIRTUAL MEMORY READING: CHAPTER 9

Memory Management. Disclaimer: some slides are adopted from book authors slides with permission 1

Chapter 8 Virtual Memory

CSE325 Principles of Operating Systems. Virtual Memory. David P. Duggan. March 7, 2013

Chapter 8 Virtual Memory

Virtual Memory - I. Roadmap. Tevfik Koşar. CSE 421/521 - Operating Systems Fall Lecture - XV. University at Buffalo.

Virtual Memory - II. Roadmap. Tevfik Koşar. CSE 421/521 - Operating Systems Fall Lecture - XVI. University at Buffalo.

Virtual Memory - I. Roadmap. Background. Demand Paging. valid-invalid bit. Tevfik Koşar. CSE 421/521 - Operating Systems Fall 2012

Memory management. Requirements. Relocation: program loading. Terms. Relocation. Protection. Sharing. Logical organization. Physical organization

Transcription:

Chapter 9: Virtual Memory Background Demand Paging Chapter 9: Virtual Memory Copy-on-Write Page Replacement Allocation of Frames Thrashing Memory-Mapped Files Allocating Kernel Memory Other Considerations Operating-System Examples, 9. Objectives Background To describe the benefits of a virtual memory system Virtual memory separation of user logical memory from physical memory. To explain the concepts of demand paging, page-replacement algorithms, and allocation of page frames To discuss the principle of the working-set model 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: 9. Virtual Memory That is Larger Than Physical Memory Demand paging Demand segmentation 9. Virtual-address Space 9. 9.6

Shared Library Using Virtual Memory Demand Paging 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 not-in-memory bring to memory Lazy swapper never swaps a page into memory unless page will be needed 9.7 Swapper that deals with pages is a pager 9.8 Valid-Invalid Bit Transfer of a Paged Memory to Contiguous Disk Space 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: Frame # valid-invalid bit v v v v i. i i page table During address translation, if valid invalid bit in page table entry is I page fault 9.9 9.0 Page Fault Page Table When Some Pages Are Not in Main Memory If there is a reference to a page, first reference to that page will trap to operating system: 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 6. Restart the instruction that caused the page fault 9. 9.

Page Fault (Cont.) Steps in Handling a Page Fault Restart instruction block move auto increment/decrement location 9. Performance of Demand Paging Page Fault Rate 0 p.0 9. Demand Paging Example Memory access time = 00 nanoseconds if p = 0 no page faults if p =, every reference is a fault Average page-fault service time = 8 milliseconds Effective Access Time (EAT) EAT = ( p) x 00 + p (8 milliseconds) EAT = ( p) x memory access = ( p x 00 + p x 8,000,000 + p (page fault overhead = 00 + p x 7,999,800 + swap page out + swap page in If one access out of,000 causes a page fault, then + restart overhead EAT = 8. microseconds. ) This is a slowdown by a factor of 0!! 9. Process Creation 9.6 Copy-on-Write Virtual memory allows other benefits during process creation: Copy-on-Write (COW) allows both parent and child processes to initially share the same pages in memory - Copy-on-Write If either process modifies a shared page, only then is the page copied - Memory-Mapped Files (later) COW allows more efficient process creation as only modified pages are copied Free pages are allocated from a pool of zeroed-out pages 9.7 9.8

Before Process Modifies Page C 9.9 After Process Modifies Page C Prevent over-allocation of memory by modifying page-fault service routine to include page replacement really in use, swap it out algorithm performance want an algorithm which will result in minimum number of page faults Page Replacement What happens if there is no free frame? Page replacement find some page in memory, but not 9.0 Use modify (dirty) bit to reduce overhead of page transfers only modified Same page may be brought into memory several times 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 9. Need For Page Replacement 9. 9. 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 9.

Page Replacement Page Replacement Algorithms Want lowest page-fault rate Evaluate algorithm by running it on a particular string of memory references (reference string) and computing the number of page faults on that string In all our examples, the reference string is,,,,,,,,,,, 9. First-In-First-Out (FIFO) Algorithm Graph of Page Faults Versus The Number of Frames Reference string:,,,,,,,,,,, frames ( pages can be in memory at a time per process) 9.7 FIFO Page Replacement 9.9 9.6 9 page faults frames 0 page faults Beladyʼs Anomaly: more frames more page faults 9.8 FIFO Illustrating Belady s Anomaly 9.0

Optimal Algorithm Optimal Page Replacement Replace page that will not be used for longest period of time frames example,,,,,,,,,,, 6 page faults How do you know this? Used for measuring how well your algorithm performs 9. Least Recently Used (LRU) Algorithm 9. LRU Page Replacement Reference string:,,,,,,,,,,, Counter implementation Every page entry has a counter; every time page is referenced through this entry, copy the clock into the counter When a page needs to be changed, look at the counters to determine which are to change 9. LRU Algorithm (Cont.) 9. Use Of A Stack to Record The Most Recent Page References Stack implementation keep a stack of page numbers in a double link form: Page referenced: move it to the top requires 6 pointers to be changed No search for replacement 9. 9.6 6

LRU Approximation Algorithms Second-Chance (clock) Page-Replacement Algorithm Reference bit With each page associate a bit, initially = 0 When page is referenced bit set to Replace the one which is 0 (if one exists) We do not know the order, however Second chance Need reference bit Clock replacement If page to be replaced (in clock order) has reference bit = then: set reference bit 0 leave page in memory replace next page (in clock order), subject to same rules 9.7 9.8 Counting Algorithms Allocation of Frames Keep a counter of the number of references that have been made to each page Each process needs minimum number of pages Example: IBM 70 6 pages to handle SS MOVE instruction: LFU Algorithm: replaces page with smallest count MFU Algorithm: based on the argument that the page with the smallest count was probably just brought in and has yet to be used 9.9 instruction is 6 bytes, might span pages pages to handle from pages to handle to Two major allocation schemes fixed allocation priority allocation Fixed Allocation 9.0 Priority Allocation Equal allocation For example, if there are 00 frames and processes, give each process 0 frames. Use a proportional allocation scheme using priorities rather than size Proportional allocation Allocate according to the size of process If process Pi generates a page fault, 9. select for replacement one of its frames select for replacement a frame from a process with lower priority number 9. 7

Global vs. Local Allocation Global replacement process selects a replacement Thrashing If a process does not have enough pages, the page-fault rate is frame from the set of all frames; one process can take a frame from another very high. This leads to: Local replacement each process selects from only its own set of allocated frames 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 9. Thrashing (Cont.) 9. Demand Paging and Thrashing 9. Why does demand paging work? Locality model Process migrates from one locality to another Localities may overlap Why does thrashing occur? Σ size of locality > total memory size 9.6 Working-Set Model Locality In A Memory-Reference Pattern Δ working-set window a fixed number of page references Example: 0,000 instruction WSSi (working set of Process Pi) = total number of pages referenced in the most recent Δ (varies in time) if Δ too small will not encompass entire locality if Δ too large will encompass several localities if Δ = will encompass entire program D = Σ WSSi total demand frames if D > m Thrashing Policy if D > m, then suspend one of the processes 9.7 9.8 8

Working-set model Keeping Track of the Working Set Approximate with interval timer + a reference bit Example: Δ = 0,000 Timer interrupts after every 000 time units Keep in memory bits for each page Whenever a timer interrupts copy and sets the values of all reference bits to 0 If one of the bits in memory = page in working set Why is this not completely accurate? Improvement = 0 bits and interrupt every 000 time units 9.9 Page-Fault Frequency Scheme 9.0 Working Sets and Page Fault Rates Establish acceptable page-fault rate If actual rate too low, process loses frame If actual rate too high, process gains frame 9. Memory-Mapped Files 9. Memory Mapped Files Memory-mapped file I/O allows file I/O to be treated as routine memory access by mapping a disk block to a page in memory A file is initially read using demand paging. A page-sized portion of the file is read from the file system into a physical page. Subsequent reads/writes to/ from the file are treated as ordinary memory accesses. Simplifies file access by treating file I/O through memory rather than read() write() system calls Also allows several processes to map the same file allowing the pages in memory to be shared 9. 9. 9

Allocating Kernel Memory Memory-Mapped Shared Memory in Windows Treated differently from user memory Often allocated from a free-memory pool 9. Buddy System Kernel requests memory for structures of varying sizes Some kernel memory needs to be contiguous 9.6 Buddy System Allocator Allocates memory from fixed-size segment consisting of physically- contiguous pages Memory allocated using power-of- allocator Satisfies requests in units sized as power of Request rounded up to next highest power of When smaller allocation needed than is available, current chunk split into two buddies of next-lower power of Continue until appropriate sized chunk available 9.7 Slab Allocator 9.8 Slab Allocation Alternate strategy Slab is one or more physically contiguous pages Cache consists of one or more slabs Single cache for each unique kernel data structure Each cache filled with objects instantiations of the data structure When cache created, filled with objects marked as free When structures stored, objects marked as used If slab is full of used objects, next object allocated from empty slab If no empty slabs, new slab allocated Benefits include no fragmentation, fast memory request satisfaction 9.9 9.60 0

Other Issues -- Prepaging Page size selection must take into consideration: Prepaging To reduce the large number of page faults that occurs at process startup Prepage all or some of the pages a process will need, before they are referenced But if prepaged pages are unused, I/O and memory was wasted Assume s pages are prepaged and α of the pages is used Is cost of s * α save pages faults > or < than the cost of prepaging s * (- α) unnecessary pages? α near zero prepaging loses Other Issues Page Size 9.6 Other Issues TLB Reach TLB Reach - The amount of memory accessible from the TLB fragmentation table size I/O overhead locality 9.6 Other Issues Program Structure Program structure Int[8,8] data; TLB Reach = (TLB Size) X (Page Size) Ideally, the working set of each process is stored in the TLB Each row is stored in one page Program for (j = 0; j <8; j++) for (i = 0; i < 8; i++) data[i,j] = 0; Otherwise there is a high degree of page faults Increase the Page Size This may lead to an increase in fragmentation as not all applications require a large page size 8 x 8 = 6,8 page faults Provide Multiple Page Sizes This allows applications that require larger page sizes the opportunity to use them without an increase in fragmentation Program for (i = 0; i < 8; i++) for (j = 0; j < 8; j++) data[i,j] = 0; 8 page faults 9.6 Other Issues I/O interlock 9.6 Reason Why Frames Used For I/O Must Be In Memory I/O Interlock Pages must sometimes be locked into memory Consider I/O - Pages that are used for copying a file from a device must be locked from being selected for eviction by a page replacement algorithm 9.6 9.66

Operating System Examples Windows XP Uses demand paging with clustering. Clustering brings in pages Windows XP surrounding the faulting page Processes are assigned working set minimum and working set maximum Solaris Working set minimum is the minimum number of pages the process is guaranteed to have in memory A process may be assigned as many pages up to its working set maximum When the amount of free memory in the system falls below a threshold, automatic working set trimming is performed to restore the amount of free memory Working set trimming removes pages from processes that have pages in excess of their working set minimum 9.67 Solaris 9.68 Solaris Page Scanner Maintains a list of free pages to assign faulting processes Lotsfree threshold parameter (amount of free memory) to begin paging Desfree threshold parameter to increasing paging Minfree threshold parameter to being swapping Paging is performed by pageout process Pageout scans pages using modified clock algorithm Scanrate is the rate at which pages are scanned. This ranges from slowscan to fastscan Pageout is called more frequently depending upon the amount of free memory available 9.69 9.70 End of Chapter 9,