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

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

Module 9: Virtual Memory

Module 9: Virtual Memory

Operating System Concepts

Virtual Memory Outline

Chapter 9: Virtual Memory

Chapter 9: Virtual-Memory

Principles of Operating Systems

Chapter 10: Virtual Memory. Background

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

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

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

Virtual Memory COMPSCI 386

Chapter 8: Virtual Memory. Operating System Concepts

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 9 th Edition

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

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

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

Where are we in the course?

CS370 Operating Systems

Chapter 9: Virtual Memory

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

OPERATING SYSTEM. Chapter 9: Virtual Memory

Page Replacement Algorithms

Chapter 9: Virtual Memory

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

CS370 Operating Systems

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

Virtual Memory Management

Chapter 9: Virtual Memory

Memory management, part 2: outline

1. Background. 2. Demand Paging

Chapter 6: Demand Paging

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

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

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

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

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

Chapter 9: Virtual Memory

Chapter 10: Virtual Memory

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

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

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

Today. Adding Memory Does adding memory always reduce the number of page faults? FIFO: Adding Memory with LRU. Last Class: Demand Paged Virtual Memory

CS307: Operating Systems

VIRTUAL MEMORY READING: CHAPTER 9

CS370 Operating Systems

Operating System Concepts 9 th Edition

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

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

Chapters 9 & 10: Memory Management and Virtual Memory

Chapter 9: Virtual Memory

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

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

CS6401- Operating System UNIT-III STORAGE MANAGEMENT

Last Class: Demand Paged Virtual Memory

PAGE REPLACEMENT. Operating Systems 2015 Spring by Euiseong Seo

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

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

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

ECE7995 Caching and Prefetching Techniques in Computer Systems. Lecture 8: Buffer Cache in Main Memory (I)

Practice Exercises 449

First-In-First-Out (FIFO) Algorithm

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

CS 5523 Operating Systems: Memory Management (SGG-8)

Operating Systems Virtual Memory. Lecture 11 Michael O Boyle

CS 162 Operating Systems and Systems Programming Professor: Anthony D. Joseph Spring Lecture 15: Caching: Demand Paged Virtual Memory

Memory Management Virtual Memory

CS450/550 Operating Systems

Chapter 8 & Chapter 9 Main Memory & Virtual Memory

CS 333 Introduction to Operating Systems. Class 14 Page Replacement. Jonathan Walpole Computer Science Portland State University

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

Basic Page Replacement

Operating Systems. Operating Systems Sina Meraji U of T

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

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

Operating Systems. Designed and Presented by Dr. Ayman Elshenawy Elsefy

UNIT - IV. What is virtual memory?

Memory Management Cache Base and Limit Registers base limit Binding of Instructions and Data to Memory Compile time absolute code Load time

CS420: Operating Systems

CS 333 Introduction to Operating Systems. Class 14 Page Replacement. Jonathan Walpole Computer Science Portland State University

Virtual Memory. ICS332 Operating Systems

Basic Memory Management

Chapter 8 Virtual Memory

Operating Systems Lecture 6: Memory Management II

CS370 Operating Systems

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

Outline. 1 Paging. 2 Eviction policies. 3 Thrashing 1 / 28

Page Replacement Chap 21, 22. Dongkun Shin, SKKU

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

Virtual or Logical. Logical Addr. MMU (Memory Mgt. Unit) Physical. Addr. 1. (50 ns access)

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

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

Page replacement algorithms OS

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

Virtual Memory. 1 Administrivia. Tom Kelliher, CS 240. May. 1, Announcements. Homework, toolboxes due Friday. Assignment.

Chapter 4 Memory Management

Modeling Page Replacement: Stack Algorithms. Design Issues for Paging Systems

Transcription:

