gpt4 book ai didi

branch - 为什么 MIPS BLT 指令不在硬件中实现?

转载 作者:行者123 更新时间:2023-12-02 21:43:33 24 4
gpt4 key购买 nike

我想问为什么BLT指令不是MIPS ISA的一部分。相反,他们实际上将其设为汇编程序员的伪指令。从硬件实现的角度来看,我无法识别 BLTBLTZ(它是 MIPS ISA 的一部分)之间的区别。

顺便说一句,《计算机组织与设计》一书中说:

Heeding von Neumann's warning about the simplicity of the "equipment" the MIPS architecture doesn't include branch on less than because it's too complicated either it would stretch the clock cycle time or it would take extra clock cycles per instruction, the two faster instructions are more useful.

但我仍然不知道为什么会发生这些。

最佳答案

与零比较容易得多

因为小于零实际上只是一个符号位检查,而小于

任何一种方式都比一位检查复杂得多,因此BLTZ速度要快得多。同样,>= 0也只需要 1 个符号位检查。 <= 0> 0需要另一个零检查,但这相当简单。

事实上,架构支持直接在单个指令中在两个值之间进行跳转和比较的情况并不常见,尽管大多数架构都会基于与 0 相关的值进行跳转。即使是像 x86 这样的 CISC 架构也要求用户比较然后跳转

关于branch - 为什么 MIPS BLT 指令不在硬件中实现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19923977/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com