MIPS 管道转发(双重数据危险)
在帕特森和Hennessy Book:
但这不能作为 EX 危险来处理吗:
为什么转发是在MEM阶段进行的?又如何呢?有 1 个停顿(对于第二次添加,我将需要下一个 EX 中的 EX 结果)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在帕特森和Hennessy Book:
但这不能作为 EX 危险来处理吗:
为什么转发是在MEM阶段进行的?又如何呢?有 1 个停顿(对于第二次添加,我将需要下一个 EX 中的 EX 结果)?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
使用的文档 http://www.cs.cornell.edu/courses /cs3410/2011sp/faq/faq_pa1.html
我将重写 EX 和 MEM 危险条件(为了简单起见,删除 !=0 部分),在我们考虑“双重数据危险”(原始规则)之前:
EX 危险
我将调用条件 EX_h_Rs 和 EX_h_Rt 以使公式更短
MEM 危险(原始条件)
====
我们的示例同时具有两种类型的危险,介于(第一和第三)和(第二和第三)同时:
或(问题周期在顶部和底部标有
**
)根据我的链接,考虑到双重 EX + MEM 危险后:(没有!=0和重新排序的布尔项),更新了 MEM Hazard 规则:
或使用 EX_h_* 的短记录进行相同操作,
这意味着:
尝试从 MEM/WB 转发到 EX;如果没有从 EX/MEM 管道寄存器转发到相同的输入操作数。
或者同样
不要尝试从 MEM/WB 转发到 EX;如果已经有来自 EX/MEM 的更新结果的转发。
我将尝试说明:
因此,对于第三条指令,原始规则将规定第一条指令中的
A'
和第二条指令中的A''
都应转发(但多路复用器不能同时从两个来源获取)。并且 MEM 危险条件的修改表明,如果存在较新的A''
的主动转发,则不应尝试转发A'
。所以; 你的图是对的, 将会有2个EX Hazards转发;但如果已经存在活动的 EX 危险转发,则不应尝试 MEM 危险转发。
Document used http://www.cs.cornell.edu/courses/cs3410/2011sp/faq/faq_pa1.html
I'll rewrite EX and MEM hazard condition (dropping !=0 part for simplicity), before we will take in account "double data hazard" (original rules):
EX Hazard
I'll call conditions EX_h_Rs and EX_h_Rt to keep formulas shorter
MEM Hazard (original condition)
====
And our example with two types of hazard at once, between (1st and 3rd) & (2nd and 3rd) at same time:
or (promlem cycle is marked with
**
on top and bottom)According to my link, after taking into account double EX + MEM hazard: (without !=0 and reordered boolean terms), Updated rules of MEM Hazard:
Or the same using short record of EX_h_*
which means:
Try to forward from MEM/WB to EX; if there is no forward into same input operand from EX/MEM pipeline registers.
Or the same
Don't even try to forward from MEM/WB to EX; if there is already forwarding of more recent result from EX/MEM.
I'll try to illustrate:
so, for third instruction original rules will say that Both
A'
from first instruction andA''
from second instruction should be forwarded (but mux can't be fed from two sources at single moment of time). And modifying of MEM hazard condition says thatA'
should not be tryed to forward if there is active forwarding ofA''
which is more recent.So; your drawing is right, there will be 2 EX Hazards forwarding; But MEM hazard forwarding should not be tried if there is already active EX Hazard forwarding.
这显然是本书第四版中的一个错误(其中括号不平衡)。奇怪的是,这本书的最新版本(修订版第四版)添加了一个缺失的结束语“)”,但是......最终得到了一个不正确的条件仍然:
我认为这将是条件的正确版本:
This is clearly an error in the book's 4th edition (the parenthesis are unbalanced, for one). Curiously the book's most recent edition (4th Edition Revised) adds a missing closing ')' but... ends up with an incorrect condition still:
I think this would be the correct version of the conditions: