MIPS 组装特性

发布于 2025-01-04 06:47:09 字数 147 浏览 0 评论 0原文

我正在尝试编译 MIPS 架构特性的列表,到目前为止,

  • 由于
  • 加载延迟导致的分支延迟,导致乱序执行,

我是否忽略了在读取 MIPS 程序集时可能让我失望的任何内容上市?我的背景只有Intel/i386)。

I'm trying to compile a list of MIPS architecture peculiarities, and so far has come up with

  • out of order execution due to branch delay
  • out of order execution due to load delay

Am I overlooking anything that could throw me off when reading a MIPS assembly listing? My background is only Intel/i386).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨离汐 2025-01-11 06:47:09

MIPS 比 x86 所能梦想的更加正交。几乎每条指令都可以使用任何输入和输出寄存器来完成,并且通常只需要 1 个周期 - 并且很容易看出哪里不需要。除此之外,他们使用 Load 作为 pnumonic 而不是 Move,并且有一个更直接的寻址系统(再见 word ptr),但我称之为所有上述优点。你提到的无序的事情是我能想到的唯一出乎意料的问题。

MIPS is much more orthogonal than x86 could ever dream of being. Just about every instruction can be done with any input and output register and usually only takes 1 cycle - and where it doesn't it is easy to tell. Beyond that, they use Load as a pnumonic instead of Move and have a more straight forward addressing system (bye bye word ptr), but I call all of the above advantages. The out of order things you've mentioned are the only things I can think of in terms of gotchas that are way unexpected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文