pub struct LiveVarInfoAtCodeOffset {
pub before: BTreeSet<TempIndex>,
pub after: BTreeSet<TempIndex>,
}
Expand description
The annotation for live variable analysis. For each code position, we have a set of local variable indices that are live just before the code offset, i.e. these variables are used before being overwritten.
Fields
before: BTreeSet<TempIndex>
after: BTreeSet<TempIndex>
Trait Implementations
sourceimpl Clone for LiveVarInfoAtCodeOffset
impl Clone for LiveVarInfoAtCodeOffset
sourcefn clone(&self) -> LiveVarInfoAtCodeOffset
fn clone(&self) -> LiveVarInfoAtCodeOffset
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for LiveVarInfoAtCodeOffset
impl Debug for LiveVarInfoAtCodeOffset
sourceimpl Default for LiveVarInfoAtCodeOffset
impl Default for LiveVarInfoAtCodeOffset
sourcefn default() -> LiveVarInfoAtCodeOffset
fn default() -> LiveVarInfoAtCodeOffset
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for LiveVarInfoAtCodeOffset
impl Send for LiveVarInfoAtCodeOffset
impl Sync for LiveVarInfoAtCodeOffset
impl Unpin for LiveVarInfoAtCodeOffset
impl UnwindSafe for LiveVarInfoAtCodeOffset
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more