22C:116, Lecture Notes, Lecture 8, Spring 1999

Douglas W. Jones
University of Iowa Department of Computer Science

  1. Page Faults

    When a program references a page that the memory management unit is unable to handle, or when the reference requires access rights that are not allowed by the memory management unit, the memory management unit reports a page fault by forcing the CPU to enter a trap service routine, usually a part of the operating system, but there are systems such as Mach where page faults may be handled by application-level code. The instruction that was executing at the time of the trap is aborted,

    On entry to any trap service routine or interrupt service routine, a properly designed CPU will cooperate with the prologue (the introductory sequence of instructions) of the service routine to save the values of all of the registers of the interrupted program, including the PC. In the case of trap handlers, the saved values should be the values that were in effect immediately prior to the instruction that caused the trap.

    Note: On some machines, the values for some saved registers include changes made by the instruction that caused the trap. For example, the program counter may have been incremented as a side effect of the instruction fetch prior to the memory cycle that caused a page fault, or the stack pointer may have been decremented prior to the memory cycle that caused the fault. If such a machine is to be used to support demand-paged virtual memory, there must be a way to determine what registers have been changed and to undo these changes!
    In theory, given the PC and registers prior to the instruction that caused the trap, the trap service routine can simulate the execution of the next instruction to determine all of the memory addresses it might use; for each address, it can check to see which of these might have caused the trap. This is simple enough that on some machines, the memory management units do not save the actual virtual address that was used to cause the trap. The software is simplified, however, if the MMU saves the virtual address that caused the trap, thus saving the trap service routine from having to simulate an instruction cycle.

    Here, in outline form, is a generic page fault service routine:

    page fault service routine:
        -- prologue
        save state prior to instruction that caused the trap
    
        -- find necessary information about cause of fault
        va = virtual address that was referenced
        op = operation that was attempted (read or write)
    
        -- is this an access violation?
        if map[va.pageno].rights = read_only
        and if op = write
            handle as user access violation (bus trap!)
        else
    
            -- find a free page frame
            if there are free page frames
                pa = free frame address
            else
    
                -- page replacement policy
                pa = address of page to replace
                va' = virtual address of page in that frame
                write( pa, diskaddress( va' ))
                update virtual address map, etc to reflect change
            endif
    
            -- bring in the required page
            read( pa, diskaddress( va ))
            update virtual address map, etc to reflect change
    
            -- epilogue
            restore saved state
            return from page fault service routine
        endif
    
    This service routine faces two key choices; what page(s) should be copied into main memory from disk, and, assuming that main memory is full, what page(s) should be copied out from main memory to disk in order to make space.

    What page should be copied into main memory?

    What page in main memory should be replaced? In the above code, this issue was glossed over with one line saying ``address of page to replace''. Here are some choices

  2. LRU Replacement

    The best practical page replacement policy is to replace the Least Recently Used page, that is, the page which has not been referenced by the CPU for the longest time in the past.

    This requires special hardware to track every memory access, for example, to put a timestamp on each page frame each time the page in that frame is referenced.

    Hardware Support Needed for LRU

          A Page Table Entry
           _________________________________
          |__________|______|_______________|
          |  Serial  |Rights      Frame     |
          |  Number  |                      |
          |          |                      |
          |   added  |   original fields    |
    

    Demand paged virtual memory works, that is, it offers performance comparable to main memory performance, at a price comparable to secondary memory prices because programs exhibit what is called a working set. The working set of a program is the set of pages it needs, at some instant, to make progress. If enough page frames are available to store the working set, the program will execute almost as quickly as it would if it was executing out of main memory with no paging.

    In practice, most programs exhibit a well defined working set that changes only slowly with time. That is, they exhibit strong locality of reference. The locality property involves two components: In programs that exhibit strong temporal locality, the fact that a memory location has recently been referenced strongly suggests that it will soon be needed again. In programs that exhibit strong spatial locality, the fact that some memory location has recently been referenced strongly suggests that nearby locations will soon be needed.

    The LRU policy directly addresses the issue temporal locality, and the organization of memory into pages that contain more than one location addresses spatial locality. Programs with good locality have well defined working sets, while programs with poor locality have poorly defined working sets.

    Belady's optimal page replacement algorithm is optimal because it examines the future to make page replacement decisions. The LRU policy, in contrast, uses the predictions it can make by assuming that the program has good locality, and usually, these are good predictions.

    LRU is optimal among practical algorithms, although in some contexts, some anticipatory paging can make marginal improvements.

    MULTICS on the GE 600 used true LRU replacement, back in the late 1960's, but few systems since that time have used true LRU. The MULTICS implementation used a special high-speed core memory to implement its cache of all currently available page frames. The Following sequential algorithm was used by the address translation unit, implemented in fast hardware:

       I = 0
       Fetch entry(I) into temp
       while I < cache_size
       and temp.page /= virtual_address.page do
           I = I + 1;
           exchange temp with entry(I)
       endloop
       if temp.page = virtual_address.page
           Store temp into entry(0)
       else
           Report a page fault for virtual_address.page
           Report that temp.frame is the least recently used page frame
           Copy the map entry from main memory into cache entry(0).
    
    This keeps the entries in the cache ordered by recency of use. This ordering guarantees that the cache will be fast for references to recently used frames (those that are likely to be frequently used) while it is slow for frames that weren't recently used (those that are unlikely to be frequently used).

    The MULTICS scheme is an elegant historical curiosity, of only limited practical value today because it is predicated on core memory technology.

    MULTICS was the first design for a large-scale timesharing system, developed with federal funds at Project MAC at MIT starting in the mid 1960's. The original development involved a consortium involving MIT, GE and Bell Labs, but Bell Labs dropped out of the project, and Honeywell bought GE's computer business. In the 1970's, MULTICS became one of two standard operating systems offered on Honeywell mainframes.

    MULTICS was originally conceived of as a computer utility. The idea was that such a utility would be operated in much the same way as the telephone and power utilities, but instead of selling power or audio communication services, the computer utility would sell CPU time and disk storage to its customers. Today, this isn't a radical idea -- there are many computer utilities, ranging from Compuserve and AOL to smaller local providers. The concept was radical in the mid 1960's, and this idea drove a number of technical developments.

  3. Clock page replacement

    The clock algorithm allows a good approximation of LRU replacement, although if there are two few page frames available, it degenerates to FIFO replacement.

    Clock replacement requires that there be one bit per page frame to record whether that page has been recently referenced. This bit is set by hardware when the page frame is referenced, and it is reset by the page-fault service routine, in the process of deciding what page frame to replace.

    To select a page frame to replace, the page fault service routine software sweeps through the page frames, resetting the referenced bit on each page frame and stopping when it finds a page frame with this bit already reset. The page in this frame is the one that is replaced (copied out to disk to make an empty frame).

    The clock algorithm is usually pictured with a clock face, where each minute on the clock face corresponds to a page frame. The clock hand remains fixed except during the execution of the page fault service routine. When a page fault occurs, the clock hand begins its sweep. The hand stops as soon as it sees an unmarked page frame. The clock hand removes the marks from each page frame it sweeps over.

    Data Structures and code for the Clock Algorithm

                              Frame Table
                            ________________
                           |_X__|___________|
                           |____|___________|
      Clock Hand -         |____|___________|
                   \       |____|___________|
                     ----->|____|___________|
                        |  |_X__|___________|
         Sweep Direction|  |_X__|___________|
                        |  |____|___________|
                        V  |_X__|___________|
                           |mark| what page |
    
    
    	find page to replace:
               while frame_table[clock_hand].mark is set do
                  reset frame_table[clock_hand].mark
                  clock_hand = (clock_hand + 1) mod table_size
               -- now, frame_table[clock_hand].what_page
               -- is the page number to be written back to disk,
               -- and clock_hand is the frame number to use with
               -- the page being brought in from disk.
    

  4. Modified Clock Replacement

    It turns out that the clock algorithm can be modified to work without a hardware supported referenced bit.

    As clock hand sweeps by a page frame, all page table entries referencing that frame are marked as invalid. In fact, the page is still in memory, but the memory management unit has been told that it is not there. This combination, where the page is in memory but the page-table entry for that page is marked as if it is not, is used to mean "not referenced".

    When the CPU references an invalid page, there is a page fault. If the page is actually in memory, this is called a soft page fault. The page table entry is simply changed from invalid to valid. This combination, page in memory and marked as such, is considered to mean "referenced".

    Modified Clock Page Table Entry

           _____________________________
          |______|______|_______________|
          | Real |Rights      Frame     |
          |Rights|                      |
          |      |                      |
          | soft |   hardware fields    |
          | bits |                      |
    
    Real Rights = Rights = accessable

    Marked. This page is not a candidate for clock replacement; it has been recently used.

    Real Rights = inaccessible; Rights = accessable

    Not Marked. A candidate for replacement. Faults involving this page are "soft"; this means, the page should be marked.

    Real Rights = Rights = inaccessable

    Paged out! Faults involving this page are "hard" -- page replacement and disk I/O are needed to resolve this fault.

    Real Rights = accessible; Rights = inaccessable Strange! This combination could perhaps be used by software for something, but it is not clear what. Access to this page is legal and will not cause a fault.

  5. Dirty Pages

    A dirty page is a page that has been modified since it was copied from disk to main memory. Dirty pages must be copied back to disk when the frames that hold them are preempted to hold other pages. Clean pages, those that are not dirty, need not be copied back to disk if original copy of the page on disk is still available. This can cut the time needed to service some page faults in half.

    Tracking clean and dirty pages requires one bit per page frame; typically, we assume that this bit is set to mark the page as dirty whenever there is a write operation on that page, and we let the software reset this bit whenever it writes the contents of a page frame to disk. The latter operation is called cleaning the page frame.

    This can be combined with the clock algorithm as follows:

    As the clock hand sweeps by dirty page frames they are scheduled for cleaning; the actual write operations to disk take place in parallel with computation and are typically done in whatever order is convenient for the disk interface hardware and software.

    The clock hand only stops its sweep when it encounters a page frame that is both unreferenced and clean.

    This scheme (modified clock replacement) is typical of modern virtual memory operating systems. This scheme requires minimal hardware support and yet delivers performance comparable to LRU replacement.

    If the computer does not include hardware to record the fact that a page is dirty, this may be done by software by marking clean pages as read-only. When a write operation is made to a read-only page, the resulting soft page fault marks the page as read-write, which is interpreted to mean that it is a dirty page.

    Some implementations of such schemes are enhanced with anticipatory paging -- for example, when there is a page fault for page i, they might bring in pages i, i+1 and i+2. This assumes that a program that references page i is highly likely to use the following pages. Since this assumption is not always a good one, such systems usually provide a way to turn off the anticipation logic in the page replacement algorithm. Anticipatory paging works very well for programs that use numerous large arrays and it provides few benefits for programs dominated by complex linked lists jumbled into the heap.

    Exercise: Outline a procedure to be called from the page-fault service routine that will search the set of page frames and select a page to replace. Do this for the simple clock algorithm, the clock algorithm with clean-dirty page management, and each of the above with memory management unit hardware that does not mark used and dirty pages. Before you do this, you may want to solve the following:

    Subsidiary Exercise: What are the states of a page-frame.

    Subsidiary Exercise: The clock algorithm cyclicaly sweeps through the table of all page frames. This is not the same as the address map of the virtual address space! Describe the relationship between these two data structures!

  6. A digression into architecture

    Memory management units are fairly simple to design only if the entire page table is held in the MMU and if the MMU does not support the mark and dirty bits needed by the clock algorithm. The latter fact explains why, starting with the DEC VAX architecture, many modern systems have omitted hardware support for the clock and dirty bits, forcing the use of software solutions to these problems.

    If the entire page table cannot fit into the MMU, it is common for the MMU to use a cache memory, so that the most recently used page table entries are in the MMU while the entire page table is in main memory. This is quite effective, except that cache design is itself a fairly messy business. As a result, some MMU designs in use today take this one step further; the MMU cache, called the translation lookaside buffer, is simplified so that, if the desired page table entry is not in the TLB, the MMU issues a page fault! Thus, the page-fault service routine is responsible for both MMU TLB management and page replacement in main memory.

    This introduces a new kind of soft page fault, where the desired page is in main memory but the desired page table entry is not in the TLB, so the page fault service routine merely loads the page table entry into the MMU and returns, with no actual paging activity required.

    You can find an example MMU specification illustrating this extremity in the fictional Hawk architecture, described in

    http://homepage.cs.uiowa.edu/~dwjones/arch/hawk/overview.html#mmu