Top Banner
s.1 Review: The Memory Hierarchy Increasin g distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of the memory at each level Inclusivewhat is in L1$ is a subset of what is in L2$ is a subset of what is in MM that is a subset of is in SM 4-8 bytes (word) 1 to 4 blocks 1,024+ bytes (disk sector = page) 8-32 bytes (block) Take advantage of the principle of locality to present the user with as much memory as is available in the cheapest technology at the speed offered by the fastest technology
20

S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

Dec 20, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.1

Review: The Memory Hierarchy

Increasing distance from the processor in access time

L1$

L2$

Main Memory

Secondary Memory

Processor

(Relative) size of the memory at each level

Inclusive– what is in L1$ is a subset of what is in L2$ is a subset of what is in MM that is a subset of is in SM

4-8 bytes (word)

1 to 4 blocks

1,024+ bytes (disk sector = page)

8-32 bytes (block)

Take advantage of the principle of locality to present the user with as much memory as is available in the cheapest technology at the speed offered by the fastest technology

Page 2: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.2

Virtual Memory Use main memory as a “cache” for secondary memory

Allows efficient and safe sharing of memory among multiple programs

Provides the ability to easily run programs larger than the size of physical memory

Simplifies loading a program for execution by providing for code relocation (i.e., the code can be loaded anywhere in main memory)

What makes it work? – again the Principle of Locality A program is likely to access a relatively small portion of its

address space during any period of time

Each program is compiled into its own address space – a “virtual” address space

During run-time each virtual address must be translated to a physical address (an address in main memory)

Page 3: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.3

Two Programs Sharing Physical Memory

Program 1virtual address space

main memory

A program’s address space is divided into pages (all one fixed size) or segments (variable sizes) The starting location of each page (either in main memory or in

secondary memory) is contained in the program’s page table

Program 2virtual address space

Page 4: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.4

$sp

$gp

0040 0000 hex

0

1000 0000 hex

Text

Static data

Dynamic data

Stack7fff ffff hex

1000 8000hex

pc

Reserved

Recall: Each MIPS program has an address space of size 232 bytes

Page 5: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.5

Address Translation

Virtual Address (VA)

Page offsetVirtual page number

31 30 . . . 12 11 . . . 0

Page offsetPhysical page number

Physical Address (PA)29 . . . 12 11 0

Translation

So each memory request first requires an address translation from the virtual space to the physical space A virtual memory miss (i.e., when the page is not in physical

memory) is called a page fault

A virtual address is translated to a physical address by a combination of hardware and software

Page 6: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.6

Page Tables

Page offsetVirtual page number

Virtual address

Page offsetPhysical page number

Physical address

Physical page numberValid

If 0 then page is notpresent in memory

Page table register

Page table

20 12

18

31 30 29 28 27 15 14 13 12 11 10 9 8 3 2 1 0

29 28 27 15 14 13 12 11 10 9 8 3 2 1 0

Page 7: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.7

Address Translation Mechanisms

Physical pagebase addr

Main memory

Disk storage

Virtual page #

V11111101010

Page Table(in main memory)

Offset

Physical page #

Offset

Page 8: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.8

Virtual Addressing with a Cache

Thus it takes an extra memory access to translate a VA to a PA

CPUTrans-lation

Cache MainMemory

VA PA miss

hitdata

This makes memory (cache) accesses very expensive (if every access was really two accesses)

The hardware fix is to use a Translation Lookaside Buffer (TLB) – a small cache that keeps track of recently used address mappings to avoid having to do a page table lookup

Page 9: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.9

Making Address Translation Fast

Physical pagebase addr

Main memory

Disk storage

Virtual page #

V11111101010

11101

TagPhysical page

base addrV

TLB

Page Table(in physical memory)

Page 10: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.10

Translation Lookaside Buffers (TLBs)

Just like any other cache, the TLB can be organized as fully associative, set associative, or direct mapped

V Virtual Page # Physical Page # Dirty Ref Access

TLB access time is typically smaller than cache access time (because TLBs are much smaller than caches)

TLBs are typically not more than 128 to 256 entries even on high end machines

Page 11: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.11

A TLB in the Memory Hierarchy

A TLB miss – is it a page fault or merely a TLB miss? If the page is loaded into main memory, then the TLB miss can be

handled (in hardware or software) by loading the translation information from the page table into the TLB

- Takes 10’s of cycles to find and load the translation info into the TLB

If the page is not in main memory, then it’s a true page fault- Takes 1,000,000’s of cycles to service a page fault

