-
Notifications
You must be signed in to change notification settings - Fork 814
Fuzzer: Run Two() using the Binaryen interpreter #7954
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
Open
kripken
wants to merge
45
commits into
WebAssembly:main
Choose a base branch
from
kripken:add-fuzz-imports.2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+72
−48
Open
Changes from 44 commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
50ad754
go
kripken 1063ccb
go
kripken 60477e6
undo
kripken ed740fe
go
kripken b17e3c8
work
kripken 26f0182
go
kripken 3e9f640
go
kripken 60347f1
go
kripken 811f664
go
kripken 0aa0965
go
kripken 4b2b432
go
kripken 3ae249e
go
kripken c96682d
go
kripken 05060c9
go
kripken 33727e8
go
kripken 1aff0c1
FIX.prune
kripken 7e75c16
FIX.prune
kripken 9d738a4
typo
kripken 53a5b4d
typo
kripken d60579a
Merge remote-tracking branch 'myself/prune.nondef' into add-fuzz-imports
kripken 44aeb93
format
kripken 31d8934
fix
kripken 4b63f2b
CF.too
kripken 4cc8e45
fix
kripken b49eaf6
fix
kripken 05a296a
back
kripken 86fc6e6
Merge remote-tracking branch 'origin/main' into add-fuzz-imports
kripken f2d6c1a
freqs
kripken 5733260
clean
kripken f4f30e9
clean
kripken cb9a608
fix
kripken dc899d3
linkt
kripken 180f102
go
kripken 233cfcd
work
kripken 063e909
fix
kripken ffe63c7
now
kripken 80faed3
fix
kripken 3b89ddc
fix
kripken 34963c3
work
kripken 52781b2
work
kripken 3885f44
work
kripken 9b471e2
work
kripken 1dae57e
Merge remote-tracking branch 'origin/main' into add-fuzz-imports.2
kripken 4031f8d
fix
kripken c2d3c38
feedback: simplify
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
Oops, something went wrong.
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.
We can probably skip the check below and immediately report a problem, since our interpreter did not trap in instantiation. It also might be worth checking the other direction by running V8 when the interpreter traps in instantiation to make sure V8 also traps in instantiation.
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.
There are host errors though which differ between VMs, like limits on
array.new
size etc.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.
Oh, but we do handle IGNORE earlier, so you are right: only deterministic things should remain at this point. I simplified it now.