Files
wasmtime/lib/cretonne/src/regalloc/mod.rs
Jakob Stoklund Olesen 2c31041640 Live Value Tracker.
Keep track of which values are live and dead as we move through the
instructions in an EBB.
2017-02-14 10:17:24 -08:00

11 lines
221 B
Rust

//! Register allocation.
//!
//! This module contains data structures and algorithms used for register allocation.
pub mod liverange;
pub mod liveness;
pub mod allocatable_set;
pub mod live_value_tracker;
mod affinity;