TLB misses are much more frequent than true page faults

CPUTLB

LookupCache Main

Memory

VA PA miss

hit

data

Trans-lation

hit

miss

¾ t¼ t

Page 12: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.12

Some Virtual Memory Design Parameters

Paged VM TLBs

Total size 16,000 to 250,000 words

16 to 512 entries

Total size (KB) 250,000 to 1,000,000,000

0.25 to 16

Block size (B) 4000 to 64,000 4 to 32

Miss penalty (clocks) 10,000,000 to 100,000,000

10 to 1000

Miss rates 0.00001% to 0.0001%

0.01% to 2%

Page 13: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.13

Two Machines’ Cache Parameters

Intel P4 AMD Opteron

TLB organization 1 TLB for instructions and 1TLB for data

Both 4-way set associative

Both use ~LRU replacement

Both have 128 entries

TLB misses handled in hardware

2 TLBs for instructions and 2 TLBs for data

Both L1 TLBs fully associative with ~LRU replacement

Both L2 TLBs are 4-way set associative with round-robin LRU

Both L1 TLBs have 40 entries

Both L2 TLBs have 512 entries

TBL misses handled in hardware

Page 14: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.15

TLB Event Combinations

TLB Page Table

Cache Possible? Under what circumstances?

Hit Hit Hit

Hit Hit Miss

Miss Hit Hit

Miss Hit Miss

Miss Miss Miss

Hit Miss Miss/

Hit

Miss Miss Hit

Yes – what we want!

Yes – although the page table is not checked if the TLB hits

Yes – TLB miss, PA in page table

Yes – TLB miss, PA in page table, but datanot in cache

Yes – page fault

Impossible – TLB translation not possible ifpage is not present in memory

Impossible – data not allowed in cache if page is not in memory

Page 15: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.16

Reducing Translation Time Can overlap the cache access with the TLB access

Works when the high order bits of the VA are used to access the TLB while the low order bits are used as index into cache

Tag Data

=

Tag Data

=

Cache Hit Desired word

VA TagPATag

TLB Hit

2-way Associative Cache Index

PA Tag

Block offset

Page 16: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.17

Why Not a Virtually Addressed Cache? A virtually addressed cache would only require address

translation on cache misses

data

CPUTrans-lation

Cache

MainMemory

VA

hit

PA

but Two different virtual addresses can map to the same physical

address (when processes are sharing data), i.e., two different cache entries hold data for the same physical address – synonyms

- Must update all cache entries with the same physical address or the memory becomes inconsistent

Page 17: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.18

TLBs and caches

Yes

Deliver datato the CPU

W rite?

Try to read datafrom cache

W rite data into cache,update the tag, and put

the data and the addressinto the write buffer

Cache hit?Cache miss stall

TLB hit?

TLB access

Virtual address

TLB missexception

No

YesNo

YesNo

W rite accessbit on?

YesNo

Write protectionexception

Physical address

Page 18: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.20

The Hardware/Software Boundary

What parts of the virtual to physical address translation is done by or assisted by the hardware?

Translation Lookaside Buffer (TLB) that caches the recent translations

- TLB access time is part of the cache hit time

- May allot an extra stage in the pipeline for TLB access

Page table storage, fault detection and updating- Page faults result in interrupts (precise) that are then handled by

the OS

- Hardware must support (i.e., update appropriately) Dirty and Reference bits (e.g., ~LRU) in the Page Tables

Disk placement- Bootstrap (e.g., out of disk sector 0) so the system can service a

limited number of page faults before the OS is even loaded

Page 19: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.21

Summary

The Principle of Locality: Program likely to access a relatively small portion of the

address space at any instant of time.- Temporal Locality: Locality in Time

- Spatial Locality: Locality in Space

Caches, TLBs, Virtual Memory all understood by examining how they deal with the four questions1. Where can block be placed?

2. How is block found?

3. What block is replaced on miss?

4. How are writes handled? Page tables map virtual address to physical address

TLBs are important for fast translation

Page 20: S.1 Review: The Memory Hierarchy Increasing distance from the processor in access time L1$ L2$ Main Memory Secondary Memory Processor (Relative) size of.

s.22

Processor speeds continue to increase very fast— much faster than either DRAM or disk access times

Design challenge: dealing with this growing disparity

Trends: synchronous SRAMs (provide a burst of data) redesign DRAM chips to provide higher bandwidth or processing restructure code to increase locality use prefetching (make cache visible to ISA)

Some Issues