lecture 8 memory management strategies (chapter 8)€¦ · dr. İbrahim körpeoğlu ... •...

41
1 CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University 1 Lecture 8 Memory Management Strategies (chapter 8) Dr. İbrahim Körpeoğlu http://www.cs.bilkent.edu.tr/~korpe Bilkent University Department of Computer Engineering CS342 Operating Systems CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University 2 References The slides here are adapted/modified from the textbook and its slides: Operating System Concepts, Silberschatz et al., 7th & 8th editions, Wiley. REFERENCES Operating System Concepts, 7 th and 8 th editions, Silberschatz et al. Wiley. Modern Operating Systems, Andrew S. Tanenbaum, 3 rd edition, 2009.

Upload: others

Post on 14-Oct-2020

5 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

1

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University1

Lecture 8 Memory Management

Strategies (chapter 8)

Dr. İbrahim Körpeoğluhttp://www.cs.bilkent.edu.tr/~korpe

Bilkent University Department of Computer Engineering

CS342 Operating Systems

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University2

References

• The slides here are adapted/modified from the textbook and its slides: Operating System Concepts, Silberschatz et al., 7th & 8th editions, Wiley.

REFERENCES• Operating System Concepts, 7th and 8th editions, Silberschatz et al.

Wiley. • Modern Operating Systems, Andrew S. Tanenbaum, 3rd edition, 2009.

Page 2: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

2

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University3

Outline

• Background• Swapping • Contiguous Memory Allocation• Paging• Structure of the Page Table• Segmentation• Example: The Intel Pentium

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University4

Objectives

• To provide a detailed description of various ways of organizing memory hardware

• To discuss various memory-management techniques, including paging and segmentation

• To provide a detailed description of the Intel Pentium, which supports both pure segmentation and segmentation with paging

Page 3: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

3

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University5

Background

• Program must be brought (from disk) into memory and placed within a process for it to be run

• Main memory and registers are only storage CPU can access directly• Register access in one CPU clock (or less)• Main memory can take many cycles• Cache sits between main memory and CPU registers• Protection of memory required to ensure correct operation

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University6

Background

Main Memory

Disk

CPU

Registers

cache

program image in memory

Operating System

Process

instructions

data

Page 4: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

4

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University7

Program addresses and memory

• When code is generated (or assembly program is written) we use memory addresses for variables, functions and branching/jumping.

• Those addresses can be physical or logical memory addresses.

• In very early systems they are just physical memory addresses.

• A program has to be loaded to that address to run. – No relocation

func

func

func

variable

variable

variable

main

program

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University8

Program addresses and memory

Jump 8…

MovAdd

04812

Program

048

121620242832364044

RAM physical addresses of RAM

Jump 8…

MovAdd

Assume they are physical addresses

Page 5: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

5

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University9

Program addresses and memory

Jump 8…

MovAdd

04812

Program 1

Jump 12…

SubCmp

04812

Program 2

048

121620242832364044

RAM physical addresses of RAM

Jump 8…

MovAdd

Jump 12…

SubCmp

Pro

gram

1P

rogr

am 2

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University10

Logical address space concept

• We need logical address space concept, that is different that the physical RAM (main memory) addresses.

• A program uses logical addresses.

• Set of logical addresses used by the program is its logical address space– Logical address space can

be, for example, [0, max_address]

• Logical address space has to be mapped somewhere in phsyicalmemory

RAM

0

phy_max

Program

0

logic_max Program

logicaladdressspace

base

limit

Page 6: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

6

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University11

Binding of Instructions and Data to Memory

• Address binding of instructions and data to (physical) memory addresses can happen at three different stages– Compile time: If memory location

known a priori, absolute code can be generated; must recompile code if starting location changes

– Load time: Must generate relocatablecode if memory location is not known at compile time

– Execution time: Binding delayed until run time if the process can be moved during its execution from one memory segment to another. Need hardware support for address maps (e.g., base and limit registers)

RAM

Program

instructions

data

a program

?

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University12

Base and Limit Registers

