machinst x64: implement loads/stores for v128 SIMD types;

This made it possible to enable more SIMD tests from the spec test suite
too.
This commit is contained in:
Benjamin Bouvier
2020-09-22 17:19:10 +02:00
parent ce512e4ede
commit 79cff73da5
2 changed files with 16 additions and 54 deletions

View File

@@ -182,6 +182,10 @@ fn experimental_x64_should_panic(testsuite: &str, testname: &str, strategy: &str
match (testsuite, testname) {
("simd", "simd_address") => return false,
("simd", "simd_const") => return false,
("simd", "simd_i8x16_arith") => return false,
("simd", "simd_i16x8_arith") => return false,
("simd", "simd_i32x4_arith") => return false,
("simd", "simd_i64x2_arith") => return false,
("simd", "simd_f32x4_arith") => return false,
("simd", "simd_f32x4_cmp") => return false,
("simd", "simd_f64x2_arith") => return false,