wasmer/lib/runtime-core/src/backend.rs

323 lines
10 KiB
Rust
Raw Normal View History

2019-01-18 12:13:01 -08:00
use crate::{
error::{CompileResult, RuntimeError},
2019-01-18 12:13:01 -08:00
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::fmt;
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;
/// The target architecture for code generation.
2019-10-11 21:04:53 +08:00
#[derive(Copy, Clone, Debug)]
pub enum Architecture {
/// x86-64.
2019-10-11 21:04:53 +08:00
X64,
/// Aarch64 (ARM64).
2019-10-11 21:04:53 +08:00
Aarch64,
}
/// The type of an inline breakpoint.
2019-10-11 21:04:53 +08:00
#[repr(u8)]
#[derive(Copy, Clone, Debug)]
pub enum InlineBreakpointType {
/// A middleware invocation breakpoint.
2019-10-11 21:04:53 +08:00
Middleware,
}
/// Information of an inline breakpoint.
2019-10-11 21:04:53 +08:00
#[derive(Clone, Debug)]
pub struct InlineBreakpoint {
/// Size in bytes taken by this breakpoint's instruction sequence.
2019-10-11 21:04:53 +08:00
pub size: usize,
/// Type of the inline breakpoint.
2019-10-11 21:04:53 +08:00
pub ty: InlineBreakpointType,
}
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.
/// Features usually have a corresponding [WebAssembly proposal][wasm-props].
///
/// [wasm-props]: https://github.com/WebAssembly/proposals
2019-07-26 11:12:13 -07:00
#[derive(Debug, Default)]
pub struct Features {
/// Whether support for the [SIMD proposal][simd-prop] is enabled.
///
/// [simd-prop]: https://github.com/webassembly/simd
pub simd: bool,
/// Whether support for the [threads proposal][threads-prop] is enabled.
///
/// [threads-prop]: https://github.com/webassembly/threads
pub threads: bool,
}
/// Use this to point to a compiler config struct provided by the backend.
/// The backend struct must support runtime reflection with `Any`, which is any
/// struct that does not contain a non-`'static` reference.
#[derive(Debug)]
pub struct BackendCompilerConfig(pub Box<dyn Any + 'static>);
impl BackendCompilerConfig {
/// Obtain the backend-specific compiler config struct.
pub fn get_specific<T: 'static>(&self) -> Option<&T> {
self.0.downcast_ref::<T>()
}
}
2019-03-27 14:01:27 -07:00
/// Configuration data for the compiler
#[derive(Debug)]
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>>,
/// How to make the decision whether to emit bounds checks for memory accesses.
pub memory_bound_check_mode: MemoryBoundCheckMode,
2020-02-05 00:44:59 +08:00
/// Whether to generate explicit native stack checks against `stack_lower_bound` in `InternalCtx`.
2020-02-05 00:45:24 +08:00
///
2020-02-05 00:44:59 +08:00
/// Usually it's adequate to use hardware memory protection mechanisms such as `mprotect` on Unix to
/// prevent stack overflow. But for low-level environments, e.g. the kernel, faults are generally
/// not expected and relying on hardware memory protection would add too much complexity.
pub enforce_stack_check: bool,
/// Whether to enable state tracking. Necessary for managed mode.
pub track_state: bool,
/// Whether to enable full preemption checkpoint generation.
///
/// This inserts checkpoints at critical locations such as loop backedges and function calls,
2020-02-05 00:44:59 +08:00
/// allowing preemptive unwinding/task switching.
///
/// When enabled there can be a small amount of runtime performance overhead.
pub full_preemption: bool,
/// Always choose a unique bit representation for NaN.
/// Enabling this makes execution deterministic but increases runtime overhead.
pub nan_canonicalization: bool,
/// Turns on verification that is done by default when `debug_assertions` are enabled
/// (for example in 'debug' builds). Disabling this flag will make compilation faster
/// in debug mode at the cost of not detecting bugs in the compiler.
///
/// These verifications are disabled by default in 'release' builds.
pub enable_verification: bool,
pub features: Features,
// Target info. Presently only supported by LLVM.
pub triple: Option<String>,
pub cpu_name: Option<String>,
pub cpu_features: Option<String>,
pub backend_specific_config: Option<BackendCompilerConfig>,
pub generate_debug_info: bool,
2019-03-27 14:01:27 -07:00
}
impl Default for CompilerConfig {
fn default() -> Self {
Self {
symbol_map: Default::default(),
memory_bound_check_mode: Default::default(),
enforce_stack_check: Default::default(),
track_state: Default::default(),
full_preemption: Default::default(),
nan_canonicalization: Default::default(),
features: Default::default(),
triple: Default::default(),
cpu_name: Default::default(),
cpu_features: Default::default(),
backend_specific_config: Default::default(),
generate_debug_info: Default::default(),
// Default verification to 'on' when testing or running in debug mode.
// NOTE: cfg(test) probably does nothing when not running `cargo test`
// on this crate
enable_verification: cfg!(test) || cfg!(debug_assertions),
}
}
}
impl CompilerConfig {
/// Use this to check if we should be generating debug information.
/// This function takes into account the features that runtime-core was
/// compiled with in addition to the value of the `generate_debug_info` field.
pub(crate) fn should_generate_debug_info(&self) -> bool {
cfg!(feature = "generate-debug-information") && self.generate_debug_info
}
}
2020-01-09 01:42:21 +08:00
/// An exception table for a `RunnableModule`.
2020-01-10 02:53:08 +08:00
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
2020-01-09 01:42:21 +08:00
pub struct ExceptionTable {
/// Mappings from offsets in generated machine code to the corresponding exception code.
pub offset_to_code: HashMap<usize, ExceptionCode>,
}
2020-01-10 02:53:08 +08:00
impl ExceptionTable {
pub fn new() -> Self {
Self::default()
}
}
2020-01-09 01:42:21 +08:00
/// The code of an exception.
2020-01-10 02:53:08 +08:00
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Serialize, Deserialize)]
2020-01-09 01:42:21 +08:00
pub enum ExceptionCode {
/// An `unreachable` opcode was executed.
Unreachable = 0,
/// Call indirect incorrect signature trap.
IncorrectCallIndirectSignature = 1,
/// Memory out of bounds trap.
MemoryOutOfBounds = 2,
/// Call indirect out of bounds trap.
CallIndirectOOB = 3,
2020-01-09 01:42:21 +08:00
/// An arithmetic exception, e.g. divided by zero.
IllegalArithmetic = 4,
/// Misaligned atomic access trap.
MisalignedAtomicAccess = 5,
}
2020-01-09 01:42:21 +08:00
impl fmt::Display for ExceptionCode {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"{}",
match self {
ExceptionCode::Unreachable => "unreachable",
ExceptionCode::IncorrectCallIndirectSignature => {
"incorrect `call_indirect` signature"
}
ExceptionCode::MemoryOutOfBounds => "memory out-of-bounds access",
ExceptionCode::CallIndirectOOB => "`call_indirect` out-of-bounds",
ExceptionCode::IllegalArithmetic => "illegal arithmetic operation",
ExceptionCode::MisalignedAtomicAccess => "misaligned atomic access",
}
)
}
2020-01-09 01:42:21 +08: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
}
2020-01-09 01:42:21 +08:00
fn get_exception_table(&self) -> Option<&ExceptionTable> {
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.
2020-01-15 08:41:37 +01:00
/// Given a particular signature index, we return 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>;
/// Trap an error.
unsafe fn do_early_trap(&self, data: RuntimeError) -> !;
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
}
/// Returns the inline breakpoint size corresponding to an Architecture (None in case is not implemented)
fn get_inline_breakpoint_size(&self, _arch: Architecture) -> Option<usize> {
None
}
/// Attempts to read an inline breakpoint from the code.
///
/// Inline breakpoints are detected by special instruction sequences that never
/// appear in valid code.
fn read_inline_breakpoint(
&self,
_arch: Architecture,
_code: &[u8],
) -> Option<InlineBreakpoint> {
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
}