1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-03-31 15:01:03 +00:00

276 lines
7.3 KiB
Rust
Raw Normal View History

2019-01-18 12:13:01 -08:00
use crate::{
error::CompileResult,
module::ModuleInner,
2019-06-12 22:02:15 +08:00
state::ModuleStateMap,
typed_func::Wasm,
types::{LocalFuncIndex, SigIndex},
2019-01-18 12:13:01 -08:00
vm,
};
2019-02-19 15:36:22 -08:00
use crate::{
cache::{Artifact, Error as CacheError},
2019-07-04 01:45:06 +08:00
codegen::BreakpointMap,
module::ModuleInfo,
sys::Memory,
};
use std::{any::Any, ptr::NonNull};
2019-01-08 12:09:47 -05:00
2019-07-31 23:17:42 -07:00
use std::collections::HashMap;
2019-03-27 14:01:27 -07:00
pub mod sys {
pub use crate::sys::*;
}
2019-01-10 22:59:57 -05:00
pub use crate::sig_registry::SigRegistry;
2019-09-27 10:15:40 -07:00
/// Enum used to select which compiler should be used to generate code.
2019-02-20 16:41:41 -08:00
#[derive(Serialize, Deserialize, Debug, Copy, Clone, PartialEq, Eq)]
pub enum Backend {
Cranelift,
2019-04-11 12:44:03 -07:00
Singlepass,
LLVM,
}
impl Backend {
2019-09-27 10:15:40 -07:00
/// Get a list of the currently enabled (via feature flag) backends.
pub fn variants() -> &'static [&'static str] {
&[
#[cfg(feature = "backend-cranelift")]
"cranelift",
2019-07-09 17:57:31 -07:00
#[cfg(feature = "backend-singlepass")]
"singlepass",
2019-07-09 17:57:31 -07:00
#[cfg(feature = "backend-llvm")]
"llvm",
]
}
2019-09-27 10:15:40 -07:00
/// Stable string representation of the backend.
/// It can be used as part of a cache key, for example.
pub fn to_string(&self) -> &'static str {
match self {
Backend::Cranelift => "cranelift",
Backend::Singlepass => "singlepass",
Backend::LLVM => "llvm",
}
}
}
impl Default for Backend {
fn default() -> Self {
Backend::Cranelift
}
}
impl std::str::FromStr for Backend {
type Err = String;
fn from_str(s: &str) -> Result<Backend, String> {
match s.to_lowercase().as_str() {
"singlepass" => Ok(Backend::Singlepass),
"cranelift" => Ok(Backend::Cranelift),
"llvm" => Ok(Backend::LLVM),
_ => Err(format!("The backend {} doesn't exist", s)),
}
}
}
2019-10-11 21:04:53 +08:00
#[derive(Copy, Clone, Debug)]
pub enum Architecture {
X64,
Aarch64,
}
#[repr(u8)]
#[derive(Copy, Clone, Debug)]
pub enum InlineBreakpointType {
Trace,
Middleware,
Unknown,
}
#[derive(Clone, Debug)]
pub struct InlineBreakpoint {
pub size: usize,
pub ty: InlineBreakpointType,
}
pub fn get_inline_breakpoint_size(arch: Architecture, backend: Backend) -> Option<usize> {
match (arch, backend) {
(Architecture::X64, Backend::Singlepass) => Some(7),
(Architecture::Aarch64, Backend::Singlepass) => Some(12),
2019-10-13 20:02:47 +08:00
_ => None,
2019-10-11 21:04:53 +08:00
}
}
2019-10-13 20:02:47 +08:00
pub fn read_inline_breakpoint(
arch: Architecture,
backend: Backend,
code: &[u8],
) -> Option<InlineBreakpoint> {
2019-10-11 21:04:53 +08:00
match arch {
Architecture::X64 => match backend {
Backend::Singlepass => {
if code.len() < 7 {
None
} else if &code[..6] == &[0x0f, 0x0b, 0x0f, 0xb9, 0xcd, 0xff] {
// ud2 ud (int 0xff) code
Some(InlineBreakpoint {
size: 7,
ty: match code[6] {
0 => InlineBreakpointType::Trace,
1 => InlineBreakpointType::Middleware,
_ => InlineBreakpointType::Unknown,
},
})
} else {
None
}
}
2019-10-13 20:02:47 +08:00
_ => None,
2019-10-11 21:04:53 +08:00
},
Architecture::Aarch64 => match backend {
Backend::Singlepass => {
if code.len() < 12 {
None
} else if &code[..8] == &[0, 0, 0, 0, 0xff, 0xff, 0xff, 0xff] {
Some(InlineBreakpoint {
size: 12,
ty: match code[8] {
0 => InlineBreakpointType::Trace,
1 => InlineBreakpointType::Middleware,
_ => InlineBreakpointType::Unknown,
2019-10-13 20:02:47 +08:00
},
2019-10-11 21:04:53 +08:00
})
} else {
None
}
2019-10-13 20:02:47 +08:00
}
2019-10-11 21:04:53 +08:00
_ => None,
2019-10-13 20:02:47 +08:00
},
2019-10-11 21:04:53 +08:00
}
}
#[cfg(test)]
mod backend_test {
use super::*;
use std::str::FromStr;
#[test]
fn str_repr_matches() {
// if this test breaks, think hard about why it's breaking
// can we avoid having these be different?
for &backend in &[Backend::Cranelift, Backend::LLVM, Backend::Singlepass] {
assert_eq!(backend, Backend::from_str(backend.to_string()).unwrap());
}
}
}
2019-01-18 12:13:01 -08:00
/// This type cannot be constructed from
/// outside the runtime crate.
pub struct Token {
_private: (),
}
impl Token {
pub(crate) fn generate() -> Self {
Self { _private: () }
}
}
#[derive(Copy, Clone, Debug)]
pub enum MemoryBoundCheckMode {
Default,
Enable,
Disable,
}
impl Default for MemoryBoundCheckMode {
fn default() -> MemoryBoundCheckMode {
MemoryBoundCheckMode::Default
}
}
2019-09-27 10:15:40 -07:00
/// Controls which experimental features will be enabled.
2019-07-26 11:12:13 -07:00
#[derive(Debug, Default)]
pub struct Features {
pub simd: bool,
pub threads: bool,
}
2019-03-27 14:01:27 -07:00
/// Configuration data for the compiler
2019-07-26 11:12:13 -07:00
#[derive(Debug, Default)]
2019-03-27 14:01:27 -07:00
pub struct CompilerConfig {
/// Symbol information generated from emscripten; used for more detailed debug messages
pub symbol_map: Option<HashMap<u32, String>>,
pub memory_bound_check_mode: MemoryBoundCheckMode,
pub enforce_stack_check: bool,
pub track_state: bool,
pub features: Features,
// target info used by LLVM
pub triple: Option<String>,
pub cpu_name: Option<String>,
pub cpu_features: Option<String>,
2019-03-27 14:01:27 -07:00
}
2019-01-08 12:09:47 -05:00
pub trait Compiler {
2019-01-18 12:13:01 -08:00
/// Compiles a `Module` from WebAssembly binary format.
/// The `CompileToken` parameter ensures that this can only
/// be called from inside the runtime.
2019-03-27 14:01:27 -07:00
fn compile(
&self,
wasm: &[u8],
comp_conf: CompilerConfig,
_: Token,
) -> CompileResult<ModuleInner>;
unsafe fn from_cache(&self, cache: Artifact, _: Token) -> Result<ModuleInner, CacheError>;
2019-01-18 12:13:01 -08:00
}
pub trait RunnableModule: Send + Sync {
2019-01-18 12:13:01 -08:00
/// This returns a pointer to the function designated by the `local_func_index`
/// parameter.
fn get_func(
2019-01-16 10:26:10 -08:00
&self,
info: &ModuleInfo,
2019-01-16 10:26:10 -08:00
local_func_index: LocalFuncIndex,
) -> Option<NonNull<vm::Func>>;
2019-06-12 22:02:15 +08:00
fn get_module_state_map(&self) -> Option<ModuleStateMap> {
None
}
2019-06-09 21:21:18 +08:00
2019-07-04 01:45:06 +08:00
fn get_breakpoints(&self) -> Option<BreakpointMap> {
2019-06-27 15:49:43 +08:00
None
}
unsafe fn patch_local_function(&self, _idx: usize, _target_address: usize) -> bool {
false
}
/// A wasm trampoline contains the necessary data to dynamically call an exported wasm function.
/// Given a particular signature index, we are returned a trampoline that is matched with that
/// signature and an invoke function that can call the trampoline.
fn get_trampoline(&self, info: &ModuleInfo, sig_index: SigIndex) -> Option<Wasm>;
2019-04-18 10:00:15 -07:00
unsafe fn do_early_trap(&self, data: Box<dyn Any>) -> !;
2019-05-03 00:23:41 +08:00
2019-05-14 16:13:42 +08:00
/// Returns the machine code associated with this module.
2019-05-14 16:04:08 +08:00
fn get_code(&self) -> Option<&[u8]> {
None
}
2019-05-14 16:13:42 +08:00
/// Returns the beginning offsets of all functions, including import trampolines.
2019-05-14 16:04:08 +08:00
fn get_offsets(&self) -> Option<Vec<usize>> {
None
}
/// Returns the beginning offsets of all local functions.
fn get_local_function_offsets(&self) -> Option<Vec<usize>> {
None
}
2019-01-08 12:09:47 -05:00
}
pub trait CacheGen: Send + Sync {
2019-04-19 13:54:48 -07:00
fn generate_cache(&self) -> Result<(Box<[u8]>, Memory), CacheError>;
2019-02-20 16:41:41 -08:00
}