falcon 0.2.0

A Binary Analysis Framework in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Implementations and traits for static analysis over Falcon IL.

mod def_use;
pub mod ai;
pub mod fixed_point;
mod reaching_definitions;
mod use_def;

pub use self::def_use::def_use;
pub use self::reaching_definitions::reaching_definitions;
pub use self::use_def::use_def;