Re: Inline functions
On Jul 5, 11:05 am, "Alf P. Steinbach /Usenet" <alf.p.steinbach
+use...@gmail.com> wrote:
* Suresh V, on 05.07.2010 11:46:
[...]
Being inline also serves as a vague hint to the compiler about
inlining the machine code (to the extent that that's
practically possible for this compiler and routine, if it's
done).
The hint is far from vague. The standard contains a very clear
expression of the intent of inline, and a compiler which ignores
that intent without reason is defective, at least from a QoI
point of view. (It's often useful to ignore it when debugging,
and most compilers have an option to prevent inlining, for
debugging purposes.)
Of course, this really doesn't change the issue much with
regards to the original poster's question. The compiler may
have any number of more or less valid reasons for not inlining
the function (and of course, most compilers will also inline
functions not declared inline, if appropriate).
The hint is nothing that you should rely on, though, and it's
not the primary thing. The only sure, guaranteed behavior
resulting from 'inline' is the multiple-definition behavior
-- and it has nothing to do with lifetime.
The hint is the primary reason for using inline. It's true that
you can't rely on it. But really, you wouldn't make anything
inline before the profiler said it was necessary. And given the
profiler output before and after making something inline, you
can pretty well determine whether it helped or not (and it's
a lot easier to make something inline than to hand code a lot of
other optimizations).
--
James Kanze