I was reading the C++ FAQs and I noticed one sentence.
main() cannot be inline.
Why is this?
|
In C++ it is not legal to call the main function in your code, so there'd be no way it could ever be inlined. |
|||||||||||||||||||||
|
|
Because the standard says so:
And why does it say so? Because it's trying to leave as much about the implementation of My friend on the committee confirmed this:
BTW, don't confuse the So, even if it were true that It doesn't for the reason stated above, and in litb's answer: it would complicate matters for no real benefit. |
|||||||
|
|
The C runtime library needs to find this symbol in order to "know" which function to run. |
|||||||
|
|
You cannot directly call main() (it's forbidden in c++), so there is no point of inlining it. |
|||||
|
|
Usually Now, if we can |
|||||||||||
|
|
firstly you must understand how work function with inline example:
will look like to the compiler as:
looking at this example, how do you want to make main inline? This method is inline immediately. |
|||||||||||
|
|
The C++ standard says that the Definition of Inline An important situation of inlining is the case where there is a pointer to the function. In this case, there must be at least one static copy of the function. In this case, the linker can resolve "external linkages" of the inlined function because there is one static version. Important to note that the compiler and linker determine whether or not to paste the contents or calls a single instance of the function. Also of note, functions that are not tagged by the programmer may also be inlined by the compiler. Inlining the main function The compiler and linker would have to insure that only one instance of the inlined Summary "That's just my opinion, I could be wrong." -- Dennis Miller, comedian. |
|||
|
|
|
You can only define Because Note that the question in your title "Why main() in C++ cannot be inlined?" and the statement you quote out of the Standard concern different things. You are asking whether the function can be inlined, which commonly is understood to insert the code of a called function completely or partially into the calling function. Just marking a function |
|||||||||||
|
|
Others have remarked that an invocation of However, the hinting effect of The only guaranteed effect of As a practical matter this allows the definition to be placed in a header file, and placing it in a header file is a also practically necessary to guarantee identical definitions. That does not make sense for |
|||||||||||||
|
|
If you linked statically to the CRT and enabled some link-time compilation-inlining (like MSVC has) it might be possible to inline it. But it doesn't really make sense. It will be called once and that function call-overhead is practically naught compared to everything else that is done before the first line in main executes. ... Aaand, it is an easy way to force the symbol to appear only once in your executable. :) |
|||
|
|
|
There are a number of basic reasons. Basically, |
|||
|
|
|
I see the standard says so, but the real practical answer would be as simple as stating that the runtime added to every C and C++ program has to call to some point in the executable. That function should have an external symbol (and address when running) so that the linker can find it to be called at the beginning of execution. Hence you cannot declare it as |
|||
|
|
Since its the main() function, which starts the execution, when the code gets compiled to binary, everything is in the And yes, its illegal to use inline for your C++ program, that's more about a syntax! |
|||
|
|
|
For most combinations of compiler/archetecture, the On memory constrained archetectures, many compilers, ones which produce a flat binary (like intex hex format) instead of a dynamic linker friendly container (like elf or xcoff), optimize all of the boilerplate away, since it would just be bloat. Some architectures don't support function calls at all (only a limited subset of C++ is possible on these platforms.) In order to support the widest variety of such architectures and build environments, the standard elects keep the semantics of If you need something like an inline
|
|||
|
|
|
Inline functions are having static scope by-default. It means if we declare main() as inline, it's scope will be limited to the file where it is defined. Yet, the C start-up library (provided by compiler vendor) needs 'main' to be a global symbol. There are some compilers that allow to modify entry point function (e.g. main) using linker flags. |
|||
|
|
|
inline functions don't usually have an address, so there is no portable way to call main, main() needs an address on which the init code can jump into. Inlined functions are meant to be stuck into the calling function, if main is inlined, it should be inlined into the init code of the program, which is not portable either. |
|||
|
|
operating system loads binary data to memory; looks for entry point (the 'main' symbol in c/c++); makes far jump to the addres of the entry point label. Operating system does not know anything about main function in your code until the program is not loaded. |
|||||
|
mainfunction compiled into it. So the answer is, because you can't recompile your OS? – Kieren Johnstone Aug 8 '11 at 15:15inline(which, remember, is just a hint!). – Lightness Races in Orbit Aug 8 '11 at 17:37