+ All Categories
Home > Documents > Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture...

Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture...

Date post: 14-Jul-2020
Category:
Upload: others
View: 1 times
Download: 0 times
Share this document with a friend
38
PIPE: Complete Pipelined Y86-64 Implementation Jin-Soo Kim ([email protected]) Systems Software & Architecture Lab. Seoul National University Fall 2018
Transcript
Page 1: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

PIPE: Complete Pipelined

Y86-64 Implementation

Jin-Soo Kim([email protected])

Systems Software &Architecture Lab.

Seoul National University

Fall 2018

Page 2: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 2

▪ Data hazards

• Instruction having register R as source follows shortly after instruction having

register R as destination

• Common condition, don’t want to slow down pipeline

▪ Control hazards

• Mispredicted conditional branch

– Our design predicts all branches as being taken

– Naïve pipeline executes two extra instructions

• Getting return address for ret instruction

– Naïve pipeline executes three extra instructions

▪ Making sure it really works

• What if multiple special cases happen simultaneously?

Page 3: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 3

▪ No nop

(Both %rax and %rdx are initialized to 0)

0x000: irmovq $9,%rdx

0x00a: irmovq $3,%rax

0x014: addq %rdx,%rax

0x016: halt

Cycle 4

Error

E

D

valA R[%rdx] = 0valB R[%rax] = 0

M

M_valE = 9M_dstE = %rdx

e_valE 0 + 3 = 3E_dstE = %rax

1 2 3 4 5 6 7 8

F D E MWF D E M

W

F D E M WF D E M W

Page 4: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 4

▪ If instruction follows too closely after one that writes register, slow it

down

▪ Hold instruction in decode

▪ Dynamically inject nop into execute stage

0x000: irmovq $9,%rdx

0x00a: irmovq $3,%rax

0x014: nop

0x015: nop

1 2 3 4 5 6 7 8

WF D E MF D E M W

F D E M WE M Wbubble

D D E M W0x016: addq %rdx,%rax

F D E M W

0x018: halt F D E M WF

F

Page 5: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 5

▪ Source registers

• srcA and srcB of current instruction

in decode stage

▪ Destination registers

• dstE and dstM fields

• Instructions in execute, memory, and

write-back stages

▪ Special case

• Don’t stall for register ID 15 (0xF)

– Indicates absence of register operand

– Or failed conditional move

E

M

W

F

D

Instructionmemory

PCincrement

Registerfile

ALU

Datamemory

SelectPC

rB

dstE dstMSelectA

ALUA

ALUB

Mem.control

Addr

srcA srcB

read

write

ALUfun.

Fetch

Decode

Execute

Memory

icode

data out

data in

A BM

E

M_valA

W_valM

W_valE

M_valA

W_valM

d_rvalA

f_pc

PredictPC

valE valM dstE dstM

Cndicode valE valA dstE dstM

icode ifun valC valA valB dstE dstM srcA srcB

valC valPicode ifun rA

predPC

CC

d_srcBd_srcA

e_Cnd

M_Cnd

stat

stat

stat

stat

Stat

imem_errorinstr_valid

Stat

dstE

dmem_errorm_stat

W_stat

M_stat

E_stat

D_stat

f_stat

Writeback Stat

Stat

Page 6: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 6

0x000: irmovq $9,%rdx

0x00a: irmovq $3,%rax

0x014: nop

0x015: nop

1 2 3 4 5 6 7 8

WF D E MF D E M W

F D E M WE M Wbubble

D D E M W0x016: addq %rdx,%rax

F D E M W

0x018: halt F D E M WF

F

Cycle 6

WW_dstE = %raxW_valE = 3

•••

DsrcA = %rdxsrcB = %rax

Page 7: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 7

0x000: irmovq $9,%rdx

0x00a: irmovq $3,%rax

bubble

bubble

1 2 3 4 5 6 7 8

WE MF D E M W

E M WE M Wbubble

D D E M W0x014: addq %rdx,%rax

