-
Notifications
You must be signed in to change notification settings - Fork 80
Adding support for red/black roots #706
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
Closed
Closed
Changes from 23 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
d00e4c6
Support for object pinning
udesou 00a33f2
Adding pinning metadata to immix space side metadata specs; Returning…
udesou a062970
Proper semantics for pin/unpin; Fixing checks in immixspace.
udesou dd0a28b
Applying discussed semantics for pinning/unpinning
udesou b56af7d
Merge branch 'mmtk:master' into feature/pinning-objects
udesou b574a75
Updating to latest master
udesou 66e2709
Adding support for tracing 'red roots'
udesou 38d2f6e
Minor fix
udesou b86b321
Fixing object model for DummyVM
udesou 8e99228
Merge branch 'master' into feature/pinning-objects
udesou c013513
Fixing clippy issues
udesou 2ded32d
Merge branch 'feature/pinning-objects' of https://github.com/udesou/m…
udesou 235f83a
Converting object pinning into a feature
udesou 13accdb
Renaming object-pinning => object_pinning
udesou b73d892
Merge branch 'master' into feature/pinning-objects
qinsoon 57f5dcb
Removing assertion that was useful if pin bin happens to be the same …
udesou 0dedd14
Revert "Minor fix"
udesou a915c22
Revert "Adding support for tracing 'red roots'"
udesou 72bc39d
Merge branch 'feature/pinning-objects' into feature/object-moving
udesou 3fe039d
Refactoring support for red roots
udesou c1feb58
Merge branch 'master' into feature/object-moving
udesou 86ffdcf
Adding pinning methods to native ms space
udesou 23090bb
Merge branch 'master' into feature/object-moving
udesou 45209c0
Merge branch 'master' into feature/object-moving
qinsoon dc0582b
Merge remote-tracking branch 'upstream/master' into feature/object-mo…
udesou 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
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
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.
Yes. I recommend adding a field to
PlanConstraintsto indicate whether a plan supports pinning. For example:supports_pinning: boolorallows_pinning: bool. Any plan that hasmoves_object = falseshould also havesupports_pinning = true. By doing this, we can adddebug_assert!orassert!here and panic early.