vote up 28 vote down star
10

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?

flag

16 Answers

vote up 11 vote down check

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.

link|flag
/showincludes is great. Doing this manually was daunting without that. – shambolic Sep 16 '08 at 17:06
vote up 0 vote down

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.

link|flag
3  
That's too much work in a large project. – shambolic Sep 16 '08 at 17:06
3  
It also can silently change the semantics of a program without causing a compile error as per my answer. – Richard Corden Sep 17 '08 at 14:34
vote up -1 vote down

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.

link|flag
1  
You're right that it doesn't affect compiled performance or size, and it doesn't affect compile time very much for a full rebuild. But it affects compile time when a single header is changed since far too many cpp files depend on any given header. – shambolic Sep 16 '08 at 17:07
On the projects I've worked on I don't "he would not have done it without a reason" is always true. – Aardvark Sep 19 '08 at 16:51
vote up 3 vote down

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.

link|flag
I've done that :) Found a lot of #includes to get rid of! – Matt Price Sep 16 '08 at 17:30
I had to laugh when I read this one. My boss did this very thing on one of our projects just last month. Reduced header includes by a couple of factors. – Don Wakefield Oct 26 '08 at 20:44
vote up 6 vote down

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 #define USE_FEATURE_X and b.h uses #ifdef USE_FEATURE_X. If #include "a.h" is commented out, your file may still compile, but may not do what you expect. Detecting this programatically is non-trivial.

Whatever tool does this would need to know your build environment as well. If a.h looks like:

#if defined( WINNT )
   #define USE_FEATURE_X
#endif

Then USE_FEATURE_X is only defined if WINNT is defined, so the tool would need to know what directives are generated by the compiler itself as well as which ones are specified in the compile command rather than in a header file.

link|flag
vote up 12 vote down

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.

link|flag
1  
Some instructions on how to do this with pc-lint can be found at riverblade.co.uk/blog.php?archive=2008_09_01_arch… – David Sykes Sep 23 '08 at 7:04
vote up 1 vote down

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.

#define WIN32_LEAN_AND_MEAN
#define VC_EXTRALEAN

See http://support.microsoft.com/kb/166474

link|flag
No need for both - VC_EXTRALEAN defines WIN32_LEAN_AND_MEAN – Aidan Ryan Jun 23 at 15:25
vote up 1 vote down

If you are looking to remove unnecessary #include files in order to decrease build times, your time and money might be better spent parallelizing your build process using cl.exe /MP, make -j, Xoreax IncrediBuild, distcc/icecream, etc.

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 #include directives and remove those unnecessary dependencies.

link|flag
vote up 0 vote down

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.

link|flag
You could just say "Deciding which #includes are necessary is equivalent to solving the halting problem. Good luck :)" Of course, you can use heuristics, but I don't know of any free software that does this. – Porges Sep 17 '08 at 9:34
vote up 10 vote down

!!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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

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.

link|flag
vote up 7 vote down

If your header files generally start with

#ifndef __SOMEHEADER_H__
#define __SOMEHEADER_H__
// header contents
#endif

(as opposed to using #pragma once) you could change that to:

#ifndef __SOMEHEADER_H__
#define __SOMEHEADER_H__
// header contents
#else 
#pragma message("Someheader.h superfluously included")
#endif

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.