Add initial progress to add LLVM to module refactor

This commit is contained in:
Brandon Fish
2019-04-29 00:13:34 -05:00
parent 305e1801ff
commit 53bebf9c73
5 changed files with 2260 additions and 10 deletions

File diff suppressed because it is too large Load Diff

View File

@ -26,6 +26,14 @@ impl LLVMCompiler {
}
}
use wasmer_runtime_core::codegen::SimpleStreamingCompilerGen;
pub type LLVMStreamingCompiler = SimpleStreamingCompilerGen<
code::LLVMModuleCodeGenerator,
code::LLVMFunctionCodeGenerator,
backend::LLVMBackend,
code::CodegenError,
>;
impl Compiler for LLVMCompiler {
fn compile(
&self,