Struct cranelift_codegen::ir::stackslot::StackLayoutInfo [−][src]
Expand description
Stack frame layout information.
This is computed by the layout_stack() method.
Fields
frame_size: StackSizeThe total size of the stack frame.
This is the distance from the stack pointer in the current function to the stack pointer in the calling function, so it includes a pushed return address as well as space for outgoing call arguments.
inbound_args_size: StackSizeThe total size of the stack frame for inbound arguments pushed by the caller.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for StackLayoutInfo
impl Send for StackLayoutInfo
impl Sync for StackLayoutInfo
impl Unpin for StackLayoutInfo
impl UnwindSafe for StackLayoutInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.