vote up 32 vote down star
25

Java has some very good open source static analysis tools such as FindBugs, Checkstyle and PMD. Those tools are easy to use, very helpful, runs on multiple operating systems and free.

Commercial C++ static analysis products are available from vendors Klocwork, Gimpel and Coverity. Although having such products are great, the cost is just way too much for students.

The alternative is to find open source C++ static analysis tools that will run on multiple platforms (Windows and Unix). By using an open source tool, it could be modified to fit certain needs. Finding the tools has not been easy task.

Below is a short list of C++ static analysis tools that were found or suggested by others.

What are some other portable open source C++ static analysis tools that anyone knows of and can be recommended?

Some related links.

flag
Added the static-analysis tag. – Onorio Catenacci Sep 26 '08 at 19:56
Commercial, DMS Software Reengineering Toolki, handles Java, C, C++, and COBOL, provides parsing, AST building, name/type resoltion, control/data flow analysis, custom analysis and transformation. See semanticdesigns.com/Products/DMS/…. – Ira Baxter Jul 2 at 6:48

9 Answers

vote up 4 vote down check

Oink is a tool built on top of the Elsa C++ front-end. Mozilla's Pork is a fork of Elsa/Oink.

link|flag
vote up 0 vote down

You should try oo-browser it has awesome integration with xemacs

link|flag
vote up 3 vote down

CppCheck is open source and cross-platform.

link|flag
vote up 0 vote down

Doxygen does some control flow analysis and generates graphs. Those may not be what you're looking for, but I've foudn them useful to look at.

link|flag
vote up 2 vote down

Under development for now, but clang does C analysis and is targetted to handle C++ over time. It's part of the LLVM project.

link|flag
LLVM is a very interesting project that compared to gcc, generates mo re optimized binaries in less time; and clang, when complete, will be its front-end... – Nicola Bonelli Sep 29 '08 at 21:55
vote up 8 vote down

Concerning the GNU compiler, gcc has already a builtin option that enables additional warning to those of -Wall. The option is -Weffc++ and it's about the violations of some guidelines of Scott Meyers published in his books "Effective and More Effective C++".

In particular the option detects the following items:

  • Define a copy constructor and an assignment operator for classes with dynamically allocated memory.
  • Prefer initialization to assignment in constructors.
  • Make destructors virtual in base classes.
  • Have "operator=" return a reference to *this.
  • Don’t try to return a reference when you must return an object.
  • Distinguish between prefix and postfix forms of increment and decrement operators.
  • Never overload "&&", "||", or ",".
link|flag
2  
In addition to gcc’s -Wall and -Weffc++, -Wextra does some good free static analysis, e.g., branches which don’t return a value, or checking an unsigned for being less than zero. It’s remarkable how often professional programmers think the latter is a good idea… – Flash Sheridan Apr 6 at 19:42
Yuck, -Weffc++ warns about tons of constructs that are perfectly fine in a large codebase. I second the suggestion of -Wextra, though; don't leave home without it! – Tom Dec 15 at 5:40
vote up 1 vote down

Mozilla's static analysis work is probably worth a look.

link|flag
vote up 2 vote down

If by Open Source, you really meant "free", then Microsoft's prefast analysis is a good one. Windows-only ofcourse. It is fully integrated in Visual Studio & the compiler. e.g.:

cl /analyze Sample.cpp

link|flag
Which version & edition is this available in? – twk Oct 5 '08 at 19:14
VS2005/2008 Team only – Harold Bamford Jan 29 at 19:38
vote up 1 vote down

Splint seems to fill the bill.

If you didn't specify open source I'd say Gimpel Software's PCLint is probably one of the best tools available for static code checking in C++. But, of course, it's not open source.

link|flag
Second the recommendation for PCLint, an amazing static code checker. – Nick Haddad Sep 26 '08 at 19:54
But expensive for a single developer :) I like free better – Robert Gould Sep 27 '08 at 1:20
1  
splint is for C, not C++. I don't know if they plan to expand coverage or not. Hope so! – Harold Bamford Jan 29 at 19:34

Your Answer

Get an OpenID
or

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