diff options
author | Andy Wingo <wingo@igalia.com> | 2020-04-20 21:10:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 12:10:19 -0700 |
commit | d041025854ba2b00b3df9f308914c8aba05dcda9 (patch) | |
tree | 2066b1cef60effa9c2a0ef7cf13cf65a34f23b1b /src/shared-validator.cc | |
parent | 952c3b8006911a8659c1b922c3bb4adffc671d89 (diff) | |
download | wabt-d041025854ba2b00b3df9f308914c8aba05dcda9.tar.gz wabt-d041025854ba2b00b3df9f308914c8aba05dcda9.tar.bz2 wabt-d041025854ba2b00b3df9f308914c8aba05dcda9.zip |
Add support for atomic.fence from the threads proposal (#1231)
See https://github.com/WebAssembly/threads/pull/141 for the binary
encoding. This patch does add a field to AtomicFenceExpr for the
consistency model, though without a type for the time being.
Diffstat (limited to 'src/shared-validator.cc')
-rw-r--r-- | src/shared-validator.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/shared-validator.cc b/src/shared-validator.cc index 2a564772..e84ccf12 100644 --- a/src/shared-validator.cc +++ b/src/shared-validator.cc @@ -594,6 +594,18 @@ Result SharedValidator::CheckAtomicAlign(const Location& loc, return Result::Ok; } +Result SharedValidator::OnAtomicFence(const Location& loc, + uint32_t consistency_model) { + Result result = Result::Ok; + if (consistency_model != 0) { + result |= PrintError( + loc, "unexpected atomic.fence consistency model (expected 0): %u", + consistency_model); + } + result |= typechecker_.OnAtomicFence(consistency_model); + return result; +} + Result SharedValidator::OnAtomicLoad(const Location& loc, Opcode opcode, Address alignment) { |