diff options
-rw-r--r-- | src/passes/Print.cpp | 60 | ||||
-rw-r--r-- | test/heap-types.wast.from-wast | 10 | ||||
-rw-r--r-- | test/heap-types.wast.fromBinary | 10 | ||||
-rw-r--r-- | test/heap-types.wast.fromBinary.noDebugInfo | 10 | ||||
-rw-r--r-- | test/lit/passes/abstract-type-refining.wast | 4 | ||||
-rw-r--r-- | test/lit/passes/coalesce-locals-gc.wast | 2 | ||||
-rw-r--r-- | test/lit/passes/code-pushing-gc.wast | 4 | ||||
-rw-r--r-- | test/lit/passes/merge-blocks.wast | 2 | ||||
-rw-r--r-- | test/lit/passes/optimize-instructions-gc.wast | 4 | ||||
-rw-r--r-- | test/lit/passes/vacuum-gc.wast | 2 | ||||
-rw-r--r-- | test/lit/passes/vacuum-tnh.wast | 2 |
11 files changed, 25 insertions, 85 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index e9facd5a9..6740bc8ed 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -2092,20 +2092,6 @@ struct PrintExpressionContents printHeapType(o, curr->target->type.getHeapType(), wasm); } void visitRefTest(RefTest* curr) { - // TODO: These instructions are deprecated. Remove them. - if (auto type = curr->castType.getHeapType(); - curr->castType.isNonNullable() && type.isBasic()) { - switch (type.getBasic()) { - case HeapType::func: - printMedium(o, "ref.is_func"); - return; - case HeapType::i31: - printMedium(o, "ref.is_i31"); - return; - default: - break; - } - } printMedium(o, "ref.test "); if (curr->castType.isNullable()) { printMedium(o, "null "); @@ -2119,20 +2105,6 @@ struct PrintExpressionContents if (curr->safety == RefCast::Unsafe) { printMedium(o, "ref.cast_nop "); } else { - // TODO: These instructions are deprecated. Remove them. - if (auto type = curr->type.getHeapType(); - type.isBasic() && curr->type.isNonNullable()) { - switch (type.getBasic()) { - case HeapType::func: - printMedium(o, "ref.as_func"); - return; - case HeapType::i31: - printMedium(o, "ref.as_i31"); - return; - default: - break; - } - } if (curr->type.isNullable()) { printMedium(o, "ref.cast null "); } else { @@ -2153,22 +2125,6 @@ struct PrintExpressionContents printName(curr->name, o); return; case BrOnCast: - // TODO: These instructions are deprecated, so stop emitting them. - if (auto type = curr->castType.getHeapType(); - type.isBasic() && curr->castType.isNonNullable()) { - switch (type.getBasic()) { - case HeapType::func: - printMedium(o, "br_on_func "); - printName(curr->name, o); - return; - case HeapType::i31: - printMedium(o, "br_on_i31 "); - printName(curr->name, o); - return; - default: - break; - } - } printMedium(o, "br_on_cast "); printName(curr->name, o); o << ' '; @@ -2177,22 +2133,6 @@ struct PrintExpressionContents printType(o, curr->castType, wasm); return; case BrOnCastFail: - // TODO: These instructions are deprecated, so stop emitting them. - if (auto type = curr->castType.getHeapType(); - type.isBasic() && curr->castType.isNonNullable()) { - switch (type.getBasic()) { - case HeapType::func: - printMedium(o, "br_on_non_func "); - printName(curr->name, o); - return; - case HeapType::i31: - printMedium(o, "br_on_non_i31 "); - printName(curr->name, o); - return; - default: - break; - } - } printMedium(o, "br_on_cast_fail "); printName(curr->name, o); o << ' '; diff --git a/test/heap-types.wast.from-wast b/test/heap-types.wast.from-wast index d91655f36..2504a6f82 100644 --- a/test/heap-types.wast.from-wast +++ b/test/heap-types.wast.from-wast @@ -184,7 +184,7 @@ (unreachable) ) (if - (ref.is_i31 + (ref.test i31 (local.get $x) ) (unreachable) @@ -197,12 +197,12 @@ ) ) (drop - (ref.as_func + (ref.cast func (local.get $f) ) ) (drop - (ref.as_i31 + (ref.cast i31 (local.get $x) ) ) @@ -222,7 +222,7 @@ (drop (block $i31 (result i31ref) (local.set $y - (br_on_i31 $i31 + (br_on_cast $i31 anyref (ref i31) (local.get $x) ) ) @@ -240,7 +240,7 @@ (drop (block $non-i31 (result anyref) (local.set $temp-i31 - (br_on_non_i31 $non-i31 + (br_on_cast_fail $non-i31 anyref (ref i31) (local.get $x) ) ) diff --git a/test/heap-types.wast.fromBinary b/test/heap-types.wast.fromBinary index 849c2b32b..f95e1508d 100644 --- a/test/heap-types.wast.fromBinary +++ b/test/heap-types.wast.fromBinary @@ -182,7 +182,7 @@ (unreachable) ) (if - (ref.is_i31 + (ref.test i31 (local.get $x) ) (unreachable) @@ -195,12 +195,12 @@ ) ) (drop - (ref.as_func + (ref.cast func (local.get $f) ) ) (drop - (ref.as_i31 + (ref.cast i31 (local.get $x) ) ) @@ -220,7 +220,7 @@ (drop (block $label$2 (result i31ref) (local.set $y - (br_on_i31 $label$2 + (br_on_cast $label$2 anyref (ref i31) (local.get $x) ) ) @@ -238,7 +238,7 @@ (drop (block $label$4 (result anyref) (local.set $temp-i31 - (br_on_non_i31 $label$4 + (br_on_cast_fail $label$4 anyref (ref i31) (local.get $x) ) ) diff --git a/test/heap-types.wast.fromBinary.noDebugInfo b/test/heap-types.wast.fromBinary.noDebugInfo index 78bee266c..904caa825 100644 --- a/test/heap-types.wast.fromBinary.noDebugInfo +++ b/test/heap-types.wast.fromBinary.noDebugInfo @@ -182,7 +182,7 @@ (unreachable) ) (if - (ref.is_i31 + (ref.test i31 (local.get $0) ) (unreachable) @@ -195,12 +195,12 @@ ) ) (drop - (ref.as_func + (ref.cast func (local.get $1) ) ) (drop - (ref.as_i31 + (ref.cast i31 (local.get $0) ) ) @@ -220,7 +220,7 @@ (drop (block $label$2 (result i31ref) (local.set $1 - (br_on_i31 $label$2 + (br_on_cast $label$2 anyref (ref i31) (local.get $0) ) ) @@ -238,7 +238,7 @@ (drop (block $label$4 (result anyref) (local.set $4 - (br_on_non_i31 $label$4 + (br_on_cast_fail $label$4 anyref (ref i31) (local.get $0) ) ) diff --git a/test/lit/passes/abstract-type-refining.wast b/test/lit/passes/abstract-type-refining.wast index 99b19f172..220de9656 100644 --- a/test/lit/passes/abstract-type-refining.wast +++ b/test/lit/passes/abstract-type-refining.wast @@ -218,7 +218,7 @@ ;; YESTNH-NEXT: ) ;; YESTNH-NEXT: ) ;; YESTNH-NEXT: (drop - ;; YESTNH-NEXT: (ref.as_i31 + ;; YESTNH-NEXT: (ref.cast i31 ;; YESTNH-NEXT: (local.get $x) ;; YESTNH-NEXT: ) ;; YESTNH-NEXT: ) @@ -230,7 +230,7 @@ ;; NO_TNH-NEXT: ) ;; NO_TNH-NEXT: ) ;; NO_TNH-NEXT: (drop - ;; NO_TNH-NEXT: (ref.as_i31 + ;; NO_TNH-NEXT: (ref.cast i31 ;; NO_TNH-NEXT: (local.get $x) ;; NO_TNH-NEXT: ) ;; NO_TNH-NEXT: ) diff --git a/test/lit/passes/coalesce-locals-gc.wast b/test/lit/passes/coalesce-locals-gc.wast index 5c91057f1..5df9728d7 100644 --- a/test/lit/passes/coalesce-locals-gc.wast +++ b/test/lit/passes/coalesce-locals-gc.wast @@ -223,7 +223,7 @@ ;; CHECK-NEXT: (local $0 i31ref) ;; CHECK-NEXT: (i32.add ;; CHECK-NEXT: (unreachable) - ;; CHECK-NEXT: (ref.is_i31 + ;; CHECK-NEXT: (ref.test i31 ;; CHECK-NEXT: (ref.cast null i31 ;; CHECK-NEXT: (block (result i31ref) ;; CHECK-NEXT: (i31.new diff --git a/test/lit/passes/code-pushing-gc.wast b/test/lit/passes/code-pushing-gc.wast index ca89ba247..56cfc8777 100644 --- a/test/lit/passes/code-pushing-gc.wast +++ b/test/lit/passes/code-pushing-gc.wast @@ -7,7 +7,7 @@ ;; CHECK-NEXT: (drop ;; CHECK-NEXT: (block $out (result (ref func)) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (br_on_func $out + ;; CHECK-NEXT: (br_on_cast $out (ref $none_=>_none) (ref func) ;; CHECK-NEXT: (ref.func $br_on) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) @@ -48,7 +48,7 @@ ;; CHECK-NEXT: (ref.func $br_on_no) ;; CHECK-NEXT: ) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (br_on_func $out + ;; CHECK-NEXT: (br_on_cast $out (ref $none_=>_none) (ref func) ;; CHECK-NEXT: (ref.func $br_on_no) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) diff --git a/test/lit/passes/merge-blocks.wast b/test/lit/passes/merge-blocks.wast index fd30f4e07..2b3afa771 100644 --- a/test/lit/passes/merge-blocks.wast +++ b/test/lit/passes/merge-blocks.wast @@ -20,7 +20,7 @@ ;; CHECK-NEXT: (drop ;; CHECK-NEXT: (block $label$1 (result i31ref) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (br_on_i31 $label$1 + ;; CHECK-NEXT: (br_on_cast $label$1 nullref (ref i31) ;; CHECK-NEXT: (ref.null none) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) diff --git a/test/lit/passes/optimize-instructions-gc.wast b/test/lit/passes/optimize-instructions-gc.wast index 107093772..34070487b 100644 --- a/test/lit/passes/optimize-instructions-gc.wast +++ b/test/lit/passes/optimize-instructions-gc.wast @@ -269,7 +269,7 @@ ;; CHECK: (func $unneeded_unreachability (type $void) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (ref.is_func + ;; CHECK-NEXT: (ref.test func ;; CHECK-NEXT: (unreachable) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) @@ -586,7 +586,7 @@ ;; CHECK-NEXT: (drop ;; CHECK-NEXT: (block (result (ref $struct)) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (ref.as_i31 + ;; CHECK-NEXT: (ref.cast i31 ;; CHECK-NEXT: (local.get $x) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) diff --git a/test/lit/passes/vacuum-gc.wast b/test/lit/passes/vacuum-gc.wast index 2629a238a..69dbe0b89 100644 --- a/test/lit/passes/vacuum-gc.wast +++ b/test/lit/passes/vacuum-gc.wast @@ -18,7 +18,7 @@ ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (ref.as_i31 + ;; CHECK-NEXT: (ref.cast i31 ;; CHECK-NEXT: (local.get $x) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) diff --git a/test/lit/passes/vacuum-tnh.wast b/test/lit/passes/vacuum-tnh.wast index bac1c3eb6..f60c4c5cb 100644 --- a/test/lit/passes/vacuum-tnh.wast +++ b/test/lit/passes/vacuum-tnh.wast @@ -33,7 +33,7 @@ ;; NO_TNH-NEXT: ) ;; NO_TNH-NEXT: ) ;; NO_TNH-NEXT: (drop - ;; NO_TNH-NEXT: (ref.as_i31 + ;; NO_TNH-NEXT: (ref.cast i31 ;; NO_TNH-NEXT: (local.get $y) ;; NO_TNH-NEXT: ) ;; NO_TNH-NEXT: ) |