250 likes | 273 Views
CGS 3763 Operating Systems Concepts Spring 2013. Dan C. Marinescu Office: HEC 304 Office hours: M- Wd 11:30 - 12:30 A M. Last time: Page replacement algorithms Implementation of paging Hit and miss ratios Performance penalties Today Performance penalties
E N D
CGS 3763 Operating Systems Concepts Spring 2013 Dan C. Marinescu Office: HEC 304 Office hours: M-Wd 11:30 - 12:30 AM
Last time: Page replacement algorithms Implementation of paging Hit and miss ratios Performance penalties Today Performance penalties Spatial and temporal locality of reference Virtual memory Page fault handling Working set concept Next time Class review Reading assignments Chapter 9 of the textbook Lecture 37 – Wednesday, April 17, 2013 Lecture 38
Two-level memory system • To understand the effect of the hit/miss ratios we consider only a two level memory system • P a faster and smaller primary memory • S A slower and larger secondary memory. • The two levels could be: P L1 cache and S main memory P main memory and S disk Lecture 38
The performance of a two level memory • The latency Lp << LS • LP latency of the primary device e.g., 10 nsec for RAM • LS latency of the secondary device, e.g., 10 msec for disk • Hit ratio h the probability that a reference will be satisfied by the primary device. • Average Latency (AS) AS = h x LP + (1-h) LS. • Example: • LP = 10 nsec (primary device is main memory) • LS = 10 msec (secondary device is the disk) • Hit ratio h= 0.90 AS= 0.9 x 10 + 0.1 x 10,000,000 = 1,000,000.009 nsec~ 1000 microseconds = 1 msec • Hit ratio h= 0.99 AS= 0.99 x 10 + 0.01 x 10,000,000 = 100,000.0099 nsec~ 100 microseconds = 0.1 msec • Hit ratio h= 0.999 AS= 0.999 x 10 + 0.001 x 10,000,000 = 10,000.0099 nsec~ 10 microseconds = 0.01 msec • Hit ratio h= 0.9999 AS= 0.999 0x 10 + 0.001 x 10,000,000 = 1,009.99 nsec~ 1 microsecond This considerable slowdown is due to the very large discrepancy (six orders of magnitude) between the primary and the secondary device. Lecture 38
The performance of a two level memory (cont’d) Statement:if each reference occurs with equal frequency to a cell in the primary and in the secondary device then the combined memory will operate at the speed of the secondary device. • The size SizeP << SizeSSizeS =K x SizeP with K large (1/K small) • SizeP number of cells of the primary device • SizeS number of cells of the secondary device Lecture 38
Why paging works • Locality of reference once a page is brought to the primary storage it is likely that more items in the page will be referenced. • Spatial locality of reference if an item at displacement k in a page is referenced it is likely that items at displacements around k will be referenced next. Why? • Code - • Data - • Temporal locality of reference if an item at displacement k in a page is referenced it is likely that other items in the page will be reference soon. Why? • Code - • Data - Lecture 38
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 Lecture 38
Virtual-address space of a process Lecture 38
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 Lecture 38
Valid-invalid bit • With each page table entry a valid–invalid bit is associated(v in-memory,i not-in-memory) • Initially valid–invalid bit is set toion all entries • Example of a page table snapshot: • During address translation, if valid–invalid bit in page table entry is I page fault Frame # valid-invalid bit v v v v i …. i i page table Lecture 38
Page table when some pages are not in main memory Lecture 38
Page fault handling • Page fault occurs when there is a reference to a page not in the main memory the system. • Then the VMM (Virtual Memory Manager) and the MLMM (Multi-Level Memory Management) components of the kernel: • Check if the reference is invalid abort • If the reference is valid – process the page fault • Find an empty frame. • Transfer the page from the disk to empty frame. • Update the page entry in the page table with the address of the frame. • Set validation bit = v in the page table entry of the page. • Restart the instruction that caused the page fault. Lecture 38
Handling a page fault Lecture 38
The clock algorithm is used to simulate the LRU algorithm. Keep all the page frames on a circular list in the form of a clock. A hand points to the oldest page. When a page fault occurs, the page being pointed to by the hand is inspected. If its R bit is F, the page is evicted, the new page is inserted into the clock in its place, and the hand is advanced one position. If Ris T, it is cleared and the hand is advanced to the next page. This process is repeated until a page is found withR= F. Lecture 38
System components involved in memory management Virtual memory manager – VMM dynamic address translation Multi level memory management – MLMM Lecture 38
The modular design • VM attempts to translate the virtual memory address to a physical memory address • If the page is not in main memory VM generates a page-fault exception. • The exception handler uses a SEND to send to an MLMM port the page number • The SEND invokes ADVANCE which wakes up a thread of MLMM • The MMLM invokes AWAIT on behalf of the thread interrupted due to the page fault. • The AWAIT releases the processor to the SCHEDULER thread. Lecture 38
Working-set model • working-set window a fixed number of page references Example: 10,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 Lecture 38
Working-set model Lecture 38
How to estimate the working set • Hardware needed: • Interval timer • Reference bits. • 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 Lecture 38
Name resolution in multi-level memories • We consider pairs of layers: • Upper level of the pair primary • Lower level of the pair secondary • The top level managed by the application which generates LOAD and STORE instructions to/from CPU registers from/to named memory locations • The processor issues READs/WRITEs to named memory locations. The name goes to the primary memory device located on the same chip as the processor which searches the name space of the on-chip cache (L1 cache), the primary device with the L2 cache as secondary device. • If the name is not found in L1 cache name space the Multi-Level Memory Manager (MLMM) looks at the L2 cache (off-chip cache) which becomes the primary with the main memory as secondary. • If the name is not found in the L2 cache name space the MLMM looks at the main memory name space. Now the main memory is the primary device. • If the name is not found in the main memory name space then the Virtual Memory Manager is invoked Lecture 38
Process creation • 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. • If either process modifies a shared page, only then is the page is copied. • COW allows more efficient process creation as only modified pages are copied Lecture 38
Before and after process 1 modifies page C Lecture 38
Memory-mapped files • Memory-mapped file I/O allows file I/O to be treated as routine memory access by mappinga 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