Dynamic program analysis is the
analysis of computer software that is performed by executing programs on a real or virtual
processor. For dynamic program analysis to be effective, the target program must be executed with sufficient test inputs to cover almost all possible outputs. Use of
software testing
Software testing is the act of examining the artifacts and the behavior of the software under test by validation and verification. Software testing can also provide an objective, independent view of the software to allow the business to apprecia ...
measures such as
code coverage
In computer science, test coverage is a percentage measure of the degree to which the source code of a program is executed when a particular test suite is run. A program with high test coverage has more of its source code executed during testing ...
helps increase the chance that an adequate slice of the program's set of possible behaviors has been observed. Also, care must be taken to minimize the effect that
instrumentation
Instrumentation a collective term for measuring instruments that are used for indicating, measuring and recording physical quantities. The term has its origins in the art and science of scientific instrument-making.
Instrumentation can refer to ...
has on the execution (including temporal properties) of the target program. Dynamic analysis is in contrast to
static program analysis
In computer science, static program analysis (or static analysis) is the analysis of computer programs performed without executing them, in contrast with dynamic program analysis, which is performed on programs during their execution.
The term ...
.
Unit tests,
integration tests,
system tests and
acceptance tests
In engineering and its various subdisciplines, acceptance testing is a test conducted to determine if the requirements of a specification or contract are met. It may involve chemical tests, physical tests, or performance tests.
In systems en ...
use
dynamic testing.
Types of dynamic analysis
Code coverage
Computing the
code coverage
In computer science, test coverage is a percentage measure of the degree to which the source code of a program is executed when a particular test suite is run. A program with high test coverage has more of its source code executed during testing ...
according to a test suite or a workload is a standard dynamic analysis technique.
*
Gcov is the
GNU
GNU () is an extensive collection of free software
Free software or libre software is computer software distributed under terms that allow users to run the software for any purpose as well as to study, change, and distribute it and any ...
source code coverage program.
*
VB Watch injects dynamic analysis code into Visual Basic programs to monitor
code coverage
In computer science, test coverage is a percentage measure of the degree to which the source code of a program is executed when a particular test suite is run. A program with high test coverage has more of its source code executed during testing ...
, call stack, execution trace, instantiated objects and variables.
Memory error detection
*
Intel Inspector: Dynamic memory error debugger for C, C++, and Fortran applications that run on
Windows
Windows is a group of several proprietary graphical operating system families developed and marketed by Microsoft. Each family caters to a certain sector of the computing industry. For example, Windows NT for consumers, Windows Server for ...
and
Linux
Linux ( or ) is a family of open-source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically packaged as a Linux distribution, which i ...
.
*
AddressSanitizer: Memory error detection for Linux,
macOS
macOS (; previously OS X and originally Mac OS X) is a Unix operating system developed and marketed by Apple Inc. since 2001. It is the primary operating system for Apple's Mac (computer), Mac computers. Within the market of ...
, Windows, and more. Part of
LLVM
LLVM is a set of compiler and toolchain technologies that can be used to develop a front end for any programming language and a back end for any instruction set architecture. LLVM is designed around a language-independent intermediate repre ...
.
*
BoundsChecker: Memory error detection for Windows based applications. Part of
Micro Focus DevPartner.
*
Dmalloc: Library for checking memory allocation and leaks. Software must be recompiled, and all files must include the special C header file dmalloc.h.
*
Purify: Mainly
memory corruption detection and memory leak detection.
*
Valgrind: Runs programs on a virtual processor and can detect memory errors (e.g., misuse of
malloc and
free
Free may refer to:
Concept
* Freedom, having the ability to do something, without having to obey anyone/anything
* Freethought, a position that beliefs should be formed only on the basis of logic, reason, and empiricism
* Emancipate, to procur ...
) and
race conditions in
multithread programs.
Fault localization
Fault localization refers to locating the buggy code (for example the buggy statement) according to failing and passing test cases. For example, Tarantula is a well-known fault localization approach based on the covered code. Fault localization illustrates an important property of dynamic analysis: the results on the analysis depend on the considered workload, inputs or test cases. For fault localization, it has been shown that one can refactor the test cases in order to get better results.
Invariant inference
Daikon
Daikon or mooli, '' Raphanus sativus'' var. ''longipinnatus,'' is a mild-flavored winter radish usually characterized by fast-growing leaves and a long, white, root. Originally native to continental East Asia, daikon is harvested and consum ...
is an implementation of dynamic invariant detection. Daikon runs a program, observes the values that
the program computes, and then reports properties that were true over the observed executions, and thus likely true over all executions.
Security analysis
Dynamic analysis can be used to detect security problems.
*
IBM Rational AppScan is a suite of application security solutions targeted for different stages of the development lifecycle. The suite includes two main dynamic analysis products: IBM Rational AppScan Standard Edition, and IBM Rational AppScan Enterprise Edition. In addition, the suite includes IBM Rational AppScan Source Edition—a static analysis tool.
Concurrency errors
*
Parasoft Jtest
Jtest is an automated Java software testing and static analysis product developed by Parasoft. The product includes technology for Data-flow analysis, Unit test-case generation and execution, static analysis, and more. Jtest is used by compan ...
uses runtime error detection to expose defects such as
race conditions, exceptions, resource and memory leaks, and security attack vulnerabilities.
*
Intel Inspector performs run-time threading and memory error analysis in Windows.
*
Parasoft Insure++ is a runtime memory analysis and error detection tool. Its Inuse component provides a graphical view of memory allocations over time, with specific visibility of overall heap usage, block allocations, possible outstanding leaks, etc.
*
Google's Thread Sanitizer is a data race detection tool. It instruments
LLVM
LLVM is a set of compiler and toolchain technologies that can be used to develop a front end for any programming language and a back end for any instruction set architecture. LLVM is designed around a language-independent intermediate repre ...
IR to capture racy memory accesses.
Program slicing
For a given subset of a program’s behavior, program slicing consists of reducing the program to the minimum form that still produces the selected behavior. The reduced program is called a “slice” and is a faithful representation of the original program within the domain of the specified behavior subset.
Generally, finding a slice is an unsolvable problem, but by specifying the target behavior subset by the values of a set of variables, it is possible to obtain approximate slices using a data-flow algorithm. These slices are usually used by developers during debugging to locate the source of errors.
Performance analysis
Most
performance analysis tools use dynamic program analysis techniques.
* Prism from
CriticalBlue is a tool that dynamically traces software applications at runtime and captures data that can be used to analyze and identify the causes of poor performance.
Techniques
Most dynamic analysis techniques are based on some kind of
code instrumentation or transformation.
* DynInst is a runtime code-patching library that is useful in developing dynamic program analysis probes and applying them to compiled executables. Dyninst does not require
source code
In computing, source code, or simply code, is any collection of code, with or without comment (computer programming), comments, written using a human-readable programming language, usually as plain text. The source code of a Computer program, p ...
or recompilation in general, however, non-stripped executables and executables with debugging symbols are easier to instrument.
Iroh.jsis a runtime code analysis library for
JavaScript
JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of Website, websites use JavaScript on the Client (computing), client side ...
. It keeps track of the code execution path, provides runtime listeners to listen for specific executed code patterns and allows the interception and manipulatation of the program's execution behavior.
See also
*
Abstract interpretation
*
Daikon
Daikon or mooli, '' Raphanus sativus'' var. ''longipinnatus,'' is a mild-flavored winter radish usually characterized by fast-growing leaves and a long, white, root. Originally native to continental East Asia, daikon is harvested and consum ...
*
Dynamic load testing
*
Profiling (computer programming)
In software engineering, profiling ("program profiling", "software profiling") is a form of dynamic program analysis that measures, for example, the space (memory) or time complexity of a program, the usage of particular instructions, or the f ...
*
Runtime verification
*
Program analysis (computer science)
*
Static code analysis
In computer science, static program analysis (or static analysis) is the analysis of computer programs performed without executing them, in contrast with dynamic program analysis, which is performed on programs during their execution.
The term ...
*
Time Partition Testing
References
{{Software testing
Program analysis
Software testing