2018-11-24 15:55:21 +01:00
|
|
|
use super::process::abort_with_message;
|
2018-12-18 09:43:59 -08:00
|
|
|
use libc::{c_int, c_void, memcpy, size_t};
|
2019-01-23 01:27:13 -06:00
|
|
|
use wasmer_runtime_core::vm::Ctx;
|
2018-11-20 20:11:58 +01:00
|
|
|
|
|
|
|
/// emscripten: _emscripten_memcpy_big
|
2019-02-02 15:28:50 -08:00
|
|
|
pub fn _emscripten_memcpy_big(dest: u32, src: u32, len: u32, ctx: &mut Ctx) -> u32 {
|
2018-12-17 23:54:00 -06:00
|
|
|
debug!(
|
|
|
|
"emscripten::_emscripten_memcpy_big {}, {}, {}",
|
|
|
|
dest, src, len
|
|
|
|
);
|
2019-01-24 13:04:12 -08:00
|
|
|
let dest_addr = emscripten_memory_pointer!(ctx.memory(0), dest) as *mut c_void;
|
|
|
|
let src_addr = emscripten_memory_pointer!(ctx.memory(0), src) as *mut c_void;
|
2018-11-21 20:59:23 -08:00
|
|
|
unsafe {
|
|
|
|
memcpy(dest_addr, src_addr, len as size_t);
|
|
|
|
}
|
2018-11-20 20:11:58 +01:00
|
|
|
dest
|
|
|
|
}
|
|
|
|
|
|
|
|
/// emscripten: getTotalMemory
|
2019-02-02 15:28:50 -08:00
|
|
|
pub fn get_total_memory(_ctx: &mut Ctx) -> u32 {
|
2018-11-20 19:24:23 -08:00
|
|
|
debug!("emscripten::get_total_memory");
|
2018-11-26 16:06:27 -05:00
|
|
|
// instance.memories[0].current_pages()
|
2019-01-23 01:27:13 -06:00
|
|
|
// TODO: Fix implementation
|
2018-12-08 00:19:55 -06:00
|
|
|
16_777_216
|
2018-11-20 20:11:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// emscripten: enlargeMemory
|
2019-02-02 15:28:50 -08:00
|
|
|
pub fn enlarge_memory(_ctx: &mut Ctx) -> u32 {
|
2018-11-20 19:24:23 -08:00
|
|
|
debug!("emscripten::enlarge_memory");
|
|
|
|
// instance.memories[0].grow(100);
|
2019-01-23 01:27:13 -06:00
|
|
|
// TODO: Fix implementation
|
2019-01-23 10:54:03 -08:00
|
|
|
0
|
2018-11-20 20:11:58 +01:00
|
|
|
}
|
2018-11-24 15:55:21 +01:00
|
|
|
|
|
|
|
/// emscripten: abortOnCannotGrowMemory
|
2019-02-02 15:28:50 -08:00
|
|
|
pub fn abort_on_cannot_grow_memory(ctx: &mut Ctx) -> u32 {
|
2018-11-24 15:55:21 +01:00
|
|
|
debug!("emscripten::abort_on_cannot_grow_memory");
|
2019-01-31 14:48:29 -08:00
|
|
|
abort_with_message("Cannot enlarge memory arrays!", ctx);
|
2019-01-23 10:54:03 -08:00
|
|
|
0
|
2018-11-24 15:55:21 +01:00
|
|
|
}
|
2018-12-13 19:28:30 +01:00
|
|
|
|
|
|
|
/// emscripten: ___map_file
|
2019-02-02 15:28:50 -08:00
|
|
|
pub fn ___map_file(_one: u32, _two: u32, _ctx: &mut Ctx) -> c_int {
|
2018-12-13 19:28:30 +01:00
|
|
|
debug!("emscripten::___map_file");
|
|
|
|
// NOTE: TODO: Em returns -1 here as well. May need to implement properly
|
|
|
|
-1
|
|
|
|
}
|