Hi Suppose the below instruction :
R1<-M1
R2<-M2
R3<-R1*R2
M3<-R3
Now We Will create a pipeline like below pipeline without bypassing:[XXX : bubble]
IF1 ID1 EX1 ME1 WB1
IF2 ID2 EX2 ME2 WB2
IF3 XXX XXX XXX ID3 EX3 WB3
XXX XXX XXX XXX IF4 ID4 EX4 WB4
And We will create a pipeline with by-passing like below pipeline:[XXX : bubble]
IF1 ID1 EX1 ME1 WB1
IF2 ID2 EX2 ME2 WB2
IF3 XXX ID3 EX3 WB3
XXX XXX IF4 ID4 EX4 WB4
We should wait until WB1 and WB2 to be done, then we can execute Instruction 3. So in bypassing method we will store R1 and R2 values after the EX1 and EX2 levels into a buffer.
But... In by-passing way,after EX1 , how can we get the register R1 value ?? we haven't reach to the WB1 value . Why we need a buffer , Why not to read R1 directly??