Enum wasmtime_jit::trampoline::ir::StackSlotKind [−][src]
pub enum StackSlotKind { SpillSlot, ExplicitSlot, IncomingArg, OutgoingArg, StructReturnSlot, EmergencySlot, }
The kind of a stack slot.
Variants
A spill slot. This is a stack slot created by the register allocator.
An explicit stack slot. This is a chunk of stack memory for use by the stack_load
and stack_store
instructions.
An incoming function argument.
If the current function has more arguments than fits in registers, the remaining arguments are passed on the stack by the caller. These incoming arguments are represented as SSA values assigned to incoming stack slots.
An outgoing function argument.
When preparing to call a function whose arguments don’t fit in registers, outgoing argument stack slots are used to represent individual arguments in the outgoing call frame. These stack slots are only valid while setting up a call.
Space allocated in the caller’s frame for the callee’s return values that are passed out via return pointer.
If there are more return values than registers available for the callee’s calling convention, or the return value is larger than the available registers’ space, then we allocate stack space in this frame and pass a pointer to the callee, which then writes its return values into this space.
An emergency spill slot.
Emergency slots are allocated late when the register’s constraint solver needs extra space to shuffle registers around. They are only used briefly, and can be reused.
Trait Implementations
impl Clone for StackSlotKind
[src]
impl Clone for StackSlotKind
[src]pub fn clone(&self) -> StackSlotKind
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'de> Deserialize<'de> for StackSlotKind
[src]
impl<'de> Deserialize<'de> for StackSlotKind
[src]pub fn deserialize<__D>(
__deserializer: __D
) -> Result<StackSlotKind, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<StackSlotKind, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl Display for StackSlotKind
[src]
impl Display for StackSlotKind
[src]impl FromStr for StackSlotKind
[src]
impl FromStr for StackSlotKind
[src]impl PartialEq<StackSlotKind> for StackSlotKind
[src]
impl PartialEq<StackSlotKind> for StackSlotKind
[src]impl Serialize for StackSlotKind
[src]
impl Serialize for StackSlotKind
[src]pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl Copy for StackSlotKind
[src]
impl Eq for StackSlotKind
[src]
impl StructuralEq for StackSlotKind
[src]
impl StructuralPartialEq for StackSlotKind
[src]
Auto Trait Implementations
impl RefUnwindSafe for StackSlotKind
impl Send for StackSlotKind
impl Sync for StackSlotKind
impl Unpin for StackSlotKind
impl UnwindSafe for StackSlotKind
Blanket Implementations
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,