-
Notifications
You must be signed in to change notification settings - Fork 114
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
[GC] Add option G1BarrierSimple to use simple g1 post barrier #829
Conversation
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.
a few assertions are missing, e.g.,
void G1ConcurrentRefineThread::run_service() {
assert(!G1CardMarkOnlyForTrackedRegion && !G1BarrierSkipDCQ, "Concurrent Refinement should be disabled");
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.
G1BarrierSimple is only supported on aarch64 and x86 now, so maybe it should be disabled on other platform
PtrQueueSet::process_or_enqueue_complete_buffer also had changes in the original patch, wonder if it's missed |
Add assertion to check dcqs empty |
Add the platform restriction. |
Summary: Provide option G1BarrierSimple to use simple G1 post barrier for better mutator performance Testing: CI pipeline Reviewers: yude, yifeng Issue: dragonwell-project#828
Summary: Provide option G1BarrierSimple to use simple G1 post barrier for better mutator performance
Testing: CI pipeline
Reviewers: yude, yifeng
Issue: #828