Chapters 9 & 10: Memory Management and Virtual Memory

Similar documents
Chapter 8: Main Memory

Chapter 8: Main Memory

Chapter 8: Memory Management. Operating System Concepts with Java 8 th Edition

Chapter 8: Memory Management Strategies

Background. Contiguous Memory Allocation

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

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

Chapter 9: Memory Management. Background

Part Three - Memory Management. Chapter 8: Memory-Management Strategies

Module 8: Memory Management

Roadmap. Tevfik Koşar. CSC Operating Systems Spring Lecture - XII Main Memory - II. Louisiana State University

8.1 Background. Part Four - Memory Management. Chapter 8: Memory-Management Management Strategies. Chapter 8: Memory Management

Chapter 10: Virtual Memory. Background

I.-C. Lin, Assistant Professor. Textbook: Operating System Concepts 8ed CHAPTER 8: MEMORY

I.-C. Lin, Assistant Professor. Textbook: Operating System Principles 7ed CHAPTER 8: MEMORY

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

Chapter 9 Memory Management Main Memory Operating system concepts. Sixth Edition. Silberschatz, Galvin, and Gagne 8.1

Module 8: Memory Management

Module 9: Memory Management. Background. Binding of Instructions and Data to Memory

Chapter 8: Memory Management. Background Swapping Contiguous Allocation Paging Segmentation Segmentation with Paging

Main Memory (Part I)

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

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

Logical versus Physical Address Space

Memory Management. Memory Management

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

Module 9: Virtual Memory

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

Chapter 8: Memory Management

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

Where are we in the course?

Chapter 9: Virtual Memory

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

Chapter 8: Memory- Management Strategies

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

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

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

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

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

Basic Memory Management

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

Chapter 8: Memory Management

Module 9: Virtual Memory

CS420: Operating Systems

Chapter 8: Virtual Memory. Operating System Concepts

Chapter 9: Virtual-Memory

Memory Management and Protection

CS6401- Operating System UNIT-III STORAGE MANAGEMENT

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

Memory Management. Contents: Memory Management. How to generate code? Background

Chapter 9: Virtual Memory

Chapter 8: Main Memory

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

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

Chapter 9: Virtual Memory

CS370 Operating Systems

Chapter 8 Memory Management

Background Swapping Contiguous Memory Allocation Paging Structure of the Page Table Segmentation

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

Chapter 8: Main Memory

Performance of Various Levels of Storage. Movement between levels of storage hierarchy can be explicit or implicit

CS307: Operating Systems

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

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

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

Chapter 8: Memory-Management Strategies

Lecture 8 Memory Management Strategies (chapter 8)

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

CS420: Operating Systems

Memory management. Last modified: Adaptation of Silberschatz, Galvin, Gagne slides for the textbook Applied Operating Systems Concepts

Chapter 8: Memory- Manage g me m nt n S tra r t a e t gie i s

Chapter 9: Virtual Memory

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

Virtual Memory Outline

CHAPTER 8: MEMORY MANAGEMENT. By I-Chen Lin Textbook: Operating System Concepts 9th Ed.

Main Memory. Electrical and Computer Engineering Stephen Kim ECE/IUPUI RTOS & APPS 1

CHAPTER 8 - MEMORY MANAGEMENT STRATEGIES

Operating System Concepts

Page Replacement Algorithms

Chapter 8 & Chapter 9 Main Memory & Virtual Memory

CSE 4/521 Introduction to Operating Systems. Lecture 12 Main Memory I (Background, Swapping) Summer 2018

SHANDONG UNIVERSITY 1

CS370 Operating Systems

CS370 Operating Systems

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

First-In-First-Out (FIFO) Algorithm

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

CSE 421/521 - Operating Systems Fall Lecture - XII Main Memory Management. Tevfik Koşar. University at Buffalo. October 18 th, 2012.

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

CS307: Operating Systems

OPERATING SYSTEM. Chapter 9: Virtual Memory

Virtual Memory Silberschatz: 9. Operating Systems. Autumn CS4023

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

Chapter 10: Virtual Memory

Principles of Operating Systems

Operating System Concepts 9 th Edition

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

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


Transcription:

Chapters 9 & 10: Memory Management and Virtual Memory Important concepts (for final, projects, papers) addressing: physical/absolute, logical/relative/virtual overlays swapping and paging memory protection algorithms: free space fit, page replacement segmentation thrashing locality 9.1 Silberschatz, Galvin and Gagne 2003

Background Program must be brought into memory and placed within a process for it to be run. Input queue collection of processes on the disk that are waiting to be brought into memory to run the program. User programs go through several steps before being run. process varies by type of OS...following discussion is for sharedresource, multi-user OS What is an address? How do we represent it? How big can it be? 9.2 Silberschatz, Galvin and Gagne 2003

