Skip to main content

VMOffsets

Struct VMOffsets 

Source
pub struct VMOffsets<P> {
Show 14 fields pub ptr: P, pub num_imported_functions: u32, pub num_imported_tables: u32, pub num_imported_memories: u32, pub num_imported_globals: u32, pub num_imported_tags: u32, pub num_defined_tables: u32, pub num_defined_memories: u32, pub num_owned_memories: u32, pub num_defined_globals: u32, pub num_defined_tags: u32, pub num_escaped_funcs: u32, pub num_runtime_data: u32, pub has_startup_func: bool, /* private fields */
}
Expand description

This class computes offsets to fields within VMContext and other related structs that JIT code accesses directly.

Fields§

§ptr: P

The size in bytes of a pointer on the target.

§num_imported_functions: u32

The number of imported functions in the module.

§num_imported_tables: u32

The number of imported tables in the module.

§num_imported_memories: u32

The number of imported memories in the module.

§num_imported_globals: u32

The number of imported globals in the module.

§num_imported_tags: u32

The number of imported tags in the module.

§num_defined_tables: u32

The number of defined tables in the module.

§num_defined_memories: u32

The number of defined memories in the module.

§num_owned_memories: u32

The number of memories owned by the module instance.

§num_defined_globals: u32

The number of defined globals in the module.

§num_defined_tags: u32

The number of defined tags in the module.

§num_escaped_funcs: u32

The number of escaped functions in the module, the size of the func_refs array.

§num_runtime_data: u32

The number of runtime data segments in the module.

§has_startup_func: bool

Whether or not the module has a start function.

Implementations§

Source§

impl<P: PtrSize> VMOffsets<P>

Source

pub fn new(ptr: P, module: &Module) -> Self

Return a new VMOffsets instance, for a given pointer size.

Source

pub fn pointer_size(&self) -> u8

Returns the size, in bytes, of the target

Source

pub fn region_sizes(&self) -> impl Iterator<Item = (&str, u32)>

Returns an iterator which provides a human readable description and a byte size. The iterator returned will iterate over the bytes allocated to the entire VMOffsets structure to explain where each byte size is coming from.

Source§

impl<P: PtrSize> VMOffsets<P>

Offsets for *const VMFunctionBody.

Source

pub fn size_of_vmfunction_body_ptr(&self) -> u8

The size of the current_elements field.

Source§

impl<P: PtrSize> VMOffsets<P>

Offsets for VMTableDefinition.

Source

pub fn size_of_vmtable_definition_current_elements(&self) -> u8

The size of the current_elements field.

Source§

impl<P: PtrSize> VMOffsets<P>

Offsets for VMSharedTypeIndex.

Source

pub fn size_of_vmshared_type_index(&self) -> u8

Return the size of VMSharedTypeIndex.

Source§

impl<P: PtrSize> VMOffsets<P>

Offsets of the dynamically-positioned fields of VMContext.

Source

pub fn imported_memories(&self) -> ArrayOffsets<MemoryIndex>

The offsets of the imported_memories array.

Source

pub fn memories(&self) -> ArrayOffsets<DefinedMemoryIndex>

The offsets of the memories array.

Source

pub fn owned_memories(&self) -> ArrayOffsets<OwnedMemoryIndex>

The offsets of the owned_memories array.

Source

pub fn imported_functions(&self) -> ArrayOffsets<FuncIndex>

The offsets of the imported_functions array.

Source

pub fn imported_tables(&self) -> ArrayOffsets<TableIndex>

The offsets of the imported_tables array.

Source

pub fn imported_globals(&self) -> ArrayOffsets<GlobalIndex>

The offsets of the imported_globals array.

Source

pub fn imported_tags(&self) -> ArrayOffsets<TagIndex>

The offsets of the imported_tags array.

Source

pub fn tables(&self) -> ArrayOffsets<DefinedTableIndex>

The offsets of the tables array.

Source

pub fn globals(&self) -> ArrayOffsets<DefinedGlobalIndex>

The offsets of the globals array.

Source

pub fn tags(&self) -> ArrayOffsets<DefinedTagIndex>

The offsets of the tags array.

Source

pub fn func_refs(&self) -> ArrayOffsets<FuncRefIndex>

The offsets of the func_refs array.

Source

pub fn startup_func_ref(&self) -> u32

The offset of the startup_func_ref field.

Panics if has_startup_func is false, in which case this field is not present at all.

Source

pub fn runtime_data_bases(&self) -> ArrayOffsets<RuntimeDataIndex>

The offsets of the runtime_data_bases array.

Source

pub fn runtime_data_lengths(&self) -> ArrayOffsets<RuntimeDataIndex>

The offsets of the runtime_data_lengths array.

Source

pub fn size_of_vmctx(&self) -> u32

Return the size of the VMContext allocation.

Source§

impl<P: PtrSize> VMOffsets<P>

Offsets for VMGcHeader.

Source

pub fn vm_gc_header_kind(&self) -> u32

Return the offset for the VMGcHeader::kind field.

Source

pub fn vm_gc_header_reserved_bits(&self) -> u32

Return the offset for the VMGcHeader’s reserved bits.

Source

pub fn vm_gc_header_ty(&self) -> u32

Return the offset for the VMGcHeader::ty field.

Source§

impl<P: PtrSize> VMOffsets<P>

Offsets for VMDrcHeader.

Should only be used when the DRC collector is enabled.

Source

pub fn vm_drc_header_ref_count(&self) -> u32

Return the offset for VMDrcHeader::ref_count.

Source

pub fn vm_drc_header_next_over_approximated_stack_root(&self) -> u32

Return the offset for VMDrcHeader::next_over_approximated_stack_root.

Trait Implementations§

Source§

impl<P: Clone> Clone for VMOffsets<P>

Source§

fn clone(&self) -> VMOffsets<P>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<P: Copy> Copy for VMOffsets<P>

Source§

impl<P: Debug> Debug for VMOffsets<P>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<P: PtrSize> From<VMOffsetsFields<P>> for VMOffsets<P>

Source§

fn from(fields: VMOffsetsFields<P>) -> VMOffsets<P>

Converts to this type from the input type.
Source§

impl<P: PtrSize> GetPtrSize for VMOffsets<P>

Source§

type Ptr = P

The type that implements PtrSize.
Source§

fn get_ptr_size(&self) -> &Self::Ptr

Get a &P where P: PtrSize.

Auto Trait Implementations§

§

impl<P> Freeze for VMOffsets<P>
where P: Freeze,

§

impl<P> RefUnwindSafe for VMOffsets<P>
where P: RefUnwindSafe,

§

impl<P> Send for VMOffsets<P>
where P: Send,

§

impl<P> Sync for VMOffsets<P>
where P: Sync,

§

impl<P> Unpin for VMOffsets<P>
where P: Unpin,

§

impl<P> UnsafeUnpin for VMOffsets<P>
where P: UnsafeUnpin,

§

impl<P> UnwindSafe for VMOffsets<P>
where P: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.