F D E M W

0x016: halt F D E M WD

F

Cycle 6W

W_dstE = %rax

•••

DsrcA = %rdxsrcB = %rax

F DF F

MM_dstE = %rax

EE_dstE = %rax

DsrcA = %rdxsrcB = %rax

DsrcA = %rdxsrcB = %rax

Cycle 5

Cycle 4

Page 8: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 8

▪ Stalling instruction held back in decode stage

▪ Following instruction stays in fetch stage

▪ Bubbles injected into execute stage

• Like dynamically generated nop’s

• Move through later stages

0x000: irmovq $9,%rdx

0x00a: irmovq $3,%rax

bubble

bubble

1 2 3 4 5 6 7 8

WE MF D E M W

E M WE M Wbubble

D D E M W0x014: addq %rdx,%rax

F D E M W

0x016: halt F D E M WD

FF D

F F

Page 9: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 9

▪ Pipeline control

• Combinational logic detects stall condition

• Sets mode signals for how pipeline registers should be updated

E

W

F

D

CC

rB

srcAsrcB

icode valE valM dstE dstM

icode ifun valC valA valB dstE dstM srcA srcB

valC valPicode ifun rA

predPC

d_srcBd_srcA

e_Cnd

D_icode

E_icode

M_icode

E_dstMPipelinecontrol

logic

D_bubbleD_stall

E_bubble

F_stall

W_stall

set_cc

stat

M Cndicode valE valA dstE dstMM_bubble

stat

stat

stat

W_stat

Stat

m_stat

Page 10: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 10

State = xRisingclockOutput = xInput = y

State = y

Output = y

stall = 0 bubble = 0

x yNormal

State = xRisingclockOutput = xInput = y

State = x

Output = x

stall = 1 bubble = 0

x xStall

nop

State = xRisingclockOutput = xInput = y

State = nop

Output = nop

stall = 0 bubble = 1

xBubble

Page 11: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 11

▪ Naïve pipeline

• Register isn’t written until completion of write-back stage

• Source operands read from register file in decode stage

– Needs to be in register file at start of stage

▪ Observation

• Value to be written to register file generated much earlier (in execute or memory

stage)

▪ Trick

• Pass value directly from generating instruction to decode stage

• Needs to be available at end of decode stage

Page 12: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 12

▪ irmovq in write-back stage

▪ Destination value in W pipeline

register

▪ Forward as valB for decode stage

0x000: irmovq $9,%rdx

0x00a: irmovq $3,%rax

0x014: nop

0x015: nop

1 2 3 4 5 6 7 8

F D E M W

0x016: addq %rdx,%rax

F D E M W

0x018: halt

Cycle 6

•••

F D E M WF D E M W

F D E M W

F D E M W

WW_dstE = %raxW_valE = 3

R[%rax] = 3

DsrcA = %rdxsrcB = %rax

valA R[%rdx] = 9valB W_valE = 3

Page 13: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 13

▪ Decode stage

• Forwarding logic selects

valA and valB

• Normally from register file

• Forwarding: get valA or valB from

later pipeline stage

▪ Forwarding sources

• Execute: valE

• Memory: valE, valM

• Write back: valE, valM

Page 14: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 14

▪ Register %rdx

• Generated by ALU during

previous cycle

• Forward form memory as valA

▪ Register %rax

• Value just generated by ALU

• Forwarded from execute as valB

0x000: irmovq $9,%rdx

0x00a: irmovq $3,%rax

0x014: addq %rdx,%rax

0x016: halt

1 2 3 4 5 6 7 8

F D E M W

Cycle 4

F D E M WF D E M W

F D E M W

MM_dstE = %rdxM_valE = 9

DsrcA = %rdxsrcB = %rax

valA M_valE = 9valB e_valE = 3

EE_dstE = %raxe_valE 3

Page 15: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 15

▪ Multiple forwarding choices

• Which one should have priority?

• Match serial semantics

• Use matching value from earliest

pipeline stage

