Fuzz waitqueue instructions - #9012
Draft
stevenfontanella wants to merge 2 commits into
Draft
stevenfontanella wants to merge 2 commits into
stevenfontanella wants to merge 2 commits into
Conversation
stevenfontanella
force-pushed
the
waitqueue-eq
branch
from
August 18, 2026 17:56
e7f2a7d to
ca0f641
Compare
stevenfontanella
force-pushed
the
fuzz-waitqueue
branch
from
August 18, 2026 18:14
a046452 to
3460108
Compare
stevenfontanella
force-pushed
the
waitqueue-eq
branch
from
August 20, 2026 15:46
6001030 to
853b2cc
Compare
stevenfontanella
force-pushed
the
fuzz-waitqueue
branch
2 times, most recently
from
August 26, 2026 22:33
40e088c to
d51648f
Compare
stevenfontanella
force-pushed
the
fuzz-waitqueue
branch
6 times, most recently
from
September 22, 2026 23:29
96f5fe4 to
218c831
Compare
stevenfontanella
force-pushed
the
supertype-fix
branch
from
September 22, 2026 23:51
3860cae to
0624377
Compare
stevenfontanella
force-pushed
the
fuzz-waitqueue
branch
3 times, most recently
from
September 23, 2026 21:02
f1c1052 to
25b4a0d
Compare
stevenfontanella
force-pushed
the
fuzz-waitqueue
branch
from
September 23, 2026 21:42
25b4a0d to
9352c74
Compare
stevenfontanella
force-pushed
the
fuzz-waitqueue
branch
from
September 23, 2026 21:43
9352c74 to
84702dd
Compare
This branch has not been deployed
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
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.
Part of #8315. Generate
waitqueue.new,waitqueue.notify, andstruct.waitin the fuzzer.When
!ATOMIC_WAITS, the timeout argument on allstruct.waits is forced to be equal to 0 so that programs can't block. In this case it will return either 1 (not equal) or 2 (equal and timed out waiting), but never 0 (blocked and got notified).Ran for 26k iterations with no issues. For fuzzing against V8:
shared-everythingis already disabled when fuzzing against V8: link. Waitqueues are mostly implemented in V8 but currently only support i32 control words and not i64 or subtypes of eqref: https://chromium-review.googlesource.com/c/v8/v8/+/8449412/2.