18
Revision MIPS Pipelined Architecture Dr. Eng. Amr T. Abdel-Hamid ELECT 1002 Spring 2009 System-On-a-Chip Design Dr. Amr Talaat ELECT1002 SoC Design MIPS: A "Typical" RISC ISA 32-bit fixed format instruction (3 formats) 32 32-bit GPR (R0 contains zero, DP take pair) 3-address, reg-reg arithmetic instruction Single address mode for load/store: base + displacement no indirection Simple branch conditions Delayed branch see: SPARC, MIPS, HP PA-Risc, DEC Alpha, IBM PowerPC, CDC 6600, CDC 7600, Cray-1, Cray-2, Cray-3

Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

  • Upload
    others

  • View
    5

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Revision

MIPS Pipelined Architecture

Dr. Eng. Amr T. Abdel-Hamid

ELECT 1002

Spring 2009

System-On-a-Chip Design

Dr. Amr Talaat

ELECT1002

SoC Design

MIPS: A "Typical" RISC ISA

� 32-bit fixed format instruction (3 formats)

� 32 32-bit GPR (R0 contains zero, DP take pair)

� 3-address, reg-reg arithmetic instruction

� Single address mode for load/store: base + displacement

� no indirection

� Simple branch conditions

� Delayed branch

see: SPARC, MIPS, HP PA-Risc, DEC Alpha, IBM PowerPC,CDC 6600, CDC 7600, Cray-1, Cray-2, Cray-3

Page 2: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Example: MIPS (- MIPS)

Op

31 26 01516202125

Rs1 Rd immediate

Op

31 26 025

Op

31 26 01516202125

Rs1 Rs2

target

Rd Opx

Register-Register

561011

Register-Immediate

Op

31 26 01516202125

Rs1 Rs2/Opx immediate

Branch

Jump / Call

Dr. Amr Talaat

ELECT1002

SoC Design

Datapath vs Control

� Datapath: Storage, FU, interconnect sufficient to perform the desired functions� Inputs are Control Points� Outputs are signals

� Controller: State machine to orchestrate operation on the data path� Based on desired function and signals

Datapath Controller

Control Points

signals

Page 3: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

5 Steps of MIPS Datapath

MemoryAccess

WriteBack

InstructionFetch

Instr. DecodeReg. Fetch

ExecuteAddr. Calc

LMD

ALU

MUX

Memory

Reg F

ile

MUXM

UX

Data

Memory

MUX

SignExtend

4

Adder Zero?

Next SEQ PC

Address

Next PC

Inst

RD

RS1

RS2

Imm

Dr. Amr Talaat

ELECT1002

SoC Design

What Is Pipelining

�Laundry Example

�Ann, Brian, Cathy, Dave each have one load of clothes to wash, dry, and fold

�Washer takes 30 minutes

�Dryer takes 40 minutes

�“Folder” takes 20 minutes

AAAA BBBB CCCC DDDD

Page 4: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

What Is Pipelining

Sequential laundry takes 6 hours for 4 loads

If they learned pipelining, how long would laundry take?

AAAA

BBBB

CCCC

DDDD

30303030 40404040 20202020 30303030 40404040 20202020 30303030 40404040 20202020 30303030 40404040 20202020

6666 PMPMPMPM 7777 8888 9999 10101010 11111111 MidnightMidnightMidnightMidnight

Task

Order

Time

Dr. Amr Talaat

ELECT1002

SoC Design

8

What Is PipeliningStart work ASAP

�Pipelined laundry takes 3.5 hours for 4 loads

AAAA

BBBB

CCCC

DDDD

6666 PMPMPMPM 7777 8888 9999 10101010 11111111 MidnightMidnightMidnightMidnight

Task

Order

Time

30303030 40404040 40404040 40404040 40404040 20202020

Page 5: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Pipelining Lessons

� Pipelining doesn’t help latency of single task, it helps throughput of entire workload

� Pipeline rate limited by slowest pipeline stage

� Multiple tasks operating simultaneously

� Potential speedup = Numberpipe stages

