pub struct LivenessInfo {
pub live_before: Vec<BTreeSet<u32>>,
}Expand description
Result of liveness analysis for a single chunk.
Fields§
§live_before: Vec<BTreeSet<u32>>For each instruction index, the set of local variable indices that are live (potentially used later) before that instruction executes.
Trait Implementations§
Source§impl Clone for LivenessInfo
impl Clone for LivenessInfo
Source§fn clone(&self) -> LivenessInfo
fn clone(&self) -> LivenessInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LivenessInfo
impl Debug for LivenessInfo
Source§impl Default for LivenessInfo
impl Default for LivenessInfo
Source§fn default() -> LivenessInfo
fn default() -> LivenessInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LivenessInfo
impl RefUnwindSafe for LivenessInfo
impl Send for LivenessInfo
impl Sync for LivenessInfo
impl Unpin for LivenessInfo
impl UnsafeUnpin for LivenessInfo
impl UnwindSafe for LivenessInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more