mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-01 15:31:04 +00:00
121 lines
3.5 KiB
Rust
121 lines
3.5 KiB
Rust
//! Create and map Rust to WebAssembly values.
|
|
|
|
use wasmer_runtime::Value;
|
|
use wasmer_runtime_core::types::Type;
|
|
|
|
#[allow(non_camel_case_types)]
|
|
#[repr(u32)]
|
|
#[derive(Clone)]
|
|
pub enum wasmer_value_tag {
|
|
WASM_I32,
|
|
WASM_I64,
|
|
WASM_F32,
|
|
WASM_F64,
|
|
}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone, Copy)]
|
|
#[allow(non_snake_case)]
|
|
pub union wasmer_value {
|
|
pub I32: i32,
|
|
pub I64: i64,
|
|
pub F32: f32,
|
|
pub F64: f64,
|
|
}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone)]
|
|
pub struct wasmer_value_t {
|
|
pub tag: wasmer_value_tag,
|
|
pub value: wasmer_value,
|
|
}
|
|
|
|
impl From<wasmer_value_t> for Value {
|
|
fn from(v: wasmer_value_t) -> Self {
|
|
unsafe {
|
|
#[allow(unreachable_patterns, non_snake_case)]
|
|
match v {
|
|
wasmer_value_t {
|
|
tag: wasmer_value_tag::WASM_I32,
|
|
value: wasmer_value { I32 },
|
|
} => Value::I32(I32),
|
|
wasmer_value_t {
|
|
tag: wasmer_value_tag::WASM_I64,
|
|
value: wasmer_value { I64 },
|
|
} => Value::I64(I64),
|
|
wasmer_value_t {
|
|
tag: wasmer_value_tag::WASM_F32,
|
|
value: wasmer_value { F32 },
|
|
} => Value::F32(F32),
|
|
wasmer_value_t {
|
|
tag: wasmer_value_tag::WASM_F64,
|
|
value: wasmer_value { F64 },
|
|
} => Value::F64(F64),
|
|
_ => unreachable!("unknown WASM type"),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<Value> for wasmer_value_t {
|
|
fn from(val: Value) -> Self {
|
|
match val {
|
|
Value::I32(x) => wasmer_value_t {
|
|
tag: wasmer_value_tag::WASM_I32,
|
|
value: wasmer_value { I32: x },
|
|
},
|
|
Value::I64(x) => wasmer_value_t {
|
|
tag: wasmer_value_tag::WASM_I64,
|
|
value: wasmer_value { I64: x },
|
|
},
|
|
Value::F32(x) => wasmer_value_t {
|
|
tag: wasmer_value_tag::WASM_F32,
|
|
value: wasmer_value { F32: x },
|
|
},
|
|
Value::F64(x) => wasmer_value_t {
|
|
tag: wasmer_value_tag::WASM_F64,
|
|
value: wasmer_value { F64: x },
|
|
},
|
|
Value::V128(_) => unimplemented!("V128 not supported in C API"),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<Type> for wasmer_value_tag {
|
|
fn from(ty: Type) -> Self {
|
|
#[allow(unreachable_patterns)]
|
|
match ty {
|
|
Type::I32 => wasmer_value_tag::WASM_I32,
|
|
Type::I64 => wasmer_value_tag::WASM_I64,
|
|
Type::F32 => wasmer_value_tag::WASM_F32,
|
|
Type::F64 => wasmer_value_tag::WASM_F64,
|
|
Type::V128 => unreachable!("V128 not supported in C API"),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<wasmer_value_tag> for Type {
|
|
fn from(v: wasmer_value_tag) -> Self {
|
|
#[allow(unreachable_patterns)]
|
|
match v {
|
|
wasmer_value_tag::WASM_I32 => Type::I32,
|
|
wasmer_value_tag::WASM_I64 => Type::I64,
|
|
wasmer_value_tag::WASM_F32 => Type::F32,
|
|
wasmer_value_tag::WASM_F64 => Type::F64,
|
|
_ => unreachable!("unknown WASM type"),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<&wasmer_runtime::wasm::Type> for wasmer_value_tag {
|
|
fn from(ty: &Type) -> Self {
|
|
match *ty {
|
|
Type::I32 => wasmer_value_tag::WASM_I32,
|
|
Type::I64 => wasmer_value_tag::WASM_I64,
|
|
Type::F32 => wasmer_value_tag::WASM_F32,
|
|
Type::F64 => wasmer_value_tag::WASM_F64,
|
|
Type::V128 => unimplemented!("V128 not supported in C API"),
|
|
}
|
|
}
|
|
}
|