� Unbalanced lengths of pipe stages reduces speedup

� Time to “fill” pipeline and time to “drain” it reduces speedup

AAAA

BBBB

CCCC

DDDD

6666 PMPMPMPM 7777 8888 9999

Task

Order

Time

30303030 40404040 40404040 40404040 40404040 20202020

What Is PipeWhat Is PipeWhat Is PipeWhat Is Pipelininglininglininglining

Dr. Amr Talaat

ELECT1002

SoC Design

5 Steps of MIPS DatapathFigure A.3, Page A-9

MemoryAccess

WriteBack

InstructionFetch

Instr. DecodeReg. Fetch

ExecuteAddr. Calc

ALU

Memory

Reg F

ile

MUXM

UX

Data

Memory

MUX

SignExtend

Zero?

IF/ID

ID/EX

MEM/W

B

EX/M

EM

4

Adder

Next SEQ PC Next SEQ PC

RD RD RD WB Data

Next PC

Address

RS1

RS2

Imm

MUX

Page 6: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Visualizing PipeliningFigure A.2, Page A-8

Instr.

Order

Time (clock cycles)

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Cycle 1 Cycle 2 Cycle 3 Cycle 4 Cycle 6 Cycle 7Cycle 5

Dr. Amr Talaat

ELECT1002

SoC Design

What Is PipeliningWhat Is PipeliningWhat Is PipeliningWhat Is Pipelining

Instruction Fetch (IF):Instruction Fetch (IF):Instruction Fetch (IF):Instruction Fetch (IF):Send out the PC and fetch the instruction from Send out the PC and fetch the instruction from Send out the PC and fetch the instruction from Send out the PC and fetch the instruction from memory into the instruction register (IR); incrememory into the instruction register (IR); incrememory into the instruction register (IR); incrememory into the instruction register (IR); increment the PC by ment the PC by ment the PC by ment the PC by 4444 to address the next sequentito address the next sequentito address the next sequentito address the next sequential instruction.al instruction.al instruction.al instruction.IR holds the instruction that will be used in the IR holds the instruction that will be used in the IR holds the instruction that will be used in the IR holds the instruction that will be used in the next stage.next stage.next stage.next stage.NPC holds the value of the next PC.NPC holds the value of the next PC.NPC holds the value of the next PC.NPC holds the value of the next PC.

IR <IR <IR <IR <---- Mem[PC]Mem[PC]Mem[PC]Mem[PC]NPC <NPC <NPC <NPC <---- PC + PC + PC + PC + 4444

Instruction Decode/Register Fetch CycInstruction Decode/Register Fetch CycInstruction Decode/Register Fetch CycInstruction Decode/Register Fetch Cycle (ID):le (ID):le (ID):le (ID):Decode the instruction and access the register file tDecode the instruction and access the register file tDecode the instruction and access the register file tDecode the instruction and access the register file to read the registers.o read the registers.o read the registers.o read the registers.The outputs of the general purpose registers are reThe outputs of the general purpose registers are reThe outputs of the general purpose registers are reThe outputs of the general purpose registers are read into two temporary registers (A & B) for use in laad into two temporary registers (A & B) for use in laad into two temporary registers (A & B) for use in laad into two temporary registers (A & B) for use in later clock cycles.ter clock cycles.ter clock cycles.ter clock cycles.We extend the sign of the lower We extend the sign of the lower We extend the sign of the lower We extend the sign of the lower 16161616 bits of the Instrbits of the Instrbits of the Instrbits of the Instruction Register.uction Register.uction Register.uction Register.

