Abstract


  • Instead of executing Instruction one by one in sequence. The execution jump around the program instructions. Very common with loops like for-loop & while-loop. The execution jumps back to previous instruction (start of the loop)

Potential performance hit

When the execution jumps aorund without going down the instructions one by one, Pipeline Flush is likely to happen.