38
(C) 2003 Mulitfacet Project University of Wisconsin-Madison Revisiting “Multiprocessors Should Support Simple Memory Consistency Models” Mark D. Hill Multifacet Project (www.cs.wisc.edu/multifacet) Computer Sciences Department University of Wisconsin—Madison October 2003

Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Embed Size (px)

DESCRIPTION

Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”. Mark D. Hill Multifacet Project (www.cs.wisc.edu/multifacet) Computer Sciences Department University of Wisconsin—Madison October 2003. C w/ Posix. Java w/ Threads. HPF. SW. SW. SW. Multithreaded Hardware. - PowerPoint PPT Presentation

Citation preview

Page 1: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

(C) 2003 Mulitfacet Project University of Wisconsin-Madison

Revisiting “Multiprocessors Should Support Simple

Memory Consistency Models”

Mark D. Hill

Multifacet Project (www.cs.wisc.edu/multifacet)

Computer Sciences Department

University of Wisconsin—Madison

October 2003

Page 2: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project2 Dagstuhl 10/2003

High- vs. Low-Level Memory Model Interface

C w/ Posix Java w/ Threads HPF

SW SW SW

Multithreaded Hardware

Most of This Workshop

ThisTalk

Relaxed HL Interface Relaxed HW Interface

Page 3: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project3 Dagstuhl 10/2003

Outline

• Subroutine Call– Value Prediction & Memory Model Subtleties

• Review Original Paper [Computer, Dec. 1998]– Commercial Memory Model Classes– Performance Similarities & Differences– Predictions & Recommendation

• Revisit in 2003– Revisiting 1998 Predictions– “SC + ILP = RC?” Paper– Revisiting Commercial Memory Model Classes– Analysis, Predictions. & Recommendation

Page 4: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

(C) 2003 Mulitfacet Project University of Wisconsin-Madison

Correctly Implementing Value Prediction in Microprocessors that Support Multithreading or Multiprocessing

Milo M.K. Martin, Daniel J. Sorin, Harold W. Cain,

Mark D. Hill, and Mikko H. Lipasti

Computer Sciences Department

Department of Electrical and Computer Engineering

University of Wisconsin—Madison

Page 5: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project6 Dagstuhl 10/2003

Value Prediction

• Predict the value of an instruction – Speculatively execute with this value– Later verify that prediction was correct

• Example: Value predict a load that misses in cache– Execute instructions dependent on value-predicted load– Verify the predicted value when the load data arrives

• Without concurrency: simple verification is OK– Compare actual value to predicted

• Value prediction literature has ignored concurrency

Page 6: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project7 Dagstuhl 10/2003

Informal Example of Problem, part 1

• Student #2 predicts grades are on bulletin board B• Based on prediction, assumes score is 60

Grades for Class

Student ID score

1 75

2 60

3 85

Bulletin Board B

Page 7: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project8 Dagstuhl 10/2003

Informal Example of Problem, part 2

• Professor now posts actual grades for this class– Student #2 actually got a score of 80

• Announces to students that grades are on board B

Grades for Class

Student ID score

1 75 50

2 60 80

3 85 70

Bulletin Board B

Page 8: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project9 Dagstuhl 10/2003

Informal Example of Problem, part 3

• Student #2 sees prof’s announcement and says,

“ I made the right prediction (bulletin board B), and my score is 60”!

• Actually, Student #2’s score is 80

• What went wrong here?– Intuition: predicted value from future

• Problem is concurrency– Interaction between student and professor– Just like multiple threads, processors, or devices

• E.g., SMT, SMP, CMP

Page 9: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project10 Dagstuhl 10/2003

Linked List Example of Problem (initial state)

head A

null

42

60

nullA.data

B.data

A.next

B.next

• Linked list with single writer and single reader

• No synchronization (e.g., locks) needed

Initial state of listUninitialized node

Page 10: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project11 Dagstuhl 10/2003

Linked List Example of Problem (Writer)

head B

null

42

80

A

• Writer sets up node B and inserts it into list

A.data

B.data

A.next

B.next

Code For Writer Thread

W1: store mem[B.data] <- 80

W2: load reg0 <- mem[Head]

W3: store mem[B.next] <- reg0

W4: store mem[Head] <- B

Ins

ert

