diff options
author | Thomas Lively <tlively@google.com> | 2022-12-07 12:41:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 18:41:49 +0000 |
commit | 2590620a32190f98b29c7d9726865aa8082b4023 (patch) | |
tree | 22bb9475aecafe5aeae4977fe1b0edb49053f2e7 /test/lit/passes/remove-unused-brs-gc.wast | |
parent | 3253df552729e771a31decf0e29a775f888b1e6f (diff) | |
download | binaryen-2590620a32190f98b29c7d9726865aa8082b4023.tar.gz binaryen-2590620a32190f98b29c7d9726865aa8082b4023.tar.bz2 binaryen-2590620a32190f98b29c7d9726865aa8082b4023.zip |
Update tests ahead of transition from `data` to `struct` (#5320)
The upstream WasmGC spec has removed `data` and introduced `struct`. To make the
migration easier, we have been supporting `struct` as an `alias` for `data` and
`structref` as an alias for `dataref`.
Update the tests to prefer the `struct` aliases over `data` for test input to
make the future migration easier. Also update some tests that had stale comments
about ref.null types being updated and remove some tests for instructions like
br_on_data and ref.as_data that do not make sense without a `data` type.
Diffstat (limited to 'test/lit/passes/remove-unused-brs-gc.wast')
-rw-r--r-- | test/lit/passes/remove-unused-brs-gc.wast | 54 |
1 files changed, 28 insertions, 26 deletions
diff --git a/test/lit/passes/remove-unused-brs-gc.wast b/test/lit/passes/remove-unused-brs-gc.wast index 23d43bdb5..3de48c441 100644 --- a/test/lit/passes/remove-unused-brs-gc.wast +++ b/test/lit/passes/remove-unused-brs-gc.wast @@ -6,50 +6,50 @@ ;; CHECK: (type $struct (struct )) (type $struct (struct )) - ;; CHECK: (func $br_on_non_data-1 (type $none_=>_none) + ;; CHECK: (func $br_on_non_i31-1 (type $none_=>_none) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (block $any (result i31ref) + ;; CHECK-NEXT: (block $any (result (ref null $struct)) ;; CHECK-NEXT: (drop ;; CHECK-NEXT: (br $any - ;; CHECK-NEXT: (i31.new - ;; CHECK-NEXT: (i32.const 0) - ;; CHECK-NEXT: ) + ;; CHECK-NEXT: (struct.new_default $struct) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) ;; CHECK-NEXT: (ref.null none) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) - (func $br_on_non_data-1 + (func $br_on_non_i31-1 (drop (block $any (result anyref) (drop - ;; An i31 is not data, and so we should branch. - (br_on_non_data $any - (i31.new (i32.const 0)) + ;; An struct is not an i31, and so we should branch. + (br_on_non_i31 $any + (struct.new $struct) ) ) (ref.null any) ) ) ) - ;; CHECK: (func $br_on_non_data-2 (type $ref|data|_=>_none) (param $data (ref data)) + ;; CHECK: (func $br_on_non_i31-2 (type $none_=>_none) ;; CHECK-NEXT: (drop ;; CHECK-NEXT: (block $any (result nullref) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (local.get $data) + ;; CHECK-NEXT: (i31.new + ;; CHECK-NEXT: (i32.const 0) + ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) ;; CHECK-NEXT: (ref.null none) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) - (func $br_on_non_data-2 (param $data (ref data)) + (func $br_on_non_i31-2 (drop (block $any (result anyref) (drop - ;; Data is provided here, and so we will not branch. - (br_on_non_data $any - (local.get $data) + ;; An i31 is provided here, and so we will not branch. + (br_on_non_i31 $any + (i31.new (i32.const 0)) ) ) (ref.null any) @@ -68,7 +68,7 @@ ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) - (func $br_on-if (param $0 (ref data)) + (func $br_on-if (param $0 (ref struct)) (block $label (drop ;; This br is never taken, as the input is non-nullable, so we can remove @@ -78,7 +78,7 @@ (br_on_null $label ;; This if can also be turned into a select, separately from the above ;; (that is not specifically intended to be tested here). - (if (result (ref data)) + (if (result (ref struct)) (i32.const 0) (local.get $0) (local.get $0) @@ -88,25 +88,27 @@ ) ) - ;; CHECK: (func $nested_br_on (type $none_=>_dataref) (result dataref) - ;; CHECK-NEXT: (block $label$1 (result (ref $struct)) + ;; CHECK: (func $nested_br_on (type $none_=>_i31ref) (result i31ref) + ;; CHECK-NEXT: (block $label$1 (result (ref i31)) ;; CHECK-NEXT: (drop ;; CHECK-NEXT: (br $label$1 - ;; CHECK-NEXT: (struct.new_default $struct) + ;; CHECK-NEXT: (i31.new + ;; CHECK-NEXT: (i32.const 0) + ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) ;; CHECK-NEXT: (unreachable) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) - (func $nested_br_on (result dataref) - (block $label$1 (result dataref) + (func $nested_br_on (result i31ref) + (block $label$1 (result i31ref) (drop - ;; The inner br_on_data will become a direct br since the type proves it + ;; The inner br_on_i31 will become a direct br since the type proves it ;; is in fact data. That then becomes unreachable, and the parent must ;; handle that properly (do nothing without hitting an assertion). - (br_on_data $label$1 - (br_on_data $label$1 - (struct.new_default $struct) + (br_on_i31 $label$1 + (br_on_i31 $label$1 + (i31.new (i32.const 0)) ) ) ) |