falcon 0.6.0

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

pub mod calling_convention;
pub mod constants;
mod dead_code_elimination;
mod def_use;
pub mod fixed_point;
mod location_set;
mod reaching_definitions;
pub mod stack_pointer_offsets;
mod use_def;

pub use self::dead_code_elimination::dead_code_elimination;
pub use self::def_use::def_use;
pub use self::location_set::LocationSet;
pub use self::reaching_definitions::reaching_definitions;
pub use self::use_def::use_def;