I am working on a large C++ project in Visual Studio 2008, and there are a lot of files with unnecessary #include's. Sometimes the #include's are just artifacts and everything will compile fine with them removed, and in other cases classes could be forward declared and the #include could be moved to the .cpp file. Are there any good tools for detecting both of these cases?
|
|
While it won't reveal unneeded include files, Visual studio has a setting "/showIncludes" (right click on a .cpp file, Properties->C/C++->Advanced) that will output a tree of all included files at compile time. This can help in identifying files that shouldn't need to be included. You can also take a look at the pimpl idiom to let you get away with fewer header file dependencies to make it easier to see the cruft that you can remove. |
||
|
|
|
I'm not aware of any tools, but if you suspect something isn't used anymore, why don't you comment it out and see what happens. |
||||||||
|
|
|
I am not sure. Why do you want to remove them at all ? I am quite sure it doesn't affect the performance or binary size in any way. It might increase compile time very marginally. In addition, not removing #include's would probably a good idea since someone actually put them there (either a programmer or auto code generator). If a programmer put it there, he would not have done it without a reason. I do not see any reason to do it. |
||||||
|
|
|
Like Timmermans, I'm not familiar with any tools for this. But I have known programmers who wrote a Perl (or Python) script to try commenting out each include line one at a time and then compile each file. |
||||
|
|
|
I don't know of any such tools, and I have thought about writing one in the past, but it turns out that this is a difficult problem to solve. Say your source file includes a.h and b.h; a.h contains Whatever tool does this would need to know your build environment as well. If a.h looks like:
Then |
||
|
|
|
|
PC Lint works quite well for this, and it finds all sorts of other goofy problems for you too. It has command line options that can be used to create External Tools in Visual Studio, but I've found that the Visual Lint addin is easier to work with. Even the free version of Visual Lint helps. But give PC-Lint a shot. Configuring it so it doesn't give you too many warnings takes a bit of time, but you'll be amazed at what it turns up. |
||||
|
|
|
Adding one or both of the following #defines will exclude often unnecessary header files and may substantially improve compile times especially if the code that is not using Windows API functions.
|
||
|
|
|
If you are looking to remove unnecessary Of course, if you already have a parallel build process and you're still trying to speed it up, then by all means clean up your |
||
|
|
|
|
Some of the existing answers state that it's hard. That's indeed true, because you need a full compiler to detect the cases in which a forward declaration would be appropriate. You cant parse C++ without knowing what the symbols mean; the grammar is simply too ambiguous for that. You must know whether a certain name names a class (could be forward-declared) or a variable (can't). Also, you need to be namespace-aware. |
||
|
|
|
!!DISCLAIMER!! I work on a commercial static analysis tool (not PC Lint). !!DISCLAIMER!! There are several issues with a simple non parsing approach: 1) Overload Sets: It's possible that an overloaded function has declarations that come from different files. It might be that removing one header file results in a different overload being chosen rather than a compile error! The result will be a silent change in semantics that may be very difficult to track down afterwards. 2) Template specializations: Similar to the overload example, if you have partial or explicit specializations for a template you want them all to be visible when the template is used. It might be that specializations for the primary template are in different header files. Removing the header with the specialization will not cause a compile error, but may result in undefined behaviour if that specialization would have been selected. (See: http://stackoverflow.com/questions/59331/visibility-of-template-specialization-of-c-function) As pointed out by 'msalters', performing a full analysis of the code also allows for analysis of class usage. By checking how a class is used though a specific path of files, it is possible that the definition of the class (and therefore all of its dependnecies) can be removed completely or at least moved to a level closer to the main source in the include tree. |
||
|
|
|
|
If you aren't already, using a precompiled header to include everything that you're not going to change (platform headers, external SDK headers, or static already completed pieces of your project) will make a huge difference in build times. http://msdn.microsoft.com/en-us/library/szfdksca(VS.71).aspx Also, although it may be too late for your project, organizing your project into sections and not lumping all local headers to one big main header is a good practice, although it takes a little extra work. |
||
|
|
|
|
Start with each include file, and ensure that each include file only includes what is necessary to compile itself. Any include files that are then missing for the C++ files, can be added to the C++ files themselves. For each include and source file, comment out each include file one at a time and see if it compiles. It is also a good idea to sort the include files alphabetically, and where this is not possible, add a comment. |
||
|
|
|
|
If your header files generally start with
(as opposed to using #pragma once) you could change that to:
And since the compiler outputs the name of the cpp file being compiled, that would let you know at least which cpp file is causing the header to be brought in multiple times. |
||
|
|
|
|
PC-Lint can indeed do this. One easy way to do this is to configure it to detect just unused include files and ignore all other issues. This is pretty straightforward - to enable just message 766 ("Header file not used in module"), just include the options -w0 +e766 on the command line. The same approach can also be used with related messages such as 964 ("Header file not directly used in module") and 966 ("Indirectly included header file not used in module"). FWIW I wrote about this in more detail in a blog post last week at http://www.riverblade.co.uk/blog.php?archive=2008_09_01_archive.xml#3575027665614976318. |
||
|
|
|
|
If you're interested in this topic in general, you might want to check out Lakos' Large Scale C++ Software Design. It's a bit dated, but goes into lots of "physical design" issues like finding the absolute minimum of headers that need to be included. I haven't really seen this sort of thing discussed anywhere else. |
||
|
|
|
|
Give Include Manager a try. It integrates easily in Visual Studio and visualizes your include paths which helps you to find unnecessary stuff. Internally it uses Graphviz but there are many more cool features. And although it is a commercial product it has a very low price. |
|||
|
|
