JavaScript is not currently enabled, but is required for full CodeSonar manual search and browse functionality.
If you are viewing this file in your hub's Web GUI, enable JavaScript in your browser: you will also need it for GUI functionality.
If you opened this file directly from disk, your browser may be directly suppressing JavaScript functionality: certain browsers perform this suppression on local files (but not files delivered by web servers) for security reasons.
| CodeSonar® 9.0p0 Hot Tips | CONFIDENTIAL | CodeSecure Inc |
A CFG edge set is a set of (point, edge label) pairs.
Language Module Support: Internal representation for points is available for C/C++ and binary analyses only. For C# and Java analyses, plug-ins that rely on point (and thus CFG edge set) properties and relationships will generally not produce useful information.
The value of the edge label may be a boolean or a string:
| if the edge is... | ...the label is... |
|---|---|
| a true edge | true |
| a false edge | false |
| (otherwise) | a string |
For more information see Description: Point and the section on Control Flow Graphs.
By API implementation:
| Language | CFG Edge Set Functionality and Types Provided By | CFG Edge Set Type |
|---|---|---|
| C++ | class cfg_edge_set | class cfg_edge_set |
| Python | class cfg_edge_set | class cfg_edge_set |
| C | Header cs_cfg_edge_set.h | typedef cs_cfg_edge_set, typedef cs_const_cfg_edge_set |
See also: