Skip to content

Commit d1ad0ea

Browse files
committedDec 20, 2019
8233826: Change CDS dumping tty->print_cr() to unified logging
Reviewed-by: coleenp, dholmes, jiangli
1 parent 4f22b49 commit d1ad0ea

15 files changed

+91
-90
lines changed
 

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -1164,9 +1164,9 @@ void FileMapInfo::write_region(int region, char* base, size_t size,
11641164

11651165
si->set_file_offset(_file_offset);
11661166
char* requested_base = (target_base == NULL) ? NULL : target_base + MetaspaceShared::final_delta();
1167-
log_info(cds)("Shared file region %d: " SIZE_FORMAT_HEX_W(08)
1168-
" bytes, addr " INTPTR_FORMAT " file offset " SIZE_FORMAT_HEX_W(08),
1169-
region, size, p2i(requested_base), _file_offset);
1167+
log_debug(cds)("Shared file region %d: " SIZE_FORMAT_HEX_W(08)
1168+
" bytes, addr " INTPTR_FORMAT " file offset " SIZE_FORMAT_HEX_W(08),
1169+
region, size, p2i(requested_base), _file_offset);
11701170

11711171
int crc = ClassLoader::crc32(0, base, (jint)size);
11721172
si->init(region, target_base, size, read_only, allow_exec, crc);
@@ -1185,8 +1185,8 @@ void FileMapInfo::write_bitmap_region(const CHeapBitMap* ptrmap) {
11851185
ptrmap->write_to(buffer, size_in_bytes);
11861186
header()->set_ptrmap_size_in_bits(size_in_bits);
11871187

1188-
log_info(cds)("ptrmap = " INTPTR_FORMAT " (" SIZE_FORMAT " bytes)",
1189-
p2i(buffer), size_in_bytes);
1188+
log_debug(cds)("ptrmap = " INTPTR_FORMAT " (" SIZE_FORMAT " bytes)",
1189+
p2i(buffer), size_in_bytes);
11901190
write_region(MetaspaceShared::bm, (char*)buffer, size_in_bytes, /*read_only=*/true, /*allow_exec=*/false);
11911191
}
11921192

@@ -1247,8 +1247,8 @@ size_t FileMapInfo::write_archive_heap_regions(GrowableArray<MemRegion> *heap_me
12471247
total_size += size;
12481248
}
12491249

1250-
log_info(cds)("Archive heap region %d: " INTPTR_FORMAT " - " INTPTR_FORMAT " = " SIZE_FORMAT_W(8) " bytes",
1251-
i, p2i(start), p2i(start + size), size);
1250+
log_debug(cds)("Archive heap region %d: " INTPTR_FORMAT " - " INTPTR_FORMAT " = " SIZE_FORMAT_W(8) " bytes",
1251+
i, p2i(start), p2i(start + size), size);
12521252
write_region(i, start, size, false, false);
12531253
if (size > 0) {
12541254
address oopmap = oopmaps->at(arr_idx)._oopmap;

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

+8-10
Original file line numberDiff line numberDiff line change
@@ -186,14 +186,12 @@ void HeapShared::archive_klass_objects(Thread* THREAD) {
186186
void HeapShared::archive_java_heap_objects(GrowableArray<MemRegion> *closed,
187187
GrowableArray<MemRegion> *open) {
188188
if (!is_heap_object_archiving_allowed()) {
189-
if (log_is_enabled(Info, cds)) {
190-
log_info(cds)(
191-
"Archived java heap is not supported as UseG1GC, "
192-
"UseCompressedOops and UseCompressedClassPointers are required."
193-
"Current settings: UseG1GC=%s, UseCompressedOops=%s, UseCompressedClassPointers=%s.",
194-
BOOL_TO_STR(UseG1GC), BOOL_TO_STR(UseCompressedOops),
195-
BOOL_TO_STR(UseCompressedClassPointers));
196-
}
189+
log_info(cds)(
190+
"Archived java heap is not supported as UseG1GC, "
191+
"UseCompressedOops and UseCompressedClassPointers are required."
192+
"Current settings: UseG1GC=%s, UseCompressedOops=%s, UseCompressedClassPointers=%s.",
193+
BOOL_TO_STR(UseG1GC), BOOL_TO_STR(UseCompressedOops),
194+
BOOL_TO_STR(UseCompressedClassPointers));
197195
return;
198196
}
199197

@@ -205,11 +203,11 @@ void HeapShared::archive_java_heap_objects(GrowableArray<MemRegion> *closed,
205203
// Cache for recording where the archived objects are copied to
206204
create_archived_object_cache();
207205

208-
tty->print_cr("Dumping objects to closed archive heap region ...");
206+
log_info(cds)("Dumping objects to closed archive heap region ...");
209207
NOT_PRODUCT(StringTable::verify());
210208
copy_closed_archive_heap_objects(closed);
211209

212-
tty->print_cr("Dumping objects to open archive heap region ...");
210+
log_info(cds)("Dumping objects to open archive heap region ...");
213211
copy_open_archive_heap_objects(open);
214212

215213
destroy_archived_object_cache();

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

+48-50
Original file line numberDiff line numberDiff line change
@@ -160,18 +160,16 @@ void DumpRegion::append_intptr_t(intptr_t n, bool need_to_mark) {
160160
}
161161

162162
void DumpRegion::print(size_t total_bytes) const {
163-
tty->print_cr("%-3s space: " SIZE_FORMAT_W(9) " [ %4.1f%% of total] out of " SIZE_FORMAT_W(9) " bytes [%5.1f%% used] at " INTPTR_FORMAT,
164-
_name, used(), percent_of(used(), total_bytes), reserved(), percent_of(used(), reserved()),
165-
p2i(_base + MetaspaceShared::final_delta()));
163+
log_debug(cds)("%-3s space: " SIZE_FORMAT_W(9) " [ %4.1f%% of total] out of " SIZE_FORMAT_W(9) " bytes [%5.1f%% used] at " INTPTR_FORMAT,
164+
_name, used(), percent_of(used(), total_bytes), reserved(), percent_of(used(), reserved()),
165+
p2i(_base + MetaspaceShared::final_delta()));
166166
}
167167

168168
void DumpRegion::print_out_of_space_msg(const char* failing_region, size_t needed_bytes) {
169-
tty->print("[%-8s] " PTR_FORMAT " - " PTR_FORMAT " capacity =%9d, allocated =%9d",
170-
_name, p2i(_base), p2i(_top), int(_end - _base), int(_top - _base));
169+
log_error(cds)("[%-8s] " PTR_FORMAT " - " PTR_FORMAT " capacity =%9d, allocated =%9d",
170+
_name, p2i(_base), p2i(_top), int(_end - _base), int(_top - _base));
171171
if (strcmp(_name, failing_region) == 0) {
172-
tty->print_cr(" required = %d", int(needed_bytes));
173-
} else {
174-
tty->cr();
172+
log_error(cds)(" required = %d", int(needed_bytes));
175173
}
176174
}
177175

@@ -323,7 +321,7 @@ void MetaspaceShared::initialize_dumptime_shared_and_meta_spaces() {
323321

324322
init_shared_dump_space(&_mc_region);
325323
SharedBaseAddress = (size_t)_shared_rs.base();
326-
tty->print_cr("Allocated shared space: " SIZE_FORMAT " bytes at " PTR_FORMAT,
324+
log_info(cds)("Allocated shared space: " SIZE_FORMAT " bytes at " PTR_FORMAT,
327325
_shared_rs.size(), p2i(_shared_rs.base()));
328326
}
329327

@@ -427,8 +425,8 @@ void MetaspaceShared::commit_shared_space_to(char* newtop) {
427425
need_committed_size));
428426
}
429427

430-
log_info(cds)("Expanding shared spaces by " SIZE_FORMAT_W(7) " bytes [total " SIZE_FORMAT_W(9) " bytes ending at %p]",
431-
commit, _shared_vs.actual_committed_size(), _shared_vs.high());
428+
log_debug(cds)("Expanding shared spaces by " SIZE_FORMAT_W(7) " bytes [total " SIZE_FORMAT_W(9) " bytes ending at %p]",
429+
commit, _shared_vs.actual_committed_size(), _shared_vs.high());
432430
}
433431

434432
void MetaspaceShared::initialize_ptr_marker(CHeapBitMap* ptrmap) {
@@ -1055,9 +1053,9 @@ void DumpAllocStats::print_stats(int ro_all, int rw_all, int mc_all, int md_all)
10551053

10561054
LogMessage(cds) msg;
10571055

1058-
msg.info("Detailed metadata info (excluding st regions; rw stats include md/mc regions):");
1059-
msg.info("%s", hdr);
1060-
msg.info("%s", sep);
1056+
msg.debug("Detailed metadata info (excluding st regions; rw stats include md/mc regions):");
1057+
msg.debug("%s", hdr);
1058+
msg.debug("%s", sep);
10611059
for (int type = 0; type < int(_number_of_types); type ++) {
10621060
const char *name = type_name((Type)type);
10631061
int ro_count = _counts[RO][type];
@@ -1071,7 +1069,7 @@ void DumpAllocStats::print_stats(int ro_all, int rw_all, int mc_all, int md_all)
10711069
double rw_perc = percent_of(rw_bytes, rw_all);
10721070
double perc = percent_of(bytes, ro_all + rw_all);
10731071

1074-
msg.info(fmt_stats, name,
1072+
msg.debug(fmt_stats, name,
10751073
ro_count, ro_bytes, ro_perc,
10761074
rw_count, rw_bytes, rw_perc,
10771075
count, bytes, perc);
@@ -1089,8 +1087,8 @@ void DumpAllocStats::print_stats(int ro_all, int rw_all, int mc_all, int md_all)
10891087
double all_rw_perc = percent_of(all_rw_bytes, rw_all);
10901088
double all_perc = percent_of(all_bytes, ro_all + rw_all);
10911089

1092-
msg.info("%s", sep);
1093-
msg.info(fmt_stats, "Total",
1090+
msg.debug("%s", sep);
1091+
msg.debug(fmt_stats, "Total",
10941092
all_ro_count, all_ro_bytes, all_ro_perc,
10951093
all_rw_count, all_rw_bytes, all_rw_perc,
10961094
all_count, all_bytes, all_perc);
@@ -1311,10 +1309,10 @@ class ArchiveCompactor : AllStatic {
13111309
SortedSymbolClosure the_ssc; // StackObj
13121310
_ssc = &the_ssc;
13131311

1314-
tty->print_cr("Scanning all metaspace objects ... ");
1312+
log_info(cds)("Scanning all metaspace objects ... ");
13151313
{
13161314
// allocate and shallow-copy RW objects, immediately following the MC region
1317-
tty->print_cr("Allocating RW objects ... ");
1315+
log_info(cds)("Allocating RW objects ... ");
13181316
_mc_region.pack(&_rw_region);
13191317

13201318
ResourceMark rm;
@@ -1323,29 +1321,29 @@ class ArchiveCompactor : AllStatic {
13231321
}
13241322
{
13251323
// allocate and shallow-copy of RO object, immediately following the RW region
1326-
tty->print_cr("Allocating RO objects ... ");
1324+
log_info(cds)("Allocating RO objects ... ");
13271325
_rw_region.pack(&_ro_region);
13281326

13291327
ResourceMark rm;
13301328
ShallowCopier ro_copier(true);
13311329
iterate_roots(&ro_copier);
13321330
}
13331331
{
1334-
tty->print_cr("Relocating embedded pointers ... ");
1332+
log_info(cds)("Relocating embedded pointers ... ");
13351333
ResourceMark rm;
13361334
ShallowCopyEmbeddedRefRelocator emb_reloc;
13371335
iterate_roots(&emb_reloc);
13381336
}
13391337
{
1340-
tty->print_cr("Relocating external roots ... ");
1338+
log_info(cds)("Relocating external roots ... ");
13411339
ResourceMark rm;
13421340
RefRelocator ext_reloc;
13431341
iterate_roots(&ext_reloc);
13441342
}
13451343

13461344
#ifdef ASSERT
13471345
{
1348-
tty->print_cr("Verifying external roots ... ");
1346+
log_info(cds)("Verifying external roots ... ");
13491347
ResourceMark rm;
13501348
IsRefInArchiveChecker checker;
13511349
iterate_roots(&checker);
@@ -1362,7 +1360,7 @@ class ArchiveCompactor : AllStatic {
13621360
// old objects which assert that their klass is the original klass.
13631361
static void relocate_well_known_klasses() {
13641362
{
1365-
tty->print_cr("Relocating SystemDictionary::_well_known_klasses[] ... ");
1363+
log_info(cds)("Relocating SystemDictionary::_well_known_klasses[] ... ");
13661364
ResourceMark rm;
13671365
RefRelocator ext_reloc;
13681366
SystemDictionary::well_known_klasses_do(&ext_reloc);
@@ -1410,7 +1408,7 @@ SortedSymbolClosure* ArchiveCompactor::_ssc;
14101408
ArchiveCompactor::RelocationTable* ArchiveCompactor::_new_loc_table;
14111409

14121410
void VM_PopulateDumpSharedSpace::dump_symbols() {
1413-
tty->print_cr("Dumping symbol table ...");
1411+
log_info(cds)("Dumping symbol table ...");
14141412

14151413
NOT_PRODUCT(SymbolTable::verify());
14161414
SymbolTable::write_to_archive();
@@ -1419,12 +1417,12 @@ void VM_PopulateDumpSharedSpace::dump_symbols() {
14191417
char* VM_PopulateDumpSharedSpace::dump_read_only_tables() {
14201418
ArchiveCompactor::OtherROAllocMark mark;
14211419

1422-
tty->print("Removing java_mirror ... ");
1420+
log_info(cds)("Removing java_mirror ... ");
14231421
if (!HeapShared::is_heap_object_archiving_allowed()) {
14241422
clear_basic_type_mirrors();
14251423
}
14261424
remove_java_mirror_in_classes();
1427-
tty->print_cr("done. ");
1425+
log_info(cds)("done. ");
14281426

14291427
SystemDictionaryShared::write_to_archive();
14301428

@@ -1443,7 +1441,7 @@ char* VM_PopulateDumpSharedSpace::dump_read_only_tables() {
14431441
}
14441442

14451443
void VM_PopulateDumpSharedSpace::print_class_stats() {
1446-
tty->print_cr("Number of classes %d", _global_klass_objects->length());
1444+
log_info(cds)("Number of classes %d", _global_klass_objects->length());
14471445
{
14481446
int num_type_array = 0, num_obj_array = 0, num_inst = 0;
14491447
for (int i = 0; i < _global_klass_objects->length(); i++) {
@@ -1457,9 +1455,9 @@ void VM_PopulateDumpSharedSpace::print_class_stats() {
14571455
num_type_array ++;
14581456
}
14591457
}
1460-
tty->print_cr(" instance classes = %5d", num_inst);
1461-
tty->print_cr(" obj array classes = %5d", num_obj_array);
1462-
tty->print_cr(" type array classes = %5d", num_type_array);
1458+
log_info(cds)(" instance classes = %5d", num_inst);
1459+
log_info(cds)(" obj array classes = %5d", num_obj_array);
1460+
log_info(cds)(" type array classes = %5d", num_type_array);
14631461
}
14641462
}
14651463

@@ -1541,14 +1539,14 @@ void VM_PopulateDumpSharedSpace::doit() {
15411539
print_class_stats();
15421540

15431541
// Ensure the ConstMethods won't be modified at run-time
1544-
tty->print("Updating ConstMethods ... ");
1542+
log_info(cds)("Updating ConstMethods ... ");
15451543
rewrite_nofast_bytecodes_and_calculate_fingerprints(THREAD);
1546-
tty->print_cr("done. ");
1544+
log_info(cds)("done. ");
15471545

15481546
// Remove all references outside the metadata
1549-
tty->print("Removing unshareable information ... ");
1547+
log_info(cds)("Removing unshareable information ... ");
15501548
remove_unshareable_in_classes();
1551-
tty->print_cr("done. ");
1549+
log_info(cds)("done. ");
15521550

15531551
ArchiveCompactor::initialize();
15541552
ArchiveCompactor::copy_and_compact();
@@ -1665,13 +1663,13 @@ void VM_PopulateDumpSharedSpace::print_region_stats() {
16651663
print_heap_region_stats(_closed_archive_heap_regions, "ca", total_reserved);
16661664
print_heap_region_stats(_open_archive_heap_regions, "oa", total_reserved);
16671665

1668-
tty->print_cr("total : " SIZE_FORMAT_W(9) " [100.0%% of total] out of " SIZE_FORMAT_W(9) " bytes [%5.1f%% used]",
1666+
log_debug(cds)("total : " SIZE_FORMAT_W(9) " [100.0%% of total] out of " SIZE_FORMAT_W(9) " bytes [%5.1f%% used]",
16691667
total_bytes, total_reserved, total_u_perc);
16701668
}
16711669

16721670
void VM_PopulateDumpSharedSpace::print_bitmap_region_stats(size_t size, size_t total_size) {
1673-
tty->print_cr("bm space: " SIZE_FORMAT_W(9) " [ %4.1f%% of total] out of " SIZE_FORMAT_W(9) " bytes [100.0%% used] at " INTPTR_FORMAT,
1674-
size, size/double(total_size)*100.0, size, p2i(NULL));
1671+
log_debug(cds)("bm space: " SIZE_FORMAT_W(9) " [ %4.1f%% of total] out of " SIZE_FORMAT_W(9) " bytes [100.0%% used] at " INTPTR_FORMAT,
1672+
size, size/double(total_size)*100.0, size, p2i(NULL));
16751673
}
16761674

16771675
void VM_PopulateDumpSharedSpace::print_heap_region_stats(GrowableArray<MemRegion> *heap_mem,
@@ -1681,8 +1679,8 @@ void VM_PopulateDumpSharedSpace::print_heap_region_stats(GrowableArray<MemRegion
16811679
char* start = (char*)heap_mem->at(i).start();
16821680
size_t size = heap_mem->at(i).byte_size();
16831681
char* top = start + size;
1684-
tty->print_cr("%s%d space: " SIZE_FORMAT_W(9) " [ %4.1f%% of total] out of " SIZE_FORMAT_W(9) " bytes [100.0%% used] at " INTPTR_FORMAT,
1685-
name, i, size, size/double(total_size)*100.0, size, p2i(start));
1682+
log_debug(cds)("%s%d space: " SIZE_FORMAT_W(9) " [ %4.1f%% of total] out of " SIZE_FORMAT_W(9) " bytes [100.0%% used] at " INTPTR_FORMAT,
1683+
name, i, size, size/double(total_size)*100.0, size, p2i(start));
16861684

16871685
}
16881686
}
@@ -1807,33 +1805,33 @@ void MetaspaceShared::preload_and_dump(TRAPS) {
18071805
class_list_path = SharedClassListFile;
18081806
}
18091807

1810-
tty->print_cr("Loading classes to share ...");
1808+
log_info(cds)("Loading classes to share ...");
18111809
_has_error_classes = false;
18121810
int class_count = preload_classes(class_list_path, THREAD);
18131811
if (ExtraSharedClassListFile) {
18141812
class_count += preload_classes(ExtraSharedClassListFile, THREAD);
18151813
}
1816-
tty->print_cr("Loading classes to share: done.");
1814+
log_info(cds)("Loading classes to share: done.");
18171815

18181816
log_info(cds)("Shared spaces: preloaded %d classes", class_count);
18191817

18201818
if (SharedArchiveConfigFile) {
1821-
tty->print_cr("Reading extra data from %s ...", SharedArchiveConfigFile);
1819+
log_info(cds)("Reading extra data from %s ...", SharedArchiveConfigFile);
18221820
read_extra_data(SharedArchiveConfigFile, THREAD);
18231821
}
1824-
tty->print_cr("Reading extra data: done.");
1822+
log_info(cds)("Reading extra data: done.");
18251823

18261824
HeapShared::init_subgraph_entry_fields(THREAD);
18271825

18281826
// Rewrite and link classes
1829-
tty->print_cr("Rewriting and linking classes ...");
1827+
log_info(cds)("Rewriting and linking classes ...");
18301828

18311829
// Link any classes which got missed. This would happen if we have loaded classes that
18321830
// were not explicitly specified in the classlist. E.g., if an interface implemented by class K
18331831
// fails verification, all other interfaces that were not specified in the classlist but
18341832
// are implemented by K are not verified.
18351833
link_and_cleanup_shared_classes(CATCH);
1836-
tty->print_cr("Rewriting and linking classes: done");
1834+
log_info(cds)("Rewriting and linking classes: done");
18371835

18381836
if (HeapShared::is_heap_object_archiving_allowed()) {
18391837
// Avoid fragmentation while archiving heap objects.
@@ -1947,10 +1945,10 @@ void VM_PopulateDumpSharedSpace::dump_archive_heap_oopmaps(GrowableArray<MemRegi
19471945
size_t size_in_bytes = oopmap.size_in_bytes();
19481946
uintptr_t* buffer = (uintptr_t*)_ro_region.allocate(size_in_bytes, sizeof(intptr_t));
19491947
oopmap.write_to(buffer, size_in_bytes);
1950-
log_info(cds)("Oopmap = " INTPTR_FORMAT " (" SIZE_FORMAT_W(6) " bytes) for heap region "
1951-
INTPTR_FORMAT " (" SIZE_FORMAT_W(8) " bytes)",
1952-
p2i(buffer), size_in_bytes,
1953-
p2i(regions->at(i).start()), regions->at(i).byte_size());
1948+
log_info(cds, heap)("Oopmap = " INTPTR_FORMAT " (" SIZE_FORMAT_W(6) " bytes) for heap region "
1949+
INTPTR_FORMAT " (" SIZE_FORMAT_W(8) " bytes)",
1950+
p2i(buffer), size_in_bytes,
1951+
p2i(regions->at(i).start()), regions->at(i).byte_size());
19541952

19551953
ArchiveHeapOopmapInfo info;
19561954
info._oopmap = (address)buffer;

‎test/hotspot/jtreg/gc/g1/TestSharedArchiveWithPreTouch.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static void main(String[] args) throws Exception {
5858
if (Platform.is64bit()) {
5959
dump_args.addAll(0, Arrays.asList(new String[] { "-XX:+UseCompressedClassPointers", "-XX:+UseCompressedOops" }));
6060
}
61-
dump_args.addAll(Arrays.asList(new String[] { "-Xshare:dump" }));
61+
dump_args.addAll(Arrays.asList(new String[] { "-Xshare:dump", "-Xlog:cds" }));
6262

6363
pb = ProcessTools.createJavaProcessBuilder(dump_args.toArray(new String[0]));
6464
OutputAnalyzer output = new OutputAnalyzer(pb.start());

‎test/hotspot/jtreg/runtime/CDSCompressedKPtrs/CDSCompressedKPtrs.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -42,7 +42,7 @@ public static void main(String[] args) throws Exception {
4242
if (Platform.is64bit()) {
4343
pb = ProcessTools.createJavaProcessBuilder(
4444
"-XX:+UseCompressedClassPointers", "-XX:+UseCompressedOops",
45-
"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./CDSCompressedKPtrs.jsa", "-Xshare:dump");
45+
"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./CDSCompressedKPtrs.jsa", "-Xshare:dump", "-Xlog:cds");
4646
OutputAnalyzer output = new OutputAnalyzer(pb.start());
4747
try {
4848
output.shouldContain("Loading classes to share");

‎test/hotspot/jtreg/runtime/CDSCompressedKPtrs/CDSCompressedKPtrsError.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -44,7 +44,7 @@ public static void main(String[] args) throws Exception {
4444
if (Platform.is64bit()) {
4545
pb = ProcessTools.createJavaProcessBuilder(
4646
"-XX:+UseCompressedOops", "-XX:+UseCompressedClassPointers", "-XX:+UnlockDiagnosticVMOptions",
47-
"-XX:SharedArchiveFile=" + filename, "-Xshare:dump");
47+
"-XX:SharedArchiveFile=" + filename, "-Xshare:dump", "-Xlog:cds");
4848
OutputAnalyzer output = new OutputAnalyzer(pb.start());
4949
try {
5050
output.shouldContain("Loading classes to share");
@@ -79,19 +79,19 @@ public static void main(String[] args) throws Exception {
7979
// Test bad options with -Xshare:dump.
8080
pb = ProcessTools.createJavaProcessBuilder(
8181
"-XX:-UseCompressedOops", "-XX:+UseCompressedClassPointers", "-XX:+UnlockDiagnosticVMOptions",
82-
"-XX:SharedArchiveFile=./CDSCompressedKPtrsErrorBad1.jsa", "-Xshare:dump");
82+
"-XX:SharedArchiveFile=./CDSCompressedKPtrsErrorBad1.jsa", "-Xshare:dump", "-Xlog:cds");
8383
output = new OutputAnalyzer(pb.start());
8484
output.shouldContain("Cannot dump shared archive");
8585

8686
pb = ProcessTools.createJavaProcessBuilder(
8787
"-XX:+UseCompressedOops", "-XX:-UseCompressedClassPointers", "-XX:+UnlockDiagnosticVMOptions",
88-
"-XX:SharedArchiveFile=./CDSCompressedKPtrsErrorBad2.jsa", "-Xshare:dump");
88+
"-XX:SharedArchiveFile=./CDSCompressedKPtrsErrorBad2.jsa", "-Xshare:dump", "-Xlog:cds");
8989
output = new OutputAnalyzer(pb.start());
9090
output.shouldContain("Cannot dump shared archive");
9191

9292
pb = ProcessTools.createJavaProcessBuilder(
9393
"-XX:-UseCompressedOops", "-XX:-UseCompressedClassPointers", "-XX:+UnlockDiagnosticVMOptions",
94-
"-XX:SharedArchiveFile=./CDSCompressedKPtrsErrorBad3.jsa", "-Xshare:dump");
94+
"-XX:SharedArchiveFile=./CDSCompressedKPtrsErrorBad3.jsa", "-Xshare:dump", "-Xlog:cds");
9595
output = new OutputAnalyzer(pb.start());
9696
output.shouldContain("Cannot dump shared archive");
9797

‎test/hotspot/jtreg/runtime/CDSCompressedKPtrs/XShareAuto.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -40,7 +40,7 @@ public class XShareAuto {
4040
public static void main(String[] args) throws Exception {
4141
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
4242
"-server", "-XX:+UnlockDiagnosticVMOptions",
43-
"-XX:SharedArchiveFile=./XShareAuto.jsa", "-Xshare:dump");
43+
"-XX:SharedArchiveFile=./XShareAuto.jsa", "-Xshare:dump", "-Xlog:cds");
4444
OutputAnalyzer output = new OutputAnalyzer(pb.start());
4545
output.shouldContain("Loading classes to share");
4646
output.shouldHaveExitValue(0);

‎test/hotspot/jtreg/runtime/CompressedOops/CompressedClassPointers.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public static void sharingTest() throws Exception {
114114
"-XX:SharedBaseAddress=8g",
115115
"-XX:+PrintCompressedOopsMode",
116116
"-XX:+VerifyBeforeGC",
117-
"-Xshare:dump");
117+
"-Xshare:dump", "-Xlog:cds");
118118
OutputAnalyzer output = new OutputAnalyzer(pb.start());
119119
if (output.firstMatch("Shared spaces are not supported in this VM") != null) {
120120
return;

‎test/hotspot/jtreg/runtime/NMT/NMTWithCDS.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -40,7 +40,7 @@ public class NMTWithCDS {
4040
public static void main(String[] args) throws Exception {
4141
ProcessBuilder pb;
4242
pb = ProcessTools.createJavaProcessBuilder(
43-
"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./NMTWithCDS.jsa", "-Xshare:dump");
43+
"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./NMTWithCDS.jsa", "-Xshare:dump", "-Xlog:cds");
4444
OutputAnalyzer output = new OutputAnalyzer(pb.start());
4545
try {
4646
output.shouldContain("Loading classes to share");

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ public class SharedArchiveFile {
4343
public static void main(String[] args) throws Exception {
4444
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(true,
4545
"-XX:SharedArchiveFile=./SharedArchiveFile.jsa",
46-
"-Xshare:dump");
46+
"-Xshare:dump", "-Xlog:cds");
4747
OutputAnalyzer out = CDSTestUtils.executeAndLog(pb, "SharedArchiveFile");
4848
CDSTestUtils.checkDump(out);
4949

5050
// -XX:+DumpSharedSpaces should behave the same as -Xshare:dump
5151
pb = ProcessTools.createJavaProcessBuilder(true,
5252
"-XX:SharedArchiveFile=./SharedArchiveFile.jsa",
53-
"-XX:+DumpSharedSpaces");
53+
"-XX:+DumpSharedSpaces", "-Xlog:cds");
5454
out = CDSTestUtils.executeAndLog(pb, "SharedArchiveFile");
5555
CDSTestUtils.checkDump(out);
5656

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

+8-4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
*/
3434

3535
import jdk.test.lib.cds.CDSTestUtils;
36+
import jdk.test.lib.cds.CDSOptions;
3637
import jdk.test.lib.process.OutputAnalyzer;
3738
import sun.hotspot.WhiteBox;
3839

@@ -49,19 +50,22 @@ public class SpaceUtilizationCheck {
4950

5051
public static void main(String[] args) throws Exception {
5152
// (1) Default VM arguments
52-
test();
53+
test("-Xlog:cds=debug");
5354

5455
// (2) Use the now deprecated VM arguments. They should have no effect.
55-
test("-XX:SharedReadWriteSize=128M",
56+
test("-Xlog:cds=debug",
57+
"-XX:SharedReadWriteSize=128M",
5658
"-XX:SharedReadOnlySize=128M",
5759
"-XX:SharedMiscDataSize=128M",
5860
"-XX:SharedMiscCodeSize=128M");
5961
}
6062

6163
static void test(String... extra_options) throws Exception {
62-
OutputAnalyzer output = CDSTestUtils.createArchive(extra_options);
64+
CDSOptions opts = new CDSOptions();
65+
opts.addSuffix(extra_options);
66+
OutputAnalyzer output = CDSTestUtils.createArchive(opts);
6367
CDSTestUtils.checkDump(output);
64-
Pattern pattern = Pattern.compile("^(..) *space: *([0-9]+).* out of *([0-9]+) bytes .* at 0x([0-9a0-f]+)");
68+
Pattern pattern = Pattern.compile("(..) *space: *([0-9]+).* out of *([0-9]+) bytes .* at 0x([0-9a0-f]+)");
6569
WhiteBox wb = WhiteBox.getWhiteBox();
6670
long reserve_alignment = wb.metaspaceReserveAlignment();
6771
System.out.println("Metaspace::reserve_alignment() = " + reserve_alignment);

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

+1
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ public static OutputAnalyzer createArchive(AppCDSOptions opts)
226226
} else {
227227
// static dump
228228
cmd.add("-Xshare:dump");
229+
cmd.add("-Xlog:cds");
229230
cmd.add("-XX:SharedArchiveFile=" + opts.archiveName);
230231

231232
if (opts.classList != null) {

‎test/hotspot/jtreg/runtime/cds/appcds/cacheObject/ArchivedModuleWithCustomImageTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ private static void testArchivedModuleUsingImage(Path image)
106106
String[] dumpCmd = {
107107
customJava.toString(),
108108
"-XX:SharedArchiveFile=./ArchivedModuleWithCustomImageTest.jsa",
109-
"-Xshare:dump"};
109+
"-Xshare:dump", "-Xlog:cds"};
110110
printCommand(dumpCmd);
111111
ProcessBuilder pbDump = new ProcessBuilder();
112112
pbDump.command(dumpCmd);

‎test/hotspot/jtreg/runtime/cds/appcds/cacheObject/OpenArchiveRegion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static void main(String[] args) throws Exception {
4444
String appClasses[] = TestCommon.list("Hello");
4545

4646
// Dump with open archive heap region, requires G1 GC
47-
OutputAnalyzer output = TestCommon.dump(appJar, appClasses);
47+
OutputAnalyzer output = TestCommon.dump(appJar, appClasses, "-Xlog:cds=debug");
4848
TestCommon.checkDump(output, "oa0 space:");
4949
output.shouldNotContain("oa0 space: 0 [");
5050
output = TestCommon.exec(appJar, "Hello");

‎test/jdk/com/sun/jdi/cds/CDSJDITest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -72,7 +72,7 @@ public static void runTest(String testname, String[] jarClasses) throws Exceptio
7272
"-Xbootclasspath/a:" + appJar,
7373
"-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=./SharedArchiveFile.jsa",
7474
"-XX:ExtraSharedClassListFile=" + jarClasslistFile.getPath(),
75-
"-Xshare:dump");
75+
"-Xshare:dump", "-Xlog:cds");
7676
OutputAnalyzer outputDump = executeAndLog(pb, "exec");
7777
for (String jarClass : jarClasses) {
7878
outputDump.shouldNotContain("Cannot find " + jarClass);

0 commit comments

Comments
 (0)
Please sign in to comment.