How to use profile guided optimizations in g++?(如何在 g++ 中使用配置文件引导的优化?)
问题描述
另外,谁能给我指点关于这个主题的好教程?我找不到.
Also, can anyone point me to a good tutorial on the subject? I can't find any.
推荐答案
-fprofile-generate 将使用分析代码检测应用程序.如果在编译时已知此使用模式,应用程序将在实际运行时记录某些可以提高性能的事件.分支、内联的可能性等都可以记录,但我不确定 GCC 是如何实现这一点的.
-fprofile-generate will instrument the application with profiling code. The application will, while actually running, log certain events that could improve performance if this usage pattern was known at compile time. Branches, possibility for inlining, etc, can all be logged, but I'm not sure in detail how GCC implements this.
程序退出后,它会将所有这些数据转储到 *.gcda 文件中,这些文件本质上是测试运行的日志数据.使用 -fprofile-use 标志重建应用程序后,GCC 在进行优化时会考虑 *.gcda 日志数据,通常会显着提高性能.当然,这取决于很多因素.
After the program exits, it will dump all this data into *.gcda files, which are essentially log data for a test run. After rebuilding the application with -fprofile-use flag, GCC will take the *.gcda log data into account when doing its optimizations, usually increasing the performance significantly. Of course, this depends on many factors.
这篇关于如何在 g++ 中使用配置文件引导的优化?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 g++ 中使用配置文件引导的优化?
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01