Control-flow analysis
For many imperative programming languages, the control flow of a program is explicit in a program's source code. As a result, interprocedural control-flow analysis implicitly usually refers to a static analysis technique for determining the receivers of function or method calls in computer programs written in a higher-order programming language.{{dubious|date=July 2014} mming language with higher-order functions like Scheme, the target of a function call may not be explicit: in the isolated expression
(lambda (f) (f x))
it is unclear to which procedure f may refer. A control-flow analysis must consider where this expression could be invoked and what argument it may receive to determine the possible targets.
Techniques such as abstract interpretation, constraint solving, and type systems may be used for control-flow analysis.[1]
See also
- Control-flow diagram (CFD)
- Data-flow analysis
- Cartesian product algorithm
- Pointer analysis
References
- ↑ Principles of Program Analysis. Springer Science+Business Media. 2005.
External links
- for textbook intraprocedural CFA in imperative languages
- CFA in functional programs (survey)
- for the relationship between CFA analysis in functional languages and points-to analysis in imperative/OOP languages
