What is the advantages/disadvantages of using inline functions in C++? I see that it only increase performance for the code that the compiler output but with today's optimized compilers, fast CPUs, huge memory etc (not like in the 1980< where memory was scarce and everything had to fit in 100KB of memory) what advantages do they really have today?
|
feedback
|
|
Inline functions are faster because you don't need to push and pop things on/off the stack like parameters and the return address; however, it does make your binary slightly larger. Does it make a significant difference? Not noticeably enough on modern hardware for most. But it can make a difference, which is enough for some people. Marking something inline does not give you a guarantee that it will be inline. It's just a suggestion to the compiler. Sometimes it's not possible such as when you have a virtual function, or when there is recursion involved. And sometimes the compiler just chooses not to use it. I could see a situation like this making a detectable difference:
| |||||||||||
feedback
|
Advantages
Disadvantages
Inlining Magic
| ||||
|
feedback
|
|
There are several other questions discussing inline functions http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions http://stackoverflow.com/questions/86561/inlining-c-code As to advantages, if you are calling a small function from a loop then it can make a significant difference in performance. | ||||
|
feedback
|
|
Inlining is a suggestion to the compiler which it is free to ignore. It's ideal for small bits of code. If your function is inlined, it's basically inserted in the code where the function call is made to it, rather than actually calling a separate function. This can assist with speed as you don't have to do the actual call. It also assists CPUs with pipelining as they don't have to reload the pipeline with new instructions caused by a call. The only disadvantage is possible increased binary size but, as long as the functions are small, this won't matter too much. I tend to leave these sorts of decisions to the compilers nowadays (well, the smart ones anyway). The people who wrote them tend to have far more detailed knowledge of the underlying architectures. | ||||
|
feedback
|
|
During optimization many compilers will inline functions even if you didn't mark them. You generally only need to mark functions as inline if you know something the compiler doesn't, as it can usually make the correct decision itself. | ||||
|
feedback
|
|
I'd like to add that inline functions are crucial when you are building shared library. Without marking function inline, it will be exported into the library in the binary form. It will be also present in the symbols table, if exported. On the other side, inlined functions are not exported, neither to the library binaries nor to the symbols table. It may be critical when library is intended to be loaded at runtime. It may also hit binary-compatible-aware libraries. In such cases don't use inline. | ||||
feedback
|
|
| ||||
|
feedback
|
|
In arcaic C and C++, In moder C++,
member function defined inside a class are "inline" by default, as are template functions. global functions aren't.
Note the inclusion of fileA.h into two .cpp files, resulting in two instances of | ||||
|
feedback
|
|
Inline function is the optimization technique used by the compilers. One can simply prepend inline keyword to function prototype to make a function inline. Inline function instruct compiler to insert complete body of the function wherever that function got used in code.
To check more about it one can follow this link http://tajendrasengar.blogspot.com/2010/03/what-is-inline-function-in-cc.html | |||||
feedback
|
|
Generally speaking, these days with any modern compiler worrying about inlining anything is pretty much a waste of time. The compiler should actually optimize all of these considerations for you through its own analysis of the code and your specification of the optimization flags passed to the compiler. If you care about speed, tell the compiler to optimize for speed. If you care about space, tell the compiler to optimize for space. As another answer alluded to, a decent compiler will even inline automatically if it really makes sense. Also, as others have stated, using inline does not guarantee inline of anything. If you want to guarantee it, you will have to define a macro instead of an inline function to do it. When to inline and/or define a macro to force inclusion? - Only when you have a demonstrated and necessary proven increase in speed for a critical section of code that is known to have an affect on the overall performance of the application. | ||||
|
feedback
|
|
Conclusion from another discussion here: Are there any drawbacks with inline functions? Apparently, There is nothing wrong with using inline functions. But it is worth noting the following points!
| |||||
feedback
|
inlineis a c++ keyword and that inlining is a compiler optimization technique. See this question "when should I write the keywordinlinefor a function/method" for the correct answer. – deft_code Mar 24 '11 at 22:37