pub struct BlockAllocationFacts<V, R> {
pub successors: Vec<usize>,
pub phis: Vec<PhiAllocationFacts<V>>,
pub instructions: Vec<InstructionAllocationFacts<V, R>>,
}Expand description
Register-allocation facts for one normalized target-MIR basic block.
Fields§
§successors: Vec<usize>§phis: Vec<PhiAllocationFacts<V>>§instructions: Vec<InstructionAllocationFacts<V, R>>Trait Implementations§
Source§impl<V: Clone, R: Clone> Clone for BlockAllocationFacts<V, R>
impl<V: Clone, R: Clone> Clone for BlockAllocationFacts<V, R>
Source§fn clone(&self) -> BlockAllocationFacts<V, R>
fn clone(&self) -> BlockAllocationFacts<V, R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<V: Eq, R: Eq> Eq for BlockAllocationFacts<V, R>
impl<V: PartialEq, R: PartialEq> StructuralPartialEq for BlockAllocationFacts<V, R>
Auto Trait Implementations§
impl<V, R> Freeze for BlockAllocationFacts<V, R>
impl<V, R> RefUnwindSafe for BlockAllocationFacts<V, R>where
Vec<PhiAllocationFacts<V>>: RefUnwindSafe,
Vec<InstructionAllocationFacts<V, R>>: RefUnwindSafe,
impl<V, R> Send for BlockAllocationFacts<V, R>
impl<V, R> Sync for BlockAllocationFacts<V, R>
impl<V, R> Unpin for BlockAllocationFacts<V, R>
impl<V, R> UnsafeUnpin for BlockAllocationFacts<V, R>
impl<V, R> UnwindSafe for BlockAllocationFacts<V, R>
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