A pair of base and limit registers define the logical address space

Page 7: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

7

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University13

Multistep Processing of a User Program

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University14

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

– Logical address – generated by the CPU; also referred to as virtual address

– 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

Page 8: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

8

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University15

Logical and physical addresses

CPU Main Memory (RAM)

phys

ical

add

ress

es

int xint y;cmp ..mov r1, M[28]mov r2, M[24]add r1, r2, r3jmp 16mov ..

2824201612080400

60565248444036322824201612080400

int xint y;cmp ..mov r1, M[28]mov r2, M[24]add r1, r2, r3jmp 16mov ..

a relocatable program

logi

cal a

ddre

sses

24 32base limit

mov r1, M[28]

PC

IRM[28+base]

M[28+24]M[52]

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University16

Memory-Management Unit (MMU)

• Hardware device that maps logical (virtual) to physical address

• In MMU scheme, the value in the relocation register is added to every address generated by a user process at the time it is sent to memory

• The user program deals with logical addresses; it never sees the realphysical addresses

Page 9: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

9

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University17

Dynamic relocation using a relocation register

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University18

Dynamic Loading

• Routine is not loaded until it is called• Better memory-space utilization; unused routine is never loaded• Useful when large amounts of code are needed to handle infrequently

occurring cases• No special support from the operating system is required implemented

through program design

Page 10: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

10

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University19

Dynamic Linking

• Linking postponed until execution time• Small piece of code, stub, used to locate the appropriate memory-

resident library routine• Stub replaces itself with the address of the routine, and executes the

routine• Operating system needed to check if routine is in processes’ memory

address• Dynamic linking is particularly useful for libraries

– Standard C library is shared library that is dynamically linked, not statically linked.

– You can link statically if you want. • System also known as shared libraries

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University20

Swapping

• A process can be swapped temporarily out of memory to a backing store, and then brought back into memory for continued execution

• Backing store – fast disk large enough to accommodate copies of all memory images for all users; must provide direct access to these memory images

• Roll out, roll in – swapping variant used for priority-based scheduling algorithms; lower-priority process is swapped out so higher-priority process can be loaded and executed

• Major part of swap time is transfer time; total transfer time is directly proportional to the amount of memory swapped

• Modified versions of swapping are found on many systems (i.e., UNIX, Linux, and Windows)

• System maintains a ready queue of ready-to-run processes which have memory images on disk

Page 11: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

11

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University21

Schematic View of Swapping

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University22

Contiguous Allocation

• Main memory is partitioned usually into two partitions:– Resident operating system, usually held in low memory with

interrupt vector– User processes then held in high memory

• Relocation registers used to protect user processes from each other, and from changing operating-system code and data– Base register contains value of smallest physical address– Limit register contains range of logical addresses – each logical

address must be less than the limit register – MMU maps logical addresses dynamically

Page 12: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

12

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University23

Basic Memory Allocation Strategies

• In this chapter, we will cover 3 basic main memory allocation strategies to processes

– 1) Contiguous allocation

– 2) Paging

– 3) Segmentation

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University24

Hardware Support for Relocation and Limit Registers

Page 13: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

13

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University25

Contiguous Allocation (Cont)

• Multiple-partition allocation– Hole – block of available memory; holes of various size are scattered

throughout memory– When a process arrives, it is allocated memory from a hole large enough

to accommodate it– 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

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University26

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

First-fit and best-fit better than worst-fit in terms of speed and storage utilization

Page 14: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

14

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University27

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 (allocation), but not being used

• Reduce external fragmentation by compaction– Shuffle memory contents to place all free memory together in one

large block– Compaction is possible only if relocation is dynamic, and is done at

execution time– I/O problem

• Latch job in memory while it is involved in I/O• Do I/O only into OS buffers

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University28

Paging

• Logical address space of a process can be noncontiguous; process is allocated physical memory whenever the latter is available– Physical address space will also be noncontiguous.

• Divide physical memory into fixed-sized blocks called frames (size is power of 2, between 512 bytes and 8,192 bytes)

