forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Merge with upstream up to release v1.208.1 #90
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I've seen this recommended a number of times for installing precompiled binaries and this enables `cargo binstall` to pull from the precompiled artifacts produced on CI rather than needing a third-party source.
* threads: add `global.atomic.rmw.*` instructions This change adds support for the various `global.atomic.rmw.*` instructions that are now available as a part of the shared-everything-threads [proposal]. [proposal]: https://github.com/WebAssembly/shared-everything-threads * Fix operand validation; refactor validation helpers The `global.atomic.rmw.*` instructions have different validation constraints for different instructions. `xchg` maches `global.atomic.get|set` in that it accepts subtypes of `anyref`. But `cmpxchg` accepts subtypes of `eqref`. All the instructions accept `i32` and `i64`. To make this more clear (and avoid mistakes like the ones I made), I moved these "special" cases up a level to be more visible. This allowed removing some of the other helper functions.
…pes (bytecodealliance#1566) * put #[inline] on all forwarding set fns * put #[inline] on all forwarding map fns * put #[inline] on most forwarding indexset fns * put #[inline] on forwarding indexmap fns
[automatically-tag-and-release-this-commit] Co-authored-by: Auto Release Process <auto-release-process@users.noreply.github.com>
…ance#1569) Required now that the types here are new types defined in this crate.
Currently required in Wasmtime so add then back in with the trivial implementations.
Mirrored after `indexmap::IndexSet`.
This fixes a mistake in bytecodealliance#1569 where it accidentally broke `no_std` support since the `std` feature of the `serde` crate was still enabled.
[automatically-tag-and-release-this-commit] Co-authored-by: Auto Release Process <auto-release-process@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.