Tagged Questions

"Static Analysis" refers to the software tools (or their use) to analyze application code for arbitrary properties, such as errors (uninitialized variables, possible SQL injection-attack, is this code-dead, can an argument be null,...) or structure (what is the call graph for this code? is there duplicate code? what information is passed between components?).

learn more… | top users | synonyms

119
votes
12answers
26k views

What open source C++ static analysis tools are available?

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++ ...
83
votes
20answers
12k views

What static analysis tools are available for C#?

What tools are there available for static analysis against C# code? I know about FxCop and StyleCop. Are there others? I've run across NStatic before but it's been in development for what seems like ...
48
votes
6answers
9k views

Are there any static analysis tools for Python?

I am starting to use Python (specifically because of Django) and I would like to remove the burden for exhaustive testing by performing some static analysis. What tools/parameters/etc. exist to ...
43
votes
13answers
8k views

What code analysis tools do you use for your Java projects?

What code analysis tools do you use on your Java projects? I am interested in all kinds static code analysis tools (FindBugs, PMD, and any others) code coverage tools (Cobertura, Emma, and any ...
42
votes
19answers
14k views

How do you count your Lines of Code?

We want to invite a third party for reviewing our code and they want to know a ball park figure of number of lines of code we have in all our applications! Depending on the coding style of each of ...
39
votes
10answers
8k views

Code Analysis In Python

What tools are good to use for code analysis in python? I have a large source repository split across multiple projects, and I would like to be able to run tools across the directories to see details ...
38
votes
9answers
7k views

Using Pylint with Django

I would very much like to integrate pylint into the build process for my python projects, but I have run into one show-stopper: One of the error types that I find extremely useful--:E1101: *%s %r has ...
33
votes
6answers
3k views

Dead code identification (C++)

I have a large legacy C++ project compiled under Visual Studio 2008. I know there is a reasonably amount of 'dead' code that is not accessed anywhere -- methods that are not called, whole classes ...
27
votes
5answers
688 views

Why won't this seemingly correct .NET code compile?

I'm asking in case I'm missing something obvious, but I think I may have stumbled upon a bug in .NET's compiler. I have two projects in a .NET solution, one visual basic, one C#. C# code, consisting ...
26
votes
8answers
5k views

Dead code detection in legacy C/C++ project

How would you go about dead code detection in C/C++ code? I have a pretty large code base to work with and at least 10-15% is dead code. Is there any Unix based tool to identify this areas? Some ...
25
votes
6answers
5k views

Are there any JavaScript static analysis tools?

I'm used to having my compiler complain when I do something stupid like a typo on a variable name but JavaScript has a habit of letting this pass. Are there any static analysis tools for JavaScript? ...
24
votes
14answers
13k views

Checkstyle vs. PMD

We are introducing static analysis tools into the build system for our Java product. We are using Maven2 so Checkstyle and PMD integration come for free. However it looks like there is a large overlap ...
23
votes
3answers
600 views

Static Thread Analysis: Good idea?

I help maintain and build on a fairly large Swing GUI, with a lot of complex interaction. Often I find myself fixing bugs that are the result of things getting into odd states due to some race ...
22
votes
2answers
749 views

Should the Code Contracts static checker be able to check arithmetic bound?

(Also posted on the MSDN forum - but that doesn't get much traffic, as far as I can see.) I've been trying to provide an example of Assert and Assume. Here's the code I've got: public static int ...
21
votes
11answers
2k views

Introduction to Static Analysis

I'm a self taught programmer with almost non CS background. I'm currently learning about parsing techniques/algorithms/tools, and have a desire to build programs to analyze Java code. What kind of ...
21
votes
18answers
10k views

C++ static code analysis tool on Windows

What C++ static code analysis tool are there on Microsoft Windows, and which would you recommend? Please state whether a particular tool relies on cygwin, and whether it cost money. One per post as ...
20
votes
11answers
3k views

Is there a need for a “use strict” Python compiler?

There exist static analysis tools for Python, but compile time checks tend to be diametrically opposed to the run-time binding philosophy that Python embraces. It's possible to wrap the standard ...
19
votes
4answers
2k views

Are there any tools for performing static analysis of Scala code?

Are there any tools for performing static analysis of Scala code, similar to FindBugs and PMD for Java or Splint for C/C++? I know that FindBugs works on the bytecode produced by compiling Java, so ...
18
votes
2answers
447 views

C# Code Contracts: What can be statically proven and what can't?

I might say I'm getting quite familiar with Code Contracts: I've read and understood most of the user manual and have been using them for quite a while now, but I still have questions. When I search ...
18
votes
6answers
4k views

Static Actionscript code analysis?

I want to see class, function and variable/property, dependencies visually, like NDepend, but for ActionScript 2 or AS3 code. Any programs or ideas? Use Doxygen in some way? FlexUnit?
17
votes
5answers
7k views

How do commercial Java static analysis tools compare with the free ones? [closed]

I'm familiar with a handful of the free static analysis tools available for Java, such as FindBugs and PMD. What I'd like to know is how the commercial products such as Klocwork and Coverity stack up ...
16
votes
2answers
2k views

What are the differences between PMD and FindBugs?

There was a question comparing PMD and CheckStyle. However, I can't find a nice breakdown on the differences/similarities between PMD and FindBugs. I believe a key difference is that PMD works on ...
16
votes
5answers
829 views

C#/.NET analysis tool to find race conditions/deadlocks

Is there a tool that analyses .NET code and finds race conditions? I have a bit of code that has a public static property that gets or creates a private static field. It also has a public static ...
16
votes
2answers
802 views

How to start using ndepend?

I recently downloaded ndepend and ran an analysis on an open source project I participate in. I did not now where to look next - a bit of visual and information overload and it turned out I don't ...
15
votes
6answers
434 views

Java tool to improve my Clean Code Development

Are there any (static analysis / refactoring / ...) tools for Java specially tailored towards clean code development (CCD)? I know of the usual tools for static analysis (PMD, Findbugs, Checkstyle), ...
15
votes
3answers
310 views

How to enforce usage of the @Override annotation?

Is there a static analysis tool that can enforce usage of the @Override annotation consistently that can be run outside of an IDE? CheckStyle has a MissingOverride check but it only applies to methods ...
15
votes
4answers
222 views

Are there any tools which can report on commented-out .NET code?

Has anyone come across a tool to report on commented-out code in a .NET app? I'm talking about patterns like: //var foo = "This is dead"; And /* var foo = "This is dead"; */ This won't be found ...
15
votes
6answers
756 views

Tool to find all unused Code

I need a tool I can run that will show me a list of unused methods, variables, properties, and classes. CSS classes would be an added bonus. I heard FXCop can do this? or NDepend or something?
15
votes
14answers
2k views

Are C++ static code analyis tools worth it?

Our management has recently been talking to some people selling C++ static analysis tools. Of course the sales people say they will find tons of bugs, but I'm skeptical. How do such tools work in ...
15
votes
7answers
2k views

Are there any static code analysis tools for Delphi/Pascal?

Are there any static code analysis tools for Delphi/Pascal? I have seen plenty of options for C++ and .NET, but nothing for Delphi/Pascal. Ideally something that could be integrated into a ...
15
votes
4answers
5k views

How to determine maximum stack usage?

What methods are available for determining the optimum stack size for embedded/memory constrained system? If it's too big then memory is wasted that could be used elsewhere. However, if it is too ...
15
votes
6answers
777 views

Can Resharper be set to warn if IDisposable not handled correctly?

Is there a setting in Resharper 4 (or even Visual Studio itself...) that forces a warning if I forget to wrap code in a using block, or ommit the proper Dispose call in a finally block?
14
votes
6answers
2k views

tool to detect C# code smells

I'm working with C# and I was hoping to find some tools akin to those I'm used to in Ruby and Ruby on Rails for detecting code smells. I'm referring to things like Roodi, Flay, Flog, Reek, Rcov, and ...
13
votes
6answers
1k views

Free static checker for C99 code

I am looking for a free static checker for C99 code (including GCC extensions) with the ability to explicitly say "these preprocessor macros are always defined." I need that last part because I am ...
13
votes
12answers
657 views

How do I enforce null checking?

I'm working on a large project where, even with 10s of 1000s of automated tests and 100% code coverage, we're getting a ridiculous number of errors. About 95% of errors we get are ...
13
votes
5answers
3k views

What StyleCop like tools are there for VB.NET

see also VB.NET Static Code Anaylsis For better or for worst we now have a VB.NET coding standards document that is based on a C# coding standard as enforced by StyleCop. For example the number ...
13
votes
10answers
3k views

Stack Size Estimation

In multi-threaded embedded software (written in C or C++), a thread must be given enough stack space in order to allow it to complete its operations without overflowing. Correct sizing of the stack ...
12
votes
2answers
197 views

code examples for learning LLVM backend programming

I am learning programming LLVM backends. Currently I am interested in analysis passes, later program transformations. (I assume as I will be more fluent with analysis then will be time for program ...
12
votes
5answers
2k views

Static source code analysis with LLVM

I recently discover the LLVM (low level virtual machine) project, and from what I have heard It can be used to performed static analysis on a source code. I would like to know if it is possible to ...
12
votes
7answers
2k views

Where can I find an actively developed lint tool for Ruby?

Most of the code I write is in Ruby, and every once in a while, I make some typo ( which only gets caught after a while ). This can suck when you have your scripts do some long running tasks, and you ...
12
votes
5answers
412 views

Tools for finding Shared Mutable data bugs in Java

I have a large legacy system to maintain. The codebase uses threads all over the place and those threads share a lot of mutable data. I know, sounds bad. Anyway, don't answer "rewrite the whole ...
12
votes
3answers
4k views

Coverity for Java static analysis

I'd like to get comments from people who have used or evaluated Coverity for statically analysing Java-code. I know it's popular in C/C++ world, but is it worth spending the money for Java analysis or ...
12
votes
10answers
6k views

Maven plugins for javascript

Javascript code can be tough to maintain. I am looking for tools that will help me ensure a reasonable quality level. So far I have found JsUNit, a very nice unit test framework for javascript. Tests ...
11
votes
3answers
117 views

Static analysis tool to detect multithreading problems (deadlocks, race conditions, not-looped wait, etc.)

I am shopping for a STATIC ANALYSIS TOOL that can tell me if our code suffers from deadlocks, race conditions and bad practices in general. I know that FindBugs and PMD do already something like ...
11
votes
6answers
465 views

Header file inclusion static analysis tools?

A colleague recently revealed to me that a single source file of ours includes over 3,400 headers during compile time. We have over 1,000 translation units that get compiled in a build, resulting in a ...
11
votes
3answers
207 views

How to statically analyze reference types passed to each bytecode instruction?

I have rewritten the question (the question remains the same, just with less background noise) in hopes of creating less confusion directed at all the wrong things - due to this, some of the comments ...
11
votes
1answer
1k views

Tools for generating Haskell function dependency (control flow) graph?

Note not "functional dependency". Are there tools available that allow me to build a static function dependency graph from source code? Something which indicates to me which functions depend on which ...
11
votes
7answers
846 views

Measuring the complexity of SQL statements

The complexity of methods in most programming languages can be measured in cyclomatic complexity with static source code analyzers. Is there a similar metric for measuring the complexity of a SQL ...
11
votes
3answers
466 views

When are global static const variables being initialized?

I tried to search the site for this question but didn't find this exactly, although this subject is being discussed a lot... I have this declaration in a cpp file, not within any function: static ...
11
votes
7answers
1k views

how to raise warning if return value is disregarded - gcc or static code check?

I'd like to see all the places in my code (C++) which disregard return value of a function. How can I do it - with gcc or static code analysis tool? Bad code example: int f(int z) { return z + ...

1 2 3 4 5 9