mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-23 00:45:32 +00:00
19 lines
492 B
Rust
19 lines
492 B
Rust
//! Universal backend for Wasmer compilers.
|
|
//!
|
|
//! Given a compiler (such as `CraneliftCompiler` or `LLVMCompiler`)
|
|
//! it generates the compiled machine code, and publishes it into
|
|
//! memory so it can be used externally.
|
|
|
|
mod artifact;
|
|
mod builder;
|
|
mod code_memory;
|
|
mod engine;
|
|
mod link;
|
|
mod unwind;
|
|
|
|
pub use self::artifact::UniversalArtifact;
|
|
pub use self::builder::Universal;
|
|
pub use self::code_memory::CodeMemory;
|
|
pub use self::engine::UniversalEngine;
|
|
pub use self::link::link_module;
|