What is wrong with using inline functions? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T18:09:52Zhttp://stackoverflow.com/feeds/question/60830http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions13What is wrong with using inline functions?Prakash2008-09-13T20:25:07Z2008-09-22T14:52:48Z
<p>While it would be very convenient to use inline functions at some situations,</p>
<p>Are there any drawbacks with inline functions?</p>
<p><strong>Conclusion</strong>:</p>
<p>Apparently, There is nothing wrong with using inline functions.</p>
<p>But it is worth noting the following points!</p>
<ul>
<li><p>Overuse of inlining can actually make programs slower. Depending on a function's size, inlining it can cause the code size to increase or decrease. Inlining a very small accessor function will usually decrease code size while inlining a very large function can dramatically increase code size. On modern processors smaller code usually runs faster due to better use of the instruction cache. <a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Inline_Functions" rel="nofollow">- Google Guidelines</a></p></li>
<li><p>The speed benefits of inline functions tend to diminish as the function grows in size. At some point the overhead of the function call becomes small compared to the execution of the function body, and the benefit is lost <a href="http://www-rocq.inria.fr/who/Marc.Thiriet/Langages/tic0324.html" rel="nofollow">- Source</a></p></li>
<li><p>There are few situations where an inline function may not work:</p>
<ul>
<li>For a function returning values; if a return statement exists.</li>
<li>For a function not returning any values; if a loop, switch or goto statement exists. </li>
<li>If a function is recursive. <a href="http://www-rocq.inria.fr/who/Marc.Thiriet/Langages/tic0324.html" rel="nofollow">-Source</a></li>
</ul></li>
<li><p>The <code>__inline</code> keyword causes a function to be inlined only if you specify the optimize option. If optimize is specified, whether or not <code>__inline</code> is honored depends on the setting of the inline optimizer option. By default, the inline option is in effect whenever the optimizer is run. If you specify optimize , you must also specify the noinline option if you want the <code>__inline</code> keyword to be ignored. <a href="http://support.sas.com/documentation/onlinedoc/sasc/doc750/html/clug/zcoptinl.htm" rel="nofollow">-Source</a></p></li>
</ul>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/60833#608332Answer by Vaibhav for What is wrong with using inline functions?Vaibhav2008-09-13T20:26:12Z2008-09-13T20:26:12Z<p>I doubt it. Even the compiler automatically inlines some functions for optimization. </p>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/60835#608358Answer by jeremy Ruten for What is wrong with using inline functions?jeremy Ruten2008-09-13T20:28:46Z2008-09-13T20:39:13Z<p>It could increase the size of the
executable, and I don't think
compilers will always actually make
them inline even though you used the
inline keyword. (Or is it the other
way around, like what <a href="http://beta.stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions#60833" rel="nofollow">Vaibhav</a>
said?...)</p>
<p>I think it's usually OK if the
function has only 1 or 2 statements.</p>
<p><strong>Edit:</strong> Here's what the linux <a href="http://lxr.linux.no/linux/Documentation/CodingStyle" rel="nofollow">CodingStyle</a> document says about it:</p>
<blockquote>
<p>Chapter 15: The inline disease</p>
<p>There appears to be a common
misperception that gcc has a magic
"make me faster" speedup option called
"inline". While the use of inlines can
be appropriate (for example as a means
of replacing macros, see Chapter 12),
it very often is not. Abundant use of
the inline keyword leads to a much
bigger kernel, which in turn slows the
system as a whole down, due to a
bigger icache footprint for the CPU
and simply because there is less
memory available for the pagecache.
Just think about it; a pagecache miss
causes a disk seek, which easily takes
5 miliseconds. There are a LOT of cpu
cycles that can go into these 5
miliseconds.</p>
<p>A reasonable rule of thumb is to not
put inline at functions that have more
than 3 lines of code in them. An
exception to this rule are the cases
where a parameter is known to be a
compiletime constant, and as a result
of this constantness you <em>know</em> the
compiler will be able to optimize most
of your function away at compile time.
For a good example of this later case,
see the kmalloc() inline function.</p>
<p>Often people argue that adding inline
to functions that are static and used
only once is always a win since there
is no space tradeoff. While this is
technically correct, gcc is capable of
inlining these automatically without
help, and the maintenance issue of
removing the inline when a second user
appears outweighs the potential value
of the hint that tells gcc to do
something it would have done anyway.</p>
</blockquote>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/60836#608360Answer by Mladen Jankovic for What is wrong with using inline functions?Mladen Jankovic2008-09-13T20:31:27Z2008-09-13T20:31:27Z<p>Excessive inlining of functions can increase size of compiled executable which can have negative impact on cache performance, but nowadays compiler decide about function inlining on their own (depending on many criterias) and ignore inline keyword. </p>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/60844#608442Answer by Paul Tomblin for What is wrong with using inline functions?Paul Tomblin2008-09-13T20:36:08Z2008-09-13T20:36:08Z<p>I'd amplify what @Vaibhav said, and declare that "inline" is the "register" of the 2000s. Remember the "register" keyword? Has anybody used it since the 1980s?</p>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/60850#608507Answer by Alan for What is wrong with using inline functions?Alan2008-09-13T20:38:49Z2008-09-13T20:38:49Z<p>It worth pointing out that the inline keyword is actually just a hint to the compiler. The compiler may ignore the inline and simply generate code for the function someplace.</p>
<p>The main drawback to inline functions is that it can <strong>increase the size of your executable</strong> (depending on the number of instantiations). This can be a problem on some platforms (eg. embedded systems), especially if the function itself is recursive.</p>
<p>I'd also recommend making inline'd functions <strong>very small</strong> - The speed benefits of inline functions tend to diminish as the function grows in size. At some point the overhead of the function call becomes small compared to the execution of the function body, and the benefit is lost.</p>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/60854#608541Answer by Fire Lancer for What is wrong with using inline functions?Fire Lancer2008-09-13T20:41:07Z2008-09-13T20:41:07Z<p>You should also note that the inline keyword is only a request. The compiler may choose not to inline it, likewise the compiler may choose to make a function inline that you did not define as inline if it thinks the speed/size tradeoff is worth it.</p>
<p>This decision is generaly made based on a number of things, such as the setting between optimise for speed(avoids the function call) and optimise for size (inlining can cause code bloat, so isn't great for large repeatedly used functions).</p>
<p>with the VC++ compiler you can overide this decision by using __forceinline</p>
<p>SO in general:
Use inline if you really want to have a function in a header, but elsewhere theres little point because if your going to gain anything from it, a good compiler will be making it inline for you anyway.</p>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/60941#609413Answer by maccullt for What is wrong with using inline functions?maccullt2008-09-13T22:28:06Z2008-09-13T22:28:06Z<p>I agree with the other posts:</p>
<ul>
<li>inline may be superfluous because the compiler will do it</li>
<li>inline may bloat your code</li>
</ul>
<p>A third point is it may force you to expose implementation details in your headers, .e.g.,</p>
<pre><code>class OtherObject;
class Object {
public:
void someFunc(OtherObject& otherObj) {
otherObj.doIt(); // Yikes requires OtherObj declaration!
}
};
</code></pre>
<p>Without the inline a forward declaration of OtherObject was all you needed. With the inline your
header needs the definition for OtherObject.</p>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/61290#612901Answer by Nick for What is wrong with using inline functions?Nick2008-09-14T11:58:54Z2008-09-14T11:58:54Z<p>Inlining larger functions can make the program larger, resulting in more cache misses and making it slower.</p>
<p>Deciding when a function is small enough that inlining will increase performance is quite tricky. <a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Inline_Functions" rel="nofollow">Google's C++ Style Guide</a> recommends only inlining functions of 10 lines or less.</p>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/61299#612992Answer by Niall Ryan for What is wrong with using inline functions?Niall Ryan2008-09-14T12:26:59Z2008-09-14T12:26:59Z<p>As others have mentioned, the inline keyword is only a hint to the compiler. In actual fact, most modern compilers will completely ignore this hint. The compiler has its own heuristics to decide whether to inline a function, and quite frankly doesn't want your advice, thank you very much.</p>
<p>If you really, really want to make something inline, if you've actually profiled it and looked at the disassembly to ensure that overriding the compiler heuristic actually makes sense, then it is possible:</p>
<ul>
<li>In VC++, use the __forceinline keyword</li>
<li>In GCC, use __attribute__((always_inline))</li>
</ul>
<p>The inline keyword does have a second, valid purpose however - declaring functions in header files but not inside a class definition. The inline keyword is needed to tell the compiler not to generate multiple definitions of the function.</p>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/67582#675822Answer by bronek.k for What is wrong with using inline functions?bronek.k2008-09-15T22:20:03Z2008-09-15T22:20:03Z<p>There is a problem with inline - once you defined a function in a header file (which implies inline, either explicit or implicit by defining a body of a member function inside class) there is no simple way to change it without forcing your users to recompile (as opposed to relink). Often this causes problems, especially if the function in question is defined in a library and header is part of its interface.</p>
http://stackoverflow.com/questions/60830/what-is-wrong-with-using-inline-functions/70094#700941Answer by Stacker for What is wrong with using inline functions?Stacker2008-09-16T07:35:02Z2008-09-16T07:35:02Z<p>I don't know if my answer's related to the question but:</p>
<p>Be <strong>very</strong> careful about inline virtual methods! Some buggy compilers (previous versions of Visual C++ for example) would generate inline code for virtual methods where the standard behaviour was to do nothing but go down the inheritance tree and call the appropriate method.</p>