Integrated wasm test suite translation as cretonne test
This commit is contained in:
@@ -420,8 +420,8 @@ fn translate_operator(op: &Operator,
|
||||
// We take the control frame pushed by the if, use its ebb as the else body
|
||||
// and push a new control frame with a new ebb for the code after the if/then/else
|
||||
// At the end of the then clause we jump to the destination
|
||||
let (destination, return_values, branch_inst) = match &control_stack[control_stack.len() -
|
||||
1] {
|
||||
let i = control_stack.len() - 1;
|
||||
let (destination, return_values, branch_inst) = match &control_stack[i] {
|
||||
&ControlStackFrame::If {
|
||||
destination,
|
||||
ref return_values,
|
||||
|
||||
@@ -239,7 +239,8 @@ pub fn parse_data_section(parser: &mut Parser,
|
||||
let offset = match *parser.read() {
|
||||
ParserState::InitExpressionOperator(Operator::I32Const { value }) => {
|
||||
if value < 0 {
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("negative offset value",),),);
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("negative \
|
||||
offset value")));
|
||||
} else {
|
||||
value as usize
|
||||
}
|
||||
@@ -248,13 +249,15 @@ pub fn parse_data_section(parser: &mut Parser,
|
||||
match globals[global_index as usize].initializer {
|
||||
GlobalInit::I32Const(value) => {
|
||||
if value < 0 {
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("negative offset value",),),);
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("\
|
||||
negative offset value")));
|
||||
} else {
|
||||
value as usize
|
||||
}
|
||||
}
|
||||
GlobalInit::Import() => {
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("imported globals not supported",),),)
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("\
|
||||
imported globals not supported")))
|
||||
} // TODO: add runtime support
|
||||
_ => panic!("should not happen"),
|
||||
}
|
||||
@@ -326,7 +329,8 @@ pub fn parse_elements_section(parser: &mut Parser,
|
||||
let offset = match *parser.read() {
|
||||
ParserState::InitExpressionOperator(Operator::I32Const { value }) => {
|
||||
if value < 0 {
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("negative offset value",),),);
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("negative \
|
||||
offset value")));
|
||||
} else {
|
||||
value as usize
|
||||
}
|
||||
@@ -335,7 +339,8 @@ pub fn parse_elements_section(parser: &mut Parser,
|
||||
match globals[global_index as usize].initializer {
|
||||
GlobalInit::I32Const(value) => {
|
||||
if value < 0 {
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("negative offset value",),),);
|
||||
return Err(SectionParsingError::WrongSectionContent(String::from("\
|
||||
negative offset value")));
|
||||
} else {
|
||||
value as usize
|
||||
}
|
||||
|
||||
102
lib/wasm2cretonne/tests/testsuite.rs
Normal file
102
lib/wasm2cretonne/tests/testsuite.rs
Normal file
@@ -0,0 +1,102 @@
|
||||
extern crate wasm2cretonne;
|
||||
extern crate cretonne;
|
||||
|
||||
use wasm2cretonne::{translate_module, FunctionTranslation, DummyRuntime, WasmRuntime};
|
||||
use std::path::PathBuf;
|
||||
use std::fs::File;
|
||||
use std::error::Error;
|
||||
use std::io;
|
||||
use std::io::BufReader;
|
||||
use std::io::prelude::*;
|
||||
use std::fs;
|
||||
use cretonne::ir;
|
||||
use cretonne::ir::entities::AnyEntity;
|
||||
use cretonne::isa::TargetIsa;
|
||||
use cretonne::verifier;
|
||||
|
||||
#[test]
|
||||
fn testsuite() {
|
||||
let mut paths: Vec<_> = fs::read_dir("testsuite")
|
||||
.unwrap()
|
||||
.map(|r| r.unwrap())
|
||||
.collect();
|
||||
paths.sort_by_key(|dir| dir.path());
|
||||
for path in paths {
|
||||
let path = path.path();
|
||||
match handle_module(path) {
|
||||
Ok(()) => (),
|
||||
Err(message) => println!("{}", message),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
fn read_wasm_file(path: PathBuf) -> Result<Vec<u8>, io::Error> {
|
||||
let mut buf: Vec<u8> = Vec::new();
|
||||
let file = File::open(path)?;
|
||||
let mut buf_reader = BufReader::new(file);
|
||||
buf_reader.read_to_end(&mut buf)?;
|
||||
Ok(buf)
|
||||
}
|
||||
|
||||
fn handle_module(path: PathBuf) -> Result<(), String> {
|
||||
let data = match path.extension() {
|
||||
None => {
|
||||
return Err(String::from("the file extension is not wasm or wast"));
|
||||
}
|
||||
Some(ext) => {
|
||||
match ext.to_str() {
|
||||
Some("wasm") => {
|
||||
match read_wasm_file(path.clone()) {
|
||||
Ok(data) => data,
|
||||
Err(err) => {
|
||||
return Err(String::from(err.description()));
|
||||
}
|
||||
}
|
||||
}
|
||||
None | Some(&_) => {
|
||||
return Err(String::from("the file extension is not wasm or wast"));
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
let mut dummy_runtime = DummyRuntime::new();
|
||||
let translation = {
|
||||
let mut runtime: &mut WasmRuntime = &mut dummy_runtime;
|
||||
match translate_module(&data, runtime) {
|
||||
Ok(x) => x,
|
||||
Err(string) => {
|
||||
return Err(string);
|
||||
}
|
||||
}
|
||||
};
|
||||
for func in translation.functions.iter() {
|
||||
let il = match func {
|
||||
&FunctionTranslation::Import() => continue,
|
||||
&FunctionTranslation::Code { ref il, .. } => il.clone(),
|
||||
};
|
||||
match verifier::verify_function(&il, None) {
|
||||
Ok(()) => (),
|
||||
Err(err) => return Err(pretty_verifier_error(&il, None, err)),
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
||||
/// Pretty-print a verifier error.
|
||||
pub fn pretty_verifier_error(func: &ir::Function,
|
||||
isa: Option<&TargetIsa>,
|
||||
err: verifier::Error)
|
||||
-> String {
|
||||
let msg = err.to_string();
|
||||
let str1 = match err.location {
|
||||
AnyEntity::Inst(inst) => {
|
||||
format!("{}\n{}: {}\n\n",
|
||||
msg,
|
||||
inst,
|
||||
func.dfg.display_inst(inst, isa))
|
||||
}
|
||||
_ => String::from(format!("{}\n", msg)),
|
||||
};
|
||||
format!("{}{}", str1, func.display(isa))
|
||||
}
|
||||
BIN
lib/wasm2cretonne/testsuite/address.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/address.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/binary.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/binary.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/binary.wast.1.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/binary.wast.1.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/binary.wast.2.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/binary.wast.2.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/binary.wast.3.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/binary.wast.3.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/block.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/block.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/br.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/br.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/br_if.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/br_if.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/br_table.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/br_table.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/break-drop.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/break-drop.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/call.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/call.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/call_indirect.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/call_indirect.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/comments.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/comments.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/comments.wast.1.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/comments.wast.1.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/comments.wast.2.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/comments.wast.2.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/comments.wast.3.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/comments.wast.3.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/conversions.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/conversions.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/custom_section.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/custom_section.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/custom_section.wast.1.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/custom_section.wast.1.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/custom_section.wast.2.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/custom_section.wast.2.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/endianness.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/endianness.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.1.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.1.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.10.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.10.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.11.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.11.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.18.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.18.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.19.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.19.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.2.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.2.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.20.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.20.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.21.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.21.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.22.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.22.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.23.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.23.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.24.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.24.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.25.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.25.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.26.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.26.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.27.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.27.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.28.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.28.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.29.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.29.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.3.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.3.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.36.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.36.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.37.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.37.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.38.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.38.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.39.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.39.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.4.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.4.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.40.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.40.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.41.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.41.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.42.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.42.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.43.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.43.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.44.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.44.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.45.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.45.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.46.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.46.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.47.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.47.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.48.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.48.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.49.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.49.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.5.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.5.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.55.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.55.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.56.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.56.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.57.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.57.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.58.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.58.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.59.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.59.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.6.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.6.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.60.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.60.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.61.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.61.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.62.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.62.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.63.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.63.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.64.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.64.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.65.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.65.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.66.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.66.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.67.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.67.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.68.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.68.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.7.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.7.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.8.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.8.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/exports.wast.9.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/exports.wast.9.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/f32.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/f32.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/f32_bitwise.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/f32_bitwise.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/f32_cmp.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/f32_cmp.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/f64.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/f64.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/f64_bitwise.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/f64_bitwise.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/f64_cmp.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/f64_cmp.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/fac.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/fac.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.0.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.0.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.1.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.1.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.10.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.10.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.11.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.11.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.12.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.12.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.13.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.13.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.14.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.14.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.15.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.15.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.16.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.16.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.17.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.17.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.18.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.18.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.19.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.19.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.2.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.2.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.20.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.20.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.21.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.21.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.22.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.22.wasm
Normal file
Binary file not shown.
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.23.wasm
Normal file
BIN
lib/wasm2cretonne/testsuite/float_exprs.wast.23.wasm
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user