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?

Operating System Concepts

CS307: Operating Systems

First-In-First-Out (FIFO) Algorithm

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

OPERATING SYSTEM. Chapter 9: Virtual Memory

Module 9: Virtual Memory

Chapter 9: Virtual-Memory

Virtual Memory Outline

Module 9: Virtual Memory

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

Chapter 10: Virtual Memory

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

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

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

Operating System Concepts 9 th Edition

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

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

CS370 Operating Systems

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

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

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

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

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

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

Chapter 9: Virtual Memory

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

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

Memory Management and Protection

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

Principles of Operating Systems

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

CS 3733 Operating Systems:

Virtual Memory COMPSCI 386

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

Chapters 9 & 10: Memory Management and Virtual Memory

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

CS6401- Operating System UNIT-III STORAGE MANAGEMENT

Memory Management Virtual Memory

Chapter 6: Demand Paging

Basic Page Replacement

Page Replacement Algorithms

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

Page Replacement Chap 21, 22. Dongkun Shin, SKKU

VII. Memory Management

CS370 Operating Systems

CS420: Operating Systems

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

Virtual Memory B: Objec5ves

Basic Memory Management

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

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

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

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

Page Replacement Chap 21, 22. Dongkun Shin, SKKU

1. Background. 2. Demand Paging

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

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

Virtual Memory Management

Chapter 9: Virtual Memory

MEMORY MANAGEMENT/1 CS 409, FALL 2013

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

CS370 Operating Systems

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

Memory management, part 2: outline

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

UNIT - IV. What is virtual memory?

PAGE REPLACEMENT. Operating Systems 2015 Spring by Euiseong Seo

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

Practice Exercises 449

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

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

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

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

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

Chapter 8 Virtual Memory

Chapter 8 Virtual Memory

Chapter 4 Memory Management

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

Operating Systems Lecture 6: Memory Management II

Virtual Memory III. Jo, Heeseung

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

CS370 Operating Systems

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

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

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

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

Operating System - Virtual Memory

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

CSE 120. Translation Lookaside Buffer (TLB) Implemented in Hardware. July 18, Day 5 Memory. Instructor: Neil Rhodes. Software TLB Management

Chapter 8 & Chapter 9 Main Memory & Virtual Memory

Transcription:

Chapter 9: Virtual Memory

Chapter 9: Virtual Memory 9.1 Background 9.2 Demand Paging 9.3 Copy-on-Write 9.4 Page Replacement 9.5 Allocation of Frames 9.6 Thrashing 9.7 Memory-Mapped Files 9.8 Allocating Kernel Memory 9.9 Other Considerations 9.10 Operating System Examples 9.2

9.1 Background Virtual memory separation of user logical memory from physical 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 Virtual memory can be implemented via: Demand paging Demand segmentation Figure 9.1 virtual memory that is larger than physical memory 9.3

Virtual-address address Space Virtual address space of a process: the logical/virtual view of how a process is stored in memory all processes begin at a certain logical address say, address 0 and exist in contiguous memory Figure 9.2 Virtual address space 9.4

Shared Library Using Virtual Memory Figure 9.3 Shared library using virtual memory several processes share system libraries through mapping the shared object into a virtual address space of each process typically mapped read-only 9.5

9.2 Demand Paging Bring a page into memory by a pager only when it is needed Less I/O needed Less memory needed Faster response More users Swapping vs. paging usually a swapper manipulates entire processes, whereas a pager manipulates individual pages of a process Hardware support: valid-invalid bit to distinguish the pages that are in memory and the pages that are on the disk invalid: either on the disk or non-existed nothing happened if not accessed at all Page is needed reference to it invalid reference abort not-in-memory bring to memory 9.6

Transfer of a Paged Memory to Contiguous Disk Space Figure 9.4 Processes reside in secondary memory. When we want to execute a process, we swap it into memory. 9.7

Valid-Invalid Bit With each page table entry a valid invalid bit is associated (1 in-memory, 0 not-in-memory) Initially valid invalid but is set to 0 on all entries During address translation, if valid invalid bit in page table entry is 0 page fault Frame # valid-invalid bit 1 1 1 1 0 M page table 0 0 Figure 9.5 Page table when some pages are not in main memory 9.8

