Keep track of which values are live and dead as we move through the instructions in an EBB.
11 lines
221 B
Rust
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;
|