Memory Management II

Tom Kelliher, CS 318

Apr. 3, 1998

Announcements:

From last time:

  1. Loose ends, midterm

Outline:

  1. Address spaces.

  2. Contiguous schemes.

  3. Non-contiguous schemes.

Assignment: Read Chapter 8.

Logical and Physical Addresses

Logical = Virtual

Recall:

  1. Program (CPU) generates logical addresses.

  2. MMU converts them to physical addresses.

  3. Compile-time, load-time binding: physical address = logical address.

Simple MMU scheme:

Note: Program can utilize compile-time binding.

Swapping

  1. Process must be entirely in memory to execute.

  2. If in ready Q, can swap-out to ``backing store.''

  3. If in I/O wait must ``lock'' in memory. Why?

  4. Must process be swapped-in to same memory space? Depends on loader design.
  5. What needs to be swapped out, exactly? The entire partition? The entire process space?

  6. Swapping in Unix occurs:
    1. The system page map has become too fragmented to allocate page tables for some process.

    2. There are at least two runnable processes, the average amount of free memory has been less than that desired ( desfree) over the last 5 and 30 seconds, and either the paging rate is excessive or the short-term average free memory is less than minfree.

    3. A swapped-out process is ready to run and a process is found in memory that has been sleeping for at least 20 seconds; or the swapped-out process has been out for at least 10 seconds and the process chosen for swapping out has been in memory at least 20 seconds.

Contiguous Allocation

Key: contiguous.

What are we leading up to, here?

Single User Partition

  1. Only one process in memory at a time.

  2. Must swap to do a context switch. Speed?

  3. Unused Memory: internal fragmentation.

Multiple User Partitions

Fixed Partitions

  1. Partitions usually of differing sizes.

  2. Job placement policy.

  3. Can swap jobs in and out of partitions.

  4. Internal fragmentation.

Variable Partitions

  1. Number of partitions varies.

  2. Partitions allocated according to process requirements.

  3. What if a process grows?

  4. Free list of unallocated holes.

  5. Placement policies:
    1. First fit. Best time.

    2. Best fit.

    3. Worst fit --- worst time, storage utilization.

  6. External fragmentation.

  7. Combining adjacent holes.

  8. Memory compaction --- must be using relocatable code. Minimizing copying.

Non-Contiguous Allocation

Problems with contiguous allocation:

  1. Problems with fixed partitions:
    1. Limited degree of multiprogramming.

    2. Internal fragmentation.

    3. Placement policies.

  2. Problems with variable partitions:
    1. External fragmentation, compaction.

    2. Swapping is difficult, if not impossible (address binding).

Alternative: non-contiguous allocation.

Paging

The idea:

  1. Entire process in memory.

  2. Partition memory into frames of size .
    1. Typical frame sizes: 512 to 8K bytes.

    2. Frame size constrained by MMU design.

  3. Logical address space is broken into pages.
    1. Page size = frame size.

    2. Pages can be arbitrarily mapped onto frames.

    3. However, process ``sees'' a contiguous, flat address space.

  4. MMU splits logical address:
    1. Assume logical address is n bits.

    2. Page number field is n - m most significant bits.

    3. Page offset field is m least significant bits.

    4. Using table look-up, convert logical page number to physical frame number.

    5. Frame offset = page offset.

Why is frame, page size a power of two?

Paging hardware:

Design issues:

  1. Page size:
    1. Internal fragmentation.

    2. Maximizing I/O transfer rate.

  2. I/O --- process passes logical address to kernel.

  3. Implementation of the page table.
    1. Small register file.

    2. Array in memory.

  4. Issues for memory implementation:
    1. Page table must be in contiguous memory.

    2. Page table base register.

    3. ``Logical memory access'' requires two physical accesses.
      1. Translation look-aside buffer.

      2. TLB entries contain: Page number, frame number pairs.

      3. Issue: Context switches.

      4. Only a few entries needed.

Size, Structure of Page Table

  1. Problem: huge page tables. How did this happen?

  2. Solutions:
    1. Valid/invalid bit.

    2. Page table limit register.

    3. Multi-level paging.

Multi-Level Paging

Why not just use the limit register?

A two-level paging scheme for a 32-bit logical address:

Is the page table really any smaller?

What does this solve?

  1. Non-contiguous (paged) page table.

  2. ``Holes'' in page table (valid bit) shrink it.

Sun SPARC: 3 level paging.

64-, 128-bit logical addresses?

Protection

  1. Is it possible for a process to access an arbitrary memory location?

  2. Using valid bit to introduce ``holes'' into logical address space.

Page Sharing

  1. What can be shared?

  2. Read-only pages.

  3. Page alignment --- segment the logical address space.

  4. Page de-allocation.

Segmentation

  1. ``Object oriented'' approach:
    1. User views program as a set of objects:
      1. Stack.

      2. Routines.

      3. Arrays.

      4. ...

    2. Each object stored in a segment.

  2. Generalization of paging.

  3. Logical address is a segment ``name'' and an offset.

  4. Variable-sized ``page'' having a base and length.

  5. Frames start on memory boundaries. Segments start anywhere. Therefore, must add a segment base and offset.

  6. Straight paging: external fragmentation.

  7. Solution: Paged segmentation (x86 architecture).

Segmentation hardware:



Thomas P. Kelliher
Thu Apr 2 15:13:09 EST 1998
Tom Kelliher