Page Fault If there is ever a reference to a page that was not brought into memory, first reference will trap to OS page fault 1.OS looks at another table to decide: Invalid reference abort Just not in memory 2.Terminate it if invalid, or page it in 3.Get empty frame 4.Swap page into frame 5.Reset tables, validation bit = 1 6.Restart instruction 9.9 Figure 9.6 Steps in handling a page fault

What happens if there is no free frame? Page replacement find some page in memory, but not really in use, swap it out algorithm (Section 9.4) performance want an algorithm which will result in minimum number of page faults Same page may be brought into memory several times 9.10

Performance of Demand Paging Page Fault Rate 0 p 1.0 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 x page fault time = (1 p) x memory access + p (page fault overhead + [swap page out ] + swap page in + restart overhead) Example Memory access time = 1 microsecond 50% of the time the page that is being replaced has been modified and therefore needs to be swapped out Swap Page Time = 10 msec = 10,000 msec EAT = (1 p) x 1 + p (15000) 1 + 15000P (in msec) 9.11

9.3 Copy-on on-write Virtual memory allows other benefits during process creation: - Copy-on-Write - Memory-Mapped Files (Section 9.7) Copy-on-Write (COW) allows both parent and child processes to initially share the same pages in memory If either process modifies a shared page, only then is the page copied COW allows more efficient process creation as only modified pages are copied Free pages are allocated from a pool of zeroed-out pages 9.12

9.4 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 9.13

Need For Page Replacement Figure 9.9 Need for page replacement 9.14

Basic Page Replacement 1.Find the location of the desired page on disk 2.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 3.Read the desired page into the (newly) free frame. Update page and frame tables 4.Restart the process 9.15

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 9.4.2 FIFO page replacement 9.4.3 Optimal page replacement 9.4.4 LRU page replacement 9.4.5 LRU-approximation page replacement additional-reference bits, second-chance, enhanced secondchance 9.4.6 Counting-based page replacement least frequently used (LFU), most frequently used (MFU) In all our examples, the reference string is 7, 0, 1, 2, 0, 3, 0, 4, 2, 3, 0, 3, 2, 1, 2, 0, 1, 7, 0, 1 1, 2, 3, 4, 1, 2, 5, 1, 2, 3, 4, 5 9.16

Graph of Page Faults Versus The Number of Frames 9.17

First-In In-First-Out (FIFO) Algorithm Reference string: 1, 2, 3, 4, 1, 2, 5, 1, 2, 3, 4, 5 3 frames (3 pages can be in memory at a time per process) 1 2 3 1 2 3 4 1 2 5 3 4 9 page faults 4 frames 1 1 5 4 FIFO Replacement Belady s Anomaly 2 2 1 5 10 page faults more frames more page faults 3 3 2 4 4 3 9.18

FIFO Illustrating Belady s s Anomaly 9.19

Optimal Algorithm Replace page that will not be used for longest period of time 4 frames example 1, 2, 3, 4, 1, 2, 5, 1, 2, 3, 4, 5 1 How do you know this? 2 Used for measuring how well your algorithm performs 3 4 6 page faults 4 5 9.20

Least Recently Used (LRU) Algorithm Reference string: 1, 2, 3, 4, 1, 2, 5, 1, 2, 3, 4, 5 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 1 5 2 3 5 4 3 4 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.21

Use Of A Stack to Record The Most Recent Page References 9.22

LRU Approximation Algorithms Reference bit With each page associate a bit, initially = 0 When page is referenced bit set to 1 Replace the one which is 0 (if one exists). We do not know the order, however. When to reset? Additional-Reference-Bits algorithm Recording reference bits at regular intervals 8-bit byte for each page, set the high-order bit if referenced A timer interrupt periodically triggers the kernel to shift 8-bit bytes right by 1 bit Second chance Need one reference bit, clock replacement If page to be replaced (in clock order) has reference bit = 1 then: set reference bit 0 leave page in memory replace next page (in clock order), subject to same rules Enhanced Second-chance algorithm 9.23

