Static program analysis

This is an old revision of this page, as edited by 82.125.36.225 (talk) at 08:36, 30 September 2004 (Tools). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Static code analysis is a set of methods for analysing software source code or object code in an effort to gain understanding of what the software does and establish certain correctness criteria.

Schematically, there exist several types of static analysis (which may be used in combination, even inside the same programming tool):

  • tools such as lint essentially look for constructs that "look dangerous" from an informal point of view;
  • formal methods consider mathematical definition of the behaviors of programs, known as semantics:

Static analysis is a family of formal methods for automatically deriving information about the behavior of computer software (and also hardware). One possible application of static analysis is automated debugging aid, especially the finding of run-time errors -- roughly speaking, events causing program crashes.

Briefly, program analysis — including finding possible run-time errors -- is undecidable: there's is no mechanical method that can always answer truthfully whether programs may or not exhibit runtime errors. This is a mathematically founded result dating from the works of Church, Gödel and Turing in the 1930s (see halting problem and Rice's theorem).

There exist two main families of formal static analysis:

Interest in the development of static analysis tools, especially for use on safety-critical computer systems, was renewed after the high profile disaster of Ariane 5 Flight 501, when a space rocket exploded shortly after launch due to a computer bug, surely one of the most expensive computer bugs in history.

Some software metrics can also be seen as a form of static analysis.

See also

Tools

  1. AntiC
  2. BLAST
  3. BOON
  4. Broadway
  5. Agitator Dashboard
  6. C++Test
  7. Checkstyle
  8. Cqual
  9. CodeWizard
  10. ESC/Java
  11. FindBugs
  12. Flawfinder
  13. GCC Introspector
  14. Headway Review
  15. JDepend
  16. Jlint
  17. Jtest
  18. Kaylo
  19. [MOPS]
  20. OpenC++
  21. PAG and PAG/WWW
  22. [PMD]
  23. PREfast, PREfix
  24. SLAM
  25. Smatch
  26. Sparse
  27. StackAnalyzer
  28. Stacktool
  29. SPlint
  30. SWAT
  31. The MC Checker