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

Download history 29313/week @ 2025-08-25 20003/week @ 2025-09-01 24329/week @ 2025-09-08 24743/week @ 2025-09-15 21296/week @ 2025-09-22 21348/week @ 2025-09-29 22896/week @ 2025-10-06 22993/week @ 2025-10-13 26534/week @ 2025-10-20 15998/week @ 2025-10-27 7505/week @ 2025-11-03 9742/week @ 2025-11-10 9581/week @ 2025-11-17 6093/week @ 2025-11-24 6660/week @ 2025-12-01 7419/week @ 2025-12-08

30,590 downloads per month
Used in 97 crates (2 directly)

MIT license

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