mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-25 02:12:13 +00:00
30 lines
643 B
Rust
30 lines
643 B
Rust
#![deny(
|
|
dead_code,
|
|
unused_imports,
|
|
unused_variables,
|
|
unused_unsafe,
|
|
unreachable_patterns
|
|
)]
|
|
#![cfg_attr(nightly, feature(unwind_attributes))]
|
|
|
|
mod backend;
|
|
mod code;
|
|
mod intrinsics;
|
|
mod platform;
|
|
mod read_info;
|
|
mod state;
|
|
mod structs;
|
|
mod trampolines;
|
|
|
|
pub use code::LLVMFunctionCodeGenerator as FunctionCodeGenerator;
|
|
pub use code::LLVMModuleCodeGenerator as ModuleCodeGenerator;
|
|
|
|
use wasmer_runtime_core::codegen::SimpleStreamingCompilerGen;
|
|
|
|
pub type LLVMCompiler = SimpleStreamingCompilerGen<
|
|
code::LLVMModuleCodeGenerator,
|
|
code::LLVMFunctionCodeGenerator,
|
|
backend::LLVMBackend,
|
|
code::CodegenError,
|
|
>;
|