author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Mon, 20 Feb 2012 13:04:41 +0200 | |
changeset 1222 | 44731d7a3749 |
parent 1187 | eaa71972ea1d |
child 1322 | fd6361e16489 |
permissions | -rw-r--r-- |
1167 | 1 |
.. -*- coding: utf-8; -*- |
2 |
||
3 |
================ |
|
4 |
Code analysis. |
|
5 |
================ |
|
1187 | 6 |
.. contents:: |
1167 | 7 |
|
8 |
About. |
|
9 |
====== |
|
10 |
||
11 |
* http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis |
|
1179 | 12 |
* http://en.wikipedia.org/wiki/Static_code_analysis |
1175
eef4d07eff61
Program_verification
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1174
diff
changeset
|
13 |
* http://en.wikipedia.org/wiki/Automated_code_review |
1176 | 14 |
* http://en.wikipedia.org/wiki/Dynamic_code_analysis |
1175
eef4d07eff61
Program_verification
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1174
diff
changeset
|
15 |
* http://en.wikipedia.org/wiki/Program_analysis_%28computer_science%29 |
eef4d07eff61
Program_verification
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1174
diff
changeset
|
16 |
* http://en.wikipedia.org/wiki/Performance_analysis |
eef4d07eff61
Program_verification
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1174
diff
changeset
|
17 |
* http://en.wikipedia.org/wiki/Program_verification |
1167 | 18 |
|
1170 | 19 |
Splint. |
20 |
======= |
|
21 |
||
22 |
Secure Programming Lint, is a programming tool for statically checking C |
|
23 |
programs for security vulnerabilities and coding mistakes. Formerly called |
|
24 |
LCLint, it is a modern version of the Unix lint tool. |
|
25 |
||
26 |
http://en.wikipedia.org/wiki/Splint_%28programming_tool%29 |
|
27 |
||
1176 | 28 |
Valgrind. |
29 |
========= |
|
30 |
||
31 |
Runs programs on a virtual processor and can detect memory errors (e.g., misuse |
|
32 |
of malloc and free) and race conditions in multithread programs. |
|
33 |
||
34 |
http://en.wikipedia.org/wiki/Valgrind |
|
35 |
Wikipedia page. |
|
36 |
||
1179 | 37 |
Dmalloc. |
38 |
======== |
|
39 |
||
40 |
Dmalloc is a memory debugger C library. |
|
41 |
||
42 |
http://en.wikipedia.org/wiki/Dmalloc |
|
43 |
||
1180 | 44 |
Avalanche. |
45 |
========== |
|
46 |
||
47 |
Avalanche is a dynamic defect detection tool that generates "inputs of death" - |
|
48 |
input data reproducing critical bugs and vulnerabilities in the analysed |
|
49 |
program. |
|
50 |
||
51 |
http://code.google.com/p/avalanche/ |
|
52 |
Home page. |
|
53 |
http://en.wikipedia.org/wiki/Avalanche_%28dynamic_analysis_tool%29 |
|
54 |
Wikipedia page. |
|
55 |
||
1170 | 56 |
Sparse. |
57 |
======= |
|
58 |
||
59 |
Sparse is a tool designed to find possible coding faults in the Linux kernel. |
|
60 |
||
61 |
http://en.wikipedia.org/wiki/Sparse |
|
62 |
Wikipedia page. |
|
63 |
||
1167 | 64 |
PMD. |
65 |
==== |
|
66 |
||
67 |
PMD is a static ruleset based Java source code analyzer that identifies |
|
68 |
potential problems. |
|
69 |
||
70 |
PMD has plugins for JDeveloper, Eclipse, JEdit, JBuilder, Omnicore's CodeGuide, |
|
71 |
NetBeans/Sun Studio, IntelliJ IDEA, TextPad, Maven, Ant, Gel, JCreator, Hudson, |
|
72 |
Jenkins, Sonar and Emacs. |
|
73 |
||
74 |
http://pmd.sf.net/ |
|
75 |
Home page. |
|
76 |
http://en.wikipedia.org/wiki/PMD_%28software%29 |
|
1168 | 77 |
Wikipedia page. |
78 |
||
1171 | 79 |
Checkstyle. |
80 |
=========== |
|
81 |
||
82 |
Static code analysis tool used in software development for checking if Java |
|
83 |
source code complies with coding rules. |
|
84 |
||
85 |
http://en.wikipedia.org/wiki/Checkstyle |
|
86 |
Wikipedia page. |
|
87 |
||
88 |
FindBugs. |
|
89 |
========= |
|
90 |
||
91 |
http://en.wikipedia.org/wiki/FindBugs |
|
92 |
Wikipedia page. |
|
93 |
||
1174 | 94 |
Pychecker. |
95 |
========== |
|
96 |
||
97 |
http://en.wikipedia.org/wiki/Pychecker |
|
98 |
Wikipedia page. |
|
99 |
||
100 |
Pylint. |
|
101 |
======= |
|
102 |
||
103 |
http://en.wikipedia.org/wiki/Pylint |
|
104 |
Wikipedia page. |
|
105 |
||
1173 | 106 |
JSLint. |
107 |
======= |
|
108 |
||
109 |
JSLint is a static code analysis tool used in software development for checking |
|
110 |
if JavaScript source code complies with coding rules. |
|
111 |
||
112 |
It is provided primarily as an online tool, but there are also command-line |
|
113 |
adaptations. |
|
114 |
||
115 |
http://en.wikipedia.org/wiki/JSLint |
|
116 |
Wikipedia page. |
|
117 |
||
1172 | 118 |
Squale. |
119 |
======= |
|
120 |
||
121 |
Squale (Software Quality Enhancement) is an open-source platform that helps |
|
122 |
monitoring software quality for multi-language applications. It currently |
|
123 |
supports Java out-of-the-box, and can also analyse C/C++ and Cobol code with an |
|
124 |
adapter to McCabe tool. Squale is distributed under the terms of the LGPL v3 |
|
125 |
licence. |
|
126 |
||
127 |
http://en.wikipedia.org/wiki/Squale |
|
128 |
Wikipedia page. |
|
129 |
||
1168 | 130 |
Yasca. |
131 |
====== |
|
132 |
||
133 |
Yasca leverages external open source programs, such as FindBugs, PMD, JLint, |
|
134 |
JavaScript Lint, PHPLint, Cppcheck, ClamAV, Pixy, and RATS to scan specific file |
|
135 |
types, and also contains many custom scanners developed for Yasca. |
|
136 |
||
137 |
http://yasca.org/ |
|
138 |
Home page. |
|
139 |
http://yasca.org/ |
|
140 |
Development home page. |
|
141 |
http://en.wikipedia.org/wiki/Yasca |
|
142 |
Wikipedia page. |
|
143 |
||
1169 | 144 |
Sonar. |
145 |
====== |
|
146 |
||
147 |
Sonar uses various static code analysis tools such as Checkstyle, PMD, FindBugs, |
|
148 |
Clover to extract software metrics. |
|
149 |
||
150 |
http://en.wikipedia.org/wiki/Sonar_%28software_quality%29 |
|
1172 | 151 |
Wikipedia page. |
152 |