// Currently the `VMComponentContext` allocation by field looks like this:
//
// struct VMComponentContext {
// magic: u32,
// builtins: &'static VMComponentBuiltins,
// limits: *const VMStoreContext,
// flags: [VMGlobalDefinition; component.num_runtime_component_instances],
// task_may_block: u32,
// trampoline_func_refs: [VMFuncRef; component.num_trampolines],
// unsafe_intrinsics: [VMFuncRef; component.num_unsafe_intrinsics],
// lowerings: [VMLowering; component.num_lowerings],
// memories: [*mut VMMemoryDefinition; component.num_runtime_memories],
// tables: [VMTable; component.num_runtime_tables],
// reallocs: [*mut VMFuncRef; component.num_runtime_reallocs],
// post_returns: [*mut VMFuncRef; component.num_runtime_post_returns],
// resource_destructors: [*mut VMFuncRef; component.num_resources],
// }
use crate::PtrSize;
use crate::component::*;
/// Equivalent of `VMCONTEXT_MAGIC` except for components.
///
/// This is stored at the start of all `VMComponentContext` structures and
/// double-checked on `VMComponentContext::from_opaque`.
pub const VMCOMPONENT_MAGIC: u32 = u32::from_le_bytes(*b"comp");
/// Flag for the `VMComponentContext::flags` field which corresponds to the
/// canonical ABI flag `may_leave`
pub const FLAG_MAY_LEAVE: i32 = 1 << 0;
/// Runtime offsets within a `VMComponentContext` for a specific component.
#[derive(Debug, Clone, Copy)]
pub struct VMComponentOffsets
{
/// The host pointer size
pub ptr: P,
/// The number of lowered functions this component will be creating.
pub num_lowerings: u32,
/// The number of memories which are recorded in this component for options.
pub num_runtime_memories: u32,
/// The number of tables which are recorded in this component for options.
pub num_runtime_tables: u32,
/// The number of reallocs which are recorded in this component for options.
pub num_runtime_reallocs: u32,
/// The number of callbacks which are recorded in this component for options.
pub num_runtime_callbacks: u32,
/// The number of post-returns which are recorded in this component for options.
pub num_runtime_post_returns: u32,
/// Number of component instances internally in the component (always at
/// least 1).
pub num_runtime_component_instances: u32,
/// Number of cranelift-compiled trampolines required for this component.
pub num_trampolines: u32,
/// Number of `VMFuncRef`s for unsafe intrinsics within this component's
/// context.
pub num_unsafe_intrinsics: u32,
/// Number of resources within a component which need destructors stored.
pub num_resources: u32,
// precalculated offsets of various member fields
magic: u32,
builtins: u32,
vm_store_context: u32,
flags: u32,
task_may_block: u32,
trampoline_func_refs: u32,
intrinsic_func_refs: u32,
lowerings: u32,
memories: u32,
tables: u32,
reallocs: u32,
callbacks: u32,
post_returns: u32,
resource_destructors: u32,
size: u32,
}
#[inline]
fn align(offset: u32, align: u32) -> u32 {
assert!(align.is_power_of_two());
(offset + (align - 1)) & !(align - 1)
}
impl VMComponentOffsets {
/// Creates a new set of offsets for the `component` specified configured
/// additionally for the `ptr` size specified.
pub fn new(ptr: P, component: &Component) -> Self {
let mut ret = Self {
ptr,
num_lowerings: component.num_lowerings,
num_runtime_memories: component.num_runtime_memories,
num_runtime_tables: component.num_runtime_tables,
num_runtime_reallocs: component.num_runtime_reallocs,
num_runtime_callbacks: component.num_runtime_callbacks,
num_runtime_post_returns: component.num_runtime_post_returns,
num_runtime_component_instances: component.num_runtime_component_instances,
num_trampolines: component.trampolines.len().try_into().unwrap(),
num_unsafe_intrinsics: if let Some(i) = component
.unsafe_intrinsics
.iter()
.rposition(|x| x.is_some())
{
// Note: We do not currently have an indirection between "the
// `i`th unsafe intrinsic in the vmctx" and
// `UnsafeIntrinsic::from_u32(i)`, so therefore if we are
// compiling in *any* intrinsics, we need to include space for
// all of them up to the max `i` that is used.
//
// We _could_ introduce such an indirection via a map in
// `Component` like `PrimaryMap`, and that would allow us to densely pack
// intrinsics in the vmctx. However we do not do that today
// because there are very few unsafe intrinsics, and we do not
// see that changing anytime soon, so we aren't wasting much
// space.
u32::try_from(i + 1).unwrap()
} else {
0
},
num_resources: component.num_resources,
magic: 0,
builtins: 0,
vm_store_context: 0,
flags: 0,
task_may_block: 0,
trampoline_func_refs: 0,
intrinsic_func_refs: 0,
lowerings: 0,
memories: 0,
tables: 0,
reallocs: 0,
callbacks: 0,
post_returns: 0,
resource_destructors: 0,
size: 0,
};
// Convenience functions for checked addition and multiplication.
// As side effect this reduces binary size by using only a single
// `#[track_caller]` location for each function instead of one for
// each individual invocation.
#[inline]
fn cmul(count: u32, size: u8) -> u32 {
count.checked_mul(u32::from(size)).unwrap()
}
let mut next_field_offset = 0;
macro_rules! fields {
(size($field:ident) = $size:expr, $($rest:tt)*) => {
ret.$field = next_field_offset;
next_field_offset = next_field_offset.checked_add(u32::from($size)).unwrap();
fields!($($rest)*);
};
(align($align:expr), $($rest:tt)*) => {
next_field_offset = align(next_field_offset, $align);
fields!($($rest)*);
};
() => {};
}
fields! {
size(magic) = 4u32,
align(u32::from(ret.ptr.size())),
size(builtins) = ret.ptr.size(),
size(vm_store_context) = ret.ptr.size(),
align(16),
size(flags) = cmul(ret.num_runtime_component_instances, ret.ptr.size_of_vmglobal_definition()),
size(task_may_block) = ret.ptr.size_of_vmglobal_definition(),
align(u32::from(ret.ptr.size())),
size(trampoline_func_refs) = cmul(ret.num_trampolines, ret.ptr.size_of_vm_func_ref()),
size(intrinsic_func_refs) = cmul(ret.num_unsafe_intrinsics, ret.ptr.size_of_vm_func_ref()),
size(lowerings) = cmul(ret.num_lowerings, ret.ptr.size() * 2),
size(memories) = cmul(ret.num_runtime_memories, ret.ptr.size()),
size(tables) = cmul(ret.num_runtime_tables, ret.size_of_vmtable_import()),
size(reallocs) = cmul(ret.num_runtime_reallocs, ret.ptr.size()),
size(callbacks) = cmul(ret.num_runtime_callbacks, ret.ptr.size()),
size(post_returns) = cmul(ret.num_runtime_post_returns, ret.ptr.size()),
size(resource_destructors) = cmul(ret.num_resources, ret.ptr.size()),
}
ret.size = next_field_offset;
// This is required by the implementation of
// `VMComponentContext::from_opaque`. If this value changes then this
// location needs to be updated.
assert_eq!(ret.magic, 0);
return ret;
}
/// The size, in bytes, of the host pointer.
#[inline]
pub fn pointer_size(&self) -> u8 {
self.ptr.size()
}
/// The offset of the `magic` field.
#[inline]
pub fn magic(&self) -> u32 {
self.magic
}
/// The offset of the `builtins` field.
#[inline]
pub fn builtins(&self) -> u32 {
self.builtins
}
/// The offset of the `flags` field.
#[inline]
pub fn instance_flags(&self, index: RuntimeComponentInstanceIndex) -> u32 {
assert!(index.as_u32() < self.num_runtime_component_instances);
self.flags + index.as_u32() * u32::from(self.ptr.size_of_vmglobal_definition())
}
/// The offset of the `task_may_block` field.
pub fn task_may_block(&self) -> u32 {
self.task_may_block
}
/// The offset of the `vm_store_context` field.
#[inline]
pub fn vm_store_context(&self) -> u32 {
self.vm_store_context
}
/// The offset of the `trampoline_func_refs` field.
#[inline]
pub fn trampoline_func_refs(&self) -> u32 {
self.trampoline_func_refs
}
/// The offset of `VMFuncRef` for the `index` specified.
#[inline]
pub fn trampoline_func_ref(&self, index: TrampolineIndex) -> u32 {
assert!(index.as_u32() < self.num_trampolines);
self.trampoline_func_refs() + index.as_u32() * u32::from(self.ptr.size_of_vm_func_ref())
}
/// The offset of the `unsafe_intrinsic_func_refs` field.
#[inline]
pub fn unsafe_intrinsic_func_refs(&self) -> u32 {
self.intrinsic_func_refs
}
/// The offset of the `VMFuncRef` for the `intrinsic` specified.
#[inline]
pub fn unsafe_intrinsic_func_ref(&self, intrinsic: UnsafeIntrinsic) -> u32 {
assert!(intrinsic.index() < self.num_unsafe_intrinsics);
self.unsafe_intrinsic_func_refs()
+ intrinsic.index() * u32::from(self.ptr.size_of_vm_func_ref())
}
/// The offset of the `lowerings` field.
#[inline]
pub fn lowerings(&self) -> u32 {
self.lowerings
}
/// The offset of the `VMLowering` for the `index` specified.
#[inline]
pub fn lowering(&self, index: LoweredIndex) -> u32 {
assert!(index.as_u32() < self.num_lowerings);
self.lowerings() + index.as_u32() * u32::from(2 * self.ptr.size())
}
/// The offset of the `callee` for the `index` specified.
#[inline]
pub fn lowering_callee(&self, index: LoweredIndex) -> u32 {
self.lowering(index) + self.lowering_callee_offset()
}
/// The offset of the `data` for the `index` specified.
#[inline]
pub fn lowering_data(&self, index: LoweredIndex) -> u32 {
self.lowering(index) + self.lowering_data_offset()
}
/// The size of the `VMLowering` type
#[inline]
pub fn lowering_size(&self) -> u8 {
2 * self.ptr.size()
}
/// The offset of the `callee` field within the `VMLowering` type.
#[inline]
pub fn lowering_callee_offset(&self) -> u32 {
0
}
/// The offset of the `data` field within the `VMLowering` type.
#[inline]
pub fn lowering_data_offset(&self) -> u32 {
u32::from(self.ptr.size())
}
/// The offset of the base of the `runtime_memories` field
#[inline]
pub fn runtime_memories(&self) -> u32 {
self.memories
}
/// The offset of the `*mut VMMemoryDefinition` for the runtime index
/// provided.
#[inline]
pub fn runtime_memory(&self, index: RuntimeMemoryIndex) -> u32 {
assert!(index.as_u32() < self.num_runtime_memories);
self.runtime_memories() + index.as_u32() * u32::from(self.ptr.size())
}
/// The offset of the base of the `runtime_tables` field
#[inline]
pub fn runtime_tables(&self) -> u32 {
self.tables
}
/// The offset of the table for the runtime index provided.
#[inline]
pub fn runtime_table(&self, index: RuntimeTableIndex) -> u32 {
assert!(index.as_u32() < self.num_runtime_tables);
self.runtime_tables() + index.as_u32() * u32::from(self.size_of_vmtable_import())
}
/// Return the size of `VMTableImport`, used here to hold the pointers to
/// the `VMTableDefinition` and `VMContext`.
#[inline]
pub fn size_of_vmtable_import(&self) -> u8 {
3 * self.pointer_size()
}
/// The offset of the base of the `runtime_reallocs` field
#[inline]
pub fn runtime_reallocs(&self) -> u32 {
self.reallocs
}
/// The offset of the `*mut VMFuncRef` for the runtime index
/// provided.
#[inline]
pub fn runtime_realloc(&self, index: RuntimeReallocIndex) -> u32 {
assert!(index.as_u32() < self.num_runtime_reallocs);
self.runtime_reallocs() + index.as_u32() * u32::from(self.ptr.size())
}
/// The offset of the base of the `runtime_callbacks` field
#[inline]
pub fn runtime_callbacks(&self) -> u32 {
self.callbacks
}
/// The offset of the `*mut VMFuncRef` for the runtime index
/// provided.
#[inline]
pub fn runtime_callback(&self, index: RuntimeCallbackIndex) -> u32 {
assert!(index.as_u32() < self.num_runtime_callbacks);
self.runtime_callbacks() + index.as_u32() * u32::from(self.ptr.size())
}
/// The offset of the base of the `runtime_post_returns` field
#[inline]
pub fn runtime_post_returns(&self) -> u32 {
self.post_returns
}
/// The offset of the `*mut VMFuncRef` for the runtime index
/// provided.
#[inline]
pub fn runtime_post_return(&self, index: RuntimePostReturnIndex) -> u32 {
assert!(index.as_u32() < self.num_runtime_post_returns);
self.runtime_post_returns() + index.as_u32() * u32::from(self.ptr.size())
}
/// The offset of the base of the `resource_destructors` field
#[inline]
pub fn resource_destructors(&self) -> u32 {
self.resource_destructors
}
/// The offset of the `*mut VMFuncRef` for the runtime index
/// provided.
#[inline]
pub fn resource_destructor(&self, index: ResourceIndex) -> u32 {
assert!(index.as_u32() < self.num_resources);
self.resource_destructors() + index.as_u32() * u32::from(self.ptr.size())
}
/// Return the size of the `VMComponentContext` allocation.
#[inline]
pub fn size_of_vmctx(&self) -> u32 {
self.size
}
}