2019-08-01 20:46:35 -06:00
|
|
|
#![deny(
|
2019-08-15 20:18:29 -06:00
|
|
|
nonstandard_style,
|
2019-08-01 20:46:35 -06:00
|
|
|
unused_imports,
|
2019-08-15 20:18:29 -06:00
|
|
|
unused_mut,
|
2019-08-01 20:46:35 -06:00
|
|
|
unused_variables,
|
|
|
|
unused_unsafe,
|
|
|
|
unreachable_patterns
|
|
|
|
)]
|
2019-08-22 13:32:35 -07:00
|
|
|
#![cfg_attr(not(target_os = "windows"), deny(dead_code))]
|
2019-03-08 15:15:16 -08:00
|
|
|
#![cfg_attr(nightly, feature(unwind_attributes))]
|
2019-09-03 17:06:31 -07:00
|
|
|
#![doc(html_favicon_url = "https://wasmer.io/static/icons/favicon.ico")]
|
|
|
|
#![doc(html_logo_url = "https://avatars3.githubusercontent.com/u/44205449?s=200&v=4")]
|
2019-03-08 15:15:16 -08:00
|
|
|
|
2019-02-25 18:07:22 -08:00
|
|
|
mod backend;
|
2019-02-09 15:53:40 -08:00
|
|
|
mod code;
|
|
|
|
mod intrinsics;
|
2019-03-02 10:56:02 -08:00
|
|
|
mod platform;
|
2019-02-09 15:53:40 -08:00
|
|
|
mod read_info;
|
2019-07-19 02:02:15 +08:00
|
|
|
mod stackmap;
|
2019-02-09 15:53:40 -08:00
|
|
|
mod state;
|
2019-07-30 14:47:53 -07:00
|
|
|
mod structs;
|
2019-03-01 15:48:43 -08:00
|
|
|
mod trampolines;
|
2019-02-09 15:53:40 -08:00
|
|
|
|
2019-08-08 16:05:17 -07:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2019-07-24 16:04:47 -07:00
|
|
|
pub use code::LLVMFunctionCodeGenerator as FunctionCodeGenerator;
|
|
|
|
pub use code::LLVMModuleCodeGenerator as ModuleCodeGenerator;
|
|
|
|
|
2019-04-29 00:13:34 -05:00
|
|
|
use wasmer_runtime_core::codegen::SimpleStreamingCompilerGen;
|
2019-05-06 23:41:31 -05:00
|
|
|
|
2019-04-30 15:52:43 +08:00
|
|
|
pub type LLVMCompiler = SimpleStreamingCompilerGen<
|
2019-04-29 00:13:34 -05:00
|
|
|
code::LLVMModuleCodeGenerator,
|
|
|
|
code::LLVMFunctionCodeGenerator,
|
|
|
|
backend::LLVMBackend,
|
|
|
|
code::CodegenError,
|
|
|
|
>;
|
2019-08-08 16:05:17 -07:00
|
|
|
|
2019-08-08 19:42:41 -07:00
|
|
|
#[derive(Debug, Clone)]
|
2019-08-08 16:05:17 -07:00
|
|
|
/// LLVM backend flags.
|
2019-08-08 19:42:41 -07:00
|
|
|
pub struct LLVMOptions {
|
2019-08-08 16:05:17 -07:00
|
|
|
/// Emit LLVM IR before optimization pipeline.
|
2019-08-08 19:42:41 -07:00
|
|
|
pub pre_opt_ir: Option<PathBuf>,
|
2019-08-08 16:05:17 -07:00
|
|
|
|
|
|
|
/// Emit LLVM IR after optimization pipeline.
|
2019-08-08 19:42:41 -07:00
|
|
|
pub post_opt_ir: Option<PathBuf>,
|
2019-08-08 16:05:17 -07:00
|
|
|
|
|
|
|
/// Emit LLVM generated native code object file.
|
2019-08-08 19:42:41 -07:00
|
|
|
pub obj_file: Option<PathBuf>,
|
2019-08-08 16:05:17 -07:00
|
|
|
}
|
|
|
|
|
2019-08-08 19:42:41 -07:00
|
|
|
pub static mut GLOBAL_OPTIONS: LLVMOptions = LLVMOptions {
|
2019-08-08 16:05:17 -07:00
|
|
|
pre_opt_ir: None,
|
|
|
|
post_opt_ir: None,
|
|
|
|
obj_file: None,
|
|
|
|
};
|