I am working on a C++ program and the compiled object code from a single 1200-line file (which initializes a rather complex state machine) comes out to nearly a megabyte. What could be making the file so large? Is there a way I can find what takes space inside the object file?
|
|
|
|
|
|
|
There can be several reasons when object files are bigger than they have to be at minimum:
At first I suggest to check if you're building with debug information, this causes the most bloat in my experience. |
||
|
|
|
|
(I'm assuming you've got optimisations and dead code stripping turned on). Turn on your linker's "generate map file" option and examine the output. Common culprits are macros/templates that produce large amounts of code, and large global objects. |
||||||
|
|
|
Possibly some template instantiations (especially the Update: Could be also some large static array/object. Besides that, with MSVC++ and GCC, you can look at the generated assembly for a file, which can give you some hints (with GCC, it's |
|||
|
|
|
|
Here's a macro I use to see compile time values:
Then go happy at compile time to see what symbols are taking up space. Edit: Since no one seems to understand this, I'll clarify: the way to use this is to add I use this all the time to see how big things are without having to run a debugger. MSN |
||||
|
|
|
Another possible reason is Link-Time Code Generation, a VC++ option. This moves the backend of the compiler into the linker. This allows for better optimizations, but the object file now has to contain all internal datastructures usually passed between front- and backend. |
||
|
|
