neo-decompiler 0.7.0

Neo N3 NEF decompiler: parse, disassemble, lift bytecode to high-level pseudocode and C# skeletons, with a CLI, JSON reports, and optional WebAssembly bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Control Flow Graph (CFG) construction and analysis.
//!
//! This module provides explicit basic block representation and graph
//! construction from Neo VM bytecode, enabling advanced analysis passes.

mod basic_block;
mod builder;
mod graph;
pub mod ssa;

pub use basic_block::{BasicBlock, BlockId, Terminator};
pub use builder::CfgBuilder;
pub use graph::{Cfg, Edge, EdgeKind};
pub use ssa::SsaConversion;

#[cfg(test)]
mod tests;