-
Notifications
You must be signed in to change notification settings - Fork 729
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
Concurrent Scavenge support on X86 #3054
Comments
If X86 has any TM related instructions, you'll likely have to deal with those too. |
@vijaysun-omr FYI. |
@0dvictor Please open an issue at the openj9-docs repository so that we can plan for doc changes. This template will help you provide the correct information: https://github.com/eclipse/openj9-docs/issues/new?template=new-documentation-change.md Thanks! |
created eclipse-openj9/openj9-docs#99 as the docs issue. |
Introduce optimized variant of reference array GC copy helper for Concurrent Scavenger. It will execute RB for every single ref slot of the source arrays (and as for regular Gencon config will just do post batch WB). JITed code in H/W based CS was not relying on this, but now that we are introducing S/W variant (eclipse-openj9#3054) this may be called more often. Signed-off-by: Aleksandar Micic <[email protected]>
All pull requests listed in this Issue have been merged, closing. |
Concurrent Scavenge has proved a success on Z and hence X86 will follow. eclipse-omr/omr#2812 provides a good place naturally insert Concurrent Scavenge related read barriers. X86's implementation will take advantage of this new infrastructure and follow the overall principles from Z.
List of works:
-Xgc:concurrentScavenge
is given; Enable Concurrent Scavenge on X86-64 compressedrefs #3070Documentation: eclipse-openj9/openj9-docs#99
The text was updated successfully, but these errors were encountered: