Struct cranelift_codegen::machinst::buffer::MachBufferFinalized [−][src]
A MachBuffer
once emission is completed: holds generated code and records,
without fixups. This allows the type to be independent of the backend.
Fields
data: SmallVec<[u8; 1024]>
The buffer contents, as raw bytes.
Implementations
impl MachBufferFinalized
[src]
impl MachBufferFinalized
[src]pub fn get_srclocs_sorted(&self) -> &[MachSrcLoc]
[src]
Get a list of source location mapping tuples in sorted-by-start-offset order.
pub fn total_size(&self) -> CodeOffset
[src]
Get the total required size for the code.
pub fn emit<CS: CodeSink>(&self, sink: &mut CS)
[src]
Emit this buffer to the given CodeSink.
pub fn stack_maps(&self) -> &[MachStackMap]
[src]
Get the stack map metadata for this code.