//! Program points. use entity_ref::EntityRef; use ir::{Ebb, Inst, ValueDef}; use std::fmt; use std::u32; use std::cmp; /// A `ProgramPoint` represents a position in a function where the live range of an SSA value can /// begin or end. It can be either: /// /// 1. An instruction or /// 2. An EBB header. /// /// This corresponds more or less to the lines in the textual representation of Cretonne IL. #[derive(PartialEq, Eq, Clone, Copy)] pub struct ProgramPoint(u32); impl From for ProgramPoint { fn from(inst: Inst) -> ProgramPoint { let idx = inst.index(); assert!(idx < (u32::MAX / 2) as usize); ProgramPoint((idx * 2) as u32) } } impl From for ProgramPoint { fn from(ebb: Ebb) -> ProgramPoint { let idx = ebb.index(); assert!(idx < (u32::MAX / 2) as usize); ProgramPoint((idx * 2 + 1) as u32) } } impl From for ProgramPoint { fn from(def: ValueDef) -> ProgramPoint { match def { ValueDef::Res(inst, _) => inst.into(), ValueDef::Arg(ebb, _) => ebb.into(), } } } /// An expanded program point directly exposes the variants, but takes twice the space to /// represent. #[derive(PartialEq, Eq, Clone, Copy)] pub enum ExpandedProgramPoint { /// An instruction in the function. Inst(Inst), /// An EBB header. Ebb(Ebb), } impl From for ExpandedProgramPoint { fn from(inst: Inst) -> ExpandedProgramPoint { ExpandedProgramPoint::Inst(inst) } } impl From for ExpandedProgramPoint { fn from(ebb: Ebb) -> ExpandedProgramPoint { ExpandedProgramPoint::Ebb(ebb) } } impl From for ExpandedProgramPoint { fn from(def: ValueDef) -> ExpandedProgramPoint { match def { ValueDef::Res(inst, _) => inst.into(), ValueDef::Arg(ebb, _) => ebb.into(), } } } impl From for ExpandedProgramPoint { fn from(pp: ProgramPoint) -> ExpandedProgramPoint { if pp.0 & 1 == 0 { ExpandedProgramPoint::Inst(Inst::new((pp.0 / 2) as usize)) } else { ExpandedProgramPoint::Ebb(Ebb::new((pp.0 / 2) as usize)) } } } impl fmt::Display for ProgramPoint { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match (*self).into() { ExpandedProgramPoint::Inst(x) => write!(f, "{}", x), ExpandedProgramPoint::Ebb(x) => write!(f, "{}", x), } } } impl fmt::Debug for ProgramPoint { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "ProgramPoint({})", self) } } /// Context for ordering program points. /// /// `ProgramPoint` objects don't carry enough information to be ordered independently, they need a /// context providing the program order. pub trait ProgramOrder { /// Compare the program points `a` and `b` relative to this program order. /// /// Return `Less` if `a` appears in the program before `b`. /// /// This is declared as a generic such that it can be called with `Inst` and `Ebb` arguments /// directly. Depending on the implementation, there is a good chance performance will be /// improved for those cases where the type of either argument is known statically. fn cmp(&self, a: A, b: B) -> cmp::Ordering where A: Into, B: Into; /// Is the range from `inst` to `ebb` just the gap between consecutive EBBs? /// /// This returns true if `inst` is the terminator in the EBB immediately before `ebb`. fn is_ebb_gap(&self, inst: Inst, ebb: Ebb) -> bool; } #[cfg(test)] mod tests { use super::*; use entity_ref::EntityRef; use ir::{Inst, Ebb}; #[test] fn convert() { let i5 = Inst::new(5); let b3 = Ebb::new(3); let pp1: ProgramPoint = i5.into(); let pp2: ProgramPoint = b3.into(); assert_eq!(pp1.to_string(), "inst5"); assert_eq!(pp2.to_string(), "ebb3"); } }