-
Notifications
You must be signed in to change notification settings - Fork 786
[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
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
778aa2e
yolo
kripken 8e66d70
yolo
kripken f3c90a9
yolo
kripken e23e196
yolo
kripken 0635303
code
kripken 4d7c7e2
test
kripken 53b910e
work
kripken 0c7a6f3
form
kripken ca42d28
work
kripken b22b456
work
kripken 20516a7
work
kripken 2b1b84c
work
kripken e362037
work
kripken 33b2c2e
work
kripken fe2611a
work
kripken cc6fd35
work
kripken 1102d33
work
kripken a98365d
work
kripken 03070b7
work
kripken 4cc3063
work
kripken 4f3defa
work
kripken 086fc0b
work
kripken 560d7db
work
kripken 41f0a82
work
kripken 7584e2b
work
kripken ad2f5a5
work
kripken 5ba60b3
work
kripken bced169
finish
kripken d56bf77
format
kripken 347595c
fix struct/array.cmpxchg expected subtyping
kripken af6dea2
fix ChildTyper expected fields
kripken 5db6b29
fix finalize on null refs
kripken be927ff
handle non-refs in ChildTyper
kripken 2e650b8
update js test
kripken 10e8a84
non-refs in subtype-exprs
kripken 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
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem right. The expected value should be allowed to be a supertype of the element type, so it should only be required to be a subtype of
eq
. I see this is wrong forStructCmpxchg
as well.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed both. Though it seems the spec could be more strict here..?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This way is actually better for us. See the discussion at WebAssembly/shared-everything-threads#92.