summaryrefslogtreecommitdiff
path: root/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2021-10-08 12:48:53 -0700
committerGitHub <noreply@github.com>2021-10-08 12:48:53 -0700
commit562250e14af4f74911b5f8510ca3c5774c9b1e1c (patch)
tree697710519fbd6e7bd7ae346050ca0cdcc2fa85a5 /test/lit/passes/optimize-instructions-call_ref-roundtrip.wast
parentc2fa907f010b6418e5cbfc3c5baface3c0898062 (diff)
downloadbinaryen-562250e14af4f74911b5f8510ca3c5774c9b1e1c.tar.gz
binaryen-562250e14af4f74911b5f8510ca3c5774c9b1e1c.tar.bz2
binaryen-562250e14af4f74911b5f8510ca3c5774c9b1e1c.zip
Emit heap types for call_indirect that match the table (#4221)
See #4220 - this lets us handle the common case for now of simply having an identical heap type to the table when the signature is identical. With this PR, #4207's optimization of call_ref + table.get into call_indirect now leads to a binary that works in V8 in nominal mode.
Diffstat (limited to 'test/lit/passes/optimize-instructions-call_ref-roundtrip.wast')
-rw-r--r--test/lit/passes/optimize-instructions-call_ref-roundtrip.wast88
1 files changed, 88 insertions, 0 deletions
diff --git a/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast b/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast
new file mode 100644
index 000000000..5bbec4b64
--- /dev/null
+++ b/test/lit/passes/optimize-instructions-call_ref-roundtrip.wast
@@ -0,0 +1,88 @@
+;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
+;; NOTE: This test was ported using port_test.py and could be cleaned up.
+
+;; RUN: wasm-opt %s --optimize-instructions --nominal --roundtrip --all-features -S -o - | filecheck %s
+;; roundtrip to see the effects on heap types in the binary format, specifically
+;; regarding nominal heap types
+
+(module
+ ;; Create multiple different signature types, all identical structurally but
+ ;; distinct nominally. The three tables will use different ones, and the
+ ;; emitted call_indirects should use the corresponding ones.
+
+ ;; CHECK: (type $v1 (func))
+ (type $v1 (func))
+
+ ;; CHECK: (type $v2 (func))
+ (type $v2 (func))
+
+ ;; CHECK: (type $v3 (func))
+ (type $v3 (func))
+
+ ;; CHECK: (type $i32_=>_none (func (param i32)))
+
+ ;; CHECK: (table $table-1 10 (ref null $v1))
+ (table $table-1 10 (ref null $v1))
+
+ ;; CHECK: (table $table-2 10 (ref null $v2))
+ (table $table-2 10 (ref null $v2))
+
+ ;; CHECK: (table $table-3 10 (ref null $v3))
+ (table $table-3 10 (ref null $v3))
+
+ ;; CHECK: (elem $elem-1 (table $table-1) (i32.const 0) (ref null $v1) (ref.func $helper-1))
+ (elem $elem-1 (table $table-1) (i32.const 0) (ref null $v1)
+ (ref.func $helper-1))
+
+ ;; CHECK: (elem $elem-2 (table $table-2) (i32.const 0) (ref null $v2) (ref.func $helper-2))
+ (elem $elem-2 (table $table-2) (i32.const 0) (ref null $v2)
+ (ref.func $helper-2))
+
+ ;; CHECK: (elem $elem-3 (table $table-3) (i32.const 0) (ref null $v3) (ref.func $helper-3))
+ (elem $elem-3 (table $table-3) (i32.const 0) (ref null $v3)
+ (ref.func $helper-3))
+
+ ;; CHECK: (func $helper-1
+ ;; CHECK-NEXT: (nop)
+ ;; CHECK-NEXT: )
+ (func $helper-1 (type $v1))
+ ;; CHECK: (func $helper-2
+ ;; CHECK-NEXT: (nop)
+ ;; CHECK-NEXT: )
+ (func $helper-2 (type $v2))
+ ;; CHECK: (func $helper-3
+ ;; CHECK-NEXT: (nop)
+ ;; CHECK-NEXT: )
+ (func $helper-3 (type $v3))
+
+ ;; CHECK: (func $call-table-get (param $x i32)
+ ;; CHECK-NEXT: (call_indirect $table-1 (type $v1)
+ ;; CHECK-NEXT: (local.get $x)
+ ;; CHECK-NEXT: )
+ ;; CHECK-NEXT: (call_indirect $table-2 (type $v2)
+ ;; CHECK-NEXT: (local.get $x)
+ ;; CHECK-NEXT: )
+ ;; CHECK-NEXT: (call_indirect $table-3 (type $v3)
+ ;; CHECK-NEXT: (local.get $x)
+ ;; CHECK-NEXT: )
+ ;; CHECK-NEXT: )
+ (func $call-table-get (param $x i32)
+ ;; The heap type of the call_indirects that we emit here should be the
+ ;; identical one as on the table that they correspond to.
+ (call_ref
+ (table.get $table-1
+ (local.get $x)
+ )
+ )
+ (call_ref
+ (table.get $table-2
+ (local.get $x)
+ )
+ )
+ (call_ref
+ (table.get $table-3
+ (local.get $x)
+ )
+ )
+ )
+)