Second-Chance (clock) Page-Replacement Algorithm 9.24

Counting Algorithms Keep a counter of the number of references that have been made to each page 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.25

9.5 Allocation of Frames Each process needs minimum number of pages We must have enough frames to hold all the different pages that any single instruction can reference Example: IBM 370 6 pages to handle SS MOVE instruction: instruction is 6 bytes, might span 2 pages 2 pages to handle from 2 pages to handle to Two major allocation schemes fixed allocation priority allocation 9.26

Fixed Allocation Equal allocation For example, if there are 100 frames and 5 processes, give each process 20 frames. Proportional allocation Allocate according to the size of process s = size of process p S = s m a i i = i total number = allocation for m s s a a i 2 1 2 = 64 = 10 = 127 of p i i frames si = m S 10 = 64 5 137 127 = 64 59 137 9.27

Priority Allocation Use a proportional allocation scheme using priorities rather than size If process P i generates a page fault, select for replacement one of its frames select for replacement a frame from a process with lower priority number 9.28

Global vs. Local Allocation Global replacement process selects a replacement frame from the set of all frames; one process can take a frame from another Local replacement each process selects from only its own set of allocated frames 9.29

9.6 Thrashing If a process does not have enough pages, the page-fault rate is very high. This leads to: 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.30

Demand Paging and Thrashing 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.31

Locality In A Memory-Reference Pattern 9.32

Working-Set Model Δ working-set window a fixed number of page references Example: 10,000 instruction WSS i (working set of Process P i ) = 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 = Σ WSS i total demand frames if D > m Thrashing Policy if D > m, then suspend one of the processes 9.33

Keeping Track of the Working Set Approximate with interval timer + a reference bit Example: Δ = 10,000 Timer interrupts after every 5000 time units Keep in memory 2 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 = 1 page in working set Why is this not completely accurate? Improvement = 10 bits and interrupt every 1000 time units 9.34

Page-Fault Frequency Scheme Establish acceptable page-fault rate If actual rate too low, process loses frame If actual rate too high, process gains frame 9.35

9.7 Memory-Mapped 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.36

Memory Mapped Files 9.37

9.8 Allocating Kernel Memory Treated differently from user memory Often allocated from a free-memory pool Kernel requests memory for structures of varying sizes Some kernel memory needs to be contiguous 9.38

Buddy System Allocates memory from fixed-size segment consisting of physicallycontiguous pages Memory allocated using power-of-2 allocator Satisfies requests in units sized as power of 2 Request rounded up to next highest power of 2 When smaller allocation needed than is available, current chunk split into two buddies of next-lower power of 2 Continue until appropriate sized chunk available 9.39

Buddy System Allocator 9.40

Slab Allocator 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.41

Slab Allocation 9.42

9.9 Other Considerations Prepaging Page size TLB reach Inverted page tables Program Structure I/O Interlock 9.43

Other Issues -- Prepaging 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 * (1- α) unnecessary pages? α near zero prepaging loses 9.44

Other Issues Page Size Page size selection must take into consideration: fragmentation table size I/O overhead locality 9.45

Other Issues TLB Reach TLB Reach - The amount of memory accessible from the TLB TLB Reach = (TLB Size) X (Page Size) Ideally, the working set of each process is stored in the TLB. 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 Provide Multiple Page Sizes. This allows applications that require larger page sizes the opportunity to use them without an increase in fragmentation. 9.46

Other Issues Program Structure Program structure Int[128,128] data; Each row is stored in one page Program 1 for (j = 0; j <128; j++) for (i = 0; i < 128; i++) data[i,j] = 0; 128 x 128 = 16,384 page faults Program 2 for (i = 0; i < 128; i++) for (j = 0; j < 128; j++) data[i,j] = 0; 128 page faults 9.47

Other Issues I/O interlock 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.48

Reason Why Frames Used For I/O Must Be In Memory 9.49

9.10 Operating System Examples Windows XP Solaris 9.50

Windows XP Uses demand paging with clustering. Clustering brings in pages surrounding the faulting page. Processes are assigned working set minimum and working set maximum 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.51

Solaris Solaris 2 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.52