首页 > 代码库 > Pipeline

Pipeline

Pipeline可以提高处理器的性能,但是存在以下问题:

 

1. structural hazards

    因缺乏硬件支持而导致的

2. control hazards(branch hazards)

    决策依赖于一条指令的结果,而其他指令正在执行中

3. data hazards

    因无法提供指令执行所需数据而导致指令不能在预定的时钟周期内执行的情况

 

通过分支预测(Branch prediction)和旁路机制(Forwarding)解决一部分冒险(hazards)问题

Pipeline