edited by
281 views

1 Answer

0 votes
0 votes

There are mainly three types of dependencies possible in a pipelined processor. They are :
1) Structural Dependency
2) Control Dependency
3) Data Dependency

These dependencies may introduce stalls in the pipeline.

Stall : A stall is a cycle in the pipeline without new input.

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
0 answers
2
Na462 asked Nov 14, 2018
731 views
2 votes
2 votes
1 answer
3
Mk Utkarsh asked Oct 23, 2018
2,183 views
Consider the below instructions executed on a 5 stage(IF,ID,EX,MA,WB) RISC pipeline with operand forwarding.I1: ADD R0,R1,R2 (R0=R1+R2)I2: SUB R3,R0,R2I3:MUL R4,R3,R0I4:D...
3 votes
3 votes
2 answers
4
gauravkc asked Jan 24, 2018
1,097 views
R1 <- R1+R2R2 <- R3*R4R3 <- R4-R1R2 <- R3+R4Can someone point out hazards. Thanks :)