-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8251330: Reorder CDS archived heap to speed up relocation #17350
8251330: Reorder CDS archived heap to speed up relocation #17350
Conversation
👋 Welcome back matsaave! A progress list of the required criteria for merging this PR into |
@matias9927 The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
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.
Looks good. I have some minor remarks for refactoring.
@@ -164,18 +164,19 @@ void ArchiveHeapLoader::patch_compressed_embedded_pointers(BitMapView bm, | |||
|
|||
// Optimization: if dumptime shift is the same as runtime shift, we can perform a | |||
// quick conversion from "dumptime narrowOop" -> "runtime narrowOop". | |||
narrowOop* patching_start = (narrowOop*)region.start() + MetaspaceShared::oopmap_start_pos(); |
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 there is no need to introduce a new MetaspaceShared::oopmap_start_pos()
API. You can get this info from
FileMapInfo::current_info()->header()->heap_oopmap_start_pos()
The same thing can be done for MetaspaceShared::ptrmap_start_pos()
src/hotspot/share/cds/filemap.cpp
Outdated
@@ -289,6 +289,8 @@ void FileMapHeader::print(outputStream* st) { | |||
st->print_cr("- requested_base_address: " INTPTR_FORMAT, p2i(_requested_base_address)); | |||
st->print_cr("- mapped_base_address: " INTPTR_FORMAT, p2i(_mapped_base_address)); | |||
st->print_cr("- heap_roots_offset: " SIZE_FORMAT, _heap_roots_offset); | |||
st->print_cr("- _heap_oopmap_start_pos: " SIZE_FORMAT, _heap_oopmap_start_pos); | |||
st->print_cr("- _heap_ptrmap_start_pos: " SIZE_FORMAT, _heap_ptrmap_start_pos); |
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.
Need two more spaces before SIZE_FORMAT for alignment?
src/hotspot/share/cds/filemap.cpp
Outdated
size_t new_zeros = map->find_first_set_bit(0); | ||
size_t removed_zeros = old_zeros - new_zeros; | ||
|
||
assert(new_zeros <= old_zeros, "Should have removed leading zeros"); |
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.
Maybe add this comment above:
// The start of the archived heap has many primitive arrays (String
// bodies) that are not marked by the oop/ptr maps. So we must have
// lots of leading zeros.
@@ -565,6 +634,12 @@ bool ArchiveHeapWriter::is_marked_as_native_pointer(ArchiveHeapInfo* heap_info, | |||
assert((Metadata**)_requested_bottom <= requested_field_addr && requested_field_addr < (Metadata**) _requested_top, "range check"); | |||
|
|||
BitMap::idx_t idx = requested_field_addr - (Metadata**) _requested_bottom; | |||
// Leading zeros have been removed so some addresses may not be in the ptrmap | |||
if (idx < MetaspaceShared::ptrmap_start_pos()) { |
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.
This is now the only place you need to know ptrmap_start_pos
during dump time (at runtime you can get the info from FileMapInfo::current_info()
). I think it's better to store ptrmap_start_pos
as a static field in the ArchiveHeapWriter
class instead.
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.
LGTM. Just some small nits.
src/hotspot/share/cds/filemap.cpp
Outdated
size_t new_zeros = map->find_first_set_bit(0); | ||
|
||
assert(new_zeros == 0, "Should have removed leading zeros"); | ||
assert(map->size_in_bytes() <= old_size, "Map size should have decreased"); |
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.
The comment doesn't match the code, since you are comparing with <=
. I think it's safe to change to <
as we should have removed more than 64 leading bits, due to the abundance of primitive arrays.
@@ -1138,10 +1156,26 @@ class WalkOopAndArchiveClosure: public BasicOopIterateClosure { | |||
|
|||
WalkOopAndArchiveClosure* WalkOopAndArchiveClosure::_current = nullptr; | |||
|
|||
HeapShared::CachedOopInfo HeapShared::make_cached_oop_info() { | |||
class PointsToOopsChecker : public BasicOopIterateClosure { |
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.
This class needs a short comment. How about:
// Checks if an oop has any non-null oop fields
@matias9927 This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 27 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
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.
Looks good. I just have a minor comment below.
Also, the copyright year of some files need to be updated.
src/hotspot/share/cds/filemap.cpp
Outdated
map->truncate(old_zeros, map->size()); | ||
|
||
// We want to keep track of how many zeros were removed | ||
size_t new_zeros = map->find_first_set_bit(0); |
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 this statement could be enclosed with DEBUG_ONLY
since the new_zeros
is only used in the assert
statement following it.
Thanks for the reviews @calvinccheung and @iklam! |
Going to push as commit 7e05a70.
Your commit was automatically rebased without conflicts. |
@matias9927 Pushed as commit 7e05a70. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
We should reorder the archived heap to segregate the objects that don't need marking. This will save space in the archive and improve start-up time
This patch reorders the archived heap to segregate the objects that don't need marking. The leading zeros present in the bitmaps thanks to the reordering can be easily removed, and this the size of the archive is reduced.
Given that the bitmaps are word aligned, some leading zeroes will remain. Verified with tier 1-5 tests.
Metrics, courtesy of @iklam :
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/17350/head:pull/17350
$ git checkout pull/17350
Update a local copy of the PR:
$ git checkout pull/17350
$ git pull https://git.openjdk.org/jdk.git pull/17350/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 17350
View PR using the GUI difftool:
$ git pr show -t 17350
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/17350.diff
Webrev
Link to Webrev Comment