Open In App

Data Hazards and its Handling Methods

Data Hazards occur when an instruction depends on the result of previous instruction and that result of instruction has not yet been computed. whenever two different instructions use the same storage. the location must appear as if it is executed in sequential order. 

There are four types of data dependencies: Read after Write (RAW), Write after Read (WAR), Write after Write (WAW), and Read after Read (RAR). These are explained as follows below. 



ADD R1, --, --;
SUB --, R1, --;

Stalls are required to handle these hazards. 

ADD --, R1, --;
SUB R1, --, --;
ADD R1, --, --;
SUB R1, --, --;
ADD --, R1, --;
SUB --, R1, --;

Since reading a register value does not change the register value, these Read after Read (RAR) hazards don’t cause a problem for the processor. 



Handling Data Hazards : 
These are various methods we use to handle hazards: Forwarding, Code reordering , and Stall insertion. 

These are explained as follows below. 

  1. Forwarding : 
    It adds special circuitry to the pipeline. This method works because it takes less time for the required values to travel through a wire than it does for a pipeline segment to compute its result.
  2. Code reordering : 
    We need a special type of software to reorder code. We call this type of software a hardware-dependent compiler.
  3. Stall Insertion : 
    it inserts one or more stall (no-op instructions) into the pipeline, which delays the execution of the current instruction until the required operand is written to the register file, but this method decreases pipeline efficiency and throughput. 

     

 

Article Tags :