以“tree”开头的 gcc 标志有什么特别之处?
有很多以 tree< 开头的 优化设置 /代码>。有些是:
-ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse -ftree-ter
这些标志有什么特别之处?
There are a lot of optimization settings starting with tree
. Some are:
-ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse -ftree-ter
What's special about those flags?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们都与源代码的树表示一起使用。
不确定 GCC 到底是如何做到的,但一般来说 编译器 会解析你的代码并将其转换为抽象语法树,解析树或类似结构。这些优化适用于该树。稍后,该树将用于生成机器代码。
They all work with the tree representation of your source code.
Not sure exactly how GCC does it, but in general a compiler will parse your code and turn it into an abstract syntax tree, parse tree or similar structure. These optimizations work on that tree. Later, the tree will be used to generate the machine code.