2018-11-14 03:19:23 +00:00
|
|
|
use crate::webassembly::{ImportObject, ImportValue};
|
|
|
|
|
2018-11-20 19:11:58 +00:00
|
|
|
// EMSCRIPTEN APIS
|
|
|
|
mod memory;
|
|
|
|
mod process;
|
|
|
|
mod io;
|
|
|
|
|
|
|
|
// SYSCALLS
|
|
|
|
use super::host;
|
2018-11-14 03:19:23 +00:00
|
|
|
|
|
|
|
pub fn generate_emscripten_env<'a, 'b>() -> ImportObject<&'a str, &'b str> {
|
|
|
|
let mut import_object = ImportObject::new();
|
2018-11-20 19:11:58 +00:00
|
|
|
import_object.set("env", "printf", ImportValue::Func(io::printf as *const u8));
|
|
|
|
import_object.set("env", "putchar", ImportValue::Func(io::putchar as *const u8));
|
|
|
|
// EMSCRIPTEN SYSCALLS
|
|
|
|
import_object.set("env", "___syscall1", ImportValue::Func(host::sys_exit as *const u8));
|
|
|
|
import_object.set("env", "___syscall3", ImportValue::Func(host::sys_read as *const u8));
|
|
|
|
import_object.set("env", "___syscall5", ImportValue::Func(host::sys_open as *const u8));
|
|
|
|
import_object.set("env", "___syscall6", ImportValue::Func(host::sys_close as *const u8));
|
|
|
|
// EMSCRIPTEN APIS
|
|
|
|
import_object.set("env", "abort", ImportValue::Func(process::em_abort as *const u8));
|
|
|
|
import_object.set("env", "_abort", ImportValue::Func(process::_abort as *const u8));
|
|
|
|
import_object.set("env", "abortOnCannotGrowMemory", ImportValue::Func(process::abort_on_cannot_grow_memory as *const u8));
|
|
|
|
import_object.set("env", "_emscripten_memcpy_big", ImportValue::Func(memory::_emscripten_memcpy_big as *const u8));
|
|
|
|
import_object.set("env", "enlargeMemory", ImportValue::Func(memory::enlarge_memory as *const u8));
|
|
|
|
import_object.set("env", "getTotalMemory", ImportValue::Func(memory::get_total_memory as *const u8));
|
2018-11-14 03:19:23 +00:00
|
|
|
import_object
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::generate_emscripten_env;
|
|
|
|
use crate::webassembly::{instantiate, Export, Instance};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_putchar() {
|
|
|
|
let wasm_bytes = include_wast2wasm_bytes!("tests/putchar.wast");
|
|
|
|
let import_object = generate_emscripten_env();
|
|
|
|
let result_object = instantiate(wasm_bytes, import_object).expect("Not compiled properly");
|
|
|
|
let func_index = match result_object.module.info.exports.get("main") {
|
|
|
|
Some(&Export::Function(index)) => index,
|
|
|
|
_ => panic!("Function not found"),
|
|
|
|
};
|
|
|
|
let main: fn(&Instance) = get_instance_function!(result_object.instance, func_index);
|
|
|
|
main(&result_object.instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_print() {
|
|
|
|
let wasm_bytes = include_wast2wasm_bytes!("tests/printf.wast");
|
|
|
|
let import_object = generate_emscripten_env();
|
|
|
|
let result_object = instantiate(wasm_bytes, import_object).expect("Not compiled properly");
|
|
|
|
let func_index = match result_object.module.info.exports.get("main") {
|
|
|
|
Some(&Export::Function(index)) => index,
|
|
|
|
_ => panic!("Function not found"),
|
|
|
|
};
|
|
|
|
let main: fn(&Instance) = get_instance_function!(result_object.instance, func_index);
|
|
|
|
main(&result_object.instance);
|
|
|
|
}
|
|
|
|
}
|