52 lines
1.2 KiB
Rust
Raw Normal View History

2019-02-09 15:53:40 -08:00
use wasmer_runtime_core::{
backend::{Compiler, Token},
error::CompileError,
2019-02-11 19:34:04 -08:00
module::ModuleInner,
2019-02-09 15:53:40 -08:00
};
mod code;
mod intrinsics;
mod read_info;
mod state;
pub struct LLVMCompiler {
_private: (),
}
impl LLVMCompiler {
pub fn new() -> Self {
Self { _private: () }
}
}
impl Compiler for LLVMCompiler {
fn compile(&self, wasm: &[u8], _: Token) -> Result<ModuleInner, CompileError> {
let (_info, _code_reader) = read_info::read_module(wasm).unwrap();
unimplemented!()
}
}
#[test]
fn test_read_module() {
use wabt::wat2wasm;
2019-02-14 18:08:20 -08:00
// let wasm = include_bytes!("../../spectests/examples/simple/simple.wasm") as &[u8];
let wat = r#"
2019-02-09 15:53:40 -08:00
(module
(type $t0 (func (param i32) (result i32)))
(type $t1 (func (result i32)))
(memory 1)
2019-02-14 18:08:20 -08:00
(global $g0 (mut i32) (i32.const 0))
(func $foo (type $t0) (param i32) (result i32)
get_local 0
2019-02-14 18:08:20 -08:00
set_global $g0
get_global $g0
))
2019-02-09 15:53:40 -08:00
"#;
let wasm = wat2wasm(wat).unwrap();
2019-02-09 15:53:40 -08:00
let (info, code_reader) = read_info::read_module(&wasm).unwrap();
code::parse_function_bodies(&info, code_reader).unwrap();
}