• Divide logical memory into blocks of same size called pages• 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

Page 15: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

15

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University29

Paging

RAM (Physical Memory)

a frame(size = 2x)

physical memory:set of fixed sized

page frames

0

1

2

3

4

5

a program

logi

cal a

ddre

ss s

pace

0

1

2

3

45

7

6

8

9

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University30

Paging

0

1

2

3

45

7

6

8

9

RAM

0

1

2

3

4

5

a program

load

0

1

2

3

5

0 mapped_to 21 mapped_to 42 mapped_to 23 mapped_to 74 mapped_to 95 mapped_to 6 4

Page 16: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

16

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University31

Paging Model of Logical and Physical Memory

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University32

Paging Example

32 b

yte

mem

ory

page size = 4 bytes= 22

4 bit logical address

page number

offset(dispacement)

insidepage

LA = 5PA = ?

LA = 11PA = ?

LA = 13PA = ?

5 is 0101

11 is 1011

13 is 1101

PA = 11001

PA = 00111

PA = 01001

Page 17: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

17

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University33

EFGH

EFGH

ABCD

ABCD

Address Translation (Mapping)

000001010011100101110111

Logical Memory

m=3; 23 = 8 logical addressesn=2; page size = 22 = 4

page 0

page 1

0000000100100011010001010110011110001001101010111100110111101111

frame 00

frame 01

frame 10

frame 11

Physical Memory

1 bit for page#

2 bits for offset

2 bits for frame#

page table01

1110

each entry is used to map4 addresses (page size addresses)

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University34

Address Translation Scheme

• Address generated by CPU is divided into:

– Page number (p) – used as an index into a page tablewhich contains base address of each page in physical memory

– Page offset (d) – combined with base address to define the physical memory address that is sent to the memory unit

– For given logical address space 2m and page size 2n

page number page offset

p d

m - n n

Page 18: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

18

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University35

Paging Hardware

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University36

Example

001000000000010016 bit logical address

page size = 4096 bytes

(offset is 12 bits)p# offset

000 0000000000

000

111 1000101000

010

000 0000011100

011

000 1110001010

111

1514131211109876543210

110000000000100f# offset

mapping

page table

15 bit physical address

valid/invalid bitframe number

Page 19: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

19

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University37

Free Frames

Before allocation After allocation

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University38

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 (PTLR) indicates size of the 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)

• Some TLBs store address-space identifiers (ASIDs) in each TLB entry –uniquely identifies each process to provide address-space protection for that process

Page 20: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

20

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University39

Implementation of Page Table

PageTable

ofP1

PageTable

ofP2

PT1 PT2

PCB1 PCB2

KernelMemory

RAMCPU

PTBR

PTLR

PC

Program P1

Program P2

Currently running process is process 1 (P1)

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University40

TLB Associative Memory

• Associative memory – parallel search

Address translation (p, d)– If p is in associative register, get frame # out– Otherwise get frame # from page table in memory

Page # Frame #

Page 21: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

21

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University41

Paging Hardware With TLB

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University42

Effective Memory Access Time

• Associative Lookup = ε time unit• Assume memory cycle time is 1 microsecond• Hit ratio – percentage of times that a page number is found in

the associative registers; ratio related to number of associative registers

• Hit ratio = α

• Effective Access Time (EAT)EAT = (1 + ε) α + (2 + ε)(1 – α)

= 2 + ε – α

Page 22: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

22

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University43

Memory Protection

• Memory protection implemented by associating protection bit with each frame

• Valid-invalid bit attached to each entry in the page table:– “valid” indicates that the associated page is in the process’ logical

address space, and is thus a legal page– “invalid” indicates that the page is not in the process’ logical

address space

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University44

Valid (v) or Invalid (i) Bit In A Page Table

Page 23: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

23

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University45

Page Table Entry Structure

• A typical size of a page table entry can be 32 bits. Depends on the architecture

• Typically we have the following fields in a page table entry.

Page Frame NumberReserved

Caching Disabled

bit

Referenced bit

Modified(Dirty)

bit

