use std::{fmt, marker::PhantomData, num::NonZeroUsize};
use crate::{
AsStoreMut,
backend::wasmi::vm::{VMFunctionEnvironment, VMGlobal},
};
pub use wasmer_types::StoreId;
impl crate::StoreObjects {
pub fn into_wasmi(self) -> crate::backend::wasmi::store::StoreObjects {
match self {
Self::Wasmi(s) => s,
_ => panic!("Not a `wasmi` store!"),
}
}
pub fn as_wasmi(&self) -> &crate::backend::wasmi::store::StoreObjects {
match self {
Self::Wasmi(s) => s,
_ => panic!("Not a `wasmi` store!"),
}
}
pub fn as_wasmi_mut(&mut self) -> &mut crate::backend::wasmi::store::StoreObjects {
match self {
Self::Wasmi(s) => s,
_ => panic!("Not a `wasmi` store!"),
}
}
}
pub trait StoreObject: Sized {
fn list(store: &StoreObjects) -> &Vec<Self>;
fn list_mut(store: &mut StoreObjects) -> &mut Vec<Self>;
}
macro_rules! impl_store_object {
($($field:ident => $ty:ty,)*) => {
$(
impl StoreObject for $ty {
fn list(store: &StoreObjects) -> &Vec<Self> {
&store.$field
}
fn list_mut(store: &mut StoreObjects) -> &mut Vec<Self> {
&mut store.$field
}
}
)*
};
}
impl_store_object! {
globals => VMGlobal,
function_environments => VMFunctionEnvironment,
}
#[derive(Default, Debug)]
pub struct StoreObjects {
id: StoreId,
globals: Vec<VMGlobal>,
function_environments: Vec<VMFunctionEnvironment>,
}
impl StoreObjects {
pub fn id(&self) -> StoreId {
self.id
}
pub fn set_id(&mut self, id: StoreId) {
self.id = id;
}
pub fn get_2_mut<T: StoreObject>(
&mut self,
a: InternalStoreHandle<T>,
b: InternalStoreHandle<T>,
) -> (&mut T, &mut T) {
assert_ne!(a.index(), b.index());
let list = T::list_mut(self);
if a.index() < b.index() {
let (low, high) = list.split_at_mut(b.index());
(&mut low[a.index()], &mut high[0])
} else {
let (low, high) = list.split_at_mut(a.index());
(&mut high[0], &mut low[a.index()])
}
}
pub fn iter_globals<'a>(&'a self) -> core::slice::Iter<'a, VMGlobal> {
self.globals.iter()
}
pub fn as_u128_globals(&self) -> Vec<u128> {
vec![]
}
pub fn set_global_unchecked(&self, idx: usize, new_val: u128) {
assert!(idx < self.globals.len());
}
}
pub struct StoreHandle<T> {
id: StoreId,
internal: InternalStoreHandle<T>,
}
impl<T> core::cmp::PartialEq for StoreHandle<T> {
fn eq(&self, other: &Self) -> bool {
self.id == other.id
}
}
impl<T> std::hash::Hash for StoreHandle<T> {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
self.id.hash(state);
self.internal.idx.hash(state);
}
}
impl<T> Clone for StoreHandle<T> {
fn clone(&self) -> Self {
Self {
id: self.id,
internal: self.internal,
}
}
}
impl<T: StoreObject> fmt::Debug for StoreHandle<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("StoreHandle")
.field("id", &self.id)
.field("internal", &self.internal.index())
.finish()
}
}
impl<T: StoreObject> StoreHandle<T> {
pub fn new(store: &mut StoreObjects, val: T) -> Self {
Self {
id: store.id,
internal: InternalStoreHandle::new(store, val),
}
}
pub fn get<'a>(&self, store: &'a StoreObjects) -> &'a T {
assert_eq!(self.id, store.id, "object used with the wrong context");
self.internal.get(store)
}
pub fn get_mut<'a>(&self, store: &'a mut StoreObjects) -> &'a mut T {
assert_eq!(self.id, store.id, "object used with the wrong context");
self.internal.get_mut(store)
}
pub fn internal_handle(&self) -> InternalStoreHandle<T> {
self.internal
}
#[allow(unused)]
pub fn store_id(&self) -> StoreId {
self.id
}
#[allow(unused)]
pub fn set_store_id(&mut self, id: StoreId) {
self.id = id;
}
pub unsafe fn from_internal(id: StoreId, internal: InternalStoreHandle<T>) -> Self {
Self { id, internal }
}
}
#[repr(transparent)]
pub struct InternalStoreHandle<T> {
idx: NonZeroUsize,
marker: PhantomData<fn() -> T>,
}
impl<T> Clone for InternalStoreHandle<T> {
fn clone(&self) -> Self {
*self
}
}
impl<T> Copy for InternalStoreHandle<T> {}
impl<T> fmt::Debug for InternalStoreHandle<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("InternalStoreHandle")
.field("idx", &self.idx)
.finish()
}
}
impl<T> PartialEq for InternalStoreHandle<T> {
fn eq(&self, other: &Self) -> bool {
self.idx == other.idx
}
}
impl<T> Eq for InternalStoreHandle<T> {}
impl<T: StoreObject> InternalStoreHandle<T> {
pub fn new(store: &mut StoreObjects, val: T) -> Self {
let list = T::list_mut(store);
let idx = NonZeroUsize::new(list.len() + 1).unwrap();
list.push(val);
Self {
idx,
marker: PhantomData,
}
}
pub fn get<'a>(&self, store: &'a StoreObjects) -> &'a T {
&T::list(store)[self.idx.get() - 1]
}
pub fn get_mut<'a>(&self, store: &'a mut StoreObjects) -> &'a mut T {
&mut T::list_mut(store)[self.idx.get() - 1]
}
pub(crate) fn index(&self) -> usize {
self.idx.get()
}
pub(crate) fn from_index(idx: usize) -> Option<Self> {
NonZeroUsize::new(idx).map(|idx| Self {
idx,
marker: PhantomData,
})
}
}