std::pow(x, 2) 与 GCC/Clang -O3 整数参数的 x * x 汇编差异

发布于 2025-01-10 08:46:27 字数 404 浏览 0 评论 0原文

对于 float 参数,完全优化的 GCC/Clang 汇编代码与 std::pow(x,2)x*x 相同。但是,对于 int 参数,汇编中存在差异。 int std::pow 规范的这个额外程序集的原因是什么?我的代码执行了数百万次此类操作,因此替换所有 std::pow(x,2) 是否有意义,其中 xint出于性能原因使用 x*x

Godbolt 链接

For float arguments, fully optimized GCC/Clang assembly code is the same for std::pow(x,2) and x*x. However, for int arguments, there is a difference in the assembly. What is the reason for this extra assembly for int std::pow specification? My code does milions of such operations, so does it make sense to replace all std::pow(x,2) where x is int with x*x for performance reasons?

Godbolt link

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文