Remove usage of Features from wasmtime::Config API (#763)

Instead expose a number of boolean accessors which doesn't require users
to construct a foreign `Features` type and allows us to decouple the API
of the `wasmtime` crate from the underlying implementation detail.
This commit is contained in:
Alex Crichton
2020-01-06 17:34:48 -06:00
committed by GitHub
parent b9dc38f4e1
commit 787f50e107
11 changed files with 109 additions and 56 deletions

2
Cargo.lock generated
View File

@@ -2132,7 +2132,6 @@ dependencies = [
"wasmtime", "wasmtime",
"wasmtime-environ", "wasmtime-environ",
"wasmtime-interface-types", "wasmtime-interface-types",
"wasmtime-jit",
"wasmtime-runtime", "wasmtime-runtime",
"wasmtime-wasi", "wasmtime-wasi",
] ]
@@ -2160,7 +2159,6 @@ dependencies = [
"anyhow", "anyhow",
"wasmtime", "wasmtime",
"wasmtime-interface-types", "wasmtime-interface-types",
"wasmtime-jit",
"wasmtime-rust-macro", "wasmtime-rust-macro",
"wasmtime-wasi", "wasmtime-wasi",
] ]

View File

@@ -45,12 +45,7 @@ const WAT: &str = r#"
fn main() -> Result<()> { fn main() -> Result<()> {
// Initialize. // Initialize.
println!("Initializing..."); println!("Initializing...");
let mut cfg = Config::new(); let engine = Engine::new(Config::new().wasm_multi_value(true));
cfg.features(wasmtime_jit::Features {
multi_value: true,
..Default::default()
});
let engine = Engine::new(&cfg);
let store = HostRef::new(Store::new(&engine)); let store = HostRef::new(Store::new(&engine));
// Load binary. // Load binary.

View File

@@ -59,16 +59,102 @@ impl Config {
self self
} }
/// Indicates which WebAssembly features are enabled for this compilation /// Configures whether the WebAssembly threads proposal will be enabled for
/// session. /// compilation.
/// ///
/// By default only stable features are enabled by default (and none are /// The [WebAssembly threads proposal][threads] is not currently fully
/// fully stabilized yet at this time). If you're loading wasm modules /// standardized and is undergoing development. Additionally the support in
/// which may use non-MVP features you'll want to be sure to call this /// wasmtime itself is still being worked on. Support for this feature can
/// method and enable the appropriate feature in the [`Features`] /// be enabled through this method for appropriate wasm modules.
/// structure. ///
pub fn features(&mut self, features: Features) -> &mut Self { /// This feature gates items such as shared memories and atomic
self.features = features; /// instructions.
///
/// This is `false` by default.
///
/// [threads]: https://github.com/webassembly/threads
pub fn wasm_threads(&mut self, enable: bool) -> &mut Self {
self.features.threads = enable;
self
}
/// Configures whether the WebAssembly reference types proposal will be
/// enabled for compilation.
///
/// The [WebAssembly reference types proposal][proposal] is not currently
/// fully standardized and is undergoing development. Additionally the
/// support in wasmtime itself is still being worked on. Support for this
/// feature can be enabled through this method for appropriate wasm
/// modules.
///
/// This feature gates items such as the `anyref` type and multiple tables
/// being in a module.
///
/// This is `false` by default.
///
/// [proposal]: https://github.com/webassembly/reference-types
pub fn wasm_reference_types(&mut self, enable: bool) -> &mut Self {
self.features.reference_types = enable;
self
}
/// Configures whether the WebAssembly SIMD proposal will be
/// enabled for compilation.
///
/// The [WebAssembly SIMD proposal][proposal] is not currently
/// fully standardized and is undergoing development. Additionally the
/// support in wasmtime itself is still being worked on. Support for this
/// feature can be enabled through this method for appropriate wasm
/// modules.
///
/// This feature gates items such as the `v128` type and all of its
/// operators being in a module.
///
/// This is `false` by default.
///
/// [proposal]: https://github.com/webassembly/simd
pub fn wasm_simd(&mut self, enable: bool) -> &mut Self {
self.features.simd = enable;
self
}
/// Configures whether the WebAssembly bulk memory operations proposal will
/// be enabled for compilation.
///
/// The [WebAssembly bulk memory operations proposal][proposal] is not
/// currently fully standardized and is undergoing development.
/// Additionally the support in wasmtime itself is still being worked on.
/// Support for this feature can be enabled through this method for
/// appropriate wasm modules.
///
/// This feature gates items such as the `memory.copy` instruction, passive
/// data/table segments, etc, being in a module.
///
/// This is `false` by default.
///
/// [proposal]: https://github.com/webassembly/bulk-memory-operations
pub fn wasm_bulk_memory(&mut self, enable: bool) -> &mut Self {
self.features.bulk_memory = enable;
self
}
/// Configures whether the WebAssembly multi-value proposal will
/// be enabled for compilation.
///
/// The [WebAssembly multi-value proposal][proposal] is not
/// currently fully standardized and is undergoing development.
/// Additionally the support in wasmtime itself is still being worked on.
/// Support for this feature can be enabled through this method for
/// appropriate wasm modules.
///
/// This feature gates functions and blocks returning multiple values in a
/// module, for example.
///
/// This is `false` by default.
///
/// [proposal]: https://github.com/webassembly/multi-value
pub fn wasm_multi_value(&mut self, enable: bool) -> &mut Self {
self.features.multi_value = enable;
self self
} }

View File

@@ -19,7 +19,6 @@ test = false
wasmtime = { path = "../../api" } wasmtime = { path = "../../api" }
wasmtime-environ = { path = "../../environ" } wasmtime-environ = { path = "../../environ" }
wasmtime-interface-types = { path = "../../interface-types" } wasmtime-interface-types = { path = "../../interface-types" }
wasmtime-jit = { path = "../../jit" }
wasmtime-runtime = { path = "../../runtime" } wasmtime-runtime = { path = "../../runtime" }
wasmtime-wasi = { path = "../../wasi" } wasmtime-wasi = { path = "../../wasi" }
target-lexicon = { version = "0.9.0", default-features = false } target-lexicon = { version = "0.9.0", default-features = false }

View File

@@ -10,7 +10,6 @@ use pyo3::types::{PyAny, PyBytes, PyDict, PySet};
use pyo3::wrap_pyfunction; use pyo3::wrap_pyfunction;
use std::rc::Rc; use std::rc::Rc;
use wasmtime_interface_types::ModuleData; use wasmtime_interface_types::ModuleData;
use wasmtime_jit::Features;
mod function; mod function;
mod instance; mod instance;
@@ -86,13 +85,7 @@ pub fn instantiate(
) -> PyResult<Py<InstantiateResultObject>> { ) -> PyResult<Py<InstantiateResultObject>> {
let wasm_data = buffer_source.as_bytes(); let wasm_data = buffer_source.as_bytes();
let mut config = wasmtime::Config::new(); let engine = wasmtime::Engine::new(&wasmtime::Config::new().wasm_multi_value(true));
config.features(Features {
multi_value: true,
..Default::default()
});
let engine = wasmtime::Engine::new(&config);
let store = wasmtime::HostRef::new(wasmtime::Store::new(&engine)); let store = wasmtime::HostRef::new(wasmtime::Store::new(&engine));
let module = wasmtime::HostRef::new(wasmtime::Module::new(&store, wasm_data).map_err(err2py)?); let module = wasmtime::HostRef::new(wasmtime::Module::new(&store, wasm_data).map_err(err2py)?);

View File

@@ -16,7 +16,6 @@ doctest = false
[dependencies] [dependencies]
wasmtime-interface-types = { path = "../../interface-types" } wasmtime-interface-types = { path = "../../interface-types" }
wasmtime-jit = { path = "../../jit" }
wasmtime-rust-macro = { path = "./macro" } wasmtime-rust-macro = { path = "./macro" }
wasmtime-wasi = { path = "../../wasi" } wasmtime-wasi = { path = "../../wasi" }
wasmtime = { path = "../../api" } wasmtime = { path = "../../api" }

View File

@@ -51,12 +51,7 @@ fn generate_load(item: &syn::ItemTrait) -> syn::Result<TokenStream> {
use #root::wasmtime::{HostRef, Config, Extern, Engine, Store, Instance, Module}; use #root::wasmtime::{HostRef, Config, Extern, Engine, Store, Instance, Module};
use #root::anyhow::{bail, format_err}; use #root::anyhow::{bail, format_err};
let mut config = Config::new(); let engine = Engine::new(Config::new().wasm_multi_value(true));
config.features(#root::wasmtime_jit::Features {
multi_value: true,
..Default::default()
});
let engine = Engine::new(&config);
let store = HostRef::new(Store::new(&engine)); let store = HostRef::new(Store::new(&engine));
let global_exports = store.borrow().global_exports().clone(); let global_exports = store.borrow().global_exports().clone();

View File

@@ -6,7 +6,6 @@ pub mod __rt {
pub use anyhow; pub use anyhow;
pub use wasmtime; pub use wasmtime;
pub use wasmtime_interface_types; pub use wasmtime_interface_types;
pub use wasmtime_jit;
pub use wasmtime_wasi; pub use wasmtime_wasi;
use std::convert::{TryFrom, TryInto}; use std::convert::{TryFrom, TryInto};

View File

@@ -38,7 +38,6 @@ use wasmtime_cli::pick_compilation_strategy;
use wasmtime_environ::{cache_create_new_config, cache_init}; use wasmtime_environ::{cache_create_new_config, cache_init};
use wasmtime_environ::{settings, settings::Configurable}; use wasmtime_environ::{settings, settings::Configurable};
use wasmtime_interface_types::ModuleData; use wasmtime_interface_types::ModuleData;
use wasmtime_jit::Features;
use wasmtime_wasi::create_wasi_instance; use wasmtime_wasi::create_wasi_instance;
use wasmtime_wasi::old::snapshot_0::create_wasi_instance as create_wasi_instance_snapshot_0; use wasmtime_wasi::old::snapshot_0::create_wasi_instance as create_wasi_instance_snapshot_0;
#[cfg(feature = "wasi-c")] #[cfg(feature = "wasi-c")]
@@ -231,15 +230,15 @@ fn main() -> Result<()> {
exit(1); exit(1);
} }
let mut config = Config::new();
let mut flag_builder = settings::builder(); let mut flag_builder = settings::builder();
let mut features: Features = Default::default();
// There are two possible traps for division, and this way // There are two possible traps for division, and this way
// we get the proper one if code traps. // we get the proper one if code traps.
flag_builder.enable("avoid_div_traps")?; flag_builder.enable("avoid_div_traps")?;
// Enable/disable producing of debug info. // Enable/disable producing of debug info.
let debug_info = args.flag_g; config.debug_info(args.flag_g);
// Enable verifier passes in debug mode. // Enable verifier passes in debug mode.
if cfg!(debug_assertions) { if cfg!(debug_assertions) {
@@ -249,7 +248,7 @@ fn main() -> Result<()> {
// Enable SIMD if requested // Enable SIMD if requested
if args.flag_enable_simd { if args.flag_enable_simd {
flag_builder.enable("enable_simd")?; flag_builder.enable("enable_simd")?;
features.simd = true; config.wasm_simd(true);
} }
// Enable optimization if requested. // Enable optimization if requested.
@@ -260,11 +259,8 @@ fn main() -> Result<()> {
// Decide how to compile. // Decide how to compile.
let strategy = pick_compilation_strategy(args.flag_cranelift, args.flag_lightbeam); let strategy = pick_compilation_strategy(args.flag_cranelift, args.flag_lightbeam);
let mut config = Config::new();
config config
.features(features)
.flags(settings::Flags::new(flag_builder)) .flags(settings::Flags::new(flag_builder))
.debug_info(debug_info)
.strategy(strategy); .strategy(strategy);
let engine = Engine::new(&config); let engine = Engine::new(&config);
let store = HostRef::new(Store::new(&engine)); let store = HostRef::new(Store::new(&engine));

View File

@@ -32,7 +32,6 @@ use wasmtime_cli::pick_compilation_strategy;
use wasmtime_environ::settings; use wasmtime_environ::settings;
use wasmtime_environ::settings::Configurable; use wasmtime_environ::settings::Configurable;
use wasmtime_environ::{cache_create_new_config, cache_init}; use wasmtime_environ::{cache_create_new_config, cache_init};
use wasmtime_jit::Features;
use wasmtime_wast::WastContext; use wasmtime_wast::WastContext;
const USAGE: &str = " const USAGE: &str = "
@@ -125,8 +124,8 @@ fn main() {
process::exit(1); process::exit(1);
} }
let mut cfg = Config::new();
let mut flag_builder = settings::builder(); let mut flag_builder = settings::builder();
let mut features: Features = Default::default();
// There are two possible traps for division, and this way // There are two possible traps for division, and this way
// we get the proper one if code traps. // we get the proper one if code traps.
@@ -145,15 +144,13 @@ fn main() {
// Enable SIMD if requested // Enable SIMD if requested
if args.flag_enable_simd { if args.flag_enable_simd {
flag_builder.enable("enable_simd").unwrap(); flag_builder.enable("enable_simd").unwrap();
features.simd = true; cfg.wasm_simd(true);
} }
// Decide how to compile. // Decide how to compile.
let strategy = pick_compilation_strategy(args.flag_cranelift, args.flag_lightbeam); let strategy = pick_compilation_strategy(args.flag_cranelift, args.flag_lightbeam);
let mut cfg = Config::new();
cfg.strategy(strategy) cfg.strategy(strategy)
.flags(settings::Flags::new(flag_builder)) .flags(settings::Flags::new(flag_builder));
.features(features);
let store = HostRef::new(Store::new(&Engine::new(&cfg))); let store = HostRef::new(Store::new(&Engine::new(&cfg)));
let mut wast_context = WastContext::new(store); let mut wast_context = WastContext::new(store);

View File

@@ -2,7 +2,7 @@ use std::path::Path;
use wasmtime::{Config, Engine, HostRef, Store}; use wasmtime::{Config, Engine, HostRef, Store};
use wasmtime_environ::settings; use wasmtime_environ::settings;
use wasmtime_environ::settings::Configurable; use wasmtime_environ::settings::Configurable;
use wasmtime_jit::{CompilationStrategy, Features}; use wasmtime_jit::CompilationStrategy;
use wasmtime_wast::WastContext; use wasmtime_wast::WastContext;
include!(concat!(env!("OUT_DIR"), "/wast_testsuite_tests.rs")); include!(concat!(env!("OUT_DIR"), "/wast_testsuite_tests.rs"));
@@ -12,11 +12,6 @@ include!(concat!(env!("OUT_DIR"), "/wast_testsuite_tests.rs"));
// to compile it. // to compile it.
fn run_wast(wast: &str, strategy: CompilationStrategy) -> anyhow::Result<()> { fn run_wast(wast: &str, strategy: CompilationStrategy) -> anyhow::Result<()> {
let wast = Path::new(wast); let wast = Path::new(wast);
let features = Features {
simd: wast.iter().any(|s| s == "simd"),
multi_value: wast.iter().any(|s| s == "multi-value"),
..Default::default()
};
let mut flag_builder = settings::builder(); let mut flag_builder = settings::builder();
flag_builder.enable("enable_verifier").unwrap(); flag_builder.enable("enable_verifier").unwrap();
@@ -24,9 +19,10 @@ fn run_wast(wast: &str, strategy: CompilationStrategy) -> anyhow::Result<()> {
flag_builder.enable("enable_simd").unwrap(); flag_builder.enable("enable_simd").unwrap();
let mut cfg = Config::new(); let mut cfg = Config::new();
cfg.strategy(strategy) cfg.wasm_simd(wast.iter().any(|s| s == "simd"))
.flags(settings::Flags::new(flag_builder)) .wasm_multi_value(wast.iter().any(|s| s == "multi-value"))
.features(features); .strategy(strategy)
.flags(settings::Flags::new(flag_builder));
let store = HostRef::new(Store::new(&Engine::new(&cfg))); let store = HostRef::new(Store::new(&Engine::new(&cfg)));
let mut wast_context = WastContext::new(store); let mut wast_context = WastContext::new(store);
wast_context.register_spectest()?; wast_context.register_spectest()?;