| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Tokstyle.Analysis.CFG
Description
This module provides tools for building a control flow graph (CFG)
from C code represented by the Ast.
The core components are:
CFG: A control flow graph representation, where nodes contain basic blocks of statements.buildCFG: A function to construct aCFGfrom aFunctionDefn.
This module is only concerned with the *structure* of the control flow, not with any particular data flow analysis.