24
1 Lecture 5: Pipelining Basics • Biggest contributors to performance: clock speed, parallelism • Today: basic pipelining implementation (Sections A.1-A.3)

Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

  • Upload
    others

  • View
    2

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

1

Lecture 5: Pipelining Basics

• Biggest contributors to performance: clock speed, parallelism

• Today: basic pipelining implementation (Sections A.1-A.3)

Page 2: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

2

The Assembly Line

A

Start and finish a job before moving to the next

Time

Jobs

Break the job into smaller stagesB C

A B C

A B C

A B C

Unpipelined

Pipelined

Page 3: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

3

Performance Improvements?

• Does it take longer to finish each individual job?

• Does it take shorter to finish a series of jobs?

• What assumptions were made while answering thesequestions?

• Is a 10-stage pipeline better than a 5-stage pipeline?

Page 4: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

4

Quantitative Effects

• As a result of pipelining:� Time in ns per instruction goes up� Number of cycles per instruction goes up (note the

increase in clock speed)� Total execution time goes down, resulting in lower

time per instruction� Average cycles per instruction increases slightly� Under ideal conditions, speedup

= ratio of elapsed times between successive instructioncompletions

= number of pipeline stages = increase in clock speed

Page 5: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

5

A 5-Stage Pipeline

Page 6: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

6

A 5-Stage Pipeline

Use the PC to access the I-cache and increment PC by 4

Page 7: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

7

A 5-Stage Pipeline

Read registers, compare registers, compute branch target; for now, assumebranches take 2 cyc (there is enough work that branches can easily take more)

Page 8: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

8

A 5-Stage Pipeline

ALU computation, effective address computation for load/store

Page 9: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

9

A 5-Stage Pipeline

Memory access to/from data cache, stores finish in 4 cycles

Page 10: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

10

A 5-Stage Pipeline

Write result of ALU computation or load into register file

Page 11: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

11

Conflicts/Problems

• I-cache and D-cache are accessed in the same cycle – ithelps to implement them separately

• Registers are read and written in the same cycle – easy todeal with if register read/write time equals cycle time/2(else, use bypassing)

• Branch target changes only at the end of the second stage-- what do you do in the meantime?

• Data between stages get latched into registers (overheadthat increases latency per instruction)

Page 12: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

12

Hazards

• Structural hazards: different instructions in different stages(or the same stage) conflicting for the same resource

• Data hazards: an instruction cannot continue because itneeds a value that has not yet been generated by anearlier instruction

• Control hazard: fetch cannot continue because it doesnot know the outcome of an earlier branch – special caseof a data hazard – separate category because they aretreated in different ways

Page 13: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

13

Structural Hazards

• Example: a unified instruction and data cache �stage 4 (MEM) and stage 1 (IF) can never coincide

• The later instruction and all its successors are delayeduntil a cycle is found when the resource is free � theseare pipeline bubbles

• Structural hazards are easy to eliminate – increase thenumber of resources (for example, implement a separateinstruction and data cache)

Page 14: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

14

Data Hazards

Example:DADD R1, R2, R3DSUB R4, R1, R5AND R6, R1, R7OR R8, R1, R9XOR R10, R1, R11

Page 15: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

15

Bypassing

• Some data hazard stalls can be eliminated: bypassing

Page 16: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

16

Bypassing Example 2

DADD R1, R2, R3LD R4, 0(R1)SD R4, 12(R1)

Page 17: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

17

Data Hazard Stalls

Not all data hazards can be eliminated!Example:LD R1, 0(R2)DSUB R4, R1, R5AND R6, R1, R7OR R8, R1, R9

Pipeline interlock: hardware that detects this condition and stalls the instruction

Page 18: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

18

Control Hazards

• Simple techniques to handle control hazard stalls:� for every branch, introduce a stall cycle (note: every

6th instruction is a branch!)� assume the branch is not taken and start fetching the

next instruction – if the branch is taken, need hardwareto cancel the effect of the wrong-path instruction

� fetch the next instruction (branch delay slot) andexecute it anyway – if the instruction turns out to beon the correct path, useful work was done – if theinstruction turns out to be on the wrong path,hopefully program state is not lost

Page 19: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

19

Branch Delay Slots

• Any ideas on how to deal with data hazards?

Page 20: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

20

Slowdowns from Stalls

• Perfect pipelining with no hazards � an instructioncompletes every cycle (total cycles ~ num instructions)� speedup = increase in clock speed = num pipeline stages

• With hazards and stalls, some cycles (= stall time) go byduring which no instruction completes, and then the stalledinstruction completes

• Total cycles = number of instructions + stall cycles

• Slowdown because of stalls = 1/ (1 + stall cycles per instr)

Page 21: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

21

Pipeline Implementation

• Signals for the muxes have to be generated – some of this can happen during ID• Need look-up tables to identify situations that merit bypassing/stalling – the

number of inputs to the muxes goes up

Page 22: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

22

No action requiredLD R1, 45(R2)

DADD R5, R6, R7DSUB R8, R6, R7OR R9, R1, R7

Dependence with accesses in order

Detect use of R1 during ID of DSUB and set mux control signal that accepts

result from bypass path

LD R1, 45(R2)

DADD R5, R6, R7DSUB R8, R1, R7OR R9, R6, R7

Dependence overcome by forwarding

Detect use of R1 during ID of DADD and stall

LD R1, 45(R2)

DADD R5, R1, R7DSUB R8, R6, R7OR R9, R6, R7

Dependence requiring stall

No hazardsLD R1, 45(R2)

DADD R5, R6, R7DSUB R8, R6, R7OR R9, R6, R7

No dependence

ActionExample codeSituation

Detecting Control Signals

Page 23: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

23

Summary

• Basic 5-stage pipeline

• Structural and data hazards: bypassing, stalling

• Control hazards: branch delay slots

• Next class: difficulties in pipelining, long latency operations,scoreboarding

Page 24: Lecture 5: Pipelining Basicscs6810/pres/6810-05.pdf · 2008. 8. 26. · stage 4 (MEM) and stage 1 (IF) can never coincide • The later instruction and all its successors are delayed

24

Title

• Bullet