Home | Projects | Notes > Computer Architecture & Organization > Pipeline & Branches

Pipeline & Branches

 

Branches

  1. Take a guess

    If guessed right there will be no performance degrade (Good!). But, if guessed wrong bubble (or hole) will be introduced into the pipeline.

Either way there are some potential issues. It’s the designers’ choice!

 

Branch Penalty

 

Branch Direction

 

The Effect of a Branch on the Pipeline

The Cost of Branches

 

Branch Prediction

Static Branch Prediction

Dynamic Branch Prediction (Speculative Execution)

1. 2-Bit Saturating Counter Branch Predictor State Diagram

 

2-bit-saturating-counter-branch-predictor-state-machine

 

2. Alternative 2-Bit Branch Predictor State Diagram

 

alternative-2-bit-branch-predictor-state-machine

 

 

Branch Target Buffer (BTB)

The Simple Branch Target Buffer

 

the-simple-branch-target-buffer

 

  1. If the current instruction is NOT present in the Cached PC, it adds it and the predicted PC as well as if it was taken or not taken.

Modified Branch Target Buffer with Cached Op-code at Mispredicted Address

 

modified-branch-target-buffer-with-cached-opcode-at-mispredicted-address

 

 

Two-Level Branch Prediction