Add a register diversion tracker.

Keep track of the current location of register values as regmove
instructions are encountered throughout an EBB.
This commit is contained in:
Jakob Stoklund Olesen
2017-05-02 13:48:19 -07:00
parent a0085434af
commit 2873019779
2 changed files with 116 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ pub mod coloring;
mod affinity;
mod context;
mod diversion;
pub use self::allocatable_set::AllocatableSet;
pub use self::context::Context;
pub use self::diversion::RegDiversions;