diff options
author | Ben Smith <binji@chromium.org> | 2020-03-25 12:43:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 12:43:23 -0700 |
commit | 1f397a3c829869f23ae0ff3e311d22f12d8c72a9 (patch) | |
tree | 870b00e154c59c3f79ffe9f5b8ec7b0903c8241d /test/spectest-interp-assert-failure.txt | |
parent | d8771ed54edc85ee71e69b835cdaab57bd2722f4 (diff) | |
download | wabt-1f397a3c829869f23ae0ff3e311d22f12d8c72a9.tar.gz wabt-1f397a3c829869f23ae0ff3e311d22f12d8c72a9.tar.bz2 wabt-1f397a3c829869f23ae0ff3e311d22f12d8c72a9.zip |
Update testsuite (for SIMD) (#1373)
Lots of changes necessary to make this work, as well as some bug fixes.
The main change is allowing `nan:canonical` and `nan:arithmetic` as a
possible value for each lane of a `v128`. This needs to propogate
through the parser, IR, the JSON format, and the spec interpreter.
This also changes the format of the spec JSON file, where a SIMD value
is now stored as a list of values instead of a single u128:
```
{"type": "v128", "lane_type": "i32", "value": ["0", "0", "0", "0"]}
```
Since the lane type can be `i8` and `i16`, these types can now be used
in more places (not just the decompiler). They'll be used for the GC
proposal too (for packed values), so I've updated them to use the binary
value specified for that proposal.
Here are the actual SIMD fixes:
* SIMD lanes are malformed if they don't match the binary format, but
invalid if they are smaller than the lane width. For example,
`i8x16.extract_lane_s` is malformed if the lane is >= 256, because the
lane is stored as a byte. But it is invalid if the lane is >= 16.
* The `i8x16.narrow_i16x8_u`, `i16x8.narrow_i32x4_u` and
`i64x2.load_32x2_u` instructions were not handling sign-extension
propoerly.
TODO: This code is pretty clumsy now; it would be better to have a
universal `Value` and `ExpectedValue` that can be used everywhere, so
the logic doesn't need to be duplicated.
Diffstat (limited to 'test/spectest-interp-assert-failure.txt')
-rw-r--r-- | test/spectest-interp-assert-failure.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/spectest-interp-assert-failure.txt b/test/spectest-interp-assert-failure.txt index 03673cad..07f28e4e 100644 --- a/test/spectest-interp-assert-failure.txt +++ b/test/spectest-interp-assert-failure.txt @@ -14,7 +14,7 @@ (assert_return (invoke "func32nan") (f32.const nan:canonical)) (assert_return (invoke "func64nan") (f64.const nan:canonical)) (;; STDOUT ;;; -out/test/spectest-interp-assert-failure.txt:10: expected result to be nan, got f32:0.100000 -out/test/spectest-interp-assert-failure.txt:11: expected result to be nan, got f64:0.200000 +out/test/spectest-interp-assert-failure.txt:10: mismatch in result 0 of assert_return: expected f32:nan:canonical, got f32:0.100000 +out/test/spectest-interp-assert-failure.txt:11: mismatch in result 0 of assert_return: expected f64:nan:arithmetic, got f64:0.200000 4/6 tests passed. ;;; STDOUT ;;) |