A <A <A <A <---- Regs[IRRegs[IRRegs[IRRegs[IR6666..IR..IR..IR..IR10101010];];];];B <B <B <B <---- Regs[IRRegs[IRRegs[IRRegs[IR10101010..IR..IR..IR..IR15151515];];];];Imm <Imm <Imm <Imm <---- ((IR((IR((IR((IR16161616) ##IR) ##IR) ##IR) ##IR16161616----31313131

Page 7: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

What Is PipeliningWhat Is PipeliningWhat Is PipeliningWhat Is Pipelining

A <A <A <A <---- A func. BA func. BA func. BA func. Bcond = cond = cond = cond = 0000;;;;

Execute Address Calculation (EX):Execute Address Calculation (EX):Execute Address Calculation (EX):Execute Address Calculation (EX):We perform an operation (for an ALU) or an addreWe perform an operation (for an ALU) or an addreWe perform an operation (for an ALU) or an addreWe perform an operation (for an ALU) or an address calculation (if it’s a load or a Branch).ss calculation (if it’s a load or a Branch).ss calculation (if it’s a load or a Branch).ss calculation (if it’s a load or a Branch).If an ALU, actually do the operation. If an addresIf an ALU, actually do the operation. If an addresIf an ALU, actually do the operation. If an addresIf an ALU, actually do the operation. If an address calculation, figure out how to obtain the address calculation, figure out how to obtain the address calculation, figure out how to obtain the address calculation, figure out how to obtain the address and stash away the location of that address for s and stash away the location of that address for s and stash away the location of that address for s and stash away the location of that address for the next cycle.the next cycle.the next cycle.the next cycle.

A = Mem[prev. B]A = Mem[prev. B]A = Mem[prev. B]A = Mem[prev. B]ororororMem[prev. B] = AMem[prev. B] = AMem[prev. B] = AMem[prev. B] = A

MEMORY ACCESS (MEM):MEMORY ACCESS (MEM):MEMORY ACCESS (MEM):MEMORY ACCESS (MEM):If this is an ALU, do nothing.If this is an ALU, do nothing.If this is an ALU, do nothing.If this is an ALU, do nothing.If a load or store, then access memory.If a load or store, then access memory.If a load or store, then access memory.If a load or store, then access memory.

Regs <Regs <Regs <Regs <---- A, B;A, B;A, B;A, B;

WRITE BACK (WB):WRITE BACK (WB):WRITE BACK (WB):WRITE BACK (WB):Update the registers from either the ALU or froUpdate the registers from either the ALU or froUpdate the registers from either the ALU or froUpdate the registers from either the ALU or from the data loaded.m the data loaded.m the data loaded.m the data loaded.

Dr. Amr Talaat

ELECT1002

SoC Design

Pipelining is not quite that easy!

� Limits to pipelining: Hazards prevent next instruction from executing during its designated clock cycle

� Structural hazards: HW cannot support this combination of instructions (single person to fold and put clothes away)

� Data hazards: Instruction depends on result of prior instruction still in the pipeline (missing sock)

� Control hazards: Caused by delay between the fetching of instructions and decisions about changes in control flow (branches and jumps).

Page 8: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

One Memory Port/Structural HazardsFigure A.4, Page A-14

Instr.

Order

Time (clock cycles)

Load

Instr 1

Instr 2

Instr 3

Instr 4

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Cycle 1 Cycle 2 Cycle 3 Cycle 4 Cycle 6 Cycle 7Cycle 5

Reg

ALU

DMemIfetch Reg

Dr. Amr Talaat

ELECT1002

SoC Design

One Memory Port/Structural Hazards(Similar to Figure A.5, Page A-15)

Instr.

Order

Time (clock cycles)

Load

Instr 1

Instr 2

Stall

Instr 3

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Cycle 1Cycle 2Cycle 3Cycle 4 Cycle 6Cycle 7Cycle 5

Reg

ALU

DMemIfetch Reg

Bubble BubbleBubbleBubbleBubble

Page 9: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Speed Up Equation for Pipelining

pipelined

dunpipeline

TimeCycle

TimeCycle

CPI stall Pipeline CPI Ideal

depth Pipeline CPI Ideal Speedup ××××

++++

××××====

pipelined

dunpipeline

TimeCycle

TimeCycle

CPI stall Pipeline 1

depth Pipeline Speedup ××××

++++====

Instper cycles Stall Average CPI Ideal CPIpipelined ++++====

For simple RISC pipeline, CPI = 1:

Dr. Amr Talaat

ELECT1002

SoC Design

Example: Dual-port vs. Single-port

� Machine A: Dual ported memory (“Harvard Architecture”)

� Machine B: Single ported memory, but its pipelined implementation has a 1.05 times faster clock rate

� Ideal CPI = 1 for both

� Loads are 40% of instructions executed

SpeedUpA = Pipeline Depth/(1 + 0) x (clockunpipe/clockpipe)

= Pipeline Depth

SpeedUpB = Pipeline Depth/(1 + 0.4 x 1) x (clockunpipe/(clockunpipe / 1.05)

= (Pipeline Depth/1.4) x 1.05

= 0.75 x Pipeline Depth

SpeedUpA / SpeedUpB = Pipeline Depth/(0.75 x Pipeline Depth) = 1.33

� Machine A is 1.33 times faster

Page 10: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Instr.

Order

add r1,r2,r3

sub r4,r1,r3

and r6,r1,r7

or r8,r1,r9

xor r10,r1,r11

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Data Hazard on R1Figure A.6, Page A-17

Time (clock cycles)

IF ID/RF EX MEM WB

Dr. Amr Talaat

ELECT1002

SoC Design

� Read After Write (RAW) InstrJ tries to read operand before InstrI writes it

� Caused by a “Dependence” (in compiler nomenclature). This hazard results from an actual need for communication.

Three Generic Data Hazards

I: add r1,r2,r3

J: sub r4,r1,r3

Page 11: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

� Write After Read (WAR) InstrJ writes operand before InstrI reads it

� Called an “anti-dependence” by compiler writers.This results from reuse of the name “r1”.

� Can’t happen in MIPS 5 stage pipeline because:

� All instructions take 5 stages, and

� Reads are always in stage 2, and

� Writes are always in stage 5

I: sub r4,r1,r3

J: add r1,r2,r3

K: mul r6,r1,r7

Three Generic Data Hazards

Dr. Amr Talaat

ELECT1002

SoC Design

Three Generic Data Hazards

� Write After Write (WAW)InstrJ writes operand before InstrI writes it.

� Called an “output dependence” by compiler writersThis also results from the reuse of name “r1”.

� Can’t happen in MIPS 5 stage pipeline because:

� All instructions take 5 stages, and

� Writes are always in stage 5

� Will see WAR and WAW in more complicated pipes

I: sub r1,r4,r3

J: add r1,r2,r3

K: mul r6,r1,r7

Page 12: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Time (clock cycles)

Forwarding to Avoid Data HazardFigure A.7, Page A-19

Instr.

Order

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

add r1,r2,r3

sub r4,r1,r3

and r6,r1,r7

or r8,r1,r9

xor r10,r1,r11

Dr. Amr Talaat

ELECT1002

SoC Design

HW Change for ForwardingFigure A.23, Page A-37

MEM/W

R

ID/EX

EX/M

EM

DataMemory

ALU

mux

mux

Registe

rs

NextPC

Immediate

mux

What circuit detects and resolves this hazard?

Page 13: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Time (clock cycles)

Forwarding to Avoid LW-SW Data HazardFigure A.8, Page A-20

Instr.

Order

add r1,r2,r3

lw r4, 0(r1)

sw r4,12(r1)

or r8,r6,r9

xor r10,r9,r11

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Dr. Amr Talaat

ELECT1002

SoC Design Time (clock cycles)

Instr.

Order

lw r1, 0(r2)

sub r4,r1,r6

and r6,r1,r7

or r8,r1,r9

Data Hazard Even with ForwardingFigure A.9, Page A-21

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Page 14: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Data Hazard Even with Forwarding(Similar to Figure A.10, Page A-21)

Time (clock cycles)

or r8,r1,r9

Instr.

Order

lw r1, 0(r2)

sub r4,r1,r6

and r6,r1,r7

Reg

ALU

DMemIfetch Reg

RegIfetch

ALU

DMem RegBubble

Ifetch

ALU

DMem RegBubble Reg

Ifetch

ALU

DMemBubble Reg

How is this detected?

Dr. Amr Talaat

ELECT1002

SoC Design

Control Hazard on BranchesThree Stage Stall

10: beq r1,r3,36

14: and r2,r3,r5

18: or r6,r1,r7

22: add r8,r1,r9

36: xor r10,r1,r11

Reg ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch Reg

Reg

ALU

DMemIfetch

Page 15: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Branch Stall Impact

� If CPI = 1, 30% branch, Stall 3 cycles => new CPI = 1.9!

� Two part solution:

� Determine branch taken or not sooner, AND

� Compute taken branch address earlier

� MIPS branch tests if register = 0 or ≠ 0

� MIPS Solution:

� Move Zero test to ID/RF stage

� Adder to calculate new PC in ID/RF stage

� 1 clock cycle penalty for branch versus 3

Dr. Amr Talaat

ELECT1002

SoC Design Adder

IF/ID

Pipelined MIPS DatapathFigure A.24, page A-38

MemoryAccess

WriteBack

InstructionFetch

Instr. DecodeReg. Fetch

ExecuteAddr. Calc

ALU

Memory

Reg F

ile

MUX

Data

Memory

MUX

SignExtend

Zero?

MEM/W

B

EX/M

EM

4

Adder

Next SEQ PC

RD RD RD WB Data

• Interplay of instruction set design and cycle time.

Next PC

Address

RS1

RS2

Imm

MUX

ID/EX

Page 16: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Four Branch Hazard Alternatives#1: Stall until branch direction is clear

#2: Predict Branch Not Taken

� Execute successor instructions in sequence

� “Squash” instructions in pipeline if branch actually taken

� Advantage of late pipeline state update

� 47% MIPS branches not taken on average

� PC+4 already calculated, so use it to get next instruction

#3: Predict Branch Taken

� 53% MIPS branches taken on average

� But haven’t calculated branch target address in MIPS

�MIPS still incurs 1 cycle branch penalty

�Other machines: branch target known before outcome

Dr. Amr Talaat

ELECT1002

SoC Design

Four Branch Hazard Alternatives

#4: Delayed Branch

� Define branch to take place AFTER a following instruction

branch instructionsequential successor1sequential successor2........sequential successorn

branch target if taken

� 1 slot delay allows proper decision and branch target address in 5 stage pipeline

� MIPS uses thisa

Branch delay of length n

Page 17: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Scheduling Branch Delay Slots (Fig A.14)

� A is the best choice, fills delay slot & reduces instruction count (IC)

� In B, the sub instruction may need to be copied, increasing IC

� In B and C, must be okay to execute sub when branch fails

add $1,$2,$3if $2=0 then

delay slot

A. From before branch B. From branch target C. From fall through

add $1,$2,$3if $1=0 then

delay slot

add $1,$2,$3if $1=0 then

delay slot

sub $4,$5,$6

sub $4,$5,$6

becomes becomes becomes

if $2=0 then

add $1,$2,$3add $1,$2,$3if $1=0 then

sub $4,$5,$6

add $1,$2,$3if $1=0 then

sub $4,$5,$6

Dr. Amr Talaat

ELECT1002

SoC Design

Delayed Branch

� Compiler effectiveness for single branch delay slot:

� Fills about 60% of branch delay slots

� About 80% of instructions executed in branch delay slots useful in computation

� About 50% (60% x 80%) of slots usefully filled

� Delayed Branch downside: As processor go to deeper pipelines and multiple issue, the branch delay grows and need more than one delay slot

� Delayed branching has lost popularity compared to more expensive but more flexible dynamic approaches

� Growth in available transistors has made dynamic approaches relatively cheaper

Page 18: Revision MIPS Pipelined Architecture · 5 Steps of MIPS Datapath Memory Access Write Back Instruction Fetch Instr. Decode Reg. Fetch Execute Addr. Calc L M D ALU MUX Memory Reg File

Dr. Amr Talaat

ELECT1002

SoC Design

Project Plan

� ??