Protection bits (read, read-write, execute)

Valid/Invalid(Present/Absent)

bit

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University46

Shared Pages

• Shared code– One copy of read-only (reentrant) code shared among processes

(i.e., text editors, compilers, window systems).– Shared code must appear in same location in the logical address

space of all processes

• Private code and data– Each process keeps a separate copy of the code and data– The pages for the private code and data can appear anywhere in

the logical address space

Page 24: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

24

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University47

Shared Pages Example

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University48

Structure of the Page Table

• Hierarchical Paging

• Hashed Page Tables

• Inverted Page Tables

Page 25: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

25

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University49

Hierarchical Page Tables

• Break up the logical address space into multiple page tables

• A simple technique is a two-level page table

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University50

Two-Level Paging Scheme

Page 26: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

26

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University51

Two-Level Paging Scheme

0100010101100111010001010110011110001001101010111100110111101111

single level Page table

00011011

00011011

00011011

00011011

00011011

two-level page table

offsetlogical address

offsetlogical address

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University52

Two-Level Paging Example

• A logical address (on 32-bit machine with 1K page size) is divided into:– a page number consisting of 22 bits– a page offset consisting of 10 bits

• Since the page table is paged, the page number is further divided into:– a 12-bit page number – a 10-bit page offset

• Thus, a logical address is as follows:

where pi is an index into the outer page table, and p2 is the displacement within the page of the outer page table

page number page offset

p1 p2 d

12 10 10

Page 27: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

27

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University53

Address-Translation Scheme

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University54

Example: two level page table need

logical address length = 32 bitspagesize = 4096 byteslogical address division: 10, 10, 12

used

used

unused

12 MB

8 MB

232 bytes = 4 GBWhat is total size of two

level page table if entry size

is 4 bytes?logical address space size

(only partially used)

Page 28: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

28

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University55

Example: two level page table need

10 10 12

210

entries

210

entries

210

entriesTop level page table

a second level pagetable

……

Each entry of a secondlevel page table translates

a page# to a frame#;i.e. each entry maps a page

which is 4096 bytes

There are 1024 entries In a second level page table

Hence, a second levelpage table can map

210 * 212 = 222 = 4 MB of logical address space

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University56

Example: two level page table need

12 MB

8 MB

232 bytes = 4 GB

12 MB / 4 MB = 3 second level page tables required to map 12 MB

of logical memory

8 MB / 4 MB = 2 second level page tables required to map8 MB of logical memory

Total = 3 + 2 = 5 second levelpage tables required

Page 29: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

29

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University57

Example: two level page table need

12 MB

8 MB

232 bytes= 4 GB

….unused

210

entries

210

entries

210

entries

210

entries

210

entries

2nd level page tables

top level page table

210

entries

1K * 4Bytes +5 * 1K * 4Bytes

= 24 KBspace needed

to holdthe page

tables of theprocess

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University58

Three-level Paging Scheme

Page 30: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

30

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University59

Hashed Page Tables

• Common in address spaces > 32 bits

• The virtual page number is hashed into a page table– This page table contains a chain of elements hashing to the same

location

• Virtual page numbers are compared in this chain searching for a match– If a match is found, the corresponding physical frame is extracted

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University60

Hashed Page Table

Page 31: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

31

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University61

Inverted Page Table

• One entry for each real page of memory• Entry consists of the virtual address of the page stored in that real

memory location, with information about the process that owns that page

• Decreases memory needed to store each page table, but increases time needed to search the table when a page reference occurs

• Use hash table to limit the search to one — or at most a few — page-table entries

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University62

Inverted Page Table Architecture

Page 32: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

32

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University63

Inverted Page Table with Hashing

frame 0frame 1frame 2frame 3frame 4

frame m-2frame m-1

Physical Memory of m Frames

01234

m-2m-1

Inverted Page Table(m entries)

indexed by hash

on virtual page#

virtualpage# frame#

process#

pid v. page# Frame#table entry format

nextp

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University64

Inverted Page Table with Hashing

veryhuge virtual

address space

