Struct cranelift_codegen::MachBufferFinalized 
source · pub struct MachBufferFinalized<T: CompilePhase> {
    pub unwind_info: SmallVec<[(CodeOffset, UnwindInst); 8]>,
    /* private fields */
}Expand description
A MachBuffer once emission is completed: holds generated code and records,
without fixups. This allows the type to be independent of the backend.
Fields§
§unwind_info: SmallVec<[(CodeOffset, UnwindInst); 8]>Any unwind info at a given location.
Implementations§
source§impl MachBufferFinalized<Stencil>
 
impl MachBufferFinalized<Stencil>
sourcepub fn apply_base_srcloc(
    self,
    base_srcloc: SourceLoc
) -> MachBufferFinalized<Final>
 
pub fn apply_base_srcloc( self, base_srcloc: SourceLoc ) -> MachBufferFinalized<Final>
Get a finalized machine buffer by applying the function’s base source location.
source§impl<T: CompilePhase> MachBufferFinalized<T>
 
impl<T: CompilePhase> MachBufferFinalized<T>
sourcepub fn get_srclocs_sorted(&self) -> &[T::MachSrcLocType]
 
pub fn get_srclocs_sorted(&self) -> &[T::MachSrcLocType]
Get a list of source location mapping tuples in sorted-by-start-offset order.
sourcepub fn total_size(&self) -> CodeOffset
 
pub fn total_size(&self) -> CodeOffset
Get the total required size for the code.
sourcepub fn stringify_code_bytes(&self) -> String
 
pub fn stringify_code_bytes(&self) -> String
Return the code in this mach buffer as a hex string for testing purposes.
sourcepub fn stack_maps(&self) -> &[MachStackMap]
 
pub fn stack_maps(&self) -> &[MachStackMap]
Get the stack map metadata for this code.
sourcepub fn call_sites(&self) -> &[MachCallSite]
 
pub fn call_sites(&self) -> &[MachCallSite]
Get the list of call sites for this code.
Trait Implementations§
source§impl<T: Clone + CompilePhase> Clone for MachBufferFinalized<T>where
    T::MachSrcLocType: Clone,
 
impl<T: Clone + CompilePhase> Clone for MachBufferFinalized<T>where T::MachSrcLocType: Clone,
source§fn clone(&self) -> MachBufferFinalized<T>
 
fn clone(&self) -> MachBufferFinalized<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl<T: Debug + CompilePhase> Debug for MachBufferFinalized<T>where
    T::MachSrcLocType: Debug,
 
impl<T: Debug + CompilePhase> Debug for MachBufferFinalized<T>where T::MachSrcLocType: Debug,
source§impl<T: PartialEq + CompilePhase> PartialEq<MachBufferFinalized<T>> for MachBufferFinalized<T>where
    T::MachSrcLocType: PartialEq,
 
impl<T: PartialEq + CompilePhase> PartialEq<MachBufferFinalized<T>> for MachBufferFinalized<T>where T::MachSrcLocType: PartialEq,
source§fn eq(&self, other: &MachBufferFinalized<T>) -> bool
 
fn eq(&self, other: &MachBufferFinalized<T>) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.