0x000: irmovq $1,%rax

0x00a: irmovq $2,%rax

0x014: irmovq $3,%rax

0x01e: rrmovq %rax,%rdx

1 2 3 4 5 6 7 8

F D E MWF D E M

W

F D E M WF D E M W

F D E M W0x020: halt

Cycle 5

WR[%rax] 1

D

valA R[%rax] = ?valB 0

MR[%rax] 2

ER[%rax] 3

Page 16: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 16

▪ Add additional feedback paths

from E, M, and W pipeline

registers into decode stage

▪ Create logic blocks to select

from multiple sources for

valA and valB in decode stage

Page 17: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 17

▪ What should be the A value?

int d_valA = [# Use incremented PC

D_icode in { ICALL, IJXX } : D_valP; # Forward valE from execute

d_srcA == e_dstE : e_valE; # Forward valM from memory

d_srcA == M_dstM : m_valM; # Forward valE from memory

d_srcA == M_dstE : M_valE; # Forward valM from write back

d_srcA == W_dstM : W_valM; # Forward valE from write back

d_srcA == W_dstE : W_valE;# Use value read from register file

1 : d_rvalA;];

Page 18: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 18

▪ Load-Use dependency

• Value needed by end of

decode stage in cycle 7

• Value read from memory

in memory stage of cycle 8

0x000: irmovq $128,%rdx

0x00a: irmovq $3,%rcx

0x014: rmmovq %rcx, 0(%rdx)

0x01e: irmovq $10,%rbx

Cycle 7

1 2 3 4 5 6 7 8

WF D E MF D E M W

F D E M WF D E M W0x028: mrmovq 0(%rdx),%rax # Load %rax

F D E M W0x032: addq %rbx,%rax # Use %rax

F D E M W

0x034: halt F D E M W

Cycle 8

MM_dstM = %raxm_valM M[128] = 3

MM_dstE = %rbxM_valE = 10

DvalA M_valE = 10valB R[%rax] = 0

•••

Error

Page 19: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 19

▪ Stall using instruction

for one cycle

▪ Can then pick up loaded

value by forwarding from

memory stage

0x000: irmovq $128,%rdx

0x00a: irmovq $3,%rcx

0x014: rmmovq %rcx, 0(%rdx)

0x01e: irmovq $10,%rbx

1 2 3 4 5 6 7 8

WF D E MF D E M W

F D E M WF D E M W0x028: mrmovq 0(%rdx),%rax # Load %rax

E M Wbubble

F D E M W

0x032: addq %rbx,%rax # Use %rax

Cycle 8 WW_dstE = %rbxW_valE = 10

MM_dstM = %raxm_valM M[128] = 3

DvalA W_valE = 10valB m_valM = 3

• • •

0x034: halt

D D E M WFF D E M WF

Page 20: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 20

# Conditions for a load/use hazard

bool F_stall =E_icode in { IMRMOVQ, IPOPQ } &&E_dstM in { d_srcA, d_srcB } || ...

Page 21: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 21

▪ Stall instructions in fetch and decode stages

▪ Inject bubble into execute stage

0x000: irmovq $128,%rdx

0x00a: irmovq $3,%rcx

0x014: rmmovq %rcx, 0(%rdx)

0x01e: irmovq $10,%rbx

1 2 3 4 5 6 7 8

WF D E MF D E M W

F D E M WF D E M W0x028: mrmovq 0(%rdx),%rax # Load %rax

E M Wbubble

F D E M W

0x032: addq %rbx,%rax # Use %rax

0x034: halt

D D E M WFF D E M WF

Condition F D E M W

Load/Use Hazard Stall Stall Bubble Normal Normal

Page 22: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 22

▪ Should only execute first 7 instructions

0x000: xorq %rax,%rax0x002: jne t # not taken0x00b: irmovq $1,%rax # fall through0x015: nop0x016: nop0x017: nop0x018: halt0x019: t: irmovq $3, %rdx # target (should not execute)0x023: irmovq $4, %rcx # should not execute0x02d: irmovq $5, %rdx # should not execute

