summaryrefslogtreecommitdiff
path: root/test/lit/basic/nonspec-bulk-memory.wast
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-01-03 14:59:38 -0800
committerGitHub <noreply@github.com>2024-01-03 14:59:38 -0800
commit0ed42cf976ce9a3dfbe9cbb0885122e8fb6a377b (patch)
treeb7969243a22e1878f37a8d02336ac81fd5fb7e33 /test/lit/basic/nonspec-bulk-memory.wast
parent1878403ec9c4382ab51ca72257f4d97a23a1fc0d (diff)
downloadbinaryen-0ed42cf976ce9a3dfbe9cbb0885122e8fb6a377b.tar.gz
binaryen-0ed42cf976ce9a3dfbe9cbb0885122e8fb6a377b.tar.bz2
binaryen-0ed42cf976ce9a3dfbe9cbb0885122e8fb6a377b.zip
Use the standard shared memory text format (#6200)
Update the legacy text parser and all tests to use the standard text format for shared memories, e.g. `(memory $m 1 1 shared)` rather than `(memory $m (shared 1 1))`. Also remove support for non-standard in-line "data" or "segment" declarations. This change makes the tests more compatible with the new text parser, which only supports the standard format.
Diffstat (limited to 'test/lit/basic/nonspec-bulk-memory.wast')
-rw-r--r--test/lit/basic/nonspec-bulk-memory.wast137
1 files changed, 0 insertions, 137 deletions
diff --git a/test/lit/basic/nonspec-bulk-memory.wast b/test/lit/basic/nonspec-bulk-memory.wast
deleted file mode 100644
index 980598f5d..000000000
--- a/test/lit/basic/nonspec-bulk-memory.wast
+++ /dev/null
@@ -1,137 +0,0 @@
-;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
-
-;; RUN: wasm-opt %s -all -o %t.text.wast -g -S
-;; RUN: wasm-as %s -all -g -o %t.wasm
-;; RUN: wasm-dis %t.wasm -all -o %t.bin.wast
-;; RUN: wasm-as %s -all -o %t.nodebug.wasm
-;; RUN: wasm-dis %t.nodebug.wasm -all -o %t.bin.nodebug.wast
-;; RUN: cat %t.text.wast | filecheck %s --check-prefix=CHECK-TEXT
-;; RUN: cat %t.bin.wast | filecheck %s --check-prefix=CHECK-BIN
-;; RUN: cat %t.bin.nodebug.wast | filecheck %s --check-prefix=CHECK-BIN-NODEBUG
-
-(module
- (memory 1024 1024
- (segment 0 "hello, world")
- )
-
- ;; CHECK-TEXT: (type $0 (func))
-
- ;; CHECK-TEXT: (memory $0 1024 1024)
-
- ;; CHECK-TEXT: (data $0 (i32.const 0) "hello, world")
-
- ;; CHECK-TEXT: (func $memory.init (type $0)
- ;; CHECK-TEXT-NEXT: (memory.init $0
- ;; CHECK-TEXT-NEXT: (i32.const 512)
- ;; CHECK-TEXT-NEXT: (i32.const 0)
- ;; CHECK-TEXT-NEXT: (i32.const 12)
- ;; CHECK-TEXT-NEXT: )
- ;; CHECK-TEXT-NEXT: )
- ;; CHECK-BIN: (type $0 (func))
-
- ;; CHECK-BIN: (memory $0 1024 1024)
-
- ;; CHECK-BIN: (data $0 (i32.const 0) "hello, world")
-
- ;; CHECK-BIN: (func $memory.init (type $0)
- ;; CHECK-BIN-NEXT: (memory.init $0
- ;; CHECK-BIN-NEXT: (i32.const 512)
- ;; CHECK-BIN-NEXT: (i32.const 0)
- ;; CHECK-BIN-NEXT: (i32.const 12)
- ;; CHECK-BIN-NEXT: )
- ;; CHECK-BIN-NEXT: )
- (func $memory.init
- (memory.init 0
- (i32.const 512)
- (i32.const 0)
- (i32.const 12)
- )
- )
-
- ;; CHECK-TEXT: (func $data.drop (type $0)
- ;; CHECK-TEXT-NEXT: (data.drop $0)
- ;; CHECK-TEXT-NEXT: )
- ;; CHECK-BIN: (func $data.drop (type $0)
- ;; CHECK-BIN-NEXT: (data.drop $0)
- ;; CHECK-BIN-NEXT: )
- (func $data.drop
- (data.drop 0)
- )
-
- ;; CHECK-TEXT: (func $memory.copy (type $0)
- ;; CHECK-TEXT-NEXT: (memory.copy
- ;; CHECK-TEXT-NEXT: (i32.const 512)
- ;; CHECK-TEXT-NEXT: (i32.const 0)
- ;; CHECK-TEXT-NEXT: (i32.const 12)
- ;; CHECK-TEXT-NEXT: )
- ;; CHECK-TEXT-NEXT: )
- ;; CHECK-BIN: (func $memory.copy (type $0)
- ;; CHECK-BIN-NEXT: (memory.copy
- ;; CHECK-BIN-NEXT: (i32.const 512)
- ;; CHECK-BIN-NEXT: (i32.const 0)
- ;; CHECK-BIN-NEXT: (i32.const 12)
- ;; CHECK-BIN-NEXT: )
- ;; CHECK-BIN-NEXT: )
- (func $memory.copy
- (memory.copy
- (i32.const 512)
- (i32.const 0)
- (i32.const 12)
- )
- )
-
- ;; CHECK-TEXT: (func $memory.fill (type $0)
- ;; CHECK-TEXT-NEXT: (memory.fill
- ;; CHECK-TEXT-NEXT: (i32.const 0)
- ;; CHECK-TEXT-NEXT: (i32.const 42)
- ;; CHECK-TEXT-NEXT: (i32.const 1024)
- ;; CHECK-TEXT-NEXT: )
- ;; CHECK-TEXT-NEXT: )
- ;; CHECK-BIN: (func $memory.fill (type $0)
- ;; CHECK-BIN-NEXT: (memory.fill
- ;; CHECK-BIN-NEXT: (i32.const 0)
- ;; CHECK-BIN-NEXT: (i32.const 42)
- ;; CHECK-BIN-NEXT: (i32.const 1024)
- ;; CHECK-BIN-NEXT: )
- ;; CHECK-BIN-NEXT: )
- (func $memory.fill
- (memory.fill
- (i32.const 0)
- (i32.const 42)
- (i32.const 1024)
- )
- )
-)
-;; CHECK-BIN-NODEBUG: (type $0 (func))
-
-;; CHECK-BIN-NODEBUG: (memory $0 1024 1024)
-
-;; CHECK-BIN-NODEBUG: (data $0 (i32.const 0) "hello, world")
-
-;; CHECK-BIN-NODEBUG: (func $0 (type $0)
-;; CHECK-BIN-NODEBUG-NEXT: (memory.init $0
-;; CHECK-BIN-NODEBUG-NEXT: (i32.const 512)
-;; CHECK-BIN-NODEBUG-NEXT: (i32.const 0)
-;; CHECK-BIN-NODEBUG-NEXT: (i32.const 12)
-;; CHECK-BIN-NODEBUG-NEXT: )
-;; CHECK-BIN-NODEBUG-NEXT: )
-
-;; CHECK-BIN-NODEBUG: (func $1 (type $0)
-;; CHECK-BIN-NODEBUG-NEXT: (data.drop $0)
-;; CHECK-BIN-NODEBUG-NEXT: )
-
-;; CHECK-BIN-NODEBUG: (func $2 (type $0)
-;; CHECK-BIN-NODEBUG-NEXT: (memory.copy
-;; CHECK-BIN-NODEBUG-NEXT: (i32.const 512)
-;; CHECK-BIN-NODEBUG-NEXT: (i32.const 0)
-;; CHECK-BIN-NODEBUG-NEXT: (i32.const 12)
-;; CHECK-BIN-NODEBUG-NEXT: )
-;; CHECK-BIN-NODEBUG-NEXT: )
-
-;; CHECK-BIN-NODEBUG: (func $3 (type $0)
-;; CHECK-BIN-NODEBUG-NEXT: (memory.fill
-;; CHECK-BIN-NODEBUG-NEXT: (i32.const 0)
-;; CHECK-BIN-NODEBUG-NEXT: (i32.const 42)
-;; CHECK-BIN-NODEBUG-NEXT: (i32.const 1024)
-;; CHECK-BIN-NODEBUG-NEXT: )
-;; CHECK-BIN-NODEBUG-NEXT: )