vote up 6 vote down star
3

Hi!

Does anyone know an open-source and/or free code-scanner for automated code analysis in C#, C or C++?

I know for Java there's some brilliant stuff like FindBugs (Eclipse integrated), PMD, or Hammurapi.

Is there anything similar for the C-languages?

wishi

flag

C# is not really a C language, it is closer to Java. Free open-source static analysis software for C and C++ seems to be sorely lacking :-(. – starblue Jan 29 at 16:35
@starblue: What's wrong with lint tool? – Vojislav Stojkovic Jan 29 at 16:42
@Vojislav +1 for lint. – Nicholas Mancuso Jan 29 at 16:49
lint is really a good tip! Thanks ;) Together with the M$ C# stuff(code.msdn.microsoft.com/sourceanalysis/Release/…) from the answers here my problems are all solved ;) – wishi_ Jan 29 at 17:01

9 Answers

vote up 6 vote down check

For .NET languages, you can look at Reflector CodeMetrics which provides some code analysis and design metrics. Also take a look at all of the Reflector addins.

I also second the recommendation for FxCop and StyleCop.

link|flag
vote up 6 vote down

FxCop is a free scanner for .Net.

http://msdn.microsoft.com/en-us/library/bb429476(vs.80).aspx

link|flag
vote up 3 vote down

StyleCop does source level analysis.

link|flag
vote up 1 vote down

NDepend has a two-week trial license.

link|flag
vote up 1 vote down

Resharper does some code analysis especially for pointing out redundant code and logic faults.

link|flag
vote up 1 vote down

For C code, you may take a look at Coccinelle. It is already used to find and fix bugs in the Linux kernel.

link|flag
vote up 0 vote down

You may be able to get some value out of running VC++ with /analyze switch. Although, this particular switch is not available with every edition. Get the compiler which ships with Windows SDK.

link|flag
vote up 0 vote down

Through the comments here and some google magic I came to splint: http://splint.org/

  • Seems to be quite helpful for C.
  • easy to use
  • not Visual Studio dependent

The FxCop and StyleCop extensions look very sophisticated for VisualStudio and .Net.

Thanks so far, wishi

link|flag
vote up 0 vote down

You'll find a list of free and not so free static analysis tools here.

link|flag

Your Answer

Get an OpenID
or

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