A Corrected Pipelined Datapath


The previous design has a bug:
For the load, the instruction in the IF/ID pipeline register supplies the write register number, yet the register number is overwritten by the following instructions.
Hence, we need to preserve the destination register number in the load instruction. Just as store passed the register contents from the ID/EX to the EX/MEM pipeline registers for use in the MEM stage, load must pass the register number from the ID/EX through EX/MEM to the MEM/WB pipeline register for use in the WB stage. The following figure shows the corrected pipelined datapath to handle the load instruction properly.


The write register number now comes from the MEM/WB pipeline register along with the data. The register number is passed from the ID pipe stage until it reaches the MEM/WB pipeline register, adding five more bits to the last three pipeline registers. Another way to think about the passing of the register number is that to share the pipelined datapath, we need to preserve the instruction read during the IF stage, so each pipeline register contains a portion of the instruction needed for that stage and later stage.




      Q: Why didn’t the Invisible Man get invited to the Halloween party?    
      A: They knew he wouldn’t show up.