The static-code-analysis tag has no wiki summary.
15
votes
6answers
590 views
Code Analysis Tools and Inter-Type-Declarations
I have a maven project generated by Spring Roo and use several tools (checkstyle, pmd etc.) to collect information about my project. (namely I am using codehaus' sonar for this)
Roo makes heavy use ...
14
votes
13answers
554 views
Should I declare these methods const?
I'm working on some C++ code where I have several manager objects with private methods such as
void NotifyFooUpdated();
which call the OnFooUpdated() method on the listeners of this object.
Note ...
10
votes
2answers
176 views
I am looking for a recursion analysis tool
I ran into a problem this weekend where method 1 called method 2 which called method 3 which caught exception, and within the exception handling method 1 was called again...
M1 -> M2 -> M3 -> M1 ....
...
9
votes
3answers
102 views
What are the tradeoffs of performing static analysis on source code, byte code, machine code, etc?
What are the various tradeoffs for performing static analysis on various levels of code? For instance for Java, why would someone perform static analysis on Java source code vs. Jasmin code vs. Java ...
9
votes
3answers
124 views
Is Code Contracts failing to spot obvious relationship between Nullable<T>.HasValue and null?
I am experimenting with applying Code Contracts to my code and I've hit a perplexing problem.
This code is failing to meet the contract but unless I'm being really thick I would expect it to be able ...
8
votes
3answers
159 views
Static code analysis for detecting passing a wchar_t* to BSTR
Since a BSTR is only a typedef for wchar_t* our code base has several (many?) places where string literals are passed to a method expecting a BSTR this can mess up with marshallers or anyone who tries ...
8
votes
2answers
220 views
Writing a R lint program
When I program in python, I find using pylint very useful. However, when I program in R, there is nothing comparable.
As a small side project, I thought it would be fun to try and write a small lint ...
7
votes
5answers
212 views
Extending homework testing platform to include code analysis (C/C++)
I'm maintaining/developing a platform for homework testing. It's mostly automatic. What I need to add now is code analysis. I need to check the code for specific constructs.
For example:
Does ...
6
votes
4answers
559 views
What rule do you wish FxCop/Gendarme had?
What definable static code checking rule do you wish to see added to FxCop and/or Gendarme?
Why to do you wish to see the rule added, e.g what are the benefits etc?
How could your rule be ...
5
votes
2answers
348 views
Lint-like program for Perl?
I'm looking for a lint for Perl, something that would catch dead code and other potential problems. Any suggestions?
I have
use strict;
use warnings;
already but I'd like to have more.
5
votes
3answers
893 views
Static code analysis tools for VB6
Right now we are maintaining some old project written in VB6 we are planning to implement continuous integration server for it. We would like to implement some code analysis as well to track that ...
5
votes
2answers
542 views
custom static code analysis rules in fxcop or stylecop?
if writing my own static code analysis rules (for C# code), what are the pros and cons of using stylecop vs fxcop?
is one more appropriate for certain type of analysis than the other? or is the ...
4
votes
1answer
170 views
How can I generate a reverse call tree for a Delphi project?
Is there a way to quickly search for the complete list of code paths to one particular function in my project, in order to find out whether some certain upper-lever function calls it, either directly ...
4
votes
3answers
294 views
Finding Design patterns by Static Analysis of C# code by creating a Plugin for Resharper?
I wanted to verify few design patterns in C# code by static analysis. I found that by creating a plugin for Resharper I can verify the patterns on-the-fly while i am coding. But I did not find good ...
4
votes
3answers
480 views
How to generate a Program Dependence Graph (PDG) from Bytecode in Java
I want to generate a program dependence graph (PDG) from Java Bytecode for further programmatic analysis. Since this is old (the paper is from '87) and presumably well-known technology, I thought that ...
4
votes
1answer
240 views
C Language Data Structure Visualisation
Are there any C-language static analysers out there that create graphical diagrams of the data structures in a body of C code?
I'm thinking along the lines of the data displays in the DDD (Data ...
4
votes
3answers
223 views
How to Suppress Gendarme Defects?
Is it possible to suppress a specific gendarme defect message?
I would like to do this in the source code with a flag or something like it.
4
votes
1answer
64 views
Does Code Analysis support defining two languages for mixed language Spell Checking?
Using the tip provided by José Adan at http://social.msdn.microsoft.com/Forums/en-US/vstscode/thread/f6dec8c4-9752-4a9b-82fe-0822808fd386/ I was able to get Code Analysis to do spell checking in ...
3
votes
2answers
53 views
Code Metrics Analysis for Unmanaged C++ Code
Does anyone know of a free tool, similar to what is built into Visual Studio 2010 for managed code, that can do analysis of unmanaged, MFC C++ code and give metrics (lines of code, dependency or ...
3
votes
2answers
126 views
What issues does static call graph analysis decipher?
What issues would one hope to find using static call graph analysis on a program? FxCop uses static call graph analysis, what issues does it find using this technique?
...
3
votes
4answers
121 views
How do I find all the unit tests that may directly or indirectly call a given method? (.net)
How do I find all the unit tests that may directly or indirectly call a given method?
When I change a method, I wish to know the best tests to run; there must be a tool for this!
As we have lots of ...
3
votes
2answers
95 views
Has anybody built a C-file for verifying the code-checking tools for MISRA-2004?
We are using PC-Lint for code-checking our sources for compliance with MISRA-2004. As this is a safety-relevant project and we're heading for a certificate by TUV, we need to show proof for our ...
3
votes
3answers
964 views
Tool for PHP code analysis [closed]
Possible Duplicates:
Regexp to detect call time pass by references in PHP source code
Is there a static code analyzer [like Lint] for PHP files?
Is there any tool that can do static ...
3
votes
3answers
90 views
Is there an all purpose lint (-toolkit)?
I want to do a static code analysis on a bunch of scripts written in a not very common programming language (C like syntax). Frequent problems are:
the use of not defined/declared symbols
wrong ...
3
votes
2answers
465 views
making graph/map of functions/methods calls in c# code (visual studio 2008)
I have some c# projects in visual studio 2008, and I want to get graph (map? table?) of all methods calls. I want it static, not runtime (like "call stack"); any function - who calls it, and how many ...
3
votes
1answer
895 views
Having trouble running code analysis from command prompt with msbuild
I'm using VS2010 RC while targeting .NET 3.5. I can run code analysis via Visual Studio without a problem. However, when I try to run code analysis on our CI server it isn't getting executed. When ...
2
votes
1answer
60 views
VS2010 Static Code Analysis Bug?
ok, I'm fairly certain this is just down to the ever-so-buggy static code analyser in Visual Studio, but I figured more sets of eyes on this wouldn't hurt.
I've written my own collection of ...
2
votes
4answers
163 views
The Code Analysis-friendly way to dispose of objects
As part of our Visual Studio 2010 (primarly C# 4.0) development standards, we have Code Analysis turned on. As I am reviewing recently submitted code for a new project, I am seeing a ton of
CA2000 ...
2
votes
2answers
496 views
Disable Code Analysis for Some Projects using MSBuild
I have inherited a solution file that uses a MSBuild script to compile multiple solutions. The majority of projects are configured with analysis and rulesets and I have a few unit-test projects that ...
2
votes
2answers
80 views
Enforce that a code snippet is always present on a set of Java classes
I have to be sure that a snippet of code get executed in all public methods of classes under a certain package:
public String doStuff(String a, Integer b, Context c) {
current.put(c); <--- code ...
2
votes
1answer
103 views
Gendarme unsafe code detection
Anyone familiar with Gendarme know if it's possible to create a rule that detects C# unsafe code?
2
votes
4answers
340 views
How to parse an C# assembly and extract every method
For my application I'd like to parse through an assembly and extract every method and store the name of the method and the source code in one of my objects (I defined in my code).
where should I ...
2
votes
0answers
142 views
visual studio 2010 static code analysis migration
I am updating my projects from visual studio 2008 to visual studio 2010, but I'm still using TFS 2008.
I have a static code analysis in my TFS, and when I was using visual studio 2008 I was placing ...
1
vote
1answer
31 views
Gated Checkin build ignores [SuppressMessage] in source
We want to refuse checkins which break our custom defined static code rules. Therefore we have defined a Gated Checkin build, with "Perform Code Analysis" set to 'AsConfigured'.
When I build the ...
1
vote
1answer
77 views
PHP static code analysis tool, which detects uncaught exceptions?
There seems to be quite a lot of static code analysis tools for PHP, could you please suggest the one, which can detect exceptions, which are thrown in the PHP code, but are never caught? (the ones, ...
1
vote
0answers
115 views
RunCodeAnalysis=true not working in command prompt (MSBuild)
I'm trying to get msbuild to output code analysis info like it does in VS. I have a configuration for my project called "CodeAnalysis" in VS that is set up to run code analysis on build (with the ...
1
vote
5answers
176 views
Code Analysis Tool for PowerBuilder
Is anyone familiar with a code analysis tool along the lines of NDepend or JDepend for Powerbuilder?
I'm looking for something that can analyse dependencies and metrics such as SLOC, Cyclomatic ...
1
vote
1answer
170 views
Compilation errors invisible when Code Analysis set on TFS2010
I am getting my hands on TFS 2010, and I am starting with trying to set a continuous integration build up. For this purpose I am using the default build template (DefaultTemplate.xml) configured with ...
1
vote
1answer
174 views
Anyone have experience with PC-Lint used with Netbeans or MPLAB X IDE?
I've been using PC-Lint with MPLAB for a couple of years now and it has been really useful. MPLAB is about to change to be a netbeans based IDE and I've not found any netbeans plugins for PC-Lint.
...
1
vote
1answer
136 views
FxCop rule to detect swallowed exceptions
is there a FxCop rule to find swallowed exceptions?
I have found this article http://mystuffisallhere.com/blog/post/2006/01/02/An-FxCop-rule-to-detect-swallowed-exceptions.aspx but I can not find the ...
1
vote
3answers
269 views
finding duplicate source code
I'm analyzing some legacy code. It is about 80.000 lines of old plsql code. There is quite some duplication in the source which needs to be removed. Instead off doing diff's manual and looking at each ...
1
vote
0answers
290 views
Code analysis fails on project referencing obfuscated assembly
Visual Studio 2010 code analysis fails to run now that we've incorporated a 3rd-party assembly into our project.
Project : error : CA0055 : Could not
load C:\Programming\MyAssembly.dll.
...
1
vote
1answer
108 views
FxCop/StyleCop equivalent for ruby on rails?
Is there any static code analysis tools for ruby on rails? I am looking for something on the lines of "tests vs code analysis" as well as rules based analysis provided by FxCop.
As an additional ...
1
vote
1answer
66 views
__DataBind__control found by FxCop code analysis in ASP.NET
I use Visual Studio 2008 Team Suite in a website project and want to use the built-in code analysis feature (FxCop). When checking the naming rules, I get this error:
CA1709: Microsoft.Naming: ...
0
votes
0answers
38 views
Sonar 2.9 does not import SuppressionFilter
I am trying to create new rules profile in Sonar 2.9 with my checkstyle rules xml. When I try to import a checkstyle rules file with suppression filter configured, sonar gives me following messages:
...
0
votes
1answer
41 views
Suppress CA1062 with fluent validation
I have a fluent, extensible validation helper like:
Assert.That(aParameter).IsNotNull();
It is extensible because the That method is actually generic (That<T>) and uses implicit typing to ...
0
votes
0answers
20 views
Code Analysis runs after build, but not manually
Software: Visual Studio 2010 SP1 with Resharper 6
Problem: Code Analysis runs when I declare static check after build in settings, but if I run checking manually, this doesn't work (no ...
0
votes
2answers
61 views
FxCop, compose list of callers from dependent assembly
I'm building a couple of customs FxCop rules and one of the rules needs to enforce that a constructor is called in specific methods. For that, I need to create a list of callers, to that specific ...
0
votes
1answer
104 views
Could anyone tell me how to do static analysis for C++ code with Eclipse cdt?
I need to get the static information of C++ program with CDT. No need to build the project, just to get the basic information(namespace, class, extends relation, method, call, field) and save them to ...
0
votes
1answer
51 views
How to add verification rules in jslint?
There are lots of options in jslint such as adsafe, fragment and so on. Set {adsafe: true} means let jslint verify the code according to the adsafe's rule. Here I have the same demand, I wanna add my ...