wasmer/lib/emscripten/src/varargs.rs

24 lines
536 B
Rust
Raw Normal View History

2018-11-23 05:13:01 +00:00
use std::mem;
2019-02-01 21:18:43 +00:00
use wasmer_runtime_core::{
types::{Type, WasmExternType},
2019-02-01 21:22:49 +00:00
vm::Ctx,
2019-02-01 21:18:43 +00:00
};
2018-11-23 05:13:01 +00:00
#[repr(transparent)]
2019-02-01 21:18:43 +00:00
#[derive(Copy, Clone)]
2018-11-23 05:13:01 +00:00
pub struct VarArgs {
pub pointer: u32, // assuming 32bit wasm
2018-11-23 05:13:01 +00:00
}
impl VarArgs {
2019-01-24 21:04:12 +00:00
pub fn get<T: Sized>(&mut self, ctx: &mut Ctx) -> T {
let ptr = emscripten_memory_pointer!(ctx.memory(0), self.pointer);
2018-11-23 05:13:01 +00:00
self.pointer += mem::size_of::<T>() as u32;
unsafe { (ptr as *const T).read() }
}
2018-11-27 04:29:26 +00:00
}
2019-02-01 21:18:43 +00:00
unsafe impl WasmExternType for VarArgs {
const TYPE: Type = Type::I32;
2019-02-01 21:22:49 +00:00
}