Presentation is loading. Please wait.

Presentation is loading. Please wait.

Cosc 4740 Chapter 8 Virtual Memory. Background Code needs to be in memory to execute, but entire program rarely used –Error code, unusual routines, large.

Similar presentations


Presentation on theme: "Cosc 4740 Chapter 8 Virtual Memory. Background Code needs to be in memory to execute, but entire program rarely used –Error code, unusual routines, large."— Presentation transcript:

1 Cosc 4740 Chapter 8 Virtual Memory

2 Background Code needs to be in memory to execute, but entire program rarely used –Error code, unusual routines, large data structures Entire program code not needed at same time Consider ability to execute partially-loaded program –Program no longer constrained by limits of physical memory –Program and programs could be larger than physical memory

3 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. –More programs running concurrently –Less I/O needed to load or swap processes Virtual memory can be implemented via: –Demand paging –Demand segmentation

4 Virtual Memory That is Larger Than Physical Memory

5 Virtual-address Space

6 Virtual Address Space Enables sparse address spaces with holes left for growth, dynamically linked libraries, etc System libraries shared via mapping into virtual address space Shared memory by mapping pages read-write into virtual address space Pages can be shared during fork(), speeding process creation

7 Shared Library Using Virtual Memory

8 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 –Swapper that deals with pages is a pager

9 Transfer of a Paged Memory to Contiguous Disk Space

10 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 to i on all entries Example of a page table snapshot: During address translation, if valid–invalid bit in page table entry is I  page fault v v v v i i i …. Frame #valid-invalid bit page table

11 Page Table When Some Pages Are Not in Main Memory

12 Page Fault If there is a reference to a page, first reference to that page will trap to operating system: page fault 1.Operating system looks at another table to decide: –Invalid reference  abort –Just not in memory 2.Get empty frame 3.Swap page into frame 4.Reset tables 5.Set validation bit = v 6.Restart the instruction that caused the page fault

13 Aspects of Demand Paging Extreme case – start process with no pages in memory –OS sets instruction pointer to first instruction of process, non-memory-resident -> page fault –And for every other process pages on first access –Pure demand paging

14 Aspects of Demand Paging (2) Actually, a given instruction could access multiple pages -> multiple page faults –Pain decreased because of locality of reference Hardware support needed for demand paging –Page table with valid / invalid bit –Secondary memory (swap device with swap space) –Instruction restart

15 Instruction Restart Consider an instruction could access several different locations –block move –auto increment/decrement location –Restart the whole operation? What if source and destination overlap?

16 Steps in Handling a Page Fault

17 Performance of Demand Paging Stages in Demand Paging 1.Trap to the operating system 2.Save the user registers and process state 3.Determine that the interrupt was a page fault 4.Check that the page reference was legal and determine the location of the page on the disk 5.Issue a read from the disk to a free frame: 1.Wait in a queue for this device until the read request is serviced 2.Wait for the device seek and/or latency time 3.Begin the transfer of the page to a free frame 6.While waiting, allocate the CPU to some other user 7.Receive an interrupt from the disk I/O subsystem (I/O completed) 8.Save the registers and process state for the other user 9.Determine that the interrupt was from the disk 10.Correct the page table and other tables to show page is now in memory 11.Wait for the CPU to be allocated to this process again 12.Restore the user registers, process state, and new page table, and then resume the interrupted instruction

18 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.

19 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.

20 Need For Page Replacement

21 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. Write victim frame to disk if dirty 3.Read the desired page into the (newly) free frame. Update the page and frame tables. 4.Restart the process.

22 Page Replacement

23 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 –String is just page numbers, not full addresses –Repeated access to the same page does not cause a page fault In all our examples, the reference string is 1, 2, 3, 4, 1, 2, 5, 1, 2, 3, 4, 5

24 Replacement Algorithms 1.random selection –not clearly a bad algorithm 2.optimal algorithm – used for comparison (for analysis only) –replace the page that will not be used for a longest period of time you need a crystal ball. –not really an algorithm, for analyst when you have all the information.

25 3. 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) 4 frames FIFO Replacement – Belady’s Anomaly –more frames  Should be less page faults 1 2 3 1 2 3 4 1 2 5 3 4 9 page faults 1 2 3 1 2 3 5 1 2 4 5 10 page faults 4 43

26 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 How do you know this? Used for measuring how well your algorithm performs 1 2 3 4 6 page faults 4 5

27 4. Second chance – really FIFO –look for arrival time – earliest and a page that not reference is the longest time. –replace the frame and update reference time to current time. Observation: most programs progress sequentially

28 Second-Chance (clock) Page-Replacement Algorithm

29 5. Least Recently Used Use past knowledge rather than future Replace page that has not been used in the most amount of time Associate time of last use with each page

30 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 5 2 4 3 1 2 3 4 1 2 5 4 1 2 5 3 1 2 4 3

31 LRU Algorithm Variant 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 –But each update more expensive –No search for replacement

32 Counting Algorithms Keep a counter of the number of references that have been made to each page. LFU Algorithm: replaces page with smallest count. Most Frequently Used (MFU) Algorithm: based on the argument that the page with the smallest count was probably just brought in and has yet to be used.

33 Page-Buffering Algorithms Keep a pool of free frames, always –Then frame available when needed, not found at fault time –Read page into free frame and select victim to evict and add to free pool –When convenient, evict victim Possibly, keep list of modified pages –When backing store otherwise idle, write pages there and set to non-dirty Possibly, keep free frame contents intact and note what is in them –If referenced again before reused, no need to load contents again from disk –Generally useful to reduce penalty if wrong victim frame selected

34 Applications and Page Replacement All of these algorithms have OS guessing about future page access Some applications have better knowledge – i.e. databases Memory intensive applications can cause double buffering –OS keeps copy of page in memory as I/O buffer –Application keeps page in memory for its own work Operating system can given direct access to the disk, getting out of the way of the applications –Raw disk mode Bypasses buffering, locking, etc

35 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

36 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 –But then process execution time can vary greatly –But greater throughput so more common Local replacement – each process selects from only its own set of allocated frames –More consistent per-process performance –But possibly underutilized memory

37 Non-Uniform Memory Access So far all memory accessed equally Many systems are NUMA – speed of access to memory varies –Consider system boards containing CPUs and memory, interconnected over a system bus Optimal performance comes from allocating memory “close to” the CPU on which the thread is scheduled –And modifying the scheduler to schedule the thread on the same system board when possible –Solved by Solaris by creating lgroups Structure to track CPU / Memory low latency groups Used my schedule and pager When possible schedule all threads of a process and allocate all memory for that process within the lgroup

38 Problems 1. multiprogramming degree –number of processes resident in memory at any point in time. This increases the CPU utilization 2. Number of page faults per unit of time –Increase degree of multiprogramming  should increase CPU utilization –The more programs in memory  less space for pages of data, so CPU utilization in a productive way goes down, because of increased # of page faults. –In other words, increasing the multiprogramming deceases CPU utilization, because of there are more page faults.

39 Thrashing CPU utilization –% of time the CPU is doing useful work, not context switching, page replacement, or idle. Thrashing  The O/S is busy swapping pages in and out.

40 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

41 Operating System Examples Windows XP Solaris

42 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

43 Solaris 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 Priority paging gives priority to process code pages

44 Q A &


Download ppt "Cosc 4740 Chapter 8 Virtual Memory. Background Code needs to be in memory to execute, but entire program rarely used –Error code, unusual routines, large."

Similar presentations


Ads by Google