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 moresourceimpl 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
sourcefn cmp(&self, other: &Allocation) -> Ordering
fn cmp(&self, other: &Allocation) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<Allocation> for Allocation
impl PartialEq<Allocation> for Allocation
sourcefn eq(&self, other: &Allocation) -> bool
fn eq(&self, other: &Allocation) -> bool
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>
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 moreimpl 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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