Does GCC, when compiling C++ code, ever try to optimize for speed by choosing to inline functions that are not marked with the inline keyword?
|
|
|
||
|
|
Yes. Any compiler is free to inline any function whenever it thinks it is a good idea. GCC does that as well. At -O2 optimization level the inlining is done when the compiler thinks it is worth doing (a heuristic is used) and if it will not increase the size of the code. At -O3 it is done whenever the compiler thinks it is worth doing, regardless of whether it will increase the size of the code. Additionally, at all levels of optimization (enabled optimization that is), static functions that are called only once are inlined. |
|||
|
|
|
|
Yes, especially if you have a high level of optimizations enabled. There is a flag you can provide to the compiler to disable this: -fno-inline-functions. |
||||||
|
|
|
If you use '-finline-functions' or '-O3' it will inline functions. You can also use '-finline_limit=N' to tune how much inlining it does. |
||
|
|
|
|
"-O3 This option turns on more expensive optimizations, such as function inlining" |
||||||
|
|
|
Yes, it does, although it will also generate a non-inlined function body for non- For |
||
|
|

inlinekeyword in C++ has nothing to do with the compiler optimization with the same name. The keyword simply means that the linker should expect to see multiple definitions of the function. That just so happens to make the inline optimization easier (because the full definition can be made visible in multiple translation units), but that's as close as they get. The compiler can inline functions that aren't marked asinline, and functions marked asinlineare not necessarily inlined by the compiler. – jalf Oct 26 at 21:43{ ... };areinlineby default, even without the keyword. – MSalters Oct 27 at 9:43