2019-01-18 12:13:01 -08:00
|
|
|
use crate::{
|
2019-01-18 14:30:15 -08:00
|
|
|
backing::ImportBacking,
|
2019-01-18 12:13:01 -08:00
|
|
|
error::CompileResult,
|
|
|
|
error::RuntimeResult,
|
|
|
|
module::ModuleInner,
|
2019-04-09 15:53:01 -07:00
|
|
|
typed_func::Wasm,
|
|
|
|
types::{FuncIndex, LocalFuncIndex, SigIndex, Value},
|
2019-01-18 12:13:01 -08:00
|
|
|
vm,
|
|
|
|
};
|
2019-02-19 15:36:22 -08:00
|
|
|
|
2019-02-06 16:26:45 -08:00
|
|
|
use crate::{
|
2019-02-21 17:06:49 -08:00
|
|
|
cache::{Artifact, Error as CacheError},
|
2019-02-06 16:26:45 -08:00
|
|
|
module::ModuleInfo,
|
|
|
|
sys::Memory,
|
|
|
|
};
|
2019-03-04 12:57:26 -08:00
|
|
|
use std::{any::Any, ptr::NonNull};
|
2019-01-08 12:09:47 -05:00
|
|
|
|
2019-03-27 14:01:27 -07:00
|
|
|
use hashbrown::HashMap;
|
|
|
|
|
2019-01-21 11:51:41 -08:00
|
|
|
pub mod sys {
|
|
|
|
pub use crate::sys::*;
|
|
|
|
}
|
2019-01-10 22:59:57 -05:00
|
|
|
pub use crate::sig_registry::SigRegistry;
|
2019-01-09 18:31:11 -05:00
|
|
|
|
2019-02-20 16:41:41 -08:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Copy, Clone, PartialEq, Eq)]
|
2019-02-06 16:26:45 -08:00
|
|
|
pub enum Backend {
|
|
|
|
Cranelift,
|
2019-04-11 12:44:03 -07:00
|
|
|
Singlepass,
|
2019-02-08 14:19:58 -08:00
|
|
|
LLVM,
|
2019-02-06 16:26:45 -08:00
|
|
|
}
|
|
|
|
|
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: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-27 14:01:27 -07:00
|
|
|
/// Configuration data for the compiler
|
|
|
|
pub struct CompilerConfig {
|
|
|
|
/// Symbol information generated from emscripten; used for more detailed debug messages
|
|
|
|
pub symbol_map: Option<HashMap<u32, String>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for CompilerConfig {
|
|
|
|
fn default() -> CompilerConfig {
|
|
|
|
CompilerConfig { symbol_map: None }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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>;
|
2019-02-06 16:26:45 -08:00
|
|
|
|
2019-02-21 17:06:49 -08:00
|
|
|
unsafe fn from_cache(&self, cache: Artifact, _: Token) -> Result<ModuleInner, CacheError>;
|
2019-01-18 12:13:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// The functionality exposed by this trait is expected to be used
|
|
|
|
/// for calling functions exported by a webassembly module from
|
|
|
|
/// host code only.
|
2019-01-28 11:55:44 -08:00
|
|
|
pub trait ProtectedCaller: Send + Sync {
|
2019-01-18 12:13:01 -08:00
|
|
|
/// This calls the exported function designated by `local_func_index`.
|
|
|
|
/// Important to note, this supports calling imported functions that are
|
|
|
|
/// then exported.
|
|
|
|
///
|
|
|
|
/// It's invalid to attempt to call a local function that isn't exported and
|
|
|
|
/// the implementation is expected to check for that. The implementation
|
|
|
|
/// is also expected to check for correct parameter types and correct
|
|
|
|
/// parameter number.
|
|
|
|
///
|
|
|
|
/// The `returns` parameter is filled with dummy values when passed in and upon function
|
|
|
|
/// return, will be filled with the return values of the wasm function, as long as the
|
|
|
|
/// call completed successfully.
|
|
|
|
///
|
|
|
|
/// The existance of the Token parameter ensures that this can only be called from
|
|
|
|
/// within the runtime crate.
|
2019-04-10 10:24:23 -07:00
|
|
|
///
|
|
|
|
/// TODO(lachlan): Now that `get_wasm_trampoline` exists, `ProtectedCaller::call`
|
|
|
|
/// can be removed. That should speed up calls a little bit, since sanity checks
|
|
|
|
/// would only occur once.
|
2019-01-18 12:13:01 -08:00
|
|
|
fn call(
|
|
|
|
&self,
|
|
|
|
module: &ModuleInner,
|
|
|
|
func_index: FuncIndex,
|
|
|
|
params: &[Value],
|
2019-01-18 13:29:43 -08:00
|
|
|
import_backing: &ImportBacking,
|
2019-01-18 12:13:01 -08:00
|
|
|
vmctx: *mut vm::Ctx,
|
|
|
|
_: Token,
|
2019-01-22 15:00:27 -08:00
|
|
|
) -> RuntimeResult<Vec<Value>>;
|
2019-02-08 13:08:03 -08:00
|
|
|
|
2019-04-10 10:24:23 -07:00
|
|
|
/// A wasm trampoline contains the necesarry 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.
|
2019-04-09 15:53:01 -07:00
|
|
|
fn get_wasm_trampoline(&self, module: &ModuleInner, sig_index: SigIndex) -> Option<Wasm>;
|
|
|
|
|
2019-02-08 13:08:03 -08:00
|
|
|
fn get_early_trapper(&self) -> Box<dyn UserTrapper>;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait UserTrapper {
|
2019-03-04 12:57:26 -08:00
|
|
|
unsafe fn do_early_trap(&self, data: Box<dyn Any>) -> !;
|
2019-01-08 12:09:47 -05:00
|
|
|
}
|
|
|
|
|
2019-01-28 11:55:44 -08:00
|
|
|
pub trait FuncResolver: Send + Sync {
|
2019-01-18 12:13:01 -08:00
|
|
|
/// This returns a pointer to the function designated by the `local_func_index`
|
|
|
|
/// parameter.
|
2019-01-16 10:26:10 -08:00
|
|
|
fn get(
|
|
|
|
&self,
|
|
|
|
module: &ModuleInner,
|
|
|
|
local_func_index: LocalFuncIndex,
|
|
|
|
) -> Option<NonNull<vm::Func>>;
|
2019-01-08 12:09:47 -05:00
|
|
|
}
|
2019-02-18 11:56:20 -08:00
|
|
|
|
|
|
|
pub trait CacheGen: Send + Sync {
|
2019-02-20 16:41:41 -08:00
|
|
|
fn generate_cache(
|
|
|
|
&self,
|
|
|
|
module: &ModuleInner,
|
|
|
|
) -> Result<(Box<ModuleInfo>, Box<[u8]>, Memory), CacheError>;
|
|
|
|
}
|