Binding of Instructions and Data to Memory Address binding of instructions and data to memory addresses can happen at three different stages. Compile time: If memory location known a priori, absolute code can be generated; must recompile code if starting location changes. when do you need to know absolute address? Load time: Must generate relocatable code if memory location is not known at compile time. relocatable? what does that mean? Execution time: Binding delayed until run time if the process can be moved during its execution from one memory segment to another. Need hardware support for address maps (e.g., base and limit registers). 9.3 Silberschatz, Galvin and Gagne 2003

Multistep Processing of a User Program 9.4 Silberschatz, Galvin and Gagne 2003

Logical vs. Physical Address Space The concept of a logical address space that is bound to a separate physical address space is central to proper memory management. Logical address generated by the CPU; also referred to as virtual address. Physical address address seen by the memory unit (also absolute address ) Logical and physical addresses are the same in compile-time and load-time address-binding schemes; logical (virtual) and physical addresses differ in execution-time address-binding scheme. 9.5 Silberschatz, Galvin and Gagne 2003

Memory-Management Unit (MMU( MMU) Hardware device that maps virtual to physical address. WHERE is the MMU? In MMU scheme, the value in the relocation register is added to every address generated by a user process at the time it is sent to memory. The user program deals with logical addresses; it never sees the real physical addresses. 9.6 Silberschatz, Galvin and Gagne 2003

Dynamic relocation using a relocation register 9.7 Silberschatz, Galvin and Gagne 2003

Dynamic Loading Routine is not loaded until it is called Better memory-space utilization; unused routine is never loaded. Useful when large amounts of code are needed to handle infrequently occurring cases. No special support from the operating system is required implemented through program design. 9.8 Silberschatz, Galvin and Gagne 2003

Dynamic Linking Linking postponed until execution time. Small piece of code, stub, used to locate the appropriate memory-resident library routine. Stub replaces itself with the address of the routine, and executes the routine. Operating system needed to check if routine is in processes memory address. Dynamic linking is particularly useful for libraries. 9.9 Silberschatz, Galvin and Gagne 2003

Overlays Keep in memory only those instructions and data that are needed at any given time. Needed when process is larger than amount of memory allocated to it. Implemented by user, no special support needed from operating system, programming design of overlay structure is complex still used for some OS/processor architectures 9.10 Silberschatz, Galvin and Gagne 2003

Swapping A process can be swapped temporarily out of memory to a backing store, and then brought back into memory for continued execution. Backing store fast disk large enough to accommodate copies of all memory images for all users; must provide direct access to these memory images. must it be disk? Roll out, roll in swapping variant used for priority-based scheduling algorithms; lower-priority process is swapped out so higher-priority process can be loaded and executed. Major part of swap time is transfer time; total transfer time is directly proportional to the amount of memory swapped. Modified versions of swapping are found on many systems (i.e., UNIX, Linux, and Windows). 9.11 Silberschatz, Galvin and Gagne 2003

Schematic View of Swapping 9.12 Silberschatz, Galvin and Gagne 2003

Dynamic Storage-Allocation Problem How to satisfy a request of size n from a list of free holes. First-fit: Allocate the first hole that is big enough. Best-fit: Allocate the smallest hole that is big enough; must search entire list, unless ordered by size. Produces the smallest leftover hole. Worst-fit: Allocate the largest hole; must also search entire list. Produces the largest leftover hole. First-fit and best-fit better than worst-fit in terms of speed and storage utilization. 9.13 Silberschatz, Galvin and Gagne 2003

Fragmentation External Fragmentation total memory space exists to satisfy a request, but it is not contiguous. Internal Fragmentation allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used. Reduce external fragmentation by compaction Shuffle memory contents to place all free memory together in one large block. what are the benefits & drawbacks? Compaction is possible only if relocation is dynamic, and is done at execution time. I/O problem Latch job in memory while it is involved in I/O. Do I/O only into OS buffers. why? 9.14 Silberschatz, Galvin and Gagne 2003

Paging Logical address space of a process can be noncontiguous; process is allocated physical memory whenever the latter is available. Divide physical memory into fixed-sized blocks called frames (size is power of 2, between 512 bytes and 8192 bytes). Divide logical memory into blocks of same size called pages. Keep track of all free frames. To run a program of size n pages, need to find n free frames and load program. Set up a page table to translate logical to physical addresses. Internal fragmentation. 9.15 Silberschatz, Galvin and Gagne 2003

Address Translation Scheme Address generated by CPU is divided into: Page number (p) used as an index into a page table which contains base address of each page in physical memory. Page offset (d) combined with base address to define the physical memory address that is sent to the memory unit. 9.16 Silberschatz, Galvin and Gagne 2003

Address Translation Architecture 9.17 Silberschatz, Galvin and Gagne 2003

Paging Example 9.18 Silberschatz, Galvin and Gagne 2003

Memory Protection Memory protection implemented by associating protection bit with each frame. Valid-invalid bit attached to each entry in the page table: valid indicates that the associated page is in the process logical address space, and is thus a legal page. invalid indicates that the page is not in the process logical address space. what happens when process tries to access address not in permitted address space? who would DO such a thing? 9.19 Silberschatz, Galvin and Gagne 2003

Segmentation Memory-management scheme that supports user view of memory. A program is a collection of segments. A segment is a logical unit such as: main program, procedure, function, method, object, local variables, global variables, common block, stack, symbol table, arrays 9.20 Silberschatz, Galvin and Gagne 2003

User s View of a Program 9.21 Silberschatz, Galvin and Gagne 2003

Logical View of Segmentation 1 1 4 2 3 4 2 3 user space physical memory space 9.22 Silberschatz, Galvin and Gagne 2003

Segmentation Architecture Logical address consists of a two tuple: <segment-number, offset>, Segment table maps two-dimensional physical addresses; each table entry has: base contains the starting physical address where the segments reside in memory. limit specifies the length of the segment. Segment-table base register (STBR) points to the segment table s location in memory. Segment-table length register (STLR) indicates number of segments used by a program segment number s is legal if s < STLR. 9.23 Silberschatz, Galvin and Gagne 2003

Example of Segmentation 9.24 Silberschatz, Galvin and Gagne 2003

Virtual Memory 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. larger? how much larger? 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 9.25 Silberschatz, Galvin and Gagne 2003

Virtual Memory That is Larger Than Physical Memory 9.26 Silberschatz, Galvin and Gagne 2003

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 9.27 Silberschatz, Galvin and Gagne 2003

Transfer of a Paged Memory to Contiguous Disk Space Why contiguous? 9.28 Silberschatz, Galvin and Gagne 2003

Page Fault If there is ever a reference to a page, first reference will trap to OS => page fault OS looks at another table to decide: Invalid reference => abort. Just not in memory. Get empty frame. Swap page into frame. 9.29 Silberschatz, Galvin and Gagne 2003

Steps in Handling a Page Fault 9.30 Silberschatz, Galvin and Gagne 2003

What happens if there is no free frame? Page replacement find some page in memory, but not really in use, swap it out. algorithm? performance want an algorithm which will result in minimum number of page faults. Same page may be brought into memory several times. 9.31 Silberschatz, Galvin and Gagne 2003

Process Creation Virtual memory allows other benefits during process creation: - Copy-on-Write - Memory-Mapped Files 9.32 Silberschatz, Galvin and Gagne 2003

Copy-on-Write 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.33 Silberschatz, Galvin and Gagne 2003

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.34 Silberschatz, Galvin and Gagne 2003

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.35 Silberschatz, Galvin and Gagne 2003

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. how can we efficiently select a victim? 3. Read the desired page into the (newly) free frame. Update the page and frame tables. 4. Restart the process. 9.36 Silberschatz, Galvin and Gagne 2003

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 1, 2, 3, 4, 1, 2, 5, 1, 2, 3, 4, 5. 9.37 Silberschatz, Galvin and Gagne 2003

First-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 1 4 5 2 2 1 3 9 page faults 3 3 2 4 9.38 Silberschatz, Galvin and Gagne 2003

First-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 1 4 5 2 2 1 3 9 page faults 4 frames 3 3 2 4 1 1 5 4 2 2 1 5 10 page faults 3 3 2 4 4 3 FIFO Replacement Belady s Anomaly more frames does not always result in fewer page faults 9.39 Silberschatz, Galvin and Gagne 2003

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 4 2 6 page faults 3 4 5 Can we know this? Used for measuring how well your algorithm performs. 9.40 Silberschatz, Galvin and Gagne 2003

Least Recently Used (LRU) Algorithm Reference string: 1, 2, 3, 4, 1, 2, 5, 1, 2, 3, 4, 5 1 5 2 3 5 4 4 3 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.41 Silberschatz, Galvin and Gagne 2003

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.42 Silberschatz, Galvin and Gagne 2003

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.43 Silberschatz, Galvin and Gagne 2003

Thrashing Why does 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.44 Silberschatz, Galvin and Gagne 2003

Locality In A Memory-Reference Pattern < what's happening here? 9.45 Silberschatz, Galvin and Gagne 2003

Other Considerations Program data structure int A[ ][ ] = new int[1024][1024]; Each row is stored in one page Program 1 : for (j = 0; j < A.length; j++) for (i = 0; i < A.length; i++) A[i,j] = 0; 1024 x 1024 page faults Program 2 for (i = 0; i < A.length; i++) for (j = 0; j < A.length; j++) A[i,j] = 0; 1024 page faults 9.46 Silberschatz, Galvin and Gagne 2003

Other Considerations (Cont.) 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. why? 9.47 Silberschatz, Galvin and Gagne 2003

Reason Why Frames Used For I/O Must Be In Memory 9.48 Silberschatz, Galvin and Gagne 2003

Some interesting memory issues where can the system get memory resources? motherboard, system bus, network,... how big should pages be? depends on type/size of system what is NUMA? should the OS or application be memory locality aware? how to get significant functionality in small memory? PDAs, cell phones,... what problems occur with extremely large memory systems? for example, Sun F15K can have 500MB+ memory what are advantages/disadvantages of RAM disks? Reading assignment: cne.gmu.edu/pjd/pubs/bvm.pdf 9.49 Silberschatz, Galvin and Gagne 2003