diff options
author | Alon Zakai <azakai@google.com> | 2021-05-10 15:07:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 15:07:05 -0700 |
commit | 5499ef491a264b02d24180f5dad824feec52074a (patch) | |
tree | d16bf32d66f65df10b18a8dd8f53aeae84bf1df2 /test/passes/Oz_fuzz-exec_all-features.txt | |
parent | 75c8584997e7e09a20c7ebba1802461362b67a7b (diff) | |
download | binaryen-5499ef491a264b02d24180f5dad824feec52074a.tar.gz binaryen-5499ef491a264b02d24180f5dad824feec52074a.tar.bz2 binaryen-5499ef491a264b02d24180f5dad824feec52074a.zip |
[Wasm GC] Fix casting code in interpreter (#3873)
The logic there would construct the cast value separately for functions and data
(as we must), and then in an attempt to share code, would then check if the
cast succeed or not (and if not, do nothing with the cast value).
But this was wrong, as in some weird casts (like a struct to a function) we
cannot construct a valid cast value, and we error there. Instead, check if the
cast works first, once we know enough to do so, and only then construct the
cast value if so.
Diffstat (limited to 'test/passes/Oz_fuzz-exec_all-features.txt')
-rw-r--r-- | test/passes/Oz_fuzz-exec_all-features.txt | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/test/passes/Oz_fuzz-exec_all-features.txt b/test/passes/Oz_fuzz-exec_all-features.txt index 6a0c63431..cf3335dce 100644 --- a/test/passes/Oz_fuzz-exec_all-features.txt +++ b/test/passes/Oz_fuzz-exec_all-features.txt @@ -36,6 +36,8 @@ [host limit allocation failure] [fuzz-exec] calling init-array-packed [fuzz-exec] note result: init-array-packed => 213 +[fuzz-exec] calling cast-func-to-struct +[trap cast error] (module (type $struct (struct (field (mut i32)))) (type $void_func (func)) @@ -44,8 +46,9 @@ (type $int_func (func (result i32))) (type $i32_=>_none (func (param i32))) (type $anyref_=>_none (func (param anyref))) + (type $eqref_=>_none (func (param eqref))) (import "fuzzing-support" "log-i32" (func $log (param i32))) - (elem declare func $a-void-func) + (elem declare func $a-void-func $call-target) (export "structs" (func $0)) (export "arrays" (func $1)) (export "rtts" (func $2)) @@ -55,6 +58,7 @@ (export "rtt-and-cast-on-func" (func $8)) (export "array-alloc-failure" (func $9)) (export "init-array-packed" (func $10)) + (export "cast-func-to-struct" (func $12)) (func $0 (; has Stack IR ;) (local $0 (ref null $struct)) (call $log @@ -293,6 +297,17 @@ (i32.const 10) ) ) + (func $call-target (; has Stack IR ;) (param $0 eqref) + (nop) + ) + (func $12 (; has Stack IR ;) + (drop + (ref.cast + (ref.func $call-target) + (rtt.canon $struct) + ) + ) + ) ) [fuzz-exec] calling structs [LoggingExternalInterface logging 0] @@ -331,6 +346,8 @@ [fuzz-exec] calling array-alloc-failure [fuzz-exec] calling init-array-packed [fuzz-exec] note result: init-array-packed => 213 +[fuzz-exec] calling cast-func-to-struct +[trap cast error] ignoring comparison of ExecutionResults! [fuzz-exec] calling foo [host limit allocation failure] |