指令级并行¶
约 400 个字 3 行代码 预计阅读时间 2 分钟
开头流水线在前面学过了...
在计组中我们学习的指令都是整数指令,实际上,对于浮点指令(FP),流水线需要做一些小改动。
Latency&Interval
-
Latency:the number of intervening cycles between an instruction that produces a result and an instruction that uses the result(在产生结果的指令和使用结果的指令之间的周期数)
-
Interval: the number of cycles that must elapse between the issue of two consecutive instructions(两条连续指令之间必须经过的周期数)
在处理浮点数时,我们把EX阶段分为多种:
-
处理浮点数加法
-
处理浮点数乘法
-
处理浮点数除法
-
不处理浮点数
在这之中,乘法和加法是可以采取流水线的方式来处理的,也就是说,后一条指令并不需要前一条指令离开EX阶段才能进入EX阶段。