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 user_stack_maps(&self) -> &[(CodeOffset, u32, UserStackMap)]
pub fn user_stack_maps(&self) -> &[(CodeOffset, u32, UserStackMap)]
Get the user stack map metadata for this code.
Sourcepub fn take_user_stack_maps(
&mut self,
) -> SmallVec<[(CodeOffset, u32, UserStackMap); 8]>
pub fn take_user_stack_maps( &mut self, ) -> SmallVec<[(CodeOffset, u32, UserStackMap); 8]>
Take this buffer’s user strack map metadata.
Sourcepub fn call_sites(&self) -> impl Iterator<Item = FinalizedMachCallSite<'_>> + '_
pub fn call_sites(&self) -> impl Iterator<Item = FinalizedMachCallSite<'_>> + '_
Get the list of call sites for this code, along with associated exception handlers.
Each item yielded by the returned iterator is a struct with:
- The call site metadata record, with a
ret_addr
field directly accessible and denoting the offset of the return address into this buffer’s code. - The slice of pairs of exception tags and code offsets denoting exception-handler entry points associated with this call site.
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>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more