MIPS 向右移动(但添加 1 而不是零)

发布于 2025-01-07 12:33:33 字数 79 浏览 1 评论 0原文

无论如何,是否可以将寄存器值向右移动,但不是添加 0(如 srl 那样),而是添加 1。如果这是不可能的,任何其他实现相同目标的建议将不胜感激。

Is there anyway to shift a register value to the right but instead of adding 0's (like srl does), make it add 1's. If that's not possible, any other suggestions to accomplish the same goal would be appreciated.

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

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

发布评论

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

评论(1

氛圍 2025-01-14 12:33:33

您可以通过首先确保要移位的寄存器的最高有效位为 1,然后进行右移算术(该符号扩展结果)来完成此操作。

例如,假设您想将寄存器 $t0 右移四位,那么您可以这样做:

  lui $at, 0x8000   # Set leftmost bit of $at to 1 and the others to 0
  or $t0, $t0, $at  # OR into register to be shifter
  sra $t0, $t0, 4   # do an arithmetic shift right

You can do it by first ensuring that the most significative bit of the register to be shifted is 1 and then doing a shift right arithmetic (which sign extends the result).

For example, suppose you want to shift four bits right register $t0, so you would do:

  lui $at, 0x8000   # Set leftmost bit of $at to 1 and the others to 0
  or $t0, $t0, $at  # OR into register to be shifter
  sra $t0, $t0, 4   # do an arithmetic shift right
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文