Struct cranelift_codegen::ir::entities::StackSlot
source · pub struct StackSlot(_);
Expand description
An opaque reference to a stack slot.
Stack slots represent an address on the call stack.
StackSlot
s can be created with
FunctionBuilder::create_stackslot
.
StackSlot
s are most often used with
stack_addr
,
stack_load
, and
stack_store
.
While the order is stable, it is arbitrary and does not necessarily resemble the stack order.
Implementations§
Trait Implementations§
source§impl Ord for StackSlot
impl Ord for StackSlot
source§impl PartialOrd<StackSlot> for StackSlot
impl PartialOrd<StackSlot> for StackSlot
1.0.0 · source§fn 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 moresource§impl ReservedValue for StackSlot
impl ReservedValue for StackSlot
source§fn reserved_value() -> StackSlot
fn reserved_value() -> StackSlot
Create an instance of the reserved value.
source§fn is_reserved_value(&self) -> bool
fn is_reserved_value(&self) -> bool
Checks whether value is the reserved one.
impl Copy for StackSlot
impl Eq for StackSlot
impl StructuralEq for StackSlot
impl StructuralPartialEq for StackSlot
Auto Trait Implementations§
impl RefUnwindSafe for StackSlot
impl Send for StackSlot
impl Sync for StackSlot
impl Unpin for StackSlot
impl UnwindSafe for StackSlot
Blanket Implementations§
source§impl<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere
T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.