Page 23: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 23

▪ Predict branch as taken

• Fetch 2 instructions at target

▪ Cancel when mispredicted

• Detect branch not-taken in execute stage

• On following cycle, replace instructions in execute and decode by bubbles

• No side effects have occurred yet

0x000: xorq %rax,%rax

0x002: jne target # not taken

0x016: irmovq $3,%rdx # target → bubble

1 2 3 4 5 6 7 8

WF E MF D E M W

D E M WF D E M W

0x020: irmovq $4,%rbx # target+1 → bubble

F D E M W

F D E M W

0x00b: irmovq $1,%rax # fall through

0x015: halt

Page 24: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 24

# Mispredicted branch

bool D_bubble =(E_icode == IJXX && !e_Cnd) || ...

Page 25: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 25

0x000: xorq %rax,%rax

0x002: jne target # not taken

0x016: irmovq $3,%rdx # target → bubble

1 2 3 4 5 6 7 8

WF E MF D E M W

D E M WF D E M W

0x020: irmovq $4,%rbx # target+1 → bubble

F D E M W

F D E M W

0x00b: irmovq $1,%rax # fall through

0x015: halt

Condition F D E M W

Mispredicted branch Normal Bubble Bubble Normal Normal

Page 26: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 26

▪ Previously executed three additional instructions

0x000: irmovq Stack, %rsp # Initialize stack pointer0x00a: call p # Procedure call0x013: irmovq $5,%rsi # Return point0x01d: halt0x020: .pos 0x200x020: p: irmovq $-1,%rdi # Procedure0x02a: ret0x02b: irmovq $1,%rax # Should not be executed0x035: irmovq $2,%rcx # Should not be executed0x03f: irmovq $3,%rdx # Should not be executed0x049: irmovq $4,%rbx # Should not be executed0x100: .pos 0x1000x100: Stack: # Initial stack pointer

Page 27: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 27

▪ As ret passes through pipeline,

stall at fetch stage

• While in decode, execute, and memory stage

▪ Inject bubble into decode stage

▪ Release stall when reach write-back stage

0x02a: ret

bubble

bubble

1 2 3 4 5 6 7 8

WF D E MF D E M W

F D E M WF D E M W

bubble

F D E M W

0x013: irmovq $5,%rsi # Return

Cycle 5

W

valM = 0x013

•••

FvalC 5rB %rsi

Page 28: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 28

# Processing ret

bool F_stall = … ||

IRET in { D_icode, E_icode, M_icode};

Page 29: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 29

0x02a: ret

bubble

bubble

1 2 3 4 5 6 7 8

WF D E MF D E M W

F D E M WF D E M W

bubble

F D E M W

0x013: irmovq $5,%rsi # Return

Condition F D E M W

Processing ret Stall Bubble Normal Normal Normal

Page 30: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 30

▪ Detection

▪ Action (on next cycle)

Condition Trigger

Processing ret IRET in { D_icode, E_icode, M_icode }

Load/Use HazardE_icode in { IMRMOVQ, IPOPQ } &&

E_dstM in {d_srcA, d_srcB }

Mispredicted Branch E_icode == IJXX && !e_Cnd

Condition F D E M W

Processing ret Stall Bubble Normal Normal Normal

Load/Use Hazard Stall Stall Bubble Normal Normal

Mispredicted Branch Normal Bubble Bubble Normal Normal

Page 31: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 31

▪ Combinational logic generates pipeline control signals

▪ Action occurs at start of following cycle

E

W

F

D

CC

rB

srcAsrcB

icode valE valM dstE dstM

icode ifun valC valA valB dstE dstM srcA srcB

valC valPicode ifun rA

predPC

d_srcBd_srcA

e_Cnd

D_icode

E_icode

M_icode

E_dstMPipelinecontrol

logic

D_bubbleD_stall

E_bubble

F_stall

W_stall

set_cc

