在 MIPS 中查找浮点数的指数

发布于 2024-12-11 10:14:48 字数 194 浏览 0 评论 0原文

我被困在装配作业的某个部分上。

我读取浮点值并通过牛顿法执行平方根函数。我的公式运行良好,但在从浮点数中提取指数时遇到困难。 (对于我在循环中的最初猜测)

我认为我应该在浮点上使用 AND 掩码或某种左移操作,但我在网上找到的所有信息都是为​​了处理整数。

我对汇编并不陌生,但对 MIPS 很陌生,因此我们将不胜感激。谢谢。

Im stuck on a certain part of my Assembly homework.

Im reading in floating point values and doing a square root function via Newtons method. Ive got the formula working fine, but having trouble extracting the exponent from a floating point number. (For my initial guess in the loop)

I think im supposed to use a AND mask on the float or some sort of shift left operation, but all the info im finding online is for dealing with ints.

Im not new to assembly, but new to MIPS so any help would be appreciated. Thanks.

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

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

发布评论

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

评论(1

笨笨の傻瓜 2024-12-18 10:14:48

总结一下:

  • 浮点寄存器中有一个 32 位单精度浮点数。
  • 您希望像操作 32 位整数一样操作它。
  • 您只能操作普通寄存器中的整数值。
  • 如果直接从浮点寄存器移动到普通寄存器,它就会被转换。

看来你不能直接从浮点寄存器获取它。通常如何将值存入寄存器?

To summarize:

  • You have a 32-bit single precision floating point number in a floating point register.
  • You want to manipulate it as if it were a 32-bit integer.
  • You can only manipulate integer values in the normal registers.
  • If you move directly from a floating point register to a normal register it gets converted.

It seems like you can't get it directly from a floating point register. How would you normally get a value into a register?

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