Struct cranelift_codegen::MachBufferFinalized
source · pub struct MachBufferFinalized<T: CompilePhase> {
pub unwind_info: SmallVec<[(CodeOffset, UnwindInst); 8]>,
pub alignment: u32,
/* 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.
alignment: u32
The required alignment of this buffer.
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 relocs(&self) -> &[FinalizedMachReloc]
pub fn relocs(&self) -> &[FinalizedMachReloc]
Get the list of external relocations for this code.
sourcepub fn stack_maps(&self) -> &[MachStackMap]
pub fn stack_maps(&self) -> &[MachStackMap]
Get the stack map metadata for this code.
sourcepub fn take_stack_maps(&mut self) -> SmallVec<[MachStackMap; 8]>
pub fn take_stack_maps(&mut self) -> SmallVec<[MachStackMap; 8]>
Take this buffer’s stack map metadata.
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 for MachBufferFinalized<T>where
T::MachSrcLocType: PartialEq,
impl<T: PartialEq + CompilePhase> PartialEq for MachBufferFinalized<T>where
T::MachSrcLocType: PartialEq,
impl<T: CompilePhase> StructuralPartialEq for MachBufferFinalized<T>
Auto Trait Implementations§
impl<T> Freeze for MachBufferFinalized<T>where
<T as CompilePhase>::MachSrcLocType: Freeze,
impl<T> RefUnwindSafe for MachBufferFinalized<T>where
<T as CompilePhase>::MachSrcLocType: RefUnwindSafe,
impl<T> Send for MachBufferFinalized<T>where
<T as CompilePhase>::MachSrcLocType: Send,
impl<T> Sync for MachBufferFinalized<T>where
<T as CompilePhase>::MachSrcLocType: Sync,
impl<T> Unpin for MachBufferFinalized<T>where
<T as CompilePhase>::MachSrcLocType: Unpin,
impl<T> UnwindSafe for MachBufferFinalized<T>where
<T as CompilePhase>::MachSrcLocType: RefUnwindSafe + UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)