Struct regalloc2::Allocation
source · [−]pub struct Allocation { /* private fields */ }
Expand description
An Allocation represents the end result of regalloc for an Operand.
Implementations
sourceimpl Allocation
impl Allocation
sourcepub fn none() -> Allocation
pub fn none() -> Allocation
Get the “none” allocation, which is distinct from the other possibilities and is used to initialize data structures.
sourcepub fn reg(preg: PReg) -> Allocation
pub fn reg(preg: PReg) -> Allocation
Create an allocation into a register.
sourcepub fn stack(slot: SpillSlot) -> Allocation
pub fn stack(slot: SpillSlot) -> Allocation
Create an allocation into a spillslot.
sourcepub fn kind(self) -> AllocationKind
pub fn kind(self) -> AllocationKind
Get the allocation’s “kind”: none, register, or stack (spillslot).
sourceimpl Allocation
impl Allocation
Trait Implementations
sourceimpl Clone for Allocation
impl Clone for Allocation
sourcefn clone(&self) -> Allocation
fn clone(&self) -> Allocation
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 Allocation
impl Debug for Allocation
sourceimpl Display for Allocation
impl Display for Allocation
sourceimpl Hash for Allocation
impl Hash for Allocation
sourceimpl Ord for Allocation
impl Ord for Allocation
sourceimpl PartialEq<Allocation> for Allocation
impl PartialEq<Allocation> for Allocation
sourcefn eq(&self, other: &Allocation) -> bool
fn eq(&self, other: &Allocation) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Allocation) -> bool
fn ne(&self, other: &Allocation) -> bool
This method tests for !=
.
sourceimpl PartialOrd<Allocation> for Allocation
impl PartialOrd<Allocation> for Allocation
sourcefn partial_cmp(&self, other: &Allocation) -> Option<Ordering>
fn partial_cmp(&self, other: &Allocation) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for Allocation
impl Eq for Allocation
impl StructuralEq for Allocation
impl StructuralPartialEq for Allocation
Auto Trait Implementations
impl RefUnwindSafe for Allocation
impl Send for Allocation
impl Sync for Allocation
impl Unpin for Allocation
impl UnwindSafe for Allocation
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more