wasmer_compiler_singlepass/
lib.rs1#![allow(clippy::unnecessary_cast)]
12#![cfg_attr(docsrs, feature(doc_cfg))]
13
14#[cfg(target_os = "windows")]
15compile_error!(
16 "The Singlepass compiler backend is not supported on Windows. Use the V8 backend instead."
17);
18
19mod address_map;
20mod arm64_decl;
21mod codegen;
22mod common_decl;
23mod compiler;
24mod config;
25#[cfg(feature = "unwind")]
26mod dwarf;
27mod elf;
28mod emitter_arm64;
29mod emitter_riscv;
30mod emitter_x64;
31mod location;
32mod machine;
33mod machine_arm64;
34mod machine_riscv;
35mod machine_x64;
36mod output_reporter;
37mod riscv_decl;
38mod unwind;
39#[cfg(feature = "unwind")]
40mod unwind_winx64;
41mod x64_decl;
42
43pub use crate::compiler::SinglepassCompiler;
44pub use {crate::config::Singlepass, crate::config::SinglepassCallbacks};