(n pages)

HashedInverted

PageTable

(m entries)

Physical Memory(m frames)hash(p)

f

p: a page number (0 <= p <= n-1)f: frame containing the page

0 <= hash (p) <= m-10

n-1

0

m-1

0

m-1

n >> m

Page 33: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

33

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University65

Segmentation

• Memory-management scheme that supports user view of memory

• A program is a collection of segments– A segment is a logical unit such as:

main programprocedure functionmethodobjectlocal variables, global variablescommon blockstacksymbol tablearrays

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University66

User’s View of a Program

Page 34: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

34

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University67

Logical View of Segmentation

1

3

2

4

1

4

2

3

user space physical memory space

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University68

Segmentation Architecture

• Logical address consists of a two tuple:<segment-number, offset>,

• Segment table – maps two-dimensional logical addresses; each table entry has:– base – contains the starting physical address where the

segments reside in memory– limit – specifies the length of the segment

• Segment-table base register (STBR) points to the segment table’s location in memory

• Segment-table length register (STLR) indicates number of segments used by a program;

segment number s is legal if s < STLR

Page 35: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

35

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University69

Segmentation Hardware

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University70

Segmentation Architecture (Cont.)

• Protection– With each entry in segment table associate:

• validation bit = 0 ⇒ illegal segment• read/write/execute privileges

• Protection bits associated with segments; code sharing occurs at segment level– Code segment: READONLY; sharable; …– Data segment: RED-WRITE; not-sharable

• Since segments vary in length, memory allocation is a dynamic storage-allocation problem

Page 36: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

36

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University71

Example of Segmentation

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University72

Example: The Intel Pentium• Supports both segmentation and segmentation with paging

• CPU generates logical address (<segment#, offset> pairs)– Given to segmentation unit

• Which produces linear addresses

– Linear address given to paging unit• Which generates physical address in main memory• Paging units form equivalent of MMU

Page 37: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

37

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University73

Logical to Physical Address Translation in Pentium

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University74

Intel Pentium Segmentation

base address limit

base

base+offset

Page 38: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

38

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University75

Pentium Paging Architecture

• Pentium architecture allows a page size of either 4 KB or 4 MB.

• For 4 KB pages, two-level paging scheme is used in a 32 bit machine– Address division: <10, 10, 12> bits

• For 4 MB pages, we can skip the inner page tables (secondary page table). A top level page table entry will point directly to a 4 MB page.

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University76

Pentium Paging Architecture

Page 39: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

39

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University77

Linux on Pentium: Segmentation

• Linux is designed to run on a lot of hardware platforms: Pentium, Arm, Motorola, Sparc, MIPS, …

• Therefore it does not rely on segmentation and makes minimal use of segmentation in Pentium.

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University78

Linux on Pentium: Paging

• Linux can run both on 32 bit and 64 bit machines. – Therefore having just two level paging is not enough. – Linux adapted a three level paging that can be used both in 32bit and 64bit

machines.

• A linear address in Linux is broken into 4 parts: – P1: global directory– P2: middle directory– P3: page table– P4: offset

• Number of bits in each part depends on the architecture

Page 40: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

40

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University79

Linear Address in Linux

• In a 64 bit machine (very large address space), we use all 4 parts

• In a 32 bit Intel machine, that uses two-level paging, we ignore the middle directory (its size is 0), and use 3 parts.

Broken into four parts:

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University80

Three-level Paging in Linux

Page 41: Lecture 8 Memory Management Strategies (chapter 8)€¦ · Dr. İbrahim Körpeoğlu ... • Background • Swapping • Contiguous Memory Allocation • Paging • Structure of the

41

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University81

Linux Paging: some kernel structures

struct mm_struct{

…pgd_t *pgd;….

}

struct task_struct{

……struct mm_struct *mm;

}the PCB objectof a process X

top level page table

of process X(calledpage global

directory)

mm objectof process X

(keeps memory management

related information)

CS342 Operating Systems - Spring 2009 İbrahim Körpeoğlu, Bilkent University82

End of Lecture