哪里可以找到 clang -OX 的优化序列?
在哪里可以找到 clang 根据 -OX 使用的优化顺序?
Where can I find the sequence of optimizations used by clang according to -OX?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在哪里可以找到 clang 根据 -OX 使用的优化顺序?
Where can I find the sequence of optimizations used by clang according to -OX?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
clang 执行与 opt -ON 完全相同的传递序列。因此,您可以执行诸如
导出在 O3 运行的“完整”传球集之类的操作。
clang executes the precisely same sequence of passes as opt -ON. So, you can do something like
to derive the "full" set of passes which are run at O3.