/Ox 和 /O2 编译器选项有什么区别?

发布于 2024-10-18 11:49:12 字数 868 浏览 3 评论 0原文

Microsoft 的 C++ 编译器(cl.exe,包含在 Visual Studio 中)提供 几个优化开关。它们中的大多数之间的区别似乎是不言自明的,但我不清楚 /O2 (优化代码以获得最大速度)和 /Ox (选择“全面优化”)。

我尝试阅读 /Ox< 的 文档 /code> 选项,似乎证实了此开关还可以优化最大速度,而不是大小:

/Ox 编译器选项生成的代码有利于执行速度而不是较小的大小。

但特别是“备注”部分下的以下声明引起了我的注意:

一般来说,指定/O2(最大化速度)而不是/Ox

所以我的问题是,为什么人们普遍倾向于 /O2 而不是 /Ox后一个选项是否启用了已知会导致不可预见的错误的特定优化或其他意外行为?难道仅仅是所获得的优化量不值得额外的编译时间吗?或者这只是一个完全没有意义的“建议”,因为 /O2 是 VS 中的默认选项?

Microsoft's C++ compiler (cl.exe, as included with Visual Studio) offers several optimization switches. The difference between most of them seems self-explanatory, but it's not clear to me what the difference is between /O2 (which optimizes code for maximum speed) and /Ox (which selects "full optimization").

I've tried reading the documentation for the /Ox option, and it seems to confirm that this switch also enables optimizations for maximum speed, rather than size:

The /Ox compiler option produces code that favors execution speed over smaller size.

But in particular, the following statement under the "Remarks" section caught my eye:

In general, specify /O2 (Maximize Speed) instead of /Ox.

So my question is, why should one generally favor /O2 over /Ox? Does the latter option enable a particular optimization known to cause unforeseen bugs or otherwise unexpected behavior? Is it simply that the amount of optimization to be gained is not worth the additional compile time? Or is this just a completely meaningless "recommendation" resulting from the fact that /O2 is the default option in VS?

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

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

发布评论

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

评论(2

本王不退位尔等都是臣 2024-10-25 11:49:12

我在此处找到了它:

Ox 和 O2 几乎相同。他们
不同之处仅在于 O2 也
抛出 GFGy。几乎没有
避免抛出这两个的原因
开关。

I found it here:

Ox and O2 are almost identical. They
differ only in the fact that O2 also
throws GF and Gy. There is almost no
reason to avoid throwing these two
switches.

青春如此纠结 2024-10-25 11:49:12

Asha 的回答引用了一篇有关 Visual Studio 2005 的博客文章,并且已经过时了。

最新版本的文档可在此处获取:

根据这些:

您可能还对 /GS- 感兴趣,它会关闭周围的安全检查堆栈,这可能会严重影响性能(请参阅 /GS 的 MS 文档< /a>)。

您应该一如既往地对您的特定应用程序进行基准测试。

Asha's answer cites a blog post about Visual Studio 2005, and is rather out of date.

The latest version of the documentation is available here:

According to those:

You may additionally be interested in /GS- which turns off security checks around the stack, which can be a significant performance hit (see the MS docs for /GS).

You should benchmark your specific application, as ever.

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