mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-13 13:58:38 +00:00
232 lines
7.5 KiB
Rust
232 lines
7.5 KiB
Rust
use crate::js::export::VMGlobal;
|
|
use crate::js::exports::{ExportError, Exportable};
|
|
use crate::js::externals::{Extern, VMExtern};
|
|
use crate::js::store::{AsStoreMut, AsStoreRef};
|
|
use crate::js::value::Value;
|
|
use crate::js::wasm_bindgen_polyfill::Global as JSGlobal;
|
|
use crate::js::GlobalType;
|
|
use crate::js::Mutability;
|
|
use crate::js::RuntimeError;
|
|
use wasm_bindgen::JsValue;
|
|
|
|
/// A WebAssembly `global` instance.
|
|
///
|
|
/// A global instance is the runtime representation of a global variable.
|
|
/// It consists of an individual value and a flag indicating whether it is mutable.
|
|
///
|
|
/// Spec: <https://webassembly.github.io/spec/core/exec/runtime.html#global-instances>
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
pub struct Global {
|
|
pub(crate) handle: VMGlobal,
|
|
}
|
|
|
|
impl Global {
|
|
/// Create a new `Global` with the initial value [`Value`].
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ```
|
|
/// # use wasmer::{Global, Mutability, Store, Value};
|
|
/// # let mut store = Store::default();
|
|
/// #
|
|
/// let g = Global::new(&store, Value::I32(1));
|
|
///
|
|
/// assert_eq!(g.get(), Value::I32(1));
|
|
/// assert_eq!(g.ty().mutability, Mutability::Const);
|
|
/// ```
|
|
pub fn new(store: &mut impl AsStoreMut, val: Value) -> Self {
|
|
Self::from_value(store, val, Mutability::Const).unwrap()
|
|
}
|
|
|
|
/// Create a mutable `Global` with the initial value [`Value`].
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ```
|
|
/// # use wasmer::{Global, Mutability, Store, Value};
|
|
/// # let mut store = Store::default();
|
|
/// #
|
|
/// let g = Global::new_mut(&store, Value::I32(1));
|
|
///
|
|
/// assert_eq!(g.get(), Value::I32(1));
|
|
/// assert_eq!(g.ty().mutability, Mutability::Var);
|
|
/// ```
|
|
pub fn new_mut(store: &mut impl AsStoreMut, val: Value) -> Self {
|
|
Self::from_value(store, val, Mutability::Var).unwrap()
|
|
}
|
|
|
|
/// To `VMExtern`.
|
|
pub(crate) fn to_vm_extern(&self) -> VMExtern {
|
|
VMExtern::Global(self.handle.clone())
|
|
}
|
|
|
|
/// Create a `Global` with the initial value [`Value`] and the provided [`Mutability`].
|
|
fn from_value(
|
|
store: &mut impl AsStoreMut,
|
|
val: Value,
|
|
mutability: Mutability,
|
|
) -> Result<Self, RuntimeError> {
|
|
if !val.is_from_store(store) {
|
|
return Err(RuntimeError::new(
|
|
"cross-`WasmerEnv` values are not supported",
|
|
));
|
|
}
|
|
let global_ty = GlobalType {
|
|
mutability,
|
|
ty: val.ty(),
|
|
};
|
|
let descriptor = js_sys::Object::new();
|
|
let (type_str, value) = match val {
|
|
Value::I32(i) => ("i32", JsValue::from_f64(i as _)),
|
|
Value::I64(i) => ("i64", JsValue::from_f64(i as _)),
|
|
Value::F32(f) => ("f32", JsValue::from_f64(f as _)),
|
|
Value::F64(f) => ("f64", JsValue::from_f64(f)),
|
|
_ => unimplemented!("The type is not yet supported in the JS Global API"),
|
|
};
|
|
// This is the value type as string, even though is incorrectly called "value"
|
|
// in the JS API.
|
|
js_sys::Reflect::set(&descriptor, &"value".into(), &type_str.into())?;
|
|
js_sys::Reflect::set(
|
|
&descriptor,
|
|
&"mutable".into(),
|
|
&mutability.is_mutable().into(),
|
|
)?;
|
|
|
|
let js_global = JSGlobal::new(&descriptor, &value).unwrap();
|
|
let vm_global = VMGlobal::new(js_global, global_ty);
|
|
|
|
Ok(Self::from_vm_export(store, vm_global))
|
|
}
|
|
|
|
/// Returns the [`GlobalType`] of the `Global`.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ```
|
|
/// # use wasmer::{Global, Mutability, Store, Type, Value, GlobalType};
|
|
/// # let mut store = Store::default();
|
|
/// #
|
|
/// let c = Global::new(&store, Value::I32(1));
|
|
/// let v = Global::new_mut(&store, Value::I64(1));
|
|
///
|
|
/// assert_eq!(c.ty(), &GlobalType::new(Type::I32, Mutability::Const));
|
|
/// assert_eq!(v.ty(), &GlobalType::new(Type::I64, Mutability::Var));
|
|
/// ```
|
|
pub fn ty(&self, store: &impl AsStoreRef) -> GlobalType {
|
|
self.handle.ty
|
|
}
|
|
|
|
/// Retrieves the current value [`Value`] that the Global has.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ```
|
|
/// # use wasmer::{Global, Store, Value};
|
|
/// # let mut store = Store::default();
|
|
/// #
|
|
/// let g = Global::new(&store, Value::I32(1));
|
|
///
|
|
/// assert_eq!(g.get(), Value::I32(1));
|
|
/// ```
|
|
pub fn get(&self, store: &impl AsStoreRef) -> Value {
|
|
unsafe {
|
|
let raw = self.handle.global.value().as_f64().unwrap();
|
|
let ty = self.handle.ty;
|
|
Value::from_raw(store, ty.ty, raw)
|
|
}
|
|
}
|
|
|
|
/// Sets a custom value [`Value`] to the runtime Global.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ```
|
|
/// # use wasmer::{Global, Store, Value};
|
|
/// # let mut store = Store::default();
|
|
/// #
|
|
/// let g = Global::new_mut(&store, Value::I32(1));
|
|
///
|
|
/// assert_eq!(g.get(), Value::I32(1));
|
|
///
|
|
/// g.set(Value::I32(2));
|
|
///
|
|
/// assert_eq!(g.get(), Value::I32(2));
|
|
/// ```
|
|
///
|
|
/// # Errors
|
|
///
|
|
/// Trying to mutate a immutable global will raise an error:
|
|
///
|
|
/// ```should_panic
|
|
/// # use wasmer::{Global, Store, Value};
|
|
/// # let mut store = Store::default();
|
|
/// #
|
|
/// let g = Global::new(&store, Value::I32(1));
|
|
///
|
|
/// g.set(Value::I32(2)).unwrap();
|
|
/// ```
|
|
///
|
|
/// Trying to set a value of a incompatible type will raise an error:
|
|
///
|
|
/// ```should_panic
|
|
/// # use wasmer::{Global, Store, Value};
|
|
/// # let mut store = Store::default();
|
|
/// #
|
|
/// let g = Global::new(&store, Value::I32(1));
|
|
///
|
|
/// // This results in an error: `RuntimeError`.
|
|
/// g.set(Value::I64(2)).unwrap();
|
|
/// ```
|
|
pub fn set(&self, store: &mut impl AsStoreMut, val: Value) -> Result<(), RuntimeError> {
|
|
if !val.is_from_store(store) {
|
|
return Err(RuntimeError::new(
|
|
"cross-`WasmerEnv` values are not supported",
|
|
));
|
|
}
|
|
let global_ty = self.ty(&store);
|
|
if global_ty.mutability == Mutability::Const {
|
|
return Err(RuntimeError::new("The global is immutable".to_owned()));
|
|
}
|
|
if val.ty() != global_ty.ty {
|
|
return Err(RuntimeError::new("The types don't match".to_owned()));
|
|
}
|
|
let new_value = match val {
|
|
Value::I32(i) => JsValue::from_f64(i as _),
|
|
Value::I64(i) => JsValue::from_f64(i as _),
|
|
Value::F32(f) => JsValue::from_f64(f as _),
|
|
Value::F64(f) => JsValue::from_f64(f),
|
|
_ => {
|
|
return Err(RuntimeError::new(
|
|
"The type is not yet supported in the JS Global API".to_owned(),
|
|
))
|
|
}
|
|
};
|
|
self.handle.global.set_value(&new_value);
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn from_vm_export(store: &mut impl AsStoreMut, vm_global: VMGlobal) -> Self {
|
|
use crate::js::store::StoreObject;
|
|
VMGlobal::list_mut(store.objects_mut()).push(vm_global.clone());
|
|
Self { handle: vm_global }
|
|
}
|
|
|
|
pub(crate) fn from_vm_extern(store: &mut impl AsStoreMut, internal: VMGlobal) -> Self {
|
|
Self { handle: internal }
|
|
}
|
|
|
|
/// Checks whether this `Global` can be used with the given store.
|
|
pub fn is_from_store(&self, store: &impl AsStoreRef) -> bool {
|
|
true
|
|
}
|
|
}
|
|
|
|
impl<'a> Exportable<'a> for Global {
|
|
fn get_self_from_extern(_extern: &'a Extern) -> Result<&'a Self, ExportError> {
|
|
match _extern {
|
|
Extern::Global(global) => Ok(global),
|
|
_ => Err(ExportError::IncompatibleType),
|
|
}
|
|
}
|
|
}
|