comparison src/share/vm/runtime/arguments.cpp @ 14657:4adcdd3ccb66

8036547: test/runtime/CompressedOops/CompressedClassPointers.java fails with product build since -XX:+PrintMiscellaneous is a debug only flag Summary: Use PrintCompressedOopsMode and these other flags that match printing compressed oop information Reviewed-by: ctornqvi, sla
author coleenp
date Tue, 04 Mar 2014 09:57:16 -0500
parents 16c705d792be
children 948a73c3e9ea
comparison
equal deleted inserted replaced
14655:7380034e5b31 14657:4adcdd3ccb66
1697 julong max_coop_heap = (julong)max_heap_for_compressed_oops(); 1697 julong max_coop_heap = (julong)max_heap_for_compressed_oops();
1698 1698
1699 // HeapBaseMinAddress can be greater than default but not less than. 1699 // HeapBaseMinAddress can be greater than default but not less than.
1700 if (!FLAG_IS_DEFAULT(HeapBaseMinAddress)) { 1700 if (!FLAG_IS_DEFAULT(HeapBaseMinAddress)) {
1701 if (HeapBaseMinAddress < DefaultHeapBaseMinAddress) { 1701 if (HeapBaseMinAddress < DefaultHeapBaseMinAddress) {
1702 if (PrintMiscellaneous && Verbose) { // matches compressed oops printing flags 1702 // matches compressed oops printing flags
1703 if (PrintCompressedOopsMode || (PrintMiscellaneous && Verbose)) {
1703 jio_fprintf(defaultStream::error_stream(), 1704 jio_fprintf(defaultStream::error_stream(),
1704 "HeapBaseMinAddress must be at least " UINTX_FORMAT 1705 "HeapBaseMinAddress must be at least " UINTX_FORMAT
1705 " (" UINTX_FORMAT "G) which is greater than value given " 1706 " (" UINTX_FORMAT "G) which is greater than value given "
1706 UINTX_FORMAT "\n", 1707 UINTX_FORMAT "\n",
1707 DefaultHeapBaseMinAddress, 1708 DefaultHeapBaseMinAddress,