Also, can anyone point me to a good tutorial on the subject? I can't find any.
|
-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. 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. |
|||
|
|
|
The tricky bit is setting up the makefiles. You definitely need separate output directories for object files. I would recommend naming them "profile" and "release". You might have to copy the *.gcda files that result from the profile run so that GCC finds them in the release build step. The result will almost certainly be faster. It will probably be larger as well. The -fprofile-use option enables many other optimization steps that are otherwise only enabled by -O3. |
|||||
|
-fprofile-arcssometime ago. And it created some files which I understood were profiles of branches taken and so on... But, I stumbled upon-fprofile-useand-fprofile-generatetoday, so I thought of asking this question. I'll edit my question. – nakiya Dec 6 '10 at 12:28