Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Friday, June 30, 2006 "Man's mind, once stretched by a new idea, never regains its original dimensions." - Oliver Wendell Holmes, Jr.

Similar presentations


Presentation on theme: "1 Friday, June 30, 2006 "Man's mind, once stretched by a new idea, never regains its original dimensions." - Oliver Wendell Holmes, Jr."— Presentation transcript:

1 1 Friday, June 30, 2006 "Man's mind, once stretched by a new idea, never regains its original dimensions." - Oliver Wendell Holmes, Jr.

2 2 §Memory Management System

3 3 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. l Logical address – generated by the CPU; also referred to as virtual address. l Physical address – address seen by the memory unit. §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.

4 4 Dynamic relocation using a relocation register

5 5 Schematic View of Swapping

6 6 Contiguous Allocation §Single-partition allocation l Relocation-register scheme used to protect user processes from each other, and from changing operating-system code and data. l Relocation register contains value of smallest physical address; limit register contains range of logical addresses – each logical address must be less than the limit register.

7 7 Hardware Support for Relocation and Limit Registers

8 8 Contiguous Allocation (Cont.) §Multiple-partition allocation l Hole – block of available memory; holes of various size are scattered throughout memory. l When a process arrives, it is allocated memory from a hole large enough to accommodate it. l Operating system maintains information about: a) allocated partitions b) free partitions (hole) OS process 5 process 8 process 2 OS process 5 process 2 OS process 5 process 2 OS process 5 process 9 process 2 process 9 process 10

9 9 Dynamic Storage-Allocation Problem §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. How to satisfy a request of size n from a list of free holes.

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

11 11 Fragmentation §Reduce external fragmentation by compaction l Shuffle memory contents to place all free memory together in one large block. l Compaction is possible only if relocation is dynamic, and is done at execution time. l I/O problem Latch job in memory while it is involved in I/O. Do I/O only into OS buffers.

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

13 13 Paging §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.

14 14 Address Translation Scheme §Address generated by CPU is divided into: l Page number (p) – used as an index into a page table which contains base address of each page in physical memory. l Page offset (d) – combined with base address to define the physical memory address that is sent to the memory unit.

15 15 Address Translation Architecture

16 16 Paging Example

17 17 Paging Example

18 18 Free Frames Before allocation After allocation

19 19 Implementation of Page Table §Page table is kept in main memory. §Page-table base register (PTBR) points to the page table. §Page-table length register (PRLR) indicates size of the page table.

20 20 Implementation of Page Table §In this scheme every data/instruction access requires two memory accesses. One for the page table and one for the data/instruction. §The two memory access problem can be solved by the use of a special fast- lookup hardware cache called associative memory or translation look- aside buffers (TLBs).

21 21 Associative Memory §Associative memory – parallel search l If it is in associative register, get frame # out. l Otherwise get frame # from page table in memory Page #Frame #

22 22 Paging Hardware With TLB


Download ppt "1 Friday, June 30, 2006 "Man's mind, once stretched by a new idea, never regains its original dimensions." - Oliver Wendell Holmes, Jr."

Similar presentations


Ads by Google