Struct wasmtime_environ::wasmparser::Frame
source · pub struct Frame {
pub kind: FrameKind,
pub block_type: BlockType,
pub height: usize,
pub unreachable: bool,
}
Expand description
A Wasm control flow block on the control flow stack during Wasm validation.
Fields§
§kind: FrameKind
Indicator for what kind of instruction pushed this frame.
block_type: BlockType
The type signature of this frame, represented as a singular return type or a type index pointing into the module’s types.
height: usize
The index, below which, this frame cannot modify the operand stack.
unreachable: bool
Whether this frame is unreachable so far.