{Se

tup

node

Page 11: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project12 Dagstuhl 10/2003

Linked List Example of Problem (Reader)

head ?

null

42

60

null

• Reader cache misses on head and value predicts head=B.

• Cache hits on B.data and reads 60.

• Later “verifies” prediction of B. Is this execution legal?

A.data

B.data

A.next

B.next

Predict head=BCode For Reader Thread

R1: load reg1 <- mem[Head] = B

R2: load reg2 <- mem[reg1] = 60

Page 12: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project13 Dagstuhl 10/2003

Why This Execution Violates SC

• Sequential Consistency– Simplest memory consistency model– Must exist total order of all operations– Total order must respect program order at each processor

• Our example execution has a cycle– No total order exists

Page 13: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project14 Dagstuhl 10/2003

Trying to Find a Total Order

• What orderings are enforced in this example?

Code For Writer Thread

W1: store mem[B.data] <- 80

W2: load reg0 <- mem[Head]

W3: store mem[B.next] <- reg0

W4: store mem[Head] <- B

Code For Reader Thread

R1: load reg1 <- mem[Head]

R2: load reg2 <- mem[reg1]

Setu

p no

de I

nser

t

{

Setu

p no

de

Page 14: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project15 Dagstuhl 10/2003

Program Order

Code For Writer Thread

W1: store mem[B.data] <- 80

W2: load reg0 <- mem[Head]

W3: store mem[B.next] <- reg0

W4: store mem[Head] <- B

Code For Reader Thread

R1: load reg1 <- mem[Head]

R2: load reg2 <- mem[reg1]

Setu

p no

de I

nser

t

{

• Must enforce program order

Page 15: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project16 Dagstuhl 10/2003

Data Order

• If we predict that R1 returns the value B, we can violate SC

Code For Writer Thread

W1: store mem[B.data] <- 80

W2: load reg0 <- mem[Head]

W3: store mem[B.next] <- reg0

W4: store mem[Head] <- B

Code For Reader Thread

R1: load reg1 <- mem[Head] = B

R2: load reg2 <- mem[reg1] = 60

Setu

p no

de I

nser

t

{

Page 16: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project17 Dagstuhl 10/2003

Value Prediction and Sequential Consistency

• Key: value prediction reorders dependent operations– Specifically, read-to-read data dependence order

• Execute dependent operations out of program order

• Applies to almost all consistency models– Models that enforce data dependence order

• Must detect when this happens and recover• Similar to other optimizations that complicate SC

Page 17: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project18 Dagstuhl 10/2003

How to Fix SC Implementations

• Address-based detection of violations– Student watches board B between prediction and verification– Like existing techniques for out-of-order SC processors– Track stores from other threads – If address matches speculative load, possible violation

• Value-based detection of violations– Student checks grade again at verification– Also an existing idea– Replay all speculative instructions at commit– Can be done with dynamic verification (e.g., DIVA)

Page 18: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project19 Dagstuhl 10/2003

Relaxed Consistency Models

• Relax some orderings between reads and writes• Allows HW/SW optimizations• Software must add memory barriers to get ordering• Intuition: should make value prediction easier

• Our intuition is wrong …

Page 19: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project20 Dagstuhl 10/2003

Weakly Ordered Consistency Models

• Relax orderings unless memory barrier between• Examples:

– SPARC RMO– IA-64– PowerPC– Alpha

• Subtle point that affects value prediction– Does model enforce data dependence order?

Page 20: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project21 Dagstuhl 10/2003

Relaxed Models that Enforce Data Dependence

• Examples: SPARC RMO, PowerPC, and IA-64

Code For Writer Thread

W1: store mem[B.data] <- 80

W2: load reg0 <- mem[Head]

W3: store mem[B.next] <- reg0

W3b: Memory Barrier

W4: store mem[Head] <- B

Code For Reader Thread

R1: load reg1 <- mem[Head]

R2: load reg2 <- mem[reg1]

Memory barrier orders W4 after W1, W2, W3

Ins

ert

{

Setu

p no

de

Page 21: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project22 Dagstuhl 10/2003

Violating Consistency Model

• Simple value prediction can break RMO, PPC, IA-64

• How? By relaxing dependence order between reads

• Same issues as for SC and PC

Page 22: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project23 Dagstuhl 10/2003

Solutions to Problem

1. Don’t enforce dependence order (add memory barriers)– Changes architecture– Breaks backward compatibility– Not practical

2. Enforce SC or PC– Potential performance loss

3. More efficient solutions possible

Page 23: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project24 Dagstuhl 10/2003

Models that Don’t Enforce Data Dependence

• Example: Alpha• Requires extra memory barrier (between R1 & R2)

Code For Writer Thread

W1: store mem[B.data] <- 80

W2: load reg0 <- mem[Head]

W3: store mem[B.next] <- reg0

W3b: Memory Barrier

W4: store mem[Head] <- B

Code For Reader Thread

R1: load reg1 <- mem[Head]

R1b: Memory Barrier

R2: load reg2 <- mem[reg1]

Ins

ert

{

Setu

p no

de

Page 24: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project25 Dagstuhl 10/2003

Issues in Not Enforcing Data Dependence

• Works correctly with value prediction– No detection mechanism necessary– Do not need to add any more memory barriers for VP

• Additional memory barriers– Non-intuitive locations– Added burden on programmer

Page 25: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project26 Dagstuhl 10/2003

Summary of Memory Model Issues

SC RelaxedModels

Weakly OrderedModels

PC

IA-32SPARC TSO

Enforce Data Dependence

NOT EnforceData Dependence

IA-64SPARC RMO

Alpha

Page 26: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project27 Dagstuhl 10/2003

Conclusions

• Naïve value prediction can violate consistency• Subtle issues for each class of memory model

• Solutions for SC & PC require detection mechanism– Use existing mechanisms for enhancing SC performance

• Solutions for more relaxed memory models– Enforce stronger model

Page 27: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project28 Dagstuhl 10/2003

Outline

• Subroutine Call– Value Prediction & Memory Model Subtleties

• Review Original Paper [Computer, Dec. 1998]– Commercial Memory Model Classes– Performance Similarities & Differences– Predictions & Recommendation

• Revisit in 2003– Revisiting 1998 Predictions– “SC + ILP = RC?” Paper– Revisiting Commercial Memory Model Classes– Analysis, Predictions. & Recommendation

Page 28: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project29 Dagstuhl 10/2003

1998 Commercial Memory Model Classes

• Sequential Consistency (SC)– MIPS/SGI– HP PA-RISC

• Processor Consistency (PC)– Relax writeread dependencies– Intel x86 (a.k.a., IA-32)– Sun TSO

• Relaxed Consistency (RC)– Relax all dependencies, but add fences– DEC Alpha– IBM PowerPC– Sun RMO (no implementations)

Page 29: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project30 Dagstuhl 10/2003

With All Models, Hardware Can

• Use– Coherent Caches– Non-binding prefetches – Simultaneous & vertical multithreading

• With Speculative Execution– Allow “expected” misses to prefetch– Speculatively perform all reads & writes

• What’s different?

Page 30: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project31 Dagstuhl 10/2003

Performance Difference

• RC/PC/SC can do same optimzations

• But RC/PC can sometimes commit early

• While SC can lose performance– Undoing execution on (suspected) model violation– Stalls due to full instruction windows, etc.

• Performance over SC [Ranganathan et al. 1997]– 11% for PC– 20% for RC– Closer if SC uses their Speculative Retirement

Page 31: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project32 Dagstuhl 10/2003

1998 Predictions & Recommendation

• My Performance Gap Predictions + Longer (relative) memory latency- Larger caches, bigger windows, etc.- New inventions

- My Recommendation- Implement SC (or PC)- Keep interface simple- Innovate in implementation

Page 32: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project33 Dagstuhl 10/2003

Outline

• Subroutine Call– Value Prediction & Memory Model Subtleties

• Review Original Paper [Computer, Dec. 1998]– Commercial Memory Model Classes– Performance Similarities & Differences– Predictions & Recommendation

• Revisit in 2003– Revisiting 1998 Predictions– “SC + ILP = RC?” Paper– Revisiting Commercial Memory Model Classes– Analysis, Predictions. & Recommendation

Page 33: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project34 Dagstuhl 10/2003

Revisiting Predictions

• Evolutionary Predictions + Longer (relative) memory latency- Larger caches- Larger instruction windows.

• New Inventions - Run-ahead & Helper threads- SMT commercialized- Chip Multiprocessors (CMPs)- SC + ILP = RC?

Wonderful prefetchingMany threads per processorMany threads per chipCan close gap

Relaxed HW memory model offers little more performance

Happened, but on-balance made gap bigger

Page 34: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project36 Dagstuhl 10/2003

2003 Commercial Memory Model Classes

• Sequential Consistency (SC)– MIPS/SGI– HP PA-RISC

• Processor Consistency (PC)– Relax writeread dependencies– Intel x86 (a.k.a., IA-32)– Sun TSO

• Relaxed Consistency (RC)– Relax all dependencies, but add fences– DEC Alpha– IBM PowerPC– Sun RMO (no implementations)

+ Intel IPF (IA-64)

Page 35: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project37 Dagstuhl 10/2003

Current Analysis

• Architectures changed mostly for business reasons

• No one substantially changed model class

• Clearly, all three classes work– E.g., generating fences not too bad

Page 36: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project38 Dagstuhl 10/2003

Current Options

• Assume Relaxed HLL model Three HW Model Options

• Expose SC/PC & Implement SC/PC– Add SC/PC mechanisms & speculate! (somewhat complex)– HW implementers & verifiers know what correct is

• Expose Relaxed & Implement Relaxed – Many HW implementers & verifiers don’t understand relaxed– More performance?– Deep speculation require HW to pass fences

• Run-ahead & throw all away?• Speculative execution with SC/PC-like mechanisms?

• Expose Relaxed & Implement SC/PC– Implement fences as no-ops– Use SC/PC mechanisms, speculate!– HW implementers & verifiers know what correct is

Page 37: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project39 Dagstuhl 10/2003

Predictions & Recommendation

Predictions– Longer (relative) memory latency– Only partially compensated by caches, etc.– Will speculate further without larger windows (run-ahead)– Will need to speculate past synchronization & fences– Use CMPs to get many outstanding misses per chip

Recommendations (unrepentant )- Implement SC (or PC)- Keep interface simple- Innovate in implementation

Page 38: Revisiting “Multiprocessors Should Support Simple Memory Consistency Models”

Wisconsin Multifacet Project40 Dagstuhl 10/2003

Outline

• Subroutine Call– Value Prediction & Memory Model Subtleties

• Review Original Paper [Computer, Dec. 1998]– High- vs. Low-Level Memory Models– Commercial Memory Model Classes– Performance Similarities & Differences– Predictions & Recommendation

• Revisit in 2003– Revisiting 1998 Predictions– “SC + ILP = RC?” Paper– Revisiting Commercial Memory Model Classes– Analysis, Predictions. & Recommendation