I would like to know if there is an option I can use with GCC to get a detailed report on the optimization actually chosen and performed by the compiler. This is possible with the Intel C compiler using the -opt-report. I do not want to look at the assembly file and figure out the optimization. I am specifically looking for the loop unrolling and loop tiling factors chosen by the compiler.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Although it's not a report in the sense of aggregated information, you might try the -fdump-ipa-all option which makes gcc produce dump files which at least keep you from having to analyse assembler code on what happend. Regarding loop optimzation the -fdump-rtl-loop2 option might be of interest. For details on all this please see http://gcc.gnu.org/onlinedocs/gcc/Debugging-Options.html. |
||||
|
|
|
here is some documentation on optimize options available in gcc http://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html they have a lot of documentation there, i'm sure you could find something similar to what your looking for, hope that helps! |
|||
|
|
-ftree-vectorizer-verbose=ntells you where that optimisation was applied and why other places it wasn't applied with sufficiently large n – Flexo♦ Sep 28 '11 at 14:24