-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Chaos mode MVP: Skip branch optimization in MachBuffer #6039
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
15 commits
Select commit
Hold shift + click to select a range
0a42553
fuzz: Add chaos mode control plane
senekor f51732a
fuzz: Skip branch optimization with chaos mode
senekor bb15b08
fuzz: Rename chaos engine -> control plane
senekor dfa0594
chaos mode: refactoring ControlPlane to be passed through the call st…
MzrW 5f2cfc1
fuzz: annotate chaos todos
senekor 14ba45d
fuzz: cleanup control plane
senekor fd541f0
fuzz: remove control plane from compiler context
senekor a0f379b
fuzz: move control plane into emit state
senekor c8e5039
fuzz: fix remaining compiler errors
senekor 8e7591a
fix tests
senekor ccc2ba0
refactor emission state ctrl plane accessors
senekor 9e907a4
centralize conditional compilation of chaos mode
senekor bc76cae
add cranelift-control to published crates
senekor 54cc68c
add cranelift-control to public crates
senekor fa0eda7
Merge main into fuzz-skip-branch-opt
senekor 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
chaos mode: refactoring ControlPlane to be passed through the call st…
…ack by reference Co-authored-by: Falk Zwimpfer <[email protected]> Co-authored-by: Remo Senekowitsch <[email protected]>
- Loading branch information
commit dfa059426d617946e9bc698e39e821958084f902
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
I think it's probably better to pass in the control-plane state with each call to
compile; theCompilerContextis otherwise not that semantically meaningful (meant to enable reuse).