mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-03 00:11:04 +00:00
Reformat.
This commit is contained in:
parent
ea93b68165
commit
3e009c5971
lib
@ -114,14 +114,22 @@ fn trunc_sat(
|
|||||||
let int_min_value = splat_vector(
|
let int_min_value = splat_vector(
|
||||||
builder,
|
builder,
|
||||||
intrinsics,
|
intrinsics,
|
||||||
ivec_ty.get_element_type().into_int_type().const_int(int_min_value, is_signed).as_basic_value_enum(),
|
ivec_ty
|
||||||
|
.get_element_type()
|
||||||
|
.into_int_type()
|
||||||
|
.const_int(int_min_value, is_signed)
|
||||||
|
.as_basic_value_enum(),
|
||||||
ivec_ty,
|
ivec_ty,
|
||||||
"",
|
"",
|
||||||
);
|
);
|
||||||
let int_max_value = splat_vector(
|
let int_max_value = splat_vector(
|
||||||
builder,
|
builder,
|
||||||
intrinsics,
|
intrinsics,
|
||||||
ivec_ty.get_element_type().into_int_type().const_int(int_max_value, is_signed).as_basic_value_enum(),
|
ivec_ty
|
||||||
|
.get_element_type()
|
||||||
|
.into_int_type()
|
||||||
|
.const_int(int_max_value, is_signed)
|
||||||
|
.as_basic_value_enum(),
|
||||||
ivec_ty,
|
ivec_ty,
|
||||||
"",
|
"",
|
||||||
);
|
);
|
||||||
@ -183,10 +191,15 @@ fn trunc_sat(
|
|||||||
"",
|
"",
|
||||||
);
|
);
|
||||||
let nan_cmp = builder.build_float_compare(FloatPredicate::UNO, value, zero, "nan");
|
let nan_cmp = builder.build_float_compare(FloatPredicate::UNO, value, zero, "nan");
|
||||||
let above_upper_bound_cmp = builder.build_float_compare(FloatPredicate::OGT, value, upper_bound, "above_upper_bound");
|
let above_upper_bound_cmp =
|
||||||
let below_lower_bound_cmp = builder.build_float_compare(FloatPredicate::OLT, value, lower_bound, "below_lower_bound");
|
builder.build_float_compare(FloatPredicate::OGT, value, upper_bound, "above_upper_bound");
|
||||||
let not_representable = builder
|
let below_lower_bound_cmp =
|
||||||
.build_or(builder.build_or(nan_cmp, above_upper_bound_cmp, ""), below_lower_bound_cmp, "not_representable_as_int");
|
builder.build_float_compare(FloatPredicate::OLT, value, lower_bound, "below_lower_bound");
|
||||||
|
let not_representable = builder.build_or(
|
||||||
|
builder.build_or(nan_cmp, above_upper_bound_cmp, ""),
|
||||||
|
below_lower_bound_cmp,
|
||||||
|
"not_representable_as_int",
|
||||||
|
);
|
||||||
let value = builder
|
let value = builder
|
||||||
.build_select(not_representable, zero, value, "safe_to_convert")
|
.build_select(not_representable, zero, value, "safe_to_convert")
|
||||||
.into_vector_value();
|
.into_vector_value();
|
||||||
@ -4120,10 +4133,24 @@ impl FunctionCodeGenerator<CodegenError> for LLVMFunctionCodeGenerator {
|
|||||||
let idx = builder
|
let idx = builder
|
||||||
.build_extract_element(v2, intrinsics.i32_ty.const_int(i, false), "idx")
|
.build_extract_element(v2, intrinsics.i32_ty.const_int(i, false), "idx")
|
||||||
.into_int_value();
|
.into_int_value();
|
||||||
let idx_out_of_range = builder.build_int_compare(IntPredicate::UGE, idx, lanes, "idx_out_of_range");
|
let idx_out_of_range = builder.build_int_compare(
|
||||||
let idx_clamped = builder.build_select(idx_out_of_range, intrinsics.i32_zero, idx, "idx_clamped").into_int_value();
|
IntPredicate::UGE,
|
||||||
let elem = builder.build_extract_element(v1, idx_clamped, "elem").into_int_value();
|
idx,
|
||||||
let elem_or_zero = builder.build_select(idx_out_of_range, intrinsics.i32_zero, elem, "elem_or_zero");
|
lanes,
|
||||||
|
"idx_out_of_range",
|
||||||
|
);
|
||||||
|
let idx_clamped = builder
|
||||||
|
.build_select(idx_out_of_range, intrinsics.i32_zero, idx, "idx_clamped")
|
||||||
|
.into_int_value();
|
||||||
|
let elem = builder
|
||||||
|
.build_extract_element(v1, idx_clamped, "elem")
|
||||||
|
.into_int_value();
|
||||||
|
let elem_or_zero = builder.build_select(
|
||||||
|
idx_out_of_range,
|
||||||
|
intrinsics.i32_zero,
|
||||||
|
elem,
|
||||||
|
"elem_or_zero",
|
||||||
|
);
|
||||||
res = builder.build_insert_element(
|
res = builder.build_insert_element(
|
||||||
res,
|
res,
|
||||||
elem_or_zero,
|
elem_or_zero,
|
||||||
|
@ -519,7 +519,12 @@ fn call_func_with_index(
|
|||||||
|
|
||||||
let signature = &info.signatures[sig_index];
|
let signature = &info.signatures[sig_index];
|
||||||
let num_results = signature.returns().len();
|
let num_results = signature.returns().len();
|
||||||
let num_results = num_results + signature.returns().iter().filter(|&&ty| ty == Type::V128).count();
|
let num_results = num_results
|
||||||
|
+ signature
|
||||||
|
.returns()
|
||||||
|
.iter()
|
||||||
|
.filter(|&&ty| ty == Type::V128)
|
||||||
|
.count();
|
||||||
rets.reserve(num_results);
|
rets.reserve(num_results);
|
||||||
|
|
||||||
if !signature.check_param_value_types(args) {
|
if !signature.check_param_value_types(args) {
|
||||||
@ -548,10 +553,18 @@ fn call_func_with_index(
|
|||||||
let mut raw_args: SmallVec<[u64; 8]> = SmallVec::new();
|
let mut raw_args: SmallVec<[u64; 8]> = SmallVec::new();
|
||||||
for v in args {
|
for v in args {
|
||||||
match v {
|
match v {
|
||||||
Value::I32(i) => { raw_args.push(*i as u64); }
|
Value::I32(i) => {
|
||||||
Value::I64(i) => { raw_args.push(*i as u64); }
|
raw_args.push(*i as u64);
|
||||||
Value::F32(f) => { raw_args.push(f.to_bits() as u64); }
|
}
|
||||||
Value::F64(f) => { raw_args.push(f.to_bits() as u64); }
|
Value::I64(i) => {
|
||||||
|
raw_args.push(*i as u64);
|
||||||
|
}
|
||||||
|
Value::F32(f) => {
|
||||||
|
raw_args.push(f.to_bits() as u64);
|
||||||
|
}
|
||||||
|
Value::F64(f) => {
|
||||||
|
raw_args.push(f.to_bits() as u64);
|
||||||
|
}
|
||||||
Value::V128(v) => {
|
Value::V128(v) => {
|
||||||
let bytes = v.to_le_bytes();
|
let bytes = v.to_le_bytes();
|
||||||
let mut lo = [0u8; 8];
|
let mut lo = [0u8; 8];
|
||||||
@ -621,7 +634,10 @@ fn call_func_with_index(
|
|||||||
let mut bytes = [0u8; 16];
|
let mut bytes = [0u8; 16];
|
||||||
let lo = result[0].to_le_bytes();
|
let lo = result[0].to_le_bytes();
|
||||||
let hi = result[1].to_le_bytes();
|
let hi = result[1].to_le_bytes();
|
||||||
for i in 0..8 { bytes[i] = lo[i]; bytes[i + 8] = hi[i]; }
|
for i in 0..8 {
|
||||||
|
bytes[i] = lo[i];
|
||||||
|
bytes[i + 8] = hi[i];
|
||||||
|
}
|
||||||
rets.push(Value::V128(u128::from_le_bytes(bytes)));
|
rets.push(Value::V128(u128::from_le_bytes(bytes)));
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ use std::fs::File;
|
|||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::{env, fs, io::Write};
|
use std::{env, fs, io::Write};
|
||||||
use wabt::script::{Action, Command, CommandKind, ModuleBinary, ScriptParser, Value};
|
use wabt::script::{Action, Command, CommandKind, ModuleBinary, ScriptParser, Value};
|
||||||
use wabt::{Features, wasm2wat_with_features};
|
use wabt::{wasm2wat_with_features, Features};
|
||||||
|
|
||||||
static BANNER: &str = "// Rust test file autogenerated with cargo build (build/spectests.rs).
|
static BANNER: &str = "// Rust test file autogenerated with cargo build (build/spectests.rs).
|
||||||
// Please do NOT modify it by hand, as it will be reset on next build.\n";
|
// Please do NOT modify it by hand, as it will be reset on next build.\n";
|
||||||
@ -309,7 +309,8 @@ impl WastTestGenerator {
|
|||||||
let source = fs::read(&path).unwrap();
|
let source = fs::read(&path).unwrap();
|
||||||
let mut features = wabt::Features::new();
|
let mut features = wabt::Features::new();
|
||||||
features.enable_simd();
|
features.enable_simd();
|
||||||
let script: ScriptParser = ScriptParser::from_source_and_name_with_features(&source, filename, features)
|
let script: ScriptParser =
|
||||||
|
ScriptParser::from_source_and_name_with_features(&source, filename, features)
|
||||||
.expect(&format!("Failed to parse script {}", &filename));
|
.expect(&format!("Failed to parse script {}", &filename));
|
||||||
let buffer = String::new();
|
let buffer = String::new();
|
||||||
WastTestGenerator {
|
WastTestGenerator {
|
||||||
@ -393,7 +394,8 @@ fn test_module_{}() {{
|
|||||||
let wasm_binary: Vec<u8> = module.clone().into_vec();
|
let wasm_binary: Vec<u8> = module.clone().into_vec();
|
||||||
let mut features = Features::new();
|
let mut features = Features::new();
|
||||||
features.enable_simd();
|
features.enable_simd();
|
||||||
let wast_string = wasm2wat_with_features(wasm_binary, features).expect("Can't convert back to wasm");
|
let wast_string =
|
||||||
|
wasm2wat_with_features(wasm_binary, features).expect("Can't convert back to wasm");
|
||||||
let last_module = self.last_module;
|
let last_module = self.last_module;
|
||||||
self.flush_module_calls(last_module);
|
self.flush_module_calls(last_module);
|
||||||
self.last_module = self.last_module + 1;
|
self.last_module = self.last_module + 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user