130 releases (breaking)
Uses new Rust 2024
| new 0.103.0 | Dec 15, 2025 |
|---|---|
| 0.101.0 | Dec 2, 2025 |
| 0.99.0 | Nov 24, 2025 |
| 0.79.1 | Jul 31, 2025 |
| 0.22.1 | Jul 28, 2024 |
#1695 in Programming languages
30,590 downloads per month
Used in 97 crates
(2 directly)
175KB
3.5K
SLoC
Oxc CFG
Control Flow Graph construction and analysis for JavaScript and TypeScript.
Overview
This crate provides data structures and algorithms for building and analyzing Control Flow Graphs (CFGs) from AST nodes. CFGs are essential for advanced static analysis, optimization, and understanding program flow.
Key Features
- CFG construction: Build control flow graphs from AST nodes
- Block-based representation: Organizes code into basic blocks
- Graph analysis: Traverse and analyze control flow patterns
- DOT export: Visualize CFGs using Graphviz dot format
- Visitor integration: Works with oxc visitor patterns
Architecture
Basic Blocks
The CFG organizes code into basic blocks - sequences of instructions with:
- Single entry point (first instruction)
- Single exit point (last instruction)
- No internal branches or jumps
Graph Structure
- Nodes: Basic blocks containing instructions
- Edges: Control flow between blocks (conditional, unconditional, exception)
- Entry/Exit: Special blocks for function entry and exit points
Analysis Applications
- Dead code elimination: Find unreachable blocks
- Data flow analysis: Track variable usage across control paths
- Loop detection: Identify back edges and loop structures
- Path analysis: Enumerate possible execution paths
The CFG integrates with semantic analysis to provide comprehensive program understanding.
Dependencies
~8.5MB
~130K SLoC