Skip to content

[Shared-Everything] ArrayRMW and ArrayCmpxchg #7632

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 35 commits into from
Jun 2, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
work
  • Loading branch information
kripken committed May 29, 2025
commit b22b456e3465ae2aedcd0f71b9c05b1bd6e51d81
14 changes: 7 additions & 7 deletions src/wasm-binary.h
Original file line number Diff line number Diff line change
Expand Up @@ -1205,13 +1205,13 @@ enum ASTNodes {
ArrayAtomicGetS = 0x68,
ArrayAtomicGetU = 0x69,
ArrayAtomicSet = 0x6a,
StructAtomicRMWAdd = 0x6b,
StructAtomicRMWSub = 0x6c,
StructAtomicRMWAnd = 0x6d,
StructAtomicRMWOr = 0x6e,
StructAtomicRMWXor = 0x6f,
StructAtomicRMWXchg = 0x70,
StructAtomicRMWCmpxchg = 0x71,
ArrayAtomicRMWAdd = 0x6b,
ArrayAtomicRMWSub = 0x6c,
ArrayAtomicRMWAnd = 0x6d,
ArrayAtomicRMWOr = 0x6e,
ArrayAtomicRMWXor = 0x6f,
ArrayAtomicRMWXchg = 0x70,
ArrayAtomicRMWCmpxchg = 0x71,

// stringref opcodes

Expand Down