Download presentation
Presentation is loading. Please wait.
1
Computer Architecture - A Pipelined Datapath A Pipelined Datapath Resisters are used to save data between stages. 1/14
2
Computer Architecture - A Pipelined Datapath Corrected Datapath The Write Register in the IF/ID register is from the wrong instruction. The Write Register is passed through the pipeline and forwarded to the Register File (RF) from the MEM/WB register. 2/14
3
Computer Architecture - A Pipelined Datapath Instructions in the Pipeline (Clock 2) sub $11,$2,$3 lw $10,20($1) 3/14
4
Computer Architecture - A Pipelined Datapath Instructions in the Pipeline (Clock 4) sub $11,$2,$3 lw $10,20($1) 4/14
5
Computer Architecture - A Pipelined Datapath Instructions in the Pipeline (Clock 5) sub $11,$2,$3 lw $10,20($1) 5/14
6
Computer Architecture - A Pipelined Datapath Pipelined Control Problem: Control lines are defined in the IF stage. Example: In the WB stage MemtoReg and RegWrite are opcode dependent. Solution: Pass the control lines through the pipeline. 6/14
7
Computer Architecture - A Pipelined Datapath Pipeline Datapath with Control
8
Computer Architecture - A Pipelined Datapath Data Dependencies Backward lines cause data hazards: sub $2,$1,$3 and $12,$2,$5 or $13,$6,$2 add $14,$2,$2 sw $15,100($2) 8/14
9
Computer Architecture - A Pipelined Datapath 2 Easy Solutions The RF is written into in the 1st half of the cycle and read from in the 2nd half of the cycle. Thus the data written is the data read. The add instruction isn’t a hazard. Disallow data hazards by adding an instruction called nop (no operation). Now there aren’t any data hazards. sub $2,$1,$3 nop and $12,$2,$5 or $13,$6,$2 add $14,$2,$2 sw $15,100($2) 9/14
10
Computer Architecture - A Pipelined Datapath Detecting And Forwarding Easy. Each pipeline register contains the Rs, Rt, and Rd of the current instruction. If one of the next equalities is true there is a hazard: EX/MEM.Rd == ID/EX.Rs EX/MEM.Rd == ID/EX.Rt MEM/WB.Rd == ID/EX.Rs A unit called the Forwarding Unit decides if there is a hazard and solves it by using forwarding. The values are directed from the EX/MEM and MEM/WB registers to the ALU. 10/14
11
Computer Architecture - A Pipelined Datapath The Forwarding Unit 11/14
12
Computer Architecture - A Pipelined Datapath Data Hazards and Stalls Sometimes Forwarding doesn’t work (load-use data hazard): lw $2,20($1) and $4,$2,$5 or $8,$2,$6 add $9,$4,$2 slt $1,$6,$7 12/14
13
Computer Architecture - A Pipelined Datapath Inserting a Bubble The EX,MEM, and WB control fields of the ID/EX register are set to 0. The PC and IF/ID register aren’t updated. This causes the and & or instructions to repeat cycle 3 during cycle 4. 13/14
14
Computer Architecture - A Pipelined Datapath Hazard Detection Unit The hardware doesn’t depend on the compiler to detect and eliminate data hazards. A smart compiler will help in order to achieve better performance. 14/14
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.