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 scares and everything had to fit in 100KB of memory) what advantages do they really have today?
|
2
|
|||
|
|
|
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:
|
||||
|
|
|
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. |
||
|
|
|
|
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!
|
||
|
|
|
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. |
||
|
|
|
|
Thank you all :-) |
||
|
|
|
|
Advantages
Disadvantages
Inlining Magic
|
||
|
|
|
|
Really good explanation of inline functions: Here |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
