During register allocation, the code must be kept in conventional SSA form. Add a verifier that checks this property.
24 lines
473 B
Rust
24 lines
473 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;
|
|
pub mod virtregs;
|
|
|
|
mod affinity;
|
|
mod coalescing;
|
|
mod context;
|
|
mod diversion;
|
|
mod pressure;
|
|
mod reload;
|
|
mod solver;
|
|
mod spilling;
|
|
|
|
pub use self::allocatable_set::AllocatableSet;
|
|
pub use self::context::Context;
|
|
pub use self::diversion::RegDiversions;
|