According to what I read, the compiler is not obliged to substitute the function call of an inline function with its body, but will do so if it can. This got me thinking- why do we have the inline word if that is the case? Why not make all function inline functions by default and let the compiler figure out if it can substitute the calls with the function body or not?
|
There are C keywords ( What the word means now, in C++, is that it can have multiple identical definitions, and needs to be defined in every translation unit that uses it. (In other words, you need to make sure it can be inlined.) You can have an |
|||||||||
|
|
Originally But the only guaranteed effect of Nowadays, some compilers are very keen on following the inlining hint, e.g. g++. And some compilers take it less seriously, e.g. Visual C++. But all have to abide by the guarantee. It is unfortunate that these two meanings -- optimization hint and what we might call a linker level discardable definition -- reside with the same keyword, because it means that you cannot practically have one without the other. It is also unfortunate that The need for linker level discardable data has increased as header-only modules have become more popular. E.g., many Boost sub-libraries are header-only. For data you can, however, apply a little trick with templates. Define it in some class template, provide a Cheers & hth., |
|||
|
|
|
Why not make all functions inline by default? Because it's an engineering trade off. There are at least two types of "optimization": speeding up the program and reducing the size (memory footprint) of the program. Inlining generally speeds things up. It gets rid of the function call overhead, avoiding pushing then pulling parameters from the stack. However, it also makes the memory footprint of the program bigger, because every function call must now be replaced with the full code of the function. To make things even more complicated, remember that the CPU stores frequently used chunks of memory in a cache on the CPU for ultra-rapid access. If you make the program's memory image big enough, your program won't be able to use the cache efficiently, and in the worst case inlining could actually slow your program down. To some extent the compiler can calculate what the trade offs are, and may be able to make better decisions than you can, just looking at the source code. |
|||||||
|
|
Let's see what the standard says (highlighted important parts in bold):
So, if you want to be sure, you should read the documentation of your compiler. Inlining everything is a bad idea, as it might result in a lot of duplicated machine code... So you'll have to know:
|
|||||||||||||
|
|
Let me give you a good reason for using the inline keyword. On an embedded system, such as an ticket printer or similar smaller system. The processor is very limited and a function call (preparing function parameters on stack, call, fetch params from stack and put back answer etc..) can take several ms to execute, beside the function itself. Lets say the call time is about 60ms (just for calling, not the actual function) and you have do 50 iterations (loop or iterative calls in a tree). The time to just move forth and back from that function call will take 60 * 50 = 3000 (3 seconds). If you have the memory you would definitely do an inline to save 3 seconds. So inline are basically used when you need execution speed. In some projects I was involved with, the calling time was longer than the execution time, a classic situation when to use inline. |
|||||
|