summaryrefslogtreecommitdiff
path: root/test/lit/passes/table64-lowering.wast
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2024-12-04 14:49:00 -0800
committerGitHub <noreply@github.com>2024-12-04 22:49:00 +0000
commit68963739e56258057a7f0618e0375dd60ae4e124 (patch)
treef503d42d7c201536b3a77b951d6c813d636db728 /test/lit/passes/table64-lowering.wast
parent47f9a78e5d423638a3dceeed2cb6449766f6f75e (diff)
downloadbinaryen-68963739e56258057a7f0618e0375dd60ae4e124.tar.gz
binaryen-68963739e56258057a7f0618e0375dd60ae4e124.tar.bz2
binaryen-68963739e56258057a7f0618e0375dd60ae4e124.zip
Remove separate Table64Lowering pass (#7131)
This pass is now just part of Memory64Lowering. Once this lands we can remove the `--table64-lowering` flag from emscripten. Because I've used an alias here there will be some interim period where emscripten will run this pass twice since it passed both flags. However, this will only be temporary and that second run will be a no-op since the first one will remove the feature.
Diffstat (limited to 'test/lit/passes/table64-lowering.wast')
-rw-r--r--test/lit/passes/table64-lowering.wast83
1 files changed, 0 insertions, 83 deletions
diff --git a/test/lit/passes/table64-lowering.wast b/test/lit/passes/table64-lowering.wast
deleted file mode 100644
index f3aaf4ef8..000000000
--- a/test/lit/passes/table64-lowering.wast
+++ /dev/null
@@ -1,83 +0,0 @@
-;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
-
-;; RUN: wasm-opt %s --enable-memory64 --enable-reference-types --enable-bulk-memory --table64-lowering -S -o - | filecheck %s
-
-(module
- ;; CHECK: (type $0 (func))
-
- ;; CHECK: (type $1 (func (result i64)))
-
- ;; CHECK: (table $t64 10 100 funcref)
- (table $t64 i64 10 100 funcref)
-
- ;; CHECK: (table $t32 10 100 funcref)
-
- ;; CHECK: (elem $elem64 (table $t64) (i32.const 0) funcref (item (ref.null nofunc)))
- (elem $elem64 (table $t64) (i64.const 0) funcref (ref.null func))
-
- (table $t32 10 100 funcref)
- ;; CHECK: (elem $elem32 (table $t32) (i32.const 0) funcref (item (ref.null nofunc)))
- (elem $elem32 (table $t32) (i32.const 0) funcref (ref.null func))
-
- ;; CHECK: (func $test_call_indirect
- ;; CHECK-NEXT: (call_indirect $t64 (type $0)
- ;; CHECK-NEXT: (i32.wrap_i64
- ;; CHECK-NEXT: (i64.const 0)
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: )
- (func $test_call_indirect
- (call_indirect 0 (i64.const 0))
- )
-
- ;; CHECK: (func $test_table_size (result i64)
- ;; CHECK-NEXT: (i64.extend_i32_u
- ;; CHECK-NEXT: (table.size $t64)
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: )
- (func $test_table_size (result i64)
- (table.size $t64)
- )
-
- ;; CHECK: (func $test_table_grow (result i64)
- ;; CHECK-NEXT: (i64.extend_i32_u
- ;; CHECK-NEXT: (table.grow $t64
- ;; CHECK-NEXT: (ref.null nofunc)
- ;; CHECK-NEXT: (i32.wrap_i64
- ;; CHECK-NEXT: (i64.const 10)
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: )
- (func $test_table_grow (result i64)
- (table.grow $t64 (ref.null func) (i64.const 10))
- )
-
- ;; CHECK: (func $test_table_fill
- ;; CHECK-NEXT: (table.fill $t64
- ;; CHECK-NEXT: (i32.wrap_i64
- ;; CHECK-NEXT: (i64.const 0)
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: (ref.null nofunc)
- ;; CHECK-NEXT: (i32.wrap_i64
- ;; CHECK-NEXT: (i64.const 10)
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: )
- (func $test_table_fill
- (table.fill $t64 (i64.const 0) (ref.null func) (i64.const 10))
- )
-
- ;; CHECK: (func $test_table_init
- ;; CHECK-NEXT: (table.init $t64 $elem64
- ;; CHECK-NEXT: (i32.wrap_i64
- ;; CHECK-NEXT: (i64.const 0)
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: (i32.const 5)
- ;; CHECK-NEXT: (i32.const 10)
- ;; CHECK-NEXT: )
- ;; CHECK-NEXT: )
- (func $test_table_init
- (table.init $t64 $elem64 (i64.const 0) (i32.const 5) (i32.const 10))
- )
-)