Skip to content

Commit ca85c5a

Browse files
DamonFooltstuefe
andcommittedJun 13, 2020
8247522: assert(is_aligned(class_space_rs.base(), class_space_alignment)) failed: Sanity
Co-authored-by: Thomas Stuefe <thomas.stuefe@gmail.com> Reviewed-by: stuefe, iklam
1 parent e3b04bc commit ca85c5a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed
 

‎src/hotspot/share/memory/metaspaceShared.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2502,8 +2502,8 @@ char* MetaspaceShared::reserve_address_space_for_archives(FileMapInfo* static_ma
25022502
"CompressedClassSpaceSize malformed: "
25032503
SIZE_FORMAT, CompressedClassSpaceSize);
25042504

2505-
const size_t ccs_begin_offset = align_up(archive_space_size,
2506-
class_space_alignment);
2505+
const size_t ccs_begin_offset = align_up(base_address + archive_space_size,
2506+
class_space_alignment) - base_address;
25072507
const size_t gap_size = ccs_begin_offset - archive_space_size;
25082508

25092509
const size_t total_range_size =

‎test/hotspot/jtreg/runtime/cds/SharedBaseAddress.java

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public class SharedBaseAddress {
4141
"1g", "8g", "64g","512g", "4t",
4242
"32t", "128t", "0",
4343
"1", "64k", "64M",
44+
"0x800001000", // Default base address + 1 page - probably valid but unaligned to metaspace alignment, see JDK 8247522
4445
"0xfffffffffff00000", // archive top wraps around 64-bit address space
4546
"0xfff80000", // archive top wraps around 32-bit address space
4647
"0xffffffffffffffff", // archive bottom wraps around 64-bit address space -- due to align_up()

‎test/hotspot/jtreg/runtime/cds/appcds/SharedBaseAddress.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public class SharedBaseAddress {
4141
private static final String[] testTable = {
4242
"1g", "8g", "64g","512g", "4t",
4343
"32t", "128t", "0",
44-
"1", "64k", "64M", "320g"
44+
"1", "64k", "64M", "320g",
45+
"0x800001000" // Default base address + 1 page - probably valid but unaligned to metaspace alignment, see JDK 8247522
4546
};
4647

4748
public static void main(String[] args) throws Exception {

0 commit comments

Comments
 (0)
Please sign in to comment.