Struct cranelift_codegen::machinst::buffer::MachStackMap [−][src]
pub struct MachStackMap { pub offset: CodeOffset, pub offset_end: CodeOffset, pub stack_map: StackMap, }
Expand description
Record of stack map metadata: stack offsets containing references.
Fields
offset: CodeOffset
The code offset at which this stack map applies.
offset_end: CodeOffset
The code offset just past the “end” of the instruction: that is, the offset of the first byte of the following instruction, or equivalently, the start offset plus the instruction length.
stack_map: StackMap
The stack map itself.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MachStackMap
impl Send for MachStackMap
impl Sync for MachStackMap
impl Unpin for MachStackMap
impl UnwindSafe for MachStackMap
Blanket Implementations
Mutably borrows from an owned value. Read more