1use crate::r#ref::ref_to_val;
2use crate::{
3 from_valtype, into_valtype, wasm_ref_t, wasm_valkind_t, wasmtime_anyref_t,
4 wasmtime_externref_t, wasmtime_valkind_t, WasmtimeStoreContextMut, WASM_I32,
5};
6use std::mem::{ManuallyDrop, MaybeUninit};
7use std::ptr;
8use wasmtime::{AsContextMut, Func, HeapType, Ref, RootScope, Val, ValType};
9
10#[repr(C)]
11pub struct wasm_val_t {
12 pub kind: wasm_valkind_t,
13 pub of: wasm_val_union,
14}
15
16#[repr(C)]
17#[derive(Copy, Clone)]
18pub union wasm_val_union {
19 pub i32: i32,
20 pub i64: i64,
21 pub u32: u32,
22 pub u64: u64,
23 pub f32: f32,
24 pub f64: f64,
25 pub ref_: *mut wasm_ref_t,
26}
27
28impl Drop for wasm_val_t {
29 fn drop(&mut self) {
30 match into_valtype(self.kind) {
31 ValType::Ref(_) => unsafe {
32 if !self.of.ref_.is_null() {
33 drop(Box::from_raw(self.of.ref_));
34 }
35 },
36 _ => {}
37 }
38 }
39}
40
41impl Clone for wasm_val_t {
42 fn clone(&self) -> Self {
43 let mut ret = wasm_val_t {
44 kind: self.kind,
45 of: self.of,
46 };
47 unsafe {
48 match into_valtype(self.kind) {
49 ValType::Ref(_) if !self.of.ref_.is_null() => {
50 ret.of.ref_ = Box::into_raw(Box::new((*self.of.ref_).clone()));
51 }
52 _ => {}
53 }
54 }
55 return ret;
56 }
57}
58
59impl Default for wasm_val_t {
60 fn default() -> Self {
61 wasm_val_t {
62 kind: WASM_I32,
63 of: wasm_val_union { i32: 0 },
64 }
65 }
66}
67
68impl wasm_val_t {
69 pub fn from_val(val: Val) -> wasm_val_t {
70 match val {
71 Val::I32(i) => wasm_val_t {
72 kind: from_valtype(&ValType::I32),
73 of: wasm_val_union { i32: i },
74 },
75 Val::I64(i) => wasm_val_t {
76 kind: from_valtype(&ValType::I64),
77 of: wasm_val_union { i64: i },
78 },
79 Val::F32(f) => wasm_val_t {
80 kind: from_valtype(&ValType::F32),
81 of: wasm_val_union { u32: f },
82 },
83 Val::F64(f) => wasm_val_t {
84 kind: from_valtype(&ValType::F64),
85 of: wasm_val_union { u64: f },
86 },
87 Val::FuncRef(f) => wasm_val_t {
88 kind: from_valtype(&ValType::FUNCREF),
89 of: wasm_val_union {
90 ref_: f.map_or(ptr::null_mut(), |f| {
91 Box::into_raw(Box::new(wasm_ref_t {
92 r: Ref::Func(Some(f)),
93 }))
94 }),
95 },
96 },
97 Val::AnyRef(_) => crate::abort("creating a wasm_val_t from an anyref"),
98 Val::ExternRef(_) => crate::abort("creating a wasm_val_t from an externref"),
99 Val::V128(_) => crate::abort("creating a wasm_val_t from a v128"),
100 }
101 }
102
103 pub fn val(&self) -> Val {
104 match into_valtype(self.kind) {
105 ValType::I32 => Val::from(unsafe { self.of.i32 }),
106 ValType::I64 => Val::from(unsafe { self.of.i64 }),
107 ValType::F32 => Val::from(unsafe { self.of.f32 }),
108 ValType::F64 => Val::from(unsafe { self.of.f64 }),
109 ValType::Ref(r) => match r.heap_type() {
110 HeapType::Func => unsafe {
111 if self.of.ref_.is_null() {
112 assert!(r.is_nullable());
113 Val::FuncRef(None)
114 } else {
115 ref_to_val(&*self.of.ref_)
116 }
117 },
118 _ => unreachable!("wasm_val_t cannot contain non-function reference values"),
119 },
120 ValType::V128 => unimplemented!("wasm_val_t: v128"),
121 }
122 }
123}
124
125#[unsafe(no_mangle)]
126pub unsafe extern "C" fn wasm_val_copy(out: &mut MaybeUninit<wasm_val_t>, source: &wasm_val_t) {
127 crate::initialize(out, source.clone());
128}
129
130#[unsafe(no_mangle)]
131pub unsafe extern "C" fn wasm_val_delete(val: *mut wasm_val_t) {
132 ptr::drop_in_place(val);
133}
134
135#[repr(C)]
136pub struct wasmtime_val_t {
137 pub kind: wasmtime_valkind_t,
138 pub of: wasmtime_val_union,
139}
140
141#[repr(C)]
142pub union wasmtime_val_union {
143 pub i32: i32,
144 pub i64: i64,
145 pub f32: u32,
146 pub f64: u64,
147 pub anyref: ManuallyDrop<wasmtime_anyref_t>,
148 pub externref: ManuallyDrop<wasmtime_externref_t>,
149 pub funcref: wasmtime_func_t,
150 pub v128: [u8; 16],
151}
152
153const _: () = {
154 assert!(std::mem::size_of::<wasmtime_val_union>() == 16);
155 assert!(std::mem::align_of::<wasmtime_val_union>() == std::mem::align_of::<u64>());
156};
157
158unsafe impl Send for wasmtime_val_union
160where
161 Option<Box<wasmtime_anyref_t>>: Send,
162 Option<Box<wasmtime_externref_t>>: Send,
163{
164}
165unsafe impl Sync for wasmtime_val_union
166where
167 Option<Box<wasmtime_anyref_t>>: Sync,
168 Option<Box<wasmtime_externref_t>>: Sync,
169{
170}
171
172#[repr(C)]
173#[derive(Clone, Copy)]
174pub union wasmtime_func_t {
175 store_id: u64,
176 func: Func,
177}
178
179impl wasmtime_func_t {
180 unsafe fn as_wasmtime(&self) -> Option<Func> {
181 if self.store_id == 0 {
182 None
183 } else {
184 Some(self.func)
185 }
186 }
187}
188
189impl From<Option<Func>> for wasmtime_func_t {
190 fn from(func: Option<Func>) -> wasmtime_func_t {
191 match func {
192 Some(func) => wasmtime_func_t { func },
193 None => wasmtime_func_t { store_id: 0 },
194 }
195 }
196}
197
198impl wasmtime_val_t {
199 pub fn from_val(cx: &mut RootScope<impl AsContextMut>, val: Val) -> wasmtime_val_t {
206 Self::from_val_unscoped(cx, val)
207 }
208
209 pub fn from_val_unscoped(cx: impl AsContextMut, val: Val) -> wasmtime_val_t {
217 match val {
218 Val::I32(i) => wasmtime_val_t {
219 kind: crate::WASMTIME_I32,
220 of: wasmtime_val_union { i32: i },
221 },
222 Val::I64(i) => wasmtime_val_t {
223 kind: crate::WASMTIME_I64,
224 of: wasmtime_val_union { i64: i },
225 },
226 Val::F32(i) => wasmtime_val_t {
227 kind: crate::WASMTIME_F32,
228 of: wasmtime_val_union { f32: i },
229 },
230 Val::F64(i) => wasmtime_val_t {
231 kind: crate::WASMTIME_F64,
232 of: wasmtime_val_union { f64: i },
233 },
234 Val::AnyRef(a) => wasmtime_val_t {
235 kind: crate::WASMTIME_ANYREF,
236 of: wasmtime_val_union {
237 anyref: ManuallyDrop::new(a.and_then(|a| a.to_manually_rooted(cx).ok()).into()),
238 },
239 },
240 Val::ExternRef(e) => wasmtime_val_t {
241 kind: crate::WASMTIME_EXTERNREF,
242 of: wasmtime_val_union {
243 externref: ManuallyDrop::new(
244 e.and_then(|e| e.to_manually_rooted(cx).ok()).into(),
245 ),
246 },
247 },
248 Val::FuncRef(func) => wasmtime_val_t {
249 kind: crate::WASMTIME_FUNCREF,
250 of: wasmtime_val_union {
251 funcref: func.into(),
252 },
253 },
254 Val::V128(val) => wasmtime_val_t {
255 kind: crate::WASMTIME_V128,
256 of: wasmtime_val_union {
257 v128: val.as_u128().to_le_bytes(),
258 },
259 },
260 }
261 }
262
263 pub unsafe fn to_val(&self, cx: &mut RootScope<impl AsContextMut>) -> Val {
271 self.to_val_unscoped(cx)
272 }
273
274 pub unsafe fn to_val_unscoped(&self, cx: impl AsContextMut) -> Val {
279 match self.kind {
280 crate::WASMTIME_I32 => Val::I32(self.of.i32),
281 crate::WASMTIME_I64 => Val::I64(self.of.i64),
282 crate::WASMTIME_F32 => Val::F32(self.of.f32),
283 crate::WASMTIME_F64 => Val::F64(self.of.f64),
284 crate::WASMTIME_V128 => Val::V128(u128::from_le_bytes(self.of.v128).into()),
285 crate::WASMTIME_ANYREF => {
286 Val::AnyRef(self.of.anyref.as_wasmtime().map(|a| a.to_rooted(cx)))
287 }
288 crate::WASMTIME_EXTERNREF => {
289 Val::ExternRef(self.of.externref.as_wasmtime().map(|e| e.to_rooted(cx)))
290 }
291 crate::WASMTIME_FUNCREF => Val::FuncRef(self.of.funcref.as_wasmtime()),
292 other => panic!("unknown wasmtime_valkind_t: {other}"),
293 }
294 }
295}
296
297#[unsafe(no_mangle)]
298pub unsafe extern "C" fn wasmtime_val_unroot(
299 cx: WasmtimeStoreContextMut<'_>,
300 val: &mut MaybeUninit<wasmtime_val_t>,
301) {
302 let val = val.assume_init_read();
303 match val.kind {
304 crate::WASMTIME_ANYREF => {
305 if let Some(val) = ManuallyDrop::into_inner(val.of.anyref).as_wasmtime() {
306 val.unroot(cx);
307 }
308 }
309 crate::WASMTIME_EXTERNREF => {
310 if let Some(val) = ManuallyDrop::into_inner(val.of.externref).as_wasmtime() {
311 val.unroot(cx);
312 }
313 }
314 _ => {}
315 }
316}
317
318#[unsafe(no_mangle)]
319pub unsafe extern "C" fn wasmtime_val_clone(
320 cx: WasmtimeStoreContextMut<'_>,
321 src: &wasmtime_val_t,
322 dst: &mut MaybeUninit<wasmtime_val_t>,
323) {
324 let mut scope = RootScope::new(cx);
325 let val = src.to_val(&mut scope);
326 crate::initialize(dst, wasmtime_val_t::from_val(&mut scope, val))
327}