stat

M Cndicode valE valA dstE dstMM_bubble

stat

stat

stat

W_stat

Stat

m_stat

Page 32: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 32

bool F_stall =# Conditions for a load/use hazardE_icode in { IMRMOVQ, IPOPQ } && E_dstM in { d_srcA, d_srcB } ||# Stalling at fetch while ret passes through pipelineIRET in { D_icode, E_icode, M_icode };

bool D_stall = # Conditions for a load/use hazardE_icode in { IMRMOVQ, IPOPQ } && E_dstM in { d_srcA, d_srcB };

bool D_bubble =# Mispredicted branch(E_icode == IJXX && !e_Cnd) ||# Stalling at fetch while ret passes through pipelineIRET in { D_icode, E_icode, M_icode };

bool E_bubble =# Mispredicted branch(E_icode == IJXX && !e_Cnd) ||# Load/use hazardE_icode in { IMRMOVQ, IPOPQ } && E_dstM in { d_srcA, d_srcB };

Page 33: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 33

▪ Special cases that can arise on same clock cycle

▪ Combination A

• Not-taken branch

• ret instruction at branch target

Use

Load

D

E

M

JXX

D

E

M

retD

E

M

bubble

ret

D

E

M

bubble

bubble

ret

D

E

M

Load/use Mispredict ret 1 ret 2 ret 3

AB

▪ Combination B

• Instruction that reads from memory to %rsp

• Followed by ret instruction

Page 34: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 34

▪ Should handle as mispredicted branch

• Stalls F pipeline register

• But PC selection logic will be using M_valA anyhow

JXX

D

E

M

retD

E

M

Mispredict ret 1

A

Condition F D E M W

Processing ret Stall Bubble Normal Normal Normal

Mispredicted Branch Normal Bubble Bubble Normal Normal

Combination Stall Bubble Bubble Normal Normal

Page 35: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 35

▪ Would attempt to bubble and stall pipeline register D

• Signaled by processor as pipeline error

Use

Load

D

E

M

retD

E

M

Load/use ret 1

B

Condition F D E M W

Processing ret Stall Bubble Normal Normal Normal

Load/Use Hazard Stall Stall Bubble Normal Normal

Combination StallBubble +

StallBubble Normal Normal

Page 36: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 36

▪ Load/use hazard should get priority

▪ ret instruction should be held in decode stage

for additional cycle

Use

Load

D

E

M

retD

E

M

Load/use ret 1

B

Condition F D E M W

Processing ret Stall Bubble Normal Normal Normal

Load/Use Hazard Stall Stall Bubble Normal Normal

Combination Stall Stall Bubble Normal Normal

Page 37: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 37

bool D_bubble =# Mispredicted branch(E_icode == IJXX && !e_Cnd) ||# Stalling at fetch while ret passes through pipelineIRET in { D_icode, E_icode, M_icode }# but not condition for a load/use hazard&& !(E_icode in { IMRMOVQ, IPOPQ }

&& E_dstM in { d_srcA, d_srcB });

Condition F D E M W

Processing ret Stall Bubble Normal Normal Normal

Load/Use Hazard Stall Stall Bubble Normal Normal

Combination Stall Stall Bubble Normal Normal

Page 38: Jin-Soo Kim Systems Software & PIPE: Complete Pipelined Architecture …csl.snu.ac.kr/courses/4190.308/2018-2/13-pipe.pdf · 2018-11-29 · 4190.308: Computer Architecture | Fall

4190.308: Computer Architecture | Fall 2018 | Jin-Soo Kim ([email protected]) 38

▪ Data hazards

• Most handled by forwarding – No performance penalty

• Load/use hazard requires one cycle stall

▪ Control hazards

• Cancel instructions when detect mispredicted branch – Two clock cycles wasted

• Stall fetch stage while ret passes through pipeline – Three clock cycles wasted

▪ Control combinations

• Must analyze carefully

• First version had subtle bug – only arises with unusual instruction combination


Recommended