pub struct FunctionLiveness {
pub live_after: Vec<HashSet<Symbol>>,
}Expand description
Per-function liveness table.
Fields§
§live_after: Vec<HashSet<Symbol>>live_after[i] = variables live after top-level statement i.
Auto Trait Implementations§
impl Freeze for FunctionLiveness
impl RefUnwindSafe for FunctionLiveness
impl Send for FunctionLiveness
impl Sync for FunctionLiveness
impl Unpin for FunctionLiveness
impl UnsafeUnpin for FunctionLiveness
impl UnwindSafe for FunctionLiveness
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