Memory Management Outline Operating Systems Processes (done) Memory Management Basic (done) Paging (done) Virtual memory Virtual Memory (Chapter.) Motivation Logical address space larger than physical memory about GB in size Virtual Memory on special disk Abstraction for programmer Performance ok? Examples: Unused libraries Error handling not used Maximum arrays Page Page Page Page Logical Memory Paging Implementation v i v i Page Table Validation Bit Page Page Physical Memory What happens when access invalid page? Accessing Invalid Pages Page not in memory interrupt OS => page fault OS looks in table: invalid reference? => abort not in memory? => bring it in Get empty frame (from list) Write page from disk into frame Reset tables (set valid bit = ) Restart instruction Performance of Demand Paging Page Fault Rate (p) < p <. (no page faults to every ref is a fault) Page Fault Overhead = write page in + update + restart Dominated by time to write page in Effective Access Time = (-p) (memory access) + p (page fault overhead)

Performance Example Memory access time = nanoseconds Page fault overhead = 5 msec Page fault rate = / EAT = (-p) * + p * (5 msec) = (-p) * + p * 5,, = +,999,9 * p = +,999,9 * / = 5 microseconds! Want less than % degradation > +,999,9 * p >,999,9 * p p <. or fault in,5, accesses! No Free Frames Page fault => What if no free frames? terminate process (out of memory) swap out process (reduces degree of multiprog) replace another page with needed page Page replacement Page fault with page replacement: if free frame, use it else use algorithm to select victim frame write page to disk read in new page change page tables restart process Page Replacement Page Replacement Algorithms Page Page Page Page Logical Memory () () v iv () v i Page Table vi () i Page Table Page victim Page Physical Memory () () Every system has its own Want lowest page fault rate Evaluate by running it on a particular string of memory references (reference string) and computing number of page faults Example:,,,,,,5,,,,,5 First-In-First-Out (FIFO),,,,,,5,,,,,5 First-In-First-Out (FIFO),,,,,,5,,,,,5 Frames / Process Frames / Process 5 9 Page Faults How could we reduce the number of page faults?

Optimal vs. Optimal vs. Replace the page that will not be used for the longest period of time Replace the page that will not be used for the longest period of time Frames / Process,,,,,,5,,,,,5 Frames / Process,,,,,,5,,,,,5 6 Page Faults 5 How do we know this? Use as benchmark Least Recently Used Replace the page that has not been used for the longest period of time,,,,,,5,,,,,5 Least Recently Used Replace the page that has not been used for the longest period of time,,,,,,5,,,,,5 5 8 Page Faults 5 LRU Implementation Counter implementation every page has a counter; every time page is referenced, copy clock to counter when a page needs to be changed, compare the counters to determine which to change Stack implementation keep a stack of page numbers page referenced: move to top no search needed for replacement (Can we do this in software?) LRU Approximations LRU good, but hardware support expensive Some hardware support by reference bit with each page, initially = when page is referenced, set = replace the one which is (no order) Enhance by having 8 bits and shifting approximate LRU

Second-Chance Second-Chance FIFO replacement, but Get first in FIFO Look at reference bit + bit == then replace + bit == then set bit =, get next in FIFO If page referenced enough, never replaced Implement with circular queue Next Vicitm (a) (b) If all, degenerates to FIFO Enhanced Second-Chance -bits, reference bit and modify bit (,) neither recently used nor modified best page to replace (,) not recently used but modified needs write-out ( dirty page) (,) recently used but clean probably used again soon (,) recently used and modified used soon, needs write-out Circular queue in each class -- (Macintosh) Page Buffering Pool of frames start new process immediately, before writing old + write out when system idle list of modified pages + write out when system idle pool of free frames, remember content + page fault => check pool Thrashing Thrashing If a process does not have enough pages, the page-fault rate is very high low CPU utilization OS thinks it needs increased multiprogramming adds another process to system Thrashing is when a process is busy swapping pages in and out CPU utilization degree of muliprogramming

Cause of Thrashing Why does paging work? Locality model + process migrates from one locality to another + localities may overlap Why does thrashing occur? sum of localities > total memory size How do we fix thrashing? Working Set Model Page Fault Frequency Working-Set Model Working set window W = a fixed number of page references total number of pages references in time T Total = sum of size of W s m = number of frames Working Set Example T = 5 7 W={,,} W={,,7} W={,} if T too small, will not encompass locality if T too large, will encompass several localities if T => infinity, will encompass entire program if Total > m => thrashing, so suspend a process Modify LRU appx to include Working Set Page Fault Rate Page Fault Frequency Number of Frames upper bound lower bound Establish acceptable page-fault rate If rate too low, process loses frame If rate too high, process gains frame increase number of frames decrease number of frames Outline Demand Paging Intro (done) Page Replacement Algorithms (done) Thrashing (done) Misc Paging WinNT Linux Application Performance Studies Prepaging Pure demand paging has many page faults initially use working set does cost of prepaging unused frames outweigh cost of page-faulting? 5

Page Size Old - Page size fixed, New -choose page size How do we pick the right page size? Tradeoffs: Fragmentation Table size Minimize I/O + transfer small (.ms), latency + seek time large (ms) Locality + small finer resolution, but more faults ex: K process (/ used), fault / k, K faults/ byte Historical trend towards larger page sizes CPU, mem faster proportionally than disks Program Structure consider: int A[][]; for (j=; j<; j++) for (i=; i<; i++) A[i][j] = ; suppose: process has frame row per page => x page faults! Program Structure int A[][]; for (i=; i<; i++) for (j=; j<; j++) A[i][j] = ; page faults Stack vs. Hash table Compiler separate code from data keep routines that call each other together LISP (pointers) vs. Pascal (no-pointers) Priority Processes Consider low priority process faults, + bring page in low priority process in ready queue for awhile, waiting while high priority process runs high priority process faults + low priority page clean, not used in a while => perfect! Lock-bit (like for I/O) until used once Real-Time Processes Real-time bounds on delay hard-real time: systems crash, lives lost + air-traffic control, factor automation soft-real time: application sucks + audio, video Paging adds unexpected delays don t do it lock bits for real-time processes Virtual Memory and WinNT/ Page Replacement Algorithm FIFO Missing page, plus adjacent pages Working set default is take victim frame periodically if no fault, reduce set size by Reserve pool hard page faults soft page faults 6

Virtual Memory and WinNT/ Shared pages level of indirection for easier updates same virtual entry Page File stores only modified logical pages code and memory mapped files on disk already Virtual Memory and Linux Regions of virtual memory paging disk (normal) file (text segment, memory mapped file) Re-Examine fork() and exec() exec() creates new page table fork() copies page table + reference to common pages + if written, then copied Virtual Memory and Linux Page Replacement Algorithm look in reserve pool for free frames reserves for block devices (disk cache) reserves for shared memory user-space blocks enhanced second chance (with more bits) + dirty pages not taken first Application Performance Studies and Demand Paging in Windows NT Mikhail Mikhailov Ganga Kannan Mark Claypool David Finkel WPI Saqib Syed Divya Prakash Sujit Kumar BMC Software, Inc. Capacity Planning Then and Now Capacity Planning in the good old days used to be just mainframes simple CPU-load based queuing theory Unix Capacity Planning today distributed systems networks of workstations Windows NT MS Exchange, Lotus Notes Experiment Design Does NT have more hard page faults or soft page faults? System Pentium MHz NT Server. 6 MB RAM IDE NTFS NT v. clearmem Experiments Page Faults Caching Analysis perfmon 7

Page Fault Method Soft or Hard Page Faults? Work hard Run lots of applications, open and close All local access, not over network Caching and Prefetching Start process wait for Enter Start perfmon Hit Enter Read -K page Exit Repeat Hit Return button Page Metrics with Caching On Read KB Exit Start Read KB Hit Return button Exit 8