@@ -160,18 +160,16 @@ void DumpRegion::append_intptr_t(intptr_t n, bool need_to_mark) {
160
160
}
161
161
162
162
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 ()));
166
166
}
167
167
168
168
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));
171
171
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));
175
173
}
176
174
}
177
175
@@ -323,7 +321,7 @@ void MetaspaceShared::initialize_dumptime_shared_and_meta_spaces() {
323
321
324
322
init_shared_dump_space (&_mc_region);
325
323
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,
327
325
_shared_rs.size (), p2i (_shared_rs.base ()));
328
326
}
329
327
@@ -427,8 +425,8 @@ void MetaspaceShared::commit_shared_space_to(char* newtop) {
427
425
need_committed_size));
428
426
}
429
427
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 ());
432
430
}
433
431
434
432
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)
1055
1053
1056
1054
LogMessage (cds) msg;
1057
1055
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);
1061
1059
for (int type = 0 ; type < int (_number_of_types); type ++) {
1062
1060
const char *name = type_name ((Type)type);
1063
1061
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)
1071
1069
double rw_perc = percent_of (rw_bytes, rw_all);
1072
1070
double perc = percent_of (bytes, ro_all + rw_all);
1073
1071
1074
- msg.info (fmt_stats, name,
1072
+ msg.debug (fmt_stats, name,
1075
1073
ro_count, ro_bytes, ro_perc,
1076
1074
rw_count, rw_bytes, rw_perc,
1077
1075
count, bytes, perc);
@@ -1089,8 +1087,8 @@ void DumpAllocStats::print_stats(int ro_all, int rw_all, int mc_all, int md_all)
1089
1087
double all_rw_perc = percent_of (all_rw_bytes, rw_all);
1090
1088
double all_perc = percent_of (all_bytes, ro_all + rw_all);
1091
1089
1092
- msg.info (" %s" , sep);
1093
- msg.info (fmt_stats, " Total" ,
1090
+ msg.debug (" %s" , sep);
1091
+ msg.debug (fmt_stats, " Total" ,
1094
1092
all_ro_count, all_ro_bytes, all_ro_perc,
1095
1093
all_rw_count, all_rw_bytes, all_rw_perc,
1096
1094
all_count, all_bytes, all_perc);
@@ -1311,10 +1309,10 @@ class ArchiveCompactor : AllStatic {
1311
1309
SortedSymbolClosure the_ssc; // StackObj
1312
1310
_ssc = &the_ssc;
1313
1311
1314
- tty-> print_cr (" Scanning all metaspace objects ... " );
1312
+ log_info (cds) (" Scanning all metaspace objects ... " );
1315
1313
{
1316
1314
// 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 ... " );
1318
1316
_mc_region.pack (&_rw_region);
1319
1317
1320
1318
ResourceMark rm;
@@ -1323,29 +1321,29 @@ class ArchiveCompactor : AllStatic {
1323
1321
}
1324
1322
{
1325
1323
// 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 ... " );
1327
1325
_rw_region.pack (&_ro_region);
1328
1326
1329
1327
ResourceMark rm;
1330
1328
ShallowCopier ro_copier (true );
1331
1329
iterate_roots (&ro_copier);
1332
1330
}
1333
1331
{
1334
- tty-> print_cr (" Relocating embedded pointers ... " );
1332
+ log_info (cds) (" Relocating embedded pointers ... " );
1335
1333
ResourceMark rm;
1336
1334
ShallowCopyEmbeddedRefRelocator emb_reloc;
1337
1335
iterate_roots (&emb_reloc);
1338
1336
}
1339
1337
{
1340
- tty-> print_cr (" Relocating external roots ... " );
1338
+ log_info (cds) (" Relocating external roots ... " );
1341
1339
ResourceMark rm;
1342
1340
RefRelocator ext_reloc;
1343
1341
iterate_roots (&ext_reloc);
1344
1342
}
1345
1343
1346
1344
#ifdef ASSERT
1347
1345
{
1348
- tty-> print_cr (" Verifying external roots ... " );
1346
+ log_info (cds) (" Verifying external roots ... " );
1349
1347
ResourceMark rm;
1350
1348
IsRefInArchiveChecker checker;
1351
1349
iterate_roots (&checker);
@@ -1362,7 +1360,7 @@ class ArchiveCompactor : AllStatic {
1362
1360
// old objects which assert that their klass is the original klass.
1363
1361
static void relocate_well_known_klasses () {
1364
1362
{
1365
- tty-> print_cr (" Relocating SystemDictionary::_well_known_klasses[] ... " );
1363
+ log_info (cds) (" Relocating SystemDictionary::_well_known_klasses[] ... " );
1366
1364
ResourceMark rm;
1367
1365
RefRelocator ext_reloc;
1368
1366
SystemDictionary::well_known_klasses_do (&ext_reloc);
@@ -1410,7 +1408,7 @@ SortedSymbolClosure* ArchiveCompactor::_ssc;
1410
1408
ArchiveCompactor::RelocationTable* ArchiveCompactor::_new_loc_table;
1411
1409
1412
1410
void VM_PopulateDumpSharedSpace::dump_symbols () {
1413
- tty-> print_cr (" Dumping symbol table ..." );
1411
+ log_info (cds) (" Dumping symbol table ..." );
1414
1412
1415
1413
NOT_PRODUCT (SymbolTable::verify ());
1416
1414
SymbolTable::write_to_archive ();
@@ -1419,12 +1417,12 @@ void VM_PopulateDumpSharedSpace::dump_symbols() {
1419
1417
char * VM_PopulateDumpSharedSpace::dump_read_only_tables () {
1420
1418
ArchiveCompactor::OtherROAllocMark mark;
1421
1419
1422
- tty-> print (" Removing java_mirror ... " );
1420
+ log_info (cds) (" Removing java_mirror ... " );
1423
1421
if (!HeapShared::is_heap_object_archiving_allowed ()) {
1424
1422
clear_basic_type_mirrors ();
1425
1423
}
1426
1424
remove_java_mirror_in_classes ();
1427
- tty-> print_cr (" done. " );
1425
+ log_info (cds) (" done. " );
1428
1426
1429
1427
SystemDictionaryShared::write_to_archive ();
1430
1428
@@ -1443,7 +1441,7 @@ char* VM_PopulateDumpSharedSpace::dump_read_only_tables() {
1443
1441
}
1444
1442
1445
1443
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 ());
1447
1445
{
1448
1446
int num_type_array = 0 , num_obj_array = 0 , num_inst = 0 ;
1449
1447
for (int i = 0 ; i < _global_klass_objects->length (); i++) {
@@ -1457,9 +1455,9 @@ void VM_PopulateDumpSharedSpace::print_class_stats() {
1457
1455
num_type_array ++;
1458
1456
}
1459
1457
}
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);
1463
1461
}
1464
1462
}
1465
1463
@@ -1541,14 +1539,14 @@ void VM_PopulateDumpSharedSpace::doit() {
1541
1539
print_class_stats ();
1542
1540
1543
1541
// Ensure the ConstMethods won't be modified at run-time
1544
- tty-> print (" Updating ConstMethods ... " );
1542
+ log_info (cds) (" Updating ConstMethods ... " );
1545
1543
rewrite_nofast_bytecodes_and_calculate_fingerprints (THREAD);
1546
- tty-> print_cr (" done. " );
1544
+ log_info (cds) (" done. " );
1547
1545
1548
1546
// Remove all references outside the metadata
1549
- tty-> print (" Removing unshareable information ... " );
1547
+ log_info (cds) (" Removing unshareable information ... " );
1550
1548
remove_unshareable_in_classes ();
1551
- tty-> print_cr (" done. " );
1549
+ log_info (cds) (" done. " );
1552
1550
1553
1551
ArchiveCompactor::initialize ();
1554
1552
ArchiveCompactor::copy_and_compact ();
@@ -1665,13 +1663,13 @@ void VM_PopulateDumpSharedSpace::print_region_stats() {
1665
1663
print_heap_region_stats (_closed_archive_heap_regions, " ca" , total_reserved);
1666
1664
print_heap_region_stats (_open_archive_heap_regions, " oa" , total_reserved);
1667
1665
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]" ,
1669
1667
total_bytes, total_reserved, total_u_perc);
1670
1668
}
1671
1669
1672
1670
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 ));
1675
1673
}
1676
1674
1677
1675
void VM_PopulateDumpSharedSpace::print_heap_region_stats (GrowableArray<MemRegion> *heap_mem,
@@ -1681,8 +1679,8 @@ void VM_PopulateDumpSharedSpace::print_heap_region_stats(GrowableArray<MemRegion
1681
1679
char * start = (char *)heap_mem->at (i).start ();
1682
1680
size_t size = heap_mem->at (i).byte_size ();
1683
1681
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));
1686
1684
1687
1685
}
1688
1686
}
@@ -1807,33 +1805,33 @@ void MetaspaceShared::preload_and_dump(TRAPS) {
1807
1805
class_list_path = SharedClassListFile;
1808
1806
}
1809
1807
1810
- tty-> print_cr (" Loading classes to share ..." );
1808
+ log_info (cds) (" Loading classes to share ..." );
1811
1809
_has_error_classes = false ;
1812
1810
int class_count = preload_classes (class_list_path, THREAD);
1813
1811
if (ExtraSharedClassListFile) {
1814
1812
class_count += preload_classes (ExtraSharedClassListFile, THREAD);
1815
1813
}
1816
- tty-> print_cr (" Loading classes to share: done." );
1814
+ log_info (cds) (" Loading classes to share: done." );
1817
1815
1818
1816
log_info (cds)(" Shared spaces: preloaded %d classes" , class_count);
1819
1817
1820
1818
if (SharedArchiveConfigFile) {
1821
- tty-> print_cr (" Reading extra data from %s ..." , SharedArchiveConfigFile);
1819
+ log_info (cds) (" Reading extra data from %s ..." , SharedArchiveConfigFile);
1822
1820
read_extra_data (SharedArchiveConfigFile, THREAD);
1823
1821
}
1824
- tty-> print_cr (" Reading extra data: done." );
1822
+ log_info (cds) (" Reading extra data: done." );
1825
1823
1826
1824
HeapShared::init_subgraph_entry_fields (THREAD);
1827
1825
1828
1826
// Rewrite and link classes
1829
- tty-> print_cr (" Rewriting and linking classes ..." );
1827
+ log_info (cds) (" Rewriting and linking classes ..." );
1830
1828
1831
1829
// Link any classes which got missed. This would happen if we have loaded classes that
1832
1830
// were not explicitly specified in the classlist. E.g., if an interface implemented by class K
1833
1831
// fails verification, all other interfaces that were not specified in the classlist but
1834
1832
// are implemented by K are not verified.
1835
1833
link_and_cleanup_shared_classes (CATCH);
1836
- tty-> print_cr (" Rewriting and linking classes: done" );
1834
+ log_info (cds) (" Rewriting and linking classes: done" );
1837
1835
1838
1836
if (HeapShared::is_heap_object_archiving_allowed ()) {
1839
1837
// Avoid fragmentation while archiving heap objects.
@@ -1947,10 +1945,10 @@ void VM_PopulateDumpSharedSpace::dump_archive_heap_oopmaps(GrowableArray<MemRegi
1947
1945
size_t size_in_bytes = oopmap.size_in_bytes ();
1948
1946
uintptr_t * buffer = (uintptr_t *)_ro_region.allocate (size_in_bytes, sizeof (intptr_t ));
1949
1947
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 ());
1954
1952
1955
1953
ArchiveHeapOopmapInfo info;
1956
1954
info._oopmap = (address)buffer;
0 commit comments