Groups all CL data structures into single dependency to be used accross wasmtime project.
37 lines
1.3 KiB
Rust
37 lines
1.3 KiB
Rust
use std::path::Path;
|
|
use wasmtime_environ::settings::Configurable;
|
|
use wasmtime_environ::{isa, settings};
|
|
use wasmtime_jit::{native, CompilationStrategy, Compiler, Features};
|
|
use wasmtime_wast::WastContext;
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/wast_testsuite_tests.rs"));
|
|
|
|
// Each of the tests included from `wast_testsuite_tests` will call this
|
|
// function which actually executes the `wast` test suite given the `strategy`
|
|
// to compile it.
|
|
fn run_wast(wast: &str, strategy: CompilationStrategy) -> anyhow::Result<()> {
|
|
let wast = Path::new(wast);
|
|
let isa = native_isa();
|
|
let compiler = Compiler::new(isa, strategy);
|
|
let features = Features {
|
|
simd: wast.iter().any(|s| s == "simd"),
|
|
multi_value: wast.iter().any(|s| s == "multi-value"),
|
|
..Default::default()
|
|
};
|
|
let mut wast_context = WastContext::new(Box::new(compiler)).with_features(features);
|
|
wast_context.register_spectest()?;
|
|
wast_context.run_file(wast)?;
|
|
Ok(())
|
|
}
|
|
|
|
fn native_isa() -> Box<dyn isa::TargetIsa> {
|
|
let mut flag_builder = settings::builder();
|
|
flag_builder.enable("enable_verifier").unwrap();
|
|
flag_builder.enable("avoid_div_traps").unwrap();
|
|
flag_builder.enable("enable_simd").unwrap();
|
|
|
|
let isa_builder = native::builder();
|
|
|
|
isa_builder.finish(settings::Flags::new(flag_builder))
|
|
}
|