-
Notifications
You must be signed in to change notification settings - Fork 38
Concurrent Immix #311
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
Concurrent Immix #311
Changes from 33 commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
ab6f615
WIP
tianleq b7cdf24
Merge branch 'master' of github.com:tianleq/mmtk-openjdk into concurr…
tianleq b6a589f
Update mmtk-core dep, add tests
qinsoon 22fbc69
Run ConcurrentImmix without compressed pointer.
qinsoon 5018b70
Run ConcurrentImmix with larger heap
qinsoon ded5dcb
Add heap factor to artifact name
qinsoon 2c739a1
Update mmtk-core. Run conix with 6x heap.
qinsoon 15ca15c
Fix metadata shifting.
wks 772bb1a
Rename CI jobs
qinsoon f8be111
Update mmtk-core (schedule_concurrent_packets before resuming mutators)
qinsoon 5aa00cd
CI: Use 7x min heap. Use compressed pointer.
qinsoon cae60f1
mmtk-core renamed load_reference to load_weak_reference
wks 6b04936
Update mmtk-core, fix style check
qinsoon 5657658
Merge branch 'master' into concurrent-immix
qinsoon b120bae
Run ConcurrentImmix without weak refs
qinsoon b0109ed
Pass DecoratorSet to MMTk's object_reference_write_pre/post. Skip
qinsoon 803f57b
Revert "Run ConcurrentImmix without weak refs"
qinsoon 69512a0
Revert "Pass DecoratorSet to MMTk's object_reference_write_pre/post. …
qinsoon 0d869df
Update mmtk-core (ref enqueue workaround)
qinsoon 948db29
Update mmtk-core (ConcurrentPlan and trace object refactoring)
qinsoon 3f437d0
Update mmtk-core (minor fix)
qinsoon d141c5f
Update mmtk-core (wrong assertions)
qinsoon 1887581
Merge branch 'master' into concurrent-immix
qinsoon 19f0a8d
Udpate mmtk-core (refactor log bits)
qinsoon 6f4b7a5
Update mmtk-core (work bucket refactoring)
qinsoon 9095a90
Update mmtk-core (fix weak ref bucket, concurrent gc heuristics change)
qinsoon 4e7d086
Update mmtk-core (Remove NUM_CONCURRENT_TRACING_PACKETS., fix enabling
qinsoon 68439bd
Update mmtk-core (allow defrag in full pause)
qinsoon c01583e
Update mmtk-core (mark line change)
qinsoon e38dec6
Update mmtk-core (StopMutators refactoring, barrier active refactoring)
qinsoon 68c747d
Remove unused clone pre barrier
wks eb7c26c
Merge branch 'master' into concurrent-immix
wks f8cb6e6
Read concurrent_marking_active from plan
wks 4340fd6
Edit comment of CI script
wks aee8a7d
Check mmtk_enable_barrier_fastpath at run time
wks 68a2382
Edit comment
wks fa45277
Bump mmtk repo revision
wks 822da6b
Ensure files end with newline
wks 52d73c7
Compressed oops for compressor
wks 726f1aa
Formatting and indentation.
wks 90a544e
Remove pre_val and fix atomic xchg
wks f8f6129
Remove unnecessary overrides
wks ad0e737
Blank object_probable_write for SATB barrier
wks 168942f
Use the `override` keyword where applicable
wks 9ca0880
Update Cargo.toml
qinsoon a569aa9
Update mmtk-core to a4dd70cb70a116a32b1bbb20501c48f77f49181b
mmtkgc-bot 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
includes: | ||
- "./base.yml" | ||
|
||
configs: | ||
- "jdk11-master|ms|s|fail_on_oom|tph|preserve|mmtk_gc-ConcurrentImmix" | ||
|
||
# This will be expanded in CI when we run with the config. Keep a new line at the end. | ||
benchmarks: | ||
dacapo-23.9-RC3-chopin-ci: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
includes: | ||
- "./base.yml" | ||
|
||
configs: | ||
- "jdk11-master|ms|s|fail_on_oom|tph|preserve|mmtk_gc-SemiSpace" | ||
- "jdk11-master|ms|s|fail_on_oom|tph|preserve|mmtk_gc-GenCopy" | ||
- "jdk11-master|ms|s|fail_on_oom|tph|preserve|mmtk_gc-Immix" | ||
- "jdk11-master|ms|s|fail_on_oom|tph|preserve|mmtk_gc-GenImmix" | ||
- "jdk11-master|ms|s|fail_on_oom|tph|preserve|mmtk_gc-StickyImmix" | ||
- "jdk11-master|ms|s|fail_on_oom|tph|preserve|mmtk_gc-MarkSweep" | ||
- "jdk11-master|ms|s|fail_on_oom|tph|preserve|mmtk_gc-MarkCompact" | ||
# TODO: We need to disable compressed oops for Compressor temporarily until it supports | ||
# discontiguous spaces. | ||
- "jdk11-master|ms|s|fail_on_oom|tph|preserve|no_compressed_oops|mmtk_gc-Compressor" | ||
|
||
# This will be expanded in CI when we run with the config. Keep a new line at the end. | ||
benchmarks: | ||
dacapo-23.9-RC3-chopin-ci: |
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.
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.
Uh oh!
There was an error while loading. Please reload this page.