Collect the data structures that hang around between function compilations. Provide a main entry point to the register allocator passes.
15 lines
285 B
Rust
15 lines
285 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;
|
|
pub mod coloring;
|
|
|
|
mod affinity;
|
|
mod context;
|
|
|
|
pub use self::context::Context;
|