summaryrefslogtreecommitdiff
path: root/test/lit/validation/gc-atomics.wast
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-12-17 20:01:23 -0800
committerGitHub <noreply@github.com>2024-12-18 04:01:23 +0000
commit7c8cd2f4a51213964f6f1ec11e54d2b6e721cdaf (patch)
tree6440ab4fb4a1c572a5a82f3fcb9766fc8d505c5e /test/lit/validation/gc-atomics.wast
parent9f5f8dd2ffe0b89ea071aea3d2b3efad42dada4f (diff)
downloadbinaryen-7c8cd2f4a51213964f6f1ec11e54d2b6e721cdaf.tar.gz
binaryen-7c8cd2f4a51213964f6f1ec11e54d2b6e721cdaf.tar.bz2
binaryen-7c8cd2f4a51213964f6f1ec11e54d2b6e721cdaf.zip
Support atomic struct accessors (#7155)
Implement support for both sequentially consistent and acquire-release variants of `struct.atomic.get` and `struct.atomic.set`, as proposed by shared-everything-threads. Introduce a new `MemoryOrdering` enum for describing different levels of atomicity (or the lack thereof). This new enum should eventually be adopted by linear memory atomic accessors as well to support acquire-release semantics, but for now just use it in `StructGet` and `StructSet`. In addition to implementing parsing and emitting for the instructions, validate that shared-everything is enabled to use them, mark them as having synchronization side effects, and lightly optimize them by relaxing acquire-release accesses to non-shared structs to normal, unordered accesses. This is valid because such accesses cannot possibly synchronize with other threads. Also update Precompute to avoid optimizing out synchronization points. There are probably other passes that need to be updated to avoid incorrectly optimizing synchronizing accesses, but identifying and fixing them is left as future work.
Diffstat (limited to 'test/lit/validation/gc-atomics.wast')
-rw-r--r--test/lit/validation/gc-atomics.wast38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/lit/validation/gc-atomics.wast b/test/lit/validation/gc-atomics.wast
new file mode 100644
index 000000000..28e98b9fe
--- /dev/null
+++ b/test/lit/validation/gc-atomics.wast
@@ -0,0 +1,38 @@
+;; Test that shared-everything GC instructions require the shared-everything
+;; feature.
+
+;; RUN: not wasm-opt -all --disable-shared-everything %s 2>&1 | filecheck %s
+
+(module
+ (type $struct (struct (field (mut i32))))
+
+ ;; CHECK: struct.atomic.get requires shared-everything [--enable-shared-everything]
+ (func $get-seqcst (result i32)
+ (struct.atomic.get seqcst $struct 0
+ (struct.new_default $struct)
+ )
+ )
+
+ ;; CHECK: struct.atomic.get requires shared-everything [--enable-shared-everything]
+ (func $get-acqrel (result i32)
+ (struct.atomic.get acqrel $struct 0
+ (struct.new_default $struct)
+ )
+ )
+
+ ;; CHECK: struct.atomic.set requires shared-everything [--enable-shared-everything]
+ (func $set-seqcst
+ (struct.atomic.set seqcst $struct 0
+ (struct.new_default $struct)
+ (i32.const 0)
+ )
+ )
+
+ ;; CHECK: struct.atomic.set requires shared-everything [--enable-shared-everything]
+ (func $set-acqrel
+ (struct.atomic.set acqrel $struct 0
+ (struct.new_default $struct)
+ (i32.const 0)
+ )